/*--------------------------------------------------------------
Google Fonts Integration
----------------------------------------------------------------*/
/* Start Poppins */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Start Poppins */
/* Start Rubik */
@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Start Rubik */
/*--------------------------------------------------------------
## All Color Variable
----------------------------------------------------------------*/
:root {
  --white: #fff;
  --black: #000;
  --heading-color: #222;
  --body-color: #636363;
  --accent-color: #2ea6f7;
  --blue-color: #002261;
  --gray-color: #e8edf0;
  --border-color: #dddddd;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Rubik", sans-serif;
}

/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Modal
7. Header
8. Footer
9. Sidebar
10. Hero
11. Iconbox
12. Posts
13. CTA
14. Testimonial
15. Counter
16. Casestudie
17. Team
18. Pricing
19. Card
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--heading-font);
}

.cs_primary_font {
  font-family: var(--heading-font);
}

.cs_secondary_font {
  font-family: var(--body-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  line-height: 1.6em;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

table {
  width: 100%;
  margin-bottom: 25px;
}

table th {
  font-weight: 600;
  color: var(--body-color);
}

table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

input,
textarea {
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  left: 0;
  top: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_preloader .cs_preloader_in {
  position: relative;
}

.cs_preloader .cs_preloader_in svg {
  width: 110px;
  height: 110px;
}

.cs_preloader .cs_wave_first svg {
  fill: rgba(46, 166, 247, 0.15);
}

.cs_preloader .cs_wave_second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-animation: spark 1.25s linear infinite;
  animation: spark 1.25s linear infinite;
}

.cs_preloader .cs_wave_second svg {
  fill: var(--accent-color);
}

@-webkit-keyframes spark {
  0% {
    max-width: 0;
  }

  100% {
    max-width: 100%;
  }
}

@keyframes spark {
  0% {
    max-width: 0;
  }

  100% {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
  3. Spacing
----------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .cs_height_1 {
    height: 1px;
  }

  .cs_height_2 {
    height: 2px;
  }

  .cs_height_3 {
    height: 3px;
  }

  .cs_height_4 {
    height: 4px;
  }

  .cs_height_5 {
    height: 5px;
  }

  .cs_height_6 {
    height: 6px;
  }

  .cs_height_7 {
    height: 7px;
  }

  .cs_height_8 {
    height: 8px;
  }

  .cs_height_9 {
    height: 9px;
  }

  .cs_height_10 {
    height: 10px;
  }

  .cs_height_11 {
    height: 11px;
  }

  .cs_height_12 {
    height: 12px;
  }

  .cs_height_13 {
    height: 13px;
  }

  .cs_height_14 {
    height: 14px;
  }

  .cs_height_15 {
    height: 15px;
  }

  .cs_height_16 {
    height: 16px;
  }

  .cs_height_17 {
    height: 17px;
  }

  .cs_height_18 {
    height: 18px;
  }

  .cs_height_19 {
    height: 19px;
  }

  .cs_height_20 {
    height: 20px;
  }

  .cs_height_21 {
    height: 21px;
  }

  .cs_height_22 {
    height: 22px;
  }

  .cs_height_23 {
    height: 23px;
  }

  .cs_height_24 {
    height: 24px;
  }

  .cs_height_25 {
    height: 25px;
  }

  .cs_height_26 {
    height: 26px;
  }

  .cs_height_27 {
    height: 27px;
  }

  .cs_height_28 {
    height: 28px;
  }

  .cs_height_29 {
    height: 29px;
  }

  .cs_height_30 {
    height: 30px;
  }

  .cs_height_31 {
    height: 31px;
  }

  .cs_height_32 {
    height: 32px;
  }

  .cs_height_33 {
    height: 33px;
  }

  .cs_height_34 {
    height: 34px;
  }

  .cs_height_35 {
    height: 35px;
  }

  .cs_height_36 {
    height: 36px;
  }

  .cs_height_37 {
    height: 37px;
  }

  .cs_height_38 {
    height: 38px;
  }

  .cs_height_39 {
    height: 39px;
  }

  .cs_height_40 {
    height: 40px;
  }

  .cs_height_41 {
    height: 41px;
  }

  .cs_height_42 {
    height: 42px;
  }

  .cs_height_43 {
    height: 43px;
  }

  .cs_height_44 {
    height: 44px;
  }

  .cs_height_45 {
    height: 45px;
  }

  .cs_height_46 {
    height: 46px;
  }

  .cs_height_47 {
    height: 47px;
  }

  .cs_height_48 {
    height: 48px;
  }

  .cs_height_49 {
    height: 49px;
  }

  .cs_height_50 {
    height: 50px;
  }

  .cs_height_51 {
    height: 51px;
  }

  .cs_height_52 {
    height: 52px;
  }

  .cs_height_53 {
    height: 53px;
  }

  .cs_height_54 {
    height: 54px;
  }

  .cs_height_55 {
    height: 55px;
  }

  .cs_height_56 {
    height: 56px;
  }

  .cs_height_57 {
    height: 57px;
  }

  .cs_height_58 {
    height: 58px;
  }

  .cs_height_59 {
    height: 59px;
  }

  .cs_height_60 {
    height: 60px;
  }

  .cs_height_61 {
    height: 61px;
  }

  .cs_height_62 {
    height: 62px;
  }

  .cs_height_63 {
    height: 63px;
  }

  .cs_height_64 {
    height: 64px;
  }

  .cs_height_65 {
    height: 65px;
  }

  .cs_height_66 {
    height: 66px;
  }

  .cs_height_67 {
    height: 67px;
  }

  .cs_height_68 {
    height: 68px;
  }

  .cs_height_69 {
    height: 69px;
  }

  .cs_height_70 {
    height: 70px;
  }

  .cs_height_71 {
    height: 71px;
  }

  .cs_height_72 {
    height: 72px;
  }

  .cs_height_73 {
    height: 73px;
  }

  .cs_height_74 {
    height: 74px;
  }

  .cs_height_75 {
    height: 75px;
  }

  .cs_height_76 {
    height: 76px;
  }

  .cs_height_77 {
    height: 77px;
  }

  .cs_height_78 {
    height: 78px;
  }

  .cs_height_79 {
    height: 79px;
  }

  .cs_height_80 {
    height: 80px;
  }

  .cs_height_81 {
    height: 81px;
  }

  .cs_height_82 {
    height: 82px;
  }

  .cs_height_83 {
    height: 83px;
  }

  .cs_height_84 {
    height: 84px;
  }

  .cs_height_85 {
    height: 85px;
  }

  .cs_height_86 {
    height: 86px;
  }

  .cs_height_87 {
    height: 87px;
  }

  .cs_height_88 {
    height: 88px;
  }

  .cs_height_89 {
    height: 89px;
  }

  .cs_height_90 {
    height: 90px;
  }

  .cs_height_91 {
    height: 91px;
  }

  .cs_height_92 {
    height: 92px;
  }

  .cs_height_93 {
    height: 93px;
  }

  .cs_height_94 {
    height: 94px;
  }

  .cs_height_95 {
    height: 95px;
  }

  .cs_height_96 {
    height: 96px;
  }

  .cs_height_97 {
    height: 97px;
  }

  .cs_height_98 {
    height: 98px;
  }

  .cs_height_99 {
    height: 99px;
  }

  .cs_height_100 {
    height: 100px;
  }

  .cs_height_101 {
    height: 101px;
  }

  .cs_height_102 {
    height: 102px;
  }

  .cs_height_103 {
    height: 103px;
  }

  .cs_height_104 {
    height: 104px;
  }

  .cs_height_105 {
    height: 105px;
  }

  .cs_height_106 {
    height: 106px;
  }

  .cs_height_107 {
    height: 107px;
  }

  .cs_height_108 {
    height: 108px;
  }

  .cs_height_109 {
    height: 109px;
  }

  .cs_height_110 {
    height: 110px;
  }

  .cs_height_111 {
    height: 111px;
  }

  .cs_height_112 {
    height: 112px;
  }

  .cs_height_113 {
    height: 113px;
  }

  .cs_height_114 {
    height: 114px;
  }

  .cs_height_115 {
    height: 115px;
  }

  .cs_height_116 {
    height: 116px;
  }

  .cs_height_117 {
    height: 117px;
  }

  .cs_height_118 {
    height: 118px;
  }

  .cs_height_119 {
    height: 119px;
  }

  .cs_height_120 {
    height: 120px;
  }

  .cs_height_121 {
    height: 121px;
  }

  .cs_height_122 {
    height: 122px;
  }

  .cs_height_123 {
    height: 123px;
  }

  .cs_height_124 {
    height: 124px;
  }

  .cs_height_125 {
    height: 125px;
  }

  .cs_height_126 {
    height: 126px;
  }

  .cs_height_127 {
    height: 127px;
  }

  .cs_height_128 {
    height: 128px;
  }

  .cs_height_129 {
    height: 129px;
  }

  .cs_height_130 {
    height: 130px;
  }

  .cs_height_131 {
    height: 131px;
  }

  .cs_height_132 {
    height: 132px;
  }

  .cs_height_133 {
    height: 133px;
  }

  .cs_height_134 {
    height: 134px;
  }

  .cs_height_135 {
    height: 135px;
  }

  .cs_height_136 {
    height: 136px;
  }

  .cs_height_137 {
    height: 137px;
  }

  .cs_height_138 {
    height: 138px;
  }

  .cs_height_139 {
    height: 139px;
  }

  .cs_height_140 {
    height: 140px;
  }

  .cs_height_141 {
    height: 141px;
  }

  .cs_height_142 {
    height: 142px;
  }

  .cs_height_143 {
    height: 143px;
  }

  .cs_height_144 {
    height: 144px;
  }

  .cs_height_145 {
    height: 145px;
  }

  .cs_height_146 {
    height: 146px;
  }

  .cs_height_147 {
    height: 147px;
  }

  .cs_height_148 {
    height: 148px;
  }

  .cs_height_149 {
    height: 149px;
  }

  .cs_height_150 {
    height: 150px;
  }
}

@media screen and (max-width: 991px) {
  .cs_height_lg_1 {
    height: 1px;
  }

  .cs_height_lg_2 {
    height: 2px;
  }

  .cs_height_lg_3 {
    height: 3px;
  }

  .cs_height_lg_4 {
    height: 4px;
  }

  .cs_height_lg_5 {
    height: 5px;
  }

  .cs_height_lg_6 {
    height: 6px;
  }

  .cs_height_lg_7 {
    height: 7px;
  }

  .cs_height_lg_8 {
    height: 8px;
  }

  .cs_height_lg_9 {
    height: 9px;
  }

  .cs_height_lg_10 {
    height: 10px;
  }

  .cs_height_lg_11 {
    height: 11px;
  }

  .cs_height_lg_12 {
    height: 12px;
  }

  .cs_height_lg_13 {
    height: 13px;
  }

  .cs_height_lg_14 {
    height: 14px;
  }

  .cs_height_lg_15 {
    height: 15px;
  }

  .cs_height_lg_16 {
    height: 16px;
  }

  .cs_height_lg_17 {
    height: 17px;
  }

  .cs_height_lg_18 {
    height: 18px;
  }

  .cs_height_lg_19 {
    height: 19px;
  }

  .cs_height_lg_20 {
    height: 20px;
  }

  .cs_height_lg_21 {
    height: 21px;
  }

  .cs_height_lg_22 {
    height: 22px;
  }

  .cs_height_lg_23 {
    height: 23px;
  }

  .cs_height_lg_24 {
    height: 24px;
  }

  .cs_height_lg_25 {
    height: 25px;
  }

  .cs_height_lg_26 {
    height: 26px;
  }

  .cs_height_lg_27 {
    height: 27px;
  }

  .cs_height_lg_28 {
    height: 28px;
  }

  .cs_height_lg_29 {
    height: 29px;
  }

  .cs_height_lg_30 {
    height: 30px;
  }

  .cs_height_lg_31 {
    height: 31px;
  }

  .cs_height_lg_32 {
    height: 32px;
  }

  .cs_height_lg_33 {
    height: 33px;
  }

  .cs_height_lg_34 {
    height: 34px;
  }

  .cs_height_lg_35 {
    height: 35px;
  }

  .cs_height_lg_36 {
    height: 36px;
  }

  .cs_height_lg_37 {
    height: 37px;
  }

  .cs_height_lg_38 {
    height: 38px;
  }

  .cs_height_lg_39 {
    height: 39px;
  }

  .cs_height_lg_40 {
    height: 40px;
  }

  .cs_height_lg_41 {
    height: 41px;
  }

  .cs_height_lg_42 {
    height: 42px;
  }

  .cs_height_lg_43 {
    height: 43px;
  }

  .cs_height_lg_44 {
    height: 44px;
  }

  .cs_height_lg_45 {
    height: 45px;
  }

  .cs_height_lg_46 {
    height: 46px;
  }

  .cs_height_lg_47 {
    height: 47px;
  }

  .cs_height_lg_48 {
    height: 48px;
  }

  .cs_height_lg_49 {
    height: 49px;
  }

  .cs_height_lg_50 {
    height: 50px;
  }

  .cs_height_lg_51 {
    height: 51px;
  }

  .cs_height_lg_52 {
    height: 52px;
  }

  .cs_height_lg_53 {
    height: 53px;
  }

  .cs_height_lg_54 {
    height: 54px;
  }

  .cs_height_lg_55 {
    height: 55px;
  }

  .cs_height_lg_56 {
    height: 56px;
  }

  .cs_height_lg_57 {
    height: 57px;
  }

  .cs_height_lg_58 {
    height: 58px;
  }

  .cs_height_lg_59 {
    height: 59px;
  }

  .cs_height_lg_60 {
    height: 60px;
  }

  .cs_height_lg_61 {
    height: 61px;
  }

  .cs_height_lg_62 {
    height: 62px;
  }

  .cs_height_lg_63 {
    height: 63px;
  }

  .cs_height_lg_64 {
    height: 64px;
  }

  .cs_height_lg_65 {
    height: 65px;
  }

  .cs_height_lg_66 {
    height: 66px;
  }

  .cs_height_lg_67 {
    height: 67px;
  }

  .cs_height_lg_68 {
    height: 68px;
  }

  .cs_height_lg_69 {
    height: 69px;
  }

  .cs_height_lg_70 {
    height: 70px;
  }

  .cs_height_lg_71 {
    height: 71px;
  }

  .cs_height_lg_72 {
    height: 72px;
  }

  .cs_height_lg_73 {
    height: 73px;
  }

  .cs_height_lg_74 {
    height: 74px;
  }

  .cs_height_lg_75 {
    height: 75px;
  }

  .cs_height_lg_76 {
    height: 76px;
  }

  .cs_height_lg_77 {
    height: 77px;
  }

  .cs_height_lg_78 {
    height: 78px;
  }

  .cs_height_lg_79 {
    height: 79px;
  }

  .cs_height_lg_80 {
    height: 80px;
  }

  .cs_height_lg_81 {
    height: 81px;
  }

  .cs_height_lg_82 {
    height: 82px;
  }

  .cs_height_lg_83 {
    height: 83px;
  }

  .cs_height_lg_84 {
    height: 84px;
  }

  .cs_height_lg_85 {
    height: 85px;
  }

  .cs_height_lg_86 {
    height: 86px;
  }

  .cs_height_lg_87 {
    height: 87px;
  }

  .cs_height_lg_88 {
    height: 88px;
  }

  .cs_height_lg_89 {
    height: 89px;
  }

  .cs_height_lg_90 {
    height: 90px;
  }

  .cs_height_lg_91 {
    height: 91px;
  }

  .cs_height_lg_92 {
    height: 92px;
  }

  .cs_height_lg_93 {
    height: 93px;
  }

  .cs_height_lg_94 {
    height: 94px;
  }

  .cs_height_lg_95 {
    height: 95px;
  }

  .cs_height_lg_96 {
    height: 96px;
  }

  .cs_height_lg_97 {
    height: 97px;
  }

  .cs_height_lg_98 {
    height: 98px;
  }

  .cs_height_lg_99 {
    height: 99px;
  }

  .cs_height_lg_100 {
    height: 100px;
  }

  .cs_height_lg_101 {
    height: 101px;
  }

  .cs_height_lg_102 {
    height: 102px;
  }

  .cs_height_lg_103 {
    height: 103px;
  }

  .cs_height_lg_104 {
    height: 104px;
  }

  .cs_height_lg_105 {
    height: 105px;
  }

  .cs_height_lg_106 {
    height: 106px;
  }

  .cs_height_lg_107 {
    height: 107px;
  }

  .cs_height_lg_108 {
    height: 108px;
  }

  .cs_height_lg_109 {
    height: 109px;
  }

  .cs_height_lg_110 {
    height: 110px;
  }

  .cs_height_lg_111 {
    height: 111px;
  }

  .cs_height_lg_112 {
    height: 112px;
  }

  .cs_height_lg_113 {
    height: 113px;
  }

  .cs_height_lg_114 {
    height: 114px;
  }

  .cs_height_lg_115 {
    height: 115px;
  }

  .cs_height_lg_116 {
    height: 116px;
  }

  .cs_height_lg_117 {
    height: 117px;
  }

  .cs_height_lg_118 {
    height: 118px;
  }

  .cs_height_lg_119 {
    height: 119px;
  }

  .cs_height_lg_120 {
    height: 120px;
  }

  .cs_height_lg_121 {
    height: 121px;
  }

  .cs_height_lg_122 {
    height: 122px;
  }

  .cs_height_lg_123 {
    height: 123px;
  }

  .cs_height_lg_124 {
    height: 124px;
  }

  .cs_height_lg_125 {
    height: 125px;
  }

  .cs_height_lg_126 {
    height: 126px;
  }

  .cs_height_lg_127 {
    height: 127px;
  }

  .cs_height_lg_128 {
    height: 128px;
  }

  .cs_height_lg_129 {
    height: 129px;
  }

  .cs_height_lg_130 {
    height: 130px;
  }

  .cs_height_lg_131 {
    height: 131px;
  }

  .cs_height_lg_132 {
    height: 132px;
  }

  .cs_height_lg_133 {
    height: 133px;
  }

  .cs_height_lg_134 {
    height: 134px;
  }

  .cs_height_lg_135 {
    height: 135px;
  }

  .cs_height_lg_136 {
    height: 136px;
  }

  .cs_height_lg_137 {
    height: 137px;
  }

  .cs_height_lg_138 {
    height: 138px;
  }

  .cs_height_lg_139 {
    height: 139px;
  }

  .cs_height_lg_140 {
    height: 140px;
  }

  .cs_height_lg_141 {
    height: 141px;
  }

  .cs_height_lg_142 {
    height: 142px;
  }

  .cs_height_lg_143 {
    height: 143px;
  }

  .cs_height_lg_144 {
    height: 144px;
  }

  .cs_height_lg_145 {
    height: 145px;
  }

  .cs_height_lg_146 {
    height: 146px;
  }

  .cs_height_lg_147 {
    height: 147px;
  }

  .cs_height_lg_148 {
    height: 148px;
  }

  .cs_height_lg_149 {
    height: 149px;
  }

  .cs_height_lg_150 {
    height: 150px;
  }
}

/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.cs_light {
  font-weight: 300;
}

.cs_normal {
  font-weight: 400;
}

.cs_medium {
  font-weight: 500;
}

.cs_semibold {
  font-weight: 600;
}

.cs_bold {
  font-weight: 700;
}

.cs_extra_bold {
  font-weight: 800;
}

.cs_black {
  font-weight: 900;
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}

.cs_row_gap_30>* {
  padding-left: 15px;
  padding-right: 15px;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_35 {
  gap: 35px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}

.cs_gap_y_45 {
  gap: 45px 0;
}

.cs_gap_y_50 {
  gap: 50px 0;
}

.cs_gap_y_60 {
  gap: 60px 0;
}

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 1;
}

.cs_bg_filed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cs_bg_fixed {
  background-attachment: fixed;
}

@media (max-width: 1370px) {
  .cs_bg_fixed {
    background-attachment: initial;
  }
}

.cs_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_white_color {
  color: var(--white);
}

.cs_primary_color {
  color: var(--heading-color);
}

.cs_blue_color {
  color: var(--blue-color);
}

.cs_secondary_color {
  color: var(--body-color);
}

.cs_accent_color {
  color: var(--accent-color);
}

.cs_white_bg {
  background-color: var(--white);
}

.cs_primary_bg {
  background-color: var(--heading-color);
}

.cs_blue_bg {
  background-color: var(--blue-color);
}

.cs_secondary_bg {
  background-color: var(--body-color);
}

.cs_gray_bg {
  background-color: var(--gray-color);
}

.cs_gray_bg_2 {
  background-color: #f0f4f6;
}

.cs_accent_bg {
  background-color: var(--accent-color);
}

label {
  display: inline-block;
  margin-bottom: 7px;
}

.cs_pb_60 {
  padding-bottom: 60px;
}

.container-fluide {
  width: 100%;
  max-width: 1920px;
  padding: 0 30px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container-fluide {
    padding: 0 12px;
  }
}

.cs_btn.cs_style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 17px;
  font-weight: 500;
  padding: 11px 28px;
  line-height: 1.6em;
  gap: 8px;
  line-height: 1.6em;
  border-radius: 1.6em;
}

.cs_btn.cs_style_1 i {
  font-size: 15px;
}

.cs_btn.cs_style_1.cs_color_1 {
  background-color: var(--accent-color);
  color: #fff;
}

.cs_btn.cs_style_1.cs_color_1:hover {
  background-color: var(--blue-color);
}

.cs_btn.cs_style_1.cs_color_2 {
  background-color: var(--blue-color);
  color: #fff;
}

.cs_btn.cs_style_1.cs_color_2:hover {
  background-color: var(--accent-color);
}

.cs_btn.cs_style_1.cs_color_3 {
  background-color: #fff;
  color: var(--blue-color);
}

.cs_btn.cs_style_1.cs_color_3:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.cs_player_btn {
  position: relative;
  z-index: 10;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding: 0 0 0 3px;
  color: #fff;
}

.cs_player_btn:before,
.cs_player_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.cs_player_btn:before {
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.cs_player_btn:after {
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.cs_player_btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid currentColor;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.cs_spinner_img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}

.cs_solution_content_wrapper.cs_type_1 {
  padding: 35px 30px 44px;
}

@media (max-width: 575px) {
  .cs_solution_content_wrapper.cs_type_1 {
    padding: 35px 15px 45px;
  }
}

@media (min-width: 1400px) {
  .cs_solution_content_wrapper {
    padding-right: 76px;
  }
}

.cs_solution_content_wrapper .cs_section_heading_left {
  margin-bottom: 24px;
}

.cs_solution_content_wrapper .cs_section_heading_right {
  margin-bottom: 5px;
}

.cs_solution_content_wrapper .cs_service_heading {
  font-size: 22px;
  margin-bottom: 25px;
}

.cs_service_details .cs_service_heading {
  font-size: 22px;
  margin-bottom: 27px;
}

.cs_service_details .cs_service_subtitle {
  margin-bottom: 20px;
}

.cs_service_details .cs_about_iconbox {
  margin-top: 0;
  border-top: 0;
  padding-top: 30px;
}

.cs_service_details .cs_about_iconbox::before {
  display: none;
}

.cs_solution_thumbnail {
  margin-right: -50px;
}

@media (max-width: 1399px) {
  .cs_solution_thumbnail {
    margin-right: 0;
  }
}

.cs_solution_thumbnail img {
  width: 100%;
}

.cs_service_details_thumbnail {
  width: 100%;
  height: 100%;
  max-height: 448px;
}

.cs_service_details_thumbnail img {
  height: 100%;
  width: 100%;
}

.cs_solution_links.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
}

.cs_solution_links.cs_style_2 li {
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: 35px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_2 li:hover {
  background-color: var(--blue-color);
}

.cs_solution_links.cs_style_2 li:hover a {
  color: var(--white);
}

.cs_solution_links.cs_style_2 li:hover .cs_tab_link_icon_left {
  background-color: var(--accent-color);
}

.cs_solution_links.cs_style_2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_2 .cs_tab_link_icon_left {
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
  color: var(--white);
  border-radius: 50%;
  padding: 5px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  background: transparent;
  padding-right: 10px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 .cs_tab_link_icon_left {
  width: 45px;
  height: 45px;
  background-color: var(--blue-color);
  border-radius: 50%;
  padding: 5px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 .cs_tab_link_icon_left img {
  width: 22px;
  height: 22px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_solution_links.cs_style_1 .cs_tab_link_icon_right {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  margin-left: auto;
  font-size: 16px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cs_solution_links.cs_style_1 li:hover a {
  background: linear-gradient(142deg, #002261 -8.12%, #2a96e6 108.12%);
  color: var(--white);
}

.cs_solution_links.cs_style_1 li:hover .cs_tab_link_icon_left {
  background-color: var(--accent-color);
}

.cs_solution_links.cs_style_1 li:hover .cs_tab_link_icon_right {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.cs_process.cs_style_1 {
  text-align: center;
}

.cs_process.cs_style_1 .cs_btn.cs_style_1 {
  position: relative;
  z-index: 1;
  margin: 50px auto 0;
}

.cs_process_bg {
  width: 100%;
  height: 45%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}

.cs_process_bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--blue-color);
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
}

.cs_contact_thumbnail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs_contact_thumbnail.cs_pl_40 {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .cs_contact_thumbnail.cs_pl_40 {
    padding-left: 0;
  }
}

.cs_contact_thumbnail.cs_pr_40 {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .cs_contact_thumbnail.cs_pr_40 {
    padding-right: 0;
  }
}

.cs_contact_thumbnail.cs_pr_40 .cs_teeth_shape {
  right: 50px;
  left: auto;
}

.cs_contact_thumbnail .cs_teeth_shape {
  position: absolute;
  top: 40px;
  left: 50px;
}

@media (max-width: 575px) {
  .cs_contact_thumbnail .cs_teeth_shape {
    display: none;
  }
}

.cs_contact_thumbnail .cs_contact_img {
  position: relative;
  z-index: 1;
}

.cs_contact_thumbnail .cs_contact_bg_shape {
  width: 100%;
  height: 40%;
  background-color: #d8e6f3;
  border-top: 5px solid var(--blue-color);
  padding: 40px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-top: -190px;
}

@media (max-width: 991px) {
  .cs_contact_thumbnail .cs_contact_bg_shape {
    margin-top: 0;
  }
}

.cs_contact_thumbnail .cs_white_bg_shape {
  width: 100%;
  max-width: 400px;
  height: 190px;
  background-color: var(--white);
  margin-top: -45px;
}

@media (max-width: 991px) {
  .cs_contact_thumbnail .cs_white_bg_shape {
    display: none;
  }
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4 {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 0;
  padding-top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover {
  background-color: initial;
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover .cs_iconbox_icon {
  background-color: var(--blue-color);
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover .cs_iconbox_title,
.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover .cs_iconbox_subtitle {
  color: initial;
}

.cs_contact_form .cs_btn.cs_style_1 {
  border: none;
  margin-top: 10px;
}

.cs_form_field {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  outline: none;
  background-color: #f0f4f6;
  resize: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_form_field:focus {
  border-color: var(--accent-color);
}

.cs_appointment_form_wrapper {
  width: 100%;
  max-width: 970px;
  background-color: #f2f4f9;
  border-radius: 40px;
  padding: 90px 70px 100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .cs_appointment_form_wrapper {
    padding: 40px 30px 50px;
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  .cs_appointment_form_wrapper {
    padding: 0;
    background-color: transparent;
  }
}

.cs_appointment_form .cs_form_field {
  background-color: var(--white);
  border-radius: 0;
}

.cs_appointment_form select {
  padding: 12.3px 20px;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: normal;
  color: var(--body-color);
}

.cs_appointment_form .cs_btn.cs_style_1 {
  width: 100%;
  border: 0;
  border-radius: 0;
  background-color: var(--blue-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_appointment_form .cs_btn.cs_style_1:hover {
  background-color: var(--accent-color);
}

.cs_location_map {
  width: 100%;
  height: 460px;
  margin-bottom: -1px;
}

.cs_location_map iframe {
  width: 100%;
  height: 100%;
}

/*-----------------------------------
 Start Review 
 ------------------------------------*/
.cs_rating_container {
  max-width: 180px;
}

.cs_rating_percentage,
.cs_rating {
  overflow: hidden;
}

.cs_rating_percentage.scale_half,
.cs_rating.scale_half {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  letter-spacing: 10px;
  width: 180px;
  margin-left: -15px;
}

.cs_rating_percentage::before,
.cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.cs_rating {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 157px;
  height: 26px;
  position: relative;
  color: #ffb400;
  font-size: 22px;
  letter-spacing: 7px;
}

.cs_rating::before {
  font-weight: 400;
}

.cs_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.cs_rating_percentage::before {
  font-weight: 900;
}

@-webkit-keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }

  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }

  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

@keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }

  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }

  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.cs_section_heading.cs_style_1 .cs_section_title {
  font-size: 40px;
  margin: 0;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.cs_section_heading.cs_style_1 .cs_shape_left,
.cs_section_heading.cs_style_1 .cs_shape_right {
  height: 5px;
  width: 32px;
  border-radius: 10px;
  position: relative;
  background-color: currentColor;
}

.cs_section_heading.cs_style_1 .cs_shape_left::before,
.cs_section_heading.cs_style_1 .cs_shape_right::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 5px;
  border-radius: 10px;
  background-color: currentColor;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.cs_section_heading.cs_style_1 .cs_shape_right::before {
  left: initial;
  right: 0;
}

.cs_section_heading.cs_style_1.cs_type_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
  }
}

.cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_right {
  width: 40%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_right {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_right {
    width: 100%;
  }
}

.cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
  width: 40%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
    width: 45%;
  }
}

@media (max-width: 1199px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
    width: 100%;
  }
}

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

.cs_about.cs_style_1 .cs_section_img {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: 12%;
}

@media (max-width: 1600px) {
  .cs_about.cs_style_1 .cs_section_img {
    right: 12px;
  }
}

@media (max-width: 1400px) {
  .cs_about.cs_style_1 .cs_section_img {
    display: none;
  }
}

.cs_about.cs_style_1 .cs_about_thumb {
  margin-right: 36px;
  position: relative;
  padding-bottom: 200px;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1 .cs_about_thumb {
    margin-right: 0;
  }
}

.cs_about.cs_style_1 .cs_about_thumb_1 {
  padding-right: 26%;
}

.cs_about.cs_style_1 .cs_about_thumb_1::before {
  content: "";
  height: 160px;
  width: 160px;
  position: absolute;
  border-radius: 50%;
  border: 25px solid var(--accent-color);
  left: -75px;
  top: 40px;
}

.cs_about.cs_style_1 .cs_about_thumb_1 img {
  position: relative;
  z-index: 2;
}

.cs_about.cs_style_1 .cs_about_thumb_2 {
  padding-left: 38%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.cs_about.cs_style_1 .cs_about_thumb_shape_2 {
  position: absolute;
  left: 7%;
  bottom: 32px;
}

.cs_about.cs_style_1 .cs_about_player_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  color: var(--blue-color);
  font-weight: 500;
  position: absolute;
  bottom: 25%;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg) translateY(85%);
  transform: rotate(180deg) translateY(85%);
  right: 8%;
}

@media (max-width: 575px) {
  .cs_about.cs_style_1 .cs_about_player_btn {
    right: 4%;
  }
}

.cs_about.cs_style_1 .cs_about_player_btn:hover .cs_about_play_btn_text::before {
  height: 100%;
}

.cs_about.cs_style_1 .cs_about_play_btn_text {
  position: relative;
}

.cs_about.cs_style_1 .cs_about_play_btn_text::before {
  content: "";
  width: 1px;
  height: 0%;
  background-color: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_about.cs_style_1 .cs_about_thumb .cs_player_btn span {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: -3px;
  left: -1px;
}

.cs_about.cs_style_1 .cs_section_heading.cs_style_1 {
  margin-bottom: 24px;
}

.cs_about.cs_style_1 .cs_about_text {
  max-width: 490px;
  margin-bottom: 30px;
}

.cs_about.cs_style_1 .cs_btn.cs_style_1 {
  margin-top: 50px;
}

.cs_about.cs_style_1 .cs_experience_box {
  height: 170px;
  width: 170px;
  border: 10px solid #fff;
  background-color: var(--blue-color);
  border-radius: 50%;
  position: absolute;
  bottom: 18%;
  left: 24%;
  z-index: 5;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 10px;
}

.cs_about.cs_style_1 .cs_experience_box_number {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 1.2em;
}

.cs_about.cs_style_1 .cs_experience_box_title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox_1_wrap {
  max-width: 490px;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_thumb {
  margin-left: -80px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1.cs_type_1 .cs_about_thumb {
    margin-left: 0;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_experience_box {
  bottom: 0;
  left: 44%;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1.cs_type_1 .cs_experience_box {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  .cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1:not(:last-child) {
  margin-bottom: 30px;
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1:nth-child(even) .cs_iconbox_head {
  padding-right: 0px;
  padding-left: 30px;
}

@media (max-width: 480px) {
  .cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 .cs_iconbox_head {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  padding-right: 30px;
}

@media (max-width: 480px) {
  .cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 .cs_iconbox_head {
    padding-left: 0 !important;
    padding-right: 0;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 .cs_iconbox_img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 200px;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_iconbox {
  border: none;
  padding: 0;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_iconbox::before {
  display: none;
}

.cs_about.cs_style_1.cs_type_1 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  gap: 20px;
  color: var(--heading-color);
}

.cs_about.cs_style_1.cs_type_1 .cs_video_open:hover .cs_play_btn_text {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_about.cs_style_1.cs_type_1 .cs_play_btn_text {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.cs_about.cs_style_1.cs_type_1 .cs_btn.cs_style_1 {
  margin: 0;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 50px;
}

@media (max-width: 450px) {
  .cs_about.cs_style_1.cs_type_1 .cs_about_btns {
    gap: 25px 25px;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_section_img {
  right: 3%;
  bottom: 22%;
}

.cs_about.cs_style_1.cs_type_1 .cs_section_img img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box {
  position: initial;
}

.cs_about.cs_style_1.cs_type_2 .cs_about_thumb {
  margin: 0 0 0 -125px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1.cs_type_2 .cs_about_thumb {
    margin-left: 0;
  }
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box {
  border-radius: 15px;
  border: none;
  position: relative;
  left: 0;
  bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box::before,
.cs_about.cs_style_1.cs_type_2 .cs_experience_box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: inherit;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box::before {
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  background-color: #fff;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box::after {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  z-index: 2;
  border: 1px dashed var(--accent-color);
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box_in {
  position: relative;
  z-index: 2;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box_number,
.cs_about.cs_style_1.cs_type_2 .cs_experience_box_title {
  color: var(--blue-color);
}

.cs_about.cs_style_1.cs_type_2 .cs_about_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-bottom: 45px;
}

@media (max-width: 470px) {
  .cs_about.cs_style_1.cs_type_2 .cs_about_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cs_about.cs_style_1.cs_type_2 .cs_iconbox_1_list li .cs_iconbox.cs_style_1 .cs_iconbox_head {
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.cs_about.cs_style_1.cs_type_2 .cs_iconbox_1_list li:last-child .cs_iconbox.cs_style_1 .cs_iconbox_head {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cs_about.cs_style_1.cs_type_2 .cs_about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 75px;
  margin-top: 50px;
}

@media (max-width: 470p) {
  .cs_about.cs_style_1.cs_type_2 .cs_about_btns {
    gap: 20px 30px;
  }
}

.cs_about.cs_style_1.cs_type_2 .cs_player_btn {
  width: 50px;
  height: 50px;
}

.cs_about.cs_style_1.cs_type_2 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: var(--blue-color);
  font-size: 17px;
  font-weight: 500;
}

.cs_about.cs_style_1.cs_type_2 .cs_video_open:hover .cs_play_btn_text::before {
  width: 0;
}

.cs_about.cs_style_1.cs_type_2 .cs_play_btn_text {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_about.cs_style_1.cs_type_2 .cs_play_btn_text::before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 2px;
  right: 0;
  background-color: currentColor;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_about.cs_style_1.cs_type_2 .cs_section_img {
  right: 20px;
  bottom: 10%;
}

.cs_about_iconbox {
  border-top: 1px solid var(--border-color);
  margin-top: 30px;
  padding-top: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}

.cs_about_iconbox::before {
  content: "";
  height: 1px;
  width: 47px;
  background-color: var(--accent-color);
  position: absolute;
  top: -1px;
  left: 24%;
}

.cs_about_iconbox .cs_about_iconbox_icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: #fff;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 6px;
}

.cs_about_iconbox .cs_about_iconbox_subtitle {
  max-width: 450px;
  margin-bottom: 0;
}

.cs_about_iconbox .cs_about_iconbox_subtitle a {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: underline;
}

.cs_about_iconbox .cs_about_iconbox_subtitle a:hover {
  letter-spacing: 1px;
}

.cs_progress_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 490px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cs_progress {
  height: 7px;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  padding: 1px;
  max-width: 490px;
}

.cs_progress .cs_progress_in {
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
}

.cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.cs_social_btns.cs_style_1 a {
  background-color: #475f8d;
  height: 30px;
  width: 30px;
  color: #fff;
  border-radius: 50%;
}

.cs_social_btns.cs_style_1 a:hover {
  background-color: #fff;
  color: var(--accent-color);
}

.cs_brand.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 16px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_brand.cs_style_1 img {
  -webkit-filter: brightness(0) invert(0.6);
  filter: brightness(0) invert(0.6);
}

.cs_brand.cs_style_1:hover {
  border-color: var(--border-color);
}

.cs_brand.cs_style_1:hover img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.cs_service_wrapper {
  overflow: hidden;
}

.cs_service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: calc(100% + 2px);
  margin-bottom: -1px;
}

@media (max-width: 767px) {
  .cs_service_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_mp0 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_list.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.cs_list.cs_style_1 li {
  padding-left: 40px;
  position: relative;
}

.cs_list.cs_style_1 li i {
  position: absolute;
  left: 0;
  top: 6px;
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_list.cs_style_1 li:hover i {
  -webkit-filter: initial;
  filter: initial;
}

.cs_list.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.cs_list.cs_style_2 li {
  padding-left: 28px;
  position: relative;
}

.cs_list.cs_style_2 li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-color);
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_list.cs_style_2 li:hover i {
  color: var(--blue-color);
}

.cs_video_area {
  background-color: var(--white);
  position: relative;
}

.cs_video_area::after {
  content: "";
  width: 100%;
  height: 220px;
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .cs_video_area::after {
    display: none;
  }
}

.cs_video_area .cs_video_wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cs_video_area .cs_video_open {
  margin-bottom: 30px;
}

.cs_video_area .cs_video_title {
  margin-bottom: 12px;
}

.cs_video_area .cs_video_title .cs_accent_color {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  position: relative;
}

@media (max-width: 991px) {
  .cs_video_area .cs_video_title .cs_accent_color {
    padding: 0;
    border: 0;
  }
}

.cs_video_area .cs_video_title .cs_accent_color::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/arrow_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -36px;
  right: -36px;
}

@media (max-width: 991px) {
  .cs_video_area .cs_video_title .cs_accent_color::after {
    display: none;
  }
}

.cs_video_area .cs_video_subtitle {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .cs_video_area .cs_video_subtitle br {
    display: none;
  }
}

.cs_video_area .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cs_video_area .cs_cta_shape {
  z-index: 2;
}

@media (min-width: 1700px) {
  .cs_video_area .cs_cta_shape {
    bottom: -35px;
    right: 3%;
  }
}

@media (min-width: 1500px) {
  .cs_video_area .cs_cta_shape {
    bottom: -35px;
    right: 1%;
  }
}

@media (max-width: 1499px) {
  .cs_video_area .cs_cta_shape {
    display: none;
  }
}

.cs_project_grid.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 575px) {
  .cs_project_grid.cs_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 1199px) {
  .cs_project_grid.cs_style_1 .cs_project_item {
    grid-column: auto/span 2;
  }
}

@media (max-width: 575px) {
  .cs_project_grid.cs_style_1 .cs_project_item {
    grid-column: auto/span 4;
  }
}

.cs_project_grid.cs_style_1 .cs_project_item:nth-child(1) {
  grid-column: auto/span 2;
}

@media (max-width: 767px) {
  .cs_project_grid.cs_style_1 .cs_project_item:nth-child(1) {
    grid-column: auto/span 4;
  }
}

.cs_project_grid.cs_style_1 .cs_project_item:nth-child(2) {
  grid-column: auto/span 2;
}

@media (max-width: 767px) {
  .cs_project_grid.cs_style_1 .cs_project_item:nth-child(2) {
    grid-column: auto/span 4;
  }
}

.cs_project_grid.cs_style_2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .cs_project_grid.cs_style_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_project_grid.cs_style_2 .cs_project_item {
  grid-column: auto/span 2;
}

@media (max-width: 991px) {
  .cs_project_grid.cs_style_2 .cs_project_item {
    grid-column: auto/span 3;
  }
}

.cs_project_grid.cs_style_2 .cs_project_item:nth-child(4) {
  grid-column: auto/span 3;
}

.cs_project_grid.cs_style_2 .cs_project_item:nth-child(5) {
  grid-column: auto/span 3;
}

@-webkit-keyframes thermometer-animation {
  50% {
    height: 100%;
  }
}

@keyframes thermometer-animation {
  50% {
    height: 100%;
  }
}

.cs_video_open.cs_style_2 {
  position: relative;
}

.cs_video_open.cs_style_2::before {
  content: "";
  position: absolute;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-color: var(--blue-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cs_video_open.cs_style_2::after {
  content: "";
  position: absolute;
  height: 59px;
  width: 59px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--blue-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cs_video_open.cs_style_2 .cs_player_btn {
  width: 75px;
  height: 75px;
}

.cs_video_open.cs_style_2 .cs_player_btn::before,
.cs_video_open.cs_style_2 .cs_player_btn::after {
  background-color: transparent;
  border: 1px solid var(--blue-color);
}

.cs_code_input {
  width: 135px;
  border-color: transparent;
  margin-top: 20px;
  font-style: italic;
}

.cs_page_heading {
  height: 610px;
  padding: 130px 0 50px;
}

@media (max-width: 991px) {
  .cs_page_heading {
    height: 420px;
  }
}

.cs_page_heading .breadcrumb {
  font-size: 19px;
  line-height: 1.5em;
}

.cs_page_heading .breadcrumb .active {
  color: var(--accent-color);
}

.cs_page_heading .cs_page_title {
  font-size: 66px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .cs_page_heading .cs_page_title {
    font-size: 48px;
  }
}

.cs_error_content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cs_error_content .cs_error_thumbnail {
  width: 100%;
  margin-bottom: 48px;
}

.cs_error_content .cs_error_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_error_content .cs_error_heading {
  font-size: 30px;
  margin-bottom: 15px;
}

.cs_error_content .cs_error_subtitle {
  margin-bottom: 26px;
}

.cs_error_content .cs_btn.cs_style_1 {
  border-radius: 5px;
}

.cs_tab {
  display: block;
}

.cs_tab.active {
  display: none;
}

.cs_tab_links.cs_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 500;
  gap: 10px 10px;
  margin-top: 25px;
  color: var(--heading-color);
}

.cs_tab_links.cs_style_3 li.active a {
  color: #fff;
  background-color: var(--accent-color);
}

.cs_tab_links.cs_style_3 li a {
  padding: 4px 12px;
}

.cs_scrollup {
  position: fixed;
  bottom: -60px;
  right: 25px;
  padding: 14px;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #fff;
  color: var(--accent-color);
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.cs_scrollup:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_scrollup.cs_scrollup_show {
  bottom: 30px;
}

/*--------------------------------------------------------------
  5. Slider
----------------------------------------------------------------*/
.cs_slider {
  position: relative;
  z-index: 1;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.png) 16 9, ew-resize !important;
}

.slick-slide>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cs_remove_overflow .slick-list {
  overflow: visible;
}

.cs_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cs_remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.cs_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}

.cs_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.cs_dental_slider_wrapper {
  width: 100%;
  max-width: 712px;
  border: 7px solid var(--white);
  padding: 60px;
  margin-left: auto;
}

@media (max-width: 575px) {
  .cs_dental_slider_wrapper {
    padding: 60px 12px;
  }
}

.cs_dental_slider_wrapper .cs_slider_shape {
  right: 60px;
  bottom: 60px;
  z-index: 3;
}

.cs_slider_arrows.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  height: 40px;
  width: 40px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
  background-color: var(--heading-color);
}

.cs_pagination.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 65px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 15px;
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_1 ul {
    margin-top: 40px;
  }
}

.cs_pagination.cs_style_1 li {
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 2px solid var(--heading-color);
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--heading-color);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li.slick-active {
  background-color: transparent;
}

.cs_pagination.cs_style_1 li.slick-active::before {
  opacity: 1;
}

.cs_pagination.cs_style_1 button {
  display: none;
}

.cs_pagination.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_pagination.cs_style_2.cs_flex_left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.cs_pagination.cs_style_2.cs_flex_left ul {
  margin-top: 30px;
}

.cs_pagination.cs_style_2.cs_accent_color li.slick-active {
  background-color: var(--accent-color);
}

.cs_pagination.cs_style_2.cs_white_color li {
  background-color: var(--white);
}

.cs_pagination.cs_style_2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 10px;
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_2 ul {
    margin-top: 40px;
  }
}

.cs_pagination.cs_style_2 li {
  height: 8px;
  width: 25px;
  border-radius: 4px;
  background-color: #e0e9ef;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_2 li.slick-active {
  width: 40px;
  background-color: var(--blue-color);
}

.cs_pagination.cs_style_2 button {
  display: none;
}

.cs_pagination.cs_style_3 {
  position: absolute;
  width: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  bottom: 190px;
  right: 0;
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_3 {
    bottom: 170px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 15px;
    width: 100%;
  }
}

@media (max-width: 350px) {
  .cs_pagination.cs_style_3 {
    bottom: 140px;
  }
}

.cs_pagination.cs_style_3 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cs_pagination.cs_style_3 li:nth-child(-n+9) button::before {
  content: "0";
}

.cs_pagination.cs_style_3 button {
  border: none;
  background-color: transparent;
  padding: 0;
  min-width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: var(--blue-color);
  border-radius: 7px 7px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_3 button:hover {
  background-color: var(--accent-color);
}

.cs_pagination.cs_style_3 .slick-active button {
  background-color: var(--accent-color);
}

.cs_hero_slider_nav {
  height: 318px;
  position: absolute;
  bottom: 40px;
  right: 50px;
  width: 96px;
}

@media (max-width: 1199px) {
  .cs_hero_slider_nav {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .cs_hero_slider_nav {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 250px;
    height: 77px;
  }
}

.cs_hero_slider_nav .slick-slide {
  padding-top: 7px;
  padding-bottom: 7px;
}

@media (max-width: 991px) {
  .cs_hero_slider_nav .slick-slide {
    padding: 0 5px;
  }
}

.cs_hero_slider_nav .slick-list {
  margin-top: -7px;
  margin-bottom: -7px;
}

@media (max-width: 991px) {
  .cs_hero_slider_nav .slick-list {
    margin: 0 -5px;
  }
}

.cs_hero_slider_nav .cs_hero_slider_thumb_mini {
  height: 96px;
  width: 96px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

@media (max-width: 991px) {
  .cs_hero_slider_nav .cs_hero_slider_thumb_mini {
    height: 77px;
  }
}

.cs_hero_slider_nav .cs_hero_slider_thumb_mini img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.cs_hero_slider_nav .cs_hero_slider_thumb_mini::before {
  content: "+";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 34, 97, 0.8705882353);
  border-radius: inherit;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.cs_hero_slider_nav .slick-current .cs_hero_slider_thumb_mini {
  border-color: #fff;
}

.cs_hero_slider_nav .slick-slide:hover {
  cursor: pointer;
}

.cs_hero_slider_nav .slick-slide:hover .cs_hero_slider_thumb_mini {
  border-color: #fff;
}

.cs_hero_slider_nav .slick-slide:hover .cs_hero_slider_thumb_mini::before {
  opacity: 1;
}

@media (max-width: 991px) {
  .cs_mobile_hide {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .cs_mobile_show {
    display: none !important;
  }
}

.slick-slide .cs_hero.cs_style_3 .cs_hero_text_in {
  position: relative;
  left: 100px;
  opacity: 0;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.slick-slide .cs_hero.cs_style_3 .cs_hero_shape img {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.slick-slide.slick-active .cs_hero.cs_style_3 .cs_hero_text_in {
  left: 0px;
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.slick-slide.slick-active .cs_hero.cs_style_3 .cs_hero_shape img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

/*--------------------------------------------------------------
  6. Video Modal
----------------------------------------------------------------*/
.cs-pd-video .cs_video_open,
.cs-sample-img .cs_video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 68px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 48px;
}

.cs-pd-video .cs_video_open:hover,
.cs-sample-img .cs_video_open:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cs_video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.cs_video_popup.active {
  left: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  left: 0;
}

.cs_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.cs_video_popup.active .cs_video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cs_video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.cs_video_popup.active .cs_video_popup-content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cs_video_popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cs_video_popup-container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.cs_video_popup-container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cs_video_popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cs_video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.cs_video_popup-close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cs_video_popup-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cs_video_popup-close:hover:before,
.cs_video_popup-close:hover:after {
  background: #000;
}

.cs_video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.cs_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/
.cs_header_contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 25px;
}

.cs_header_contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.cs_header_contact_list li i {
  margin-right: 5px;
}

.cs_header_search_form {
  position: absolute;
  width: 280px;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background-color: #fff;
  padding: 18px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 20px rgba(18, 30, 59, 0.1);
  box-shadow: 0px 0px 20px rgba(18, 30, 59, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.cs_header_search_form.active {
  opacity: 1;
  visibility: visible;
}

.cs_header_search_form .cs_header_search_form_in {
  position: relative;
}

.cs_header_search_form .cs_header_search_field {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 5px 15px;
  outline: none;
}

.cs_header_search_form .cs_header_search_field:focus {
  border-color: var(--accent-color);
}

.cs_header_search_form .cs_header_submit_btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 46px;
  width: 46px;
  border: none;
  padding: 10px;
  border-radius: 0 5px 5px 0;
  background-color: var(--accent-color);
  color: #fff;
}

.cs_header_search_form .cs_header_submit_btn:hover {
  background-color: var(--blue-color);
}

.cs_search_wrap {
  position: relative;
}

.cs_site_header {
  position: absolute;
  z-index: 101;
  width: 100%;
  left: 0;
  top: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_site_header.cs_style_1 .cs_main_header_in,
.cs_site_header.cs_style_1 .cs_top_header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.cs_site_header.cs_style_1 .cs_main_header_in {
  height: 100px;
}

.cs_site_header.cs_style_1 .cs_top_header_in {
  height: 50px;
}

.cs_site_header.cs_style_1 .cs_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 5px 40px;
}

@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-right: 50px;
    gap: 5px 25px;
  }
}

@media (max-width: 575px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    gap: 5px 0px;
  }
}

.cs_site_header.cs_style_1 .cs_search_toggle {
  height: 35px;
  width: 35px;
  border: 1px solid var(--body-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_site_header.cs_style_1 .cs_search_toggle:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.cs_site_header.cs_style_1.cs_type_1 .cs_main_header_in {
  height: 110px;
}

@media (max-width: 1199px) {
  .cs_site_header.cs_style_1.cs_type_1 .cs_main_header_in {
    height: 80px;
  }
}

.cs_site_header.cs_style_1.cs_type_1 .cs_main_header_shape {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  height: 110px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .cs_site_header.cs_style_1.cs_type_1 .cs_main_header_shape {
    height: 80px;
  }
}

.cs_site_header.cs_style_1.cs_type_1 .cs_main_header {
  z-index: 1;
}

.cs_site_header.cs_style_1.cs_type_1.cs_gescout_sticky {
  background-color: transparent;
}

.cs_site_header.cs_style_1.cs_type_1.cs_gescout_show {
  -webkit-box-shadow: initial;
  box-shadow: initial;
}

@media (min-width: 1400px) {
  .cs_site_header.cs_style_1.cs_type_1 .container {
    max-width: 1500px;
  }
}

.cs_site_header.cs_style_1.cs_sticky_active {
  background-color: var(--white);
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.cs_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.cs_site_header_spacing_150 {
  height: 150px;
}

@media screen and (max-width: 1199px) {
  .cs_site_header.cs_style_1 .container {
    max-width: 100%;
  }

  .cs_site_header_spacing_150 {
    height: 130px;
  }

  .cs_main_header .container {
    max-width: 100%;
  }

  .cs_site_header.cs_style_1 .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .cs_site_header.cs_style_1 .cs_top_header {
    display: none;
  }

  .cs_site_header_spacing_150 {
    height: 80px;
  }
}

.cs_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.cs_sticky_header .cs_top_header_in {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
}

.cs_gescout_sticky.cs_site_header.cs_style_1 .cs_top_header_in {
  height: 0;
}

.cs_gescout_sticky.cs_fixed_sticky {
  top: 0;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.cs_site_branding {
  display: inline-block;
}

.cs_site_branding+.cs_nav {
  margin-left: 80px;
}

@media (max-width: 1600px) {
  .cs_site_branding+.cs_nav {
    margin-left: 40px;
  }
}

@media (max-width: 1540px) {
  .cs_site_branding+.cs_nav {
    margin-left: 30px;
  }
}

.cs_main_header {
  position: relative;
}

.cs_main_header .container-fluid {
  padding-right: 120px;
  padding-left: 120px;
}

@media screen and (min-width: 1200px) {

  .cs_main_header_center,
  .cs_top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .cs_site_header.cs_style_1 .cs_main_header_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }

  .cs_site_header.cs_style_1 .cs_main_header_left {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
    font-size: 17px;
    font-weight: 500;
  }

  .cs_nav .cs_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: inherit;
  }

  .cs_nav .cs_nav_list>li {
    margin-right: 40px;
    height: inherit;
  }

  .cs_nav .cs_nav_list>li:last-child {
    margin-right: 0;
  }

  .cs_nav .cs_nav_list>li>a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cs_nav .cs_nav_list>li>ul {
    left: 0;
    top: calc(100% + 15px);
    pointer-events: none;
  }

  .cs_nav .cs_nav_list>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .cs_nav .cs_nav_list>li.menu-item-has-children>a {
    position: relative;
  }

  .cs_nav .cs_nav_list>li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }

  .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
    position: relative;
  }

  .cs_nav .cs_nav_list ul {
    width: 260px;
    background-color: var(--white);
    position: absolute;
    border-top: 2px solid var(--accent-color);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul li:hover ul {
    top: 0px;
  }

  .cs_nav .cs_nav_list ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }

  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }

  .cs_nav+.cs_toolbox {
    margin-left: 40px;
  }

  .cs_menu_toggle,
  .cs_menu_dropdown_toggle {
    display: none;
  }

  .cs_nav .cs_nav_list .cs_mega_menu {
    position: relative;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--accent-color);
    border-radius: 0 0 5px 5px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb {
    display: grid !important;
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    padding: 20px 20px 14px 20px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb img {
    border: 1px solid var(--border-color);
    border-radius: 2px 20px 2px 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 8px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a {
    padding: 0;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 500;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a:hover img {
    border-color: #d5d4d4;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper a {
    padding: 7px 10px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper>li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper>li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper>li ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }

  .cs_nav .cs_nav_list>li ul:not(.cs_mega_wrapper) .menu-item-has-children>a {
    position: relative;
  }
}

@media screen and (max-width: 1600px) {
  .cs_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 1400px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1116px !important;
  }

  .cs_site_header_full_width .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .cs_main_header .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 100% !important;
  }

  .cs_site_header_full_width .container {
    padding: 0 15px;
  }

  .cs_menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }

  .cs_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }

  .cs_menu_dropdown_toggle span:before,
  .cs_menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .cs_menu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .cs_menu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu-item-has-children .menu-item-has-children .cs_menu_dropdown_toggle {
    padding: 20px 18px;
  }

  .cs_site_branding {
    position: relative;
    z-index: 101;
  }

  .cs_nav .cs_nav_list {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: #fff;
    color: var(--heading-color);
    padding: 10px 0;
    top: 0;
    overflow: auto;
    min-height: 100vh;
    line-height: 1.6em;
    padding-top: 150px;
    z-index: 100;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list.cs_active {
    left: 0vw;
  }

  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }

  .cs_nav .cs_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }

  .cs_nav .cs_nav_list>li>a {
    font-size: 18px;
    line-height: 22px;
  }

  .cs_nav .menu-item-has-children {
    position: relative;
  }

  .cs_site_header.cs_style_1.cs_type_1 .cs_nav .cs_nav_list {
    padding-top: 80px;
  }

  .cs_animo_links>li>a .cs_animo_text {
    text-shadow: 0 32px 0 currentColor;
  }

  .cs_animo_links>li>a:hover span {
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px);
  }

  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    z-index: 101;
  }

  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }

  .cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }

  .cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs_nav .cs_nav_list a {
    position: relative;
  }

  .cs_site_header.cs_style_1 .cs_main_header_in {
    height: 80px;
  }

  .cs_site_header .current-menu-item>a:before {
    display: none;
  }

  .cs_site_header.cs_style_1 {
    top: 0;
  }

  .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cs_has_main_nav {
    display: none;
  }

  .cs_nav .cs_nav_list img {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }

  .cs_site_header.cs_style_1 .cs_action_box>*:not(:last-child) {
    margin-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .cs_site_header .cs_btn.cs_style_1 {
    display: none;
  }
}

/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_footer {
  padding-top: 1px;
  margin-top: 25px;
}

.cs_footer .cs_social_btns.cs_style_1 {
  margin-top: 50px;
}

.cs_footer .cs_social_btns.cs_style_1 a {
  height: 40px;
  width: 40px;
  background-color: #54b3f4;
  -webkit-box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.05);
  font-size: 16px;
}

.cs_footer .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--blue-color);
}

.cs_footer_highlight_col {
  padding: 60px 35px;
  margin-top: -26px;
  border-radius: 5px 5px 0 0;
}

@media (max-width: 1199px) {
  .cs_footer_highlight_col {
    padding: 50px 15px;
  }
}

.cs_footer_logo {
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.cs_footer_contact li {
  position: relative;
  padding-left: 25px;
}

.cs_footer_contact li:not(:last-child) {
  margin-bottom: 20px;
}

.cs_footer_contact li i {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  text-align: center;
}

.cs_footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 25px;
}

.cs_footer_bottom_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .cs_footer_bottom_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px 0;
    text-align: center;
    padding: 18px 0;
  }

  .cs_footer_bottom_in .cs_footer_menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_footer_widget_title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .cs_footer_widget_title {
    margin-bottom: 25px;
  }
}

.cs_footer_widget_nav_list li:not(:last-child) {
  margin-bottom: 15px;
}

.cs_footer_widget {
  padding: 95px 0;
}

@media (max-width: 1199px) {
  .cs_footer_widget {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .cs_footer_widget {
    padding: 0;
  }
}

.cs_footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

@media (max-width: 1400px) {
  .cs_footer_row {
    gap: 40px;
  }
}

@media (max-width: 1199px) {
  .cs_footer_row {
    gap: 40px 25px;
  }
}

@media (max-width: 991px) {
  .cs_footer_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0px 0px;
  }
}

@media (max-width: 767px) {
  .cs_footer_row {
    gap: 50px 0px;
    padding-bottom: 70px;
  }
}

.cs_footer_row .cs_footer_col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col {
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
    width: 30%;
  }
}

@media (max-width: 767px) {
  .cs_footer_row .cs_footer_col {
    width: 100%;
  }
}

.cs_footer_row .cs_footer_col:first-child {
  -webkit-box-flex: 1.6;
  -ms-flex: 1.6;
  flex: 1.6;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col:first-child {
    width: 100%;
  }
}

.cs_footer_row .cs_footer_col:last-child {
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col:last-child {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .cs_footer_row .cs_footer_col:last-child {
    width: 100%;
  }
}

.cs_recent_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.cs_recent_post .cs_recent_post_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 85px;
  height: 85px;
  overflow: hidden;
  border-radius: 50%;
}

.cs_recent_post .cs_recent_post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_recent_post .cs_recent_post_title {
  font-size: 17px;
  color: #fff;
  margin: 0;
  font-weight: 600;
  line-height: 1.4em;
}

.cs_recent_post p {
  font-size: 14px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
}

.cs_recent_post_list li:not(:last-child) {
  margin-bottom: 20px;
}

.cs_service_footer {
  max-width: 460px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cs_service_footer .cs_service_footer_icon {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_service_footer .cs_service_footer_text {
  font-size: 18px;
  color: var(--heading-color);
  text-align: center;
}

@media (max-width: 767px) {
  .cs_service_footer .cs_service_footer_text {
    text-align: left;
  }

  .cs_service_footer .cs_service_footer_text br {
    display: none;
  }
}

.cs_service_footer a {
  color: var(--accent-color);
  display: inline-block;
}

.cs_service_footer a {
  margin-left: 7px;
  line-height: 28px;
}

.cs_service_footer a span {
  display: inline-block;
  margin-left: 5px;
}

.cs_service_footer a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
  9. Sidebar
----------------------------------------------------------------*/
.cs_sidebar.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}

@media (max-width: 991px) {
  .cs_sidebar.cs_style_1 {
    gap: 30px;
  }
}

.cs_sidebar_widget {
  border: 1px solid var(--border-color);
  padding: 35px 30px 40px;
}

@media (max-width: 1199px) {
  .cs_sidebar_widget {
    padding: 30px 15px;
  }
}

.cs_sidebar_widget.cs_search {
  padding: 3px;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cs_sidebar_widget.cs_search input {
  border: none;
  outline: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 17px;
}

.cs_sidebar_widget.cs_search .cs_search_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 37px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_sidebar_widget.cs_search .cs_search_icon:hover {
  background-color: var(--accent-color);
}

.cs_sidebar_widget.cs_service {
  border: none;
}

.cs_sidebar_widget .cs_sidebar_title {
  font-size: 22px;
  text-decoration: underline;
  margin-bottom: 34px;
}

.cs_sidebar_widget .cs_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.cs_sidebar_widget .cs_categories li:first-child {
  margin-bottom: 1px;
}

.cs_sidebar_widget .cs_categories a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cs_sidebar_widget .cs_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cs_sidebar_widget .cs_tag_list .cs_tag_link {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 20px;
  border: 1px solid var(--border-color);
  font-size: 17px;
  font-weight: 400;
  color: var(--body-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_sidebar_widget .cs_tag_list .cs_tag_link:hover {
  background-color: var(--blue-color);
  color: var(--white);
  border-color: var(--blue-color);
}

/*--------------------------------------------------------------
  10. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 {
  height: 810px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 {
    height: initial;
    padding: 80px 0 150px 0;
  }
}

.cs_hero.cs_style_1 .cs_hero_title {
  font-size: 66px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_title {
    font-size: 48px;
  }
}

.cs_hero.cs_style_1 .cs_hero_title span {
  color: var(--accent-color);
  display: inline-block;
  position: relative;
}

.cs_hero.cs_style_1 .cs_hero_title span::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 95%;
  left: 0;
  bottom: 5px;
  background-color: var(--accent-color);
}

.cs_hero.cs_style_1 .cs_hero_subtitle {
  font-size: 19px;
  max-width: 600px;
  margin-bottom: 25px;
}

.cs_hero.cs_style_1 .cs_hero_info {
  border-left: 5px solid var(--blue-color);
  position: relative;
  padding: 4px 0px 4px 18px;
  margin-bottom: 35px;
}

.cs_hero.cs_style_1 .cs_hero_info::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--blue-color);
  left: -4px;
  top: 50%;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 0 0 0 5px;
}

.cs_hero.cs_style_1 .cs_hero_info h3 {
  font-size: 24px;
  color: var(--blue-color);
  margin-bottom: 4px;
}

.cs_hero.cs_style_1 .cs_hero_info p {
  margin: 0;
  color: var(--blue-color);
}

.cs_hero.cs_style_1 .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.cs_hero.cs_style_1 .cs_hero_text {
  background-color: #fff;
  max-width: 825px;
  width: 100%;
  padding: 60px 70px 70px 70px;
  border-radius: 50px;
  position: relative;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_text {
    padding: 40px 30px 50px 30px;
  }
}

.cs_hero.cs_style_1 .cs_hero_text_in {
  position: relative;
  z-index: 2;
}

.cs_hero.cs_style_1 .cs_hero_shape {
  position: absolute;
  right: 75px;
  bottom: 30px;
}

@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_hero_shape {
    right: 25px;
  }
}

.cs_hero.cs_style_2 .cs_hero_text,
.cs_hero.cs_style_3 .cs_hero_text {
  max-width: 650px;
  position: relative;
}

@media (max-width: 991px) {

  .cs_hero.cs_style_2 .cs_hero_text,
  .cs_hero.cs_style_3 .cs_hero_text {
    max-width: 550px;
  }
}

.cs_hero.cs_style_2 .cs_hero_title,
.cs_hero.cs_style_3 .cs_hero_title {
  font-size: 66px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {

  .cs_hero.cs_style_2 .cs_hero_title,
  .cs_hero.cs_style_3 .cs_hero_title {
    font-size: 48px;
  }
}

.cs_hero.cs_style_2 .cs_hero_subtitle,
.cs_hero.cs_style_3 .cs_hero_subtitle {
  font-size: 19px;
  max-width: 500px;
  margin-bottom: 18px;
}

.cs_hero.cs_style_2 .cs_list.cs_style_2,
.cs_hero.cs_style_3 .cs_list.cs_style_2 {
  font-size: 18px;
  gap: 10px;
  margin-bottom: 30px;
}

.cs_hero.cs_style_2 .cs_list.cs_style_2 li i,
.cs_hero.cs_style_3 .cs_list.cs_style_2 li i {
  top: 4px;
}

.cs_hero.cs_style_2 .cs_list.cs_style_2 li:hover i,
.cs_hero.cs_style_3 .cs_list.cs_style_2 li:hover i {
  color: var(--accent-color);
}

.cs_hero.cs_style_2 {
  height: 810px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_2 {
    height: initial;
    padding-top: 80px;
    padding-bottom: 180px;
  }
}

.cs_hero.cs_style_2 .cs_hero_shape {
  position: absolute;
  top: 15%;
  right: 100%;
  width: 135px;
  margin-right: 20px;
}

.cs_hero.cs_style_2 .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.cs_hero.cs_style_2 .cs_player_btn {
  width: 50px;
  height: 50px;
}

.cs_hero.cs_style_2 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.cs_hero.cs_style_2 .cs_video_open:hover .cs_play_btn_text {
  letter-spacing: 0.5px;
}

.cs_hero.cs_style_2 .cs_play_btn_text {
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_play_btn_text {
    color: var(--blue-color);
  }
}

.cs_hero.cs_style_2 .cs_hero_card {
  position: absolute;
  right: 0;
  height: 143px;
  width: 143px;
  border: 7px solid #fff;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 45%;
  right: -70px;
}

@media (max-width: 1400px) {
  .cs_hero.cs_style_2 .cs_hero_card {
    right: 10px;
  }
}

@media (max-width: 1199px) {
  .cs_hero.cs_style_2 .cs_hero_card {
    right: 80px;
  }
}

@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_card {
    display: none;
  }
}

.cs_hero.cs_style_2 .cs_hero_card h4 {
  font-size: 34px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0;
}

.cs_hero.cs_style_2 .cs_hero_card h4 span {
  font-size: 14px;
  line-height: 1.6em;
}

.cs_hero.cs_style_2 .cs_hero_card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.cs_hero.cs_style_3 {
  height: 880px;
  position: relative;
  padding-top: 80px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_3 {
    padding-bottom: 285px;
    padding-top: 160px;
    height: initial;
  }
}

@media (max-width: 350px) {
  .cs_hero.cs_style_3 {
    padding-bottom: 255px;
  }
}

.cs_hero.cs_style_3 .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.cs_hero.cs_style_3 .cs_hero_shape {
  position: absolute;
  right: 100%;
  width: 125px;
  top: 10px;
  margin-right: 40px;
}

.cs_hero.cs_style_3 .cs_hero_title span {
  -webkit-text-stroke: 3px var(--accent-color);
}

/*--------------------------------------------------------------
  11. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 .cs_iconbox_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  -webkit-box-shadow: 0px 0px 49px rgba(18, 30, 59, 0.14);
  box-shadow: 0px 0px 49px rgba(18, 30, 59, 0.14);
  height: 58px;
  width: 58px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_iconbox.cs_style_1 .cs_iconbox_title {
  font-size: 22px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_subtitle {
  max-width: 250px;
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_2 {
  padding: 30px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.cs_iconbox.cs_style_2.cs_gray_bg {
  background-color: var(--gray-color);
}

.cs_iconbox.cs_style_2 .iconbox_index {
  color: var(--blue-color);
  -webkit-text-stroke: 1px var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5em;
  position: relative;
  z-index: 1;
  opacity: 0;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon {
  width: 53px;
  height: 53px;
  position: relative;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue-color);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_title {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_subtitle {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--blue-color);
  opacity: 0.8;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_shape {
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  bottom: -56px;
  right: -56px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_overlay,
.cs_iconbox.cs_style_2:hover .iconbox_index {
  opacity: 1;
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon::before {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon::after {
  background-color: var(--white);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_title a,
.cs_iconbox.cs_style_2:hover .cs_iconbox_subtitle {
  color: var(--white);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_shape {
  bottom: -20px;
  right: -20px;
}

.cs_iconbox.cs_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 30px 0 30px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cs_iconbox.cs_style_3 {
    padding: 30px 0 !important;
  }

  .cs_iconbox.cs_style_3:last-child {
    padding-bottom: 0 !important;
  }
}

.cs_iconbox.cs_style_3:nth-child(1) {
  padding-top: 0;
}

.cs_iconbox.cs_style_3:nth-child(2) {
  padding-top: 0;
}

.cs_iconbox.cs_style_3:nth-child(5) {
  padding-bottom: 0;
}

.cs_iconbox.cs_style_3:nth-child(6) {
  padding-bottom: 0;
}

.cs_iconbox.cs_style_3:nth-child(even) {
  padding-left: 50px;
  padding-right: 0;
}

@media (max-width: 767px) {
  .cs_iconbox.cs_style_3:nth-child(even) {
    padding-left: 0;
  }
}

.cs_iconbox.cs_style_3:nth-child(odd) {
  padding-right: 50px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 65px;
  height: 65px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
  transform: translate(-50%, -10px) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 5px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
  margin-bottom: 0;
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon::before {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon::after {
  -webkit-transform: translate(-50%, 5px) rotate(45deg);
  transform: translate(-50%, 5px) rotate(45deg);
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox_4_wrap {
  position: relative;
  z-index: 10;
  margin-top: -100px;
}

.cs_iconbox.cs_style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 50px 70px;
  gap: 30px;
  background-color: #fff;
  border-bottom: 3px solid var(--blue-color);
  -webkit-box-shadow: 0px 0px 128px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 128px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1400px) {
  .cs_iconbox.cs_style_4 {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_4 {
    padding: 30px;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_4 {
    padding: 25px;
  }
}

@media (max-width: 430px) {
  .cs_iconbox.cs_style_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.cs_iconbox.cs_style_4 .cs_iconbox_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 110px;
  width: 110px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--blue-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_4 .cs_iconbox_icon {
    height: 90px;
    width: 90px;
  }
}

.cs_iconbox.cs_style_4 .cs_iconbox_title {
  font-size: 35px;
  margin-bottom: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_4 .cs_iconbox_title {
    font-size: 30px;
  }
}

.cs_iconbox.cs_style_4 .cs_iconbox_subtitle {
  font-size: 17px;
  margin-bottom: 30px;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 430px) {
  .cs_iconbox.cs_style_4 .cs_iconbox_subtitle {
    margin-bottom: 20px;
  }
}

.cs_iconbox.cs_style_4 .cs_btn.cs_style_1 {
  border-radius: 5px;
}

.cs_iconbox.cs_style_4:hover {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_icon {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_4:hover .cs_btn.cs_style_1 {
  background-color: #fff;
  color: var(--blue-color);
}

.cs_iconbox.cs_style_4:hover .cs_btn.cs_style_1:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_title,
.cs_iconbox.cs_style_4:hover .cs_iconbox_subtitle {
  color: #fff;
}

.cs_iconbox.cs_style_5 {
  padding: 37px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_5 {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 10px;
  }

  .cs_iconbox.cs_style_5 br {
    display: none;
  }
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_5 {
    padding: 20px;
  }
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon {
  width: 53px;
  height: 53px;
  position: relative;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-bottom: 15px;
  }

  .cs_iconbox.cs_style_5 .cs_iconbox_icon img {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_title {
  font-size: 22px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_line {
  width: 83px;
  height: 2px;
  background-color: var(--border-color);
  opacity: 0.3;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_line {
    display: none;
  }
}

.cs_iconbox.cs_style_5 .cs_iconbox_thumbnail {
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_btn {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  font-size: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_btn {
    right: 30px;
    top: 30px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_btn {
    right: 20px;
    top: 20px;
  }
}

.cs_iconbox.cs_style_5 .cs_iconbox_btn i {
  color: var(--accent-color);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5:hover {
  border-style: dashed;
  border-color: var(--accent-color);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon:before {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon::after {
  background-color: var(--white);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_thumbnail {
  right: 15%;
  -webkit-transform: translateY(-50%) rotate(-22deg);
  transform: translateY(-50%) rotate(-22deg);
  opacity: 1;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_5:hover .cs_iconbox_thumbnail {
    display: none;
  }
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_btn {
  color: var(--white);
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_btn i {
  color: var(--white);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.cs_iconbox_wrapper {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 77px;
}

.cs_iconbox.cs_style_6 {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.3);
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_6 {
    gap: 20px;
  }
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_6 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
  }
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_6 .cs_iconbox_index {
  width: 24px;
  height: 24px;
  background-color: #0365d3;
  font-size: 9px;
  font-weight: 500;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_6 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 5px;
}

.cs_iconbox.cs_style_6:hover {
  border-color: #0365d3;
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_icon {
  background-color: #0365d3;
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_index {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cs_iconbox.cs_style_7 .cs_iconbox_thumbnail {
  border-radius: 10px;
  z-index: 2;
}

.cs_iconbox.cs_style_7 .cs_iconbox_thumbnail img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.cs_iconbox.cs_style_7 .cs_iconbox_content {
  width: 95%;
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  position: relative;
  margin: -50px auto 0;
  padding: 70px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.cs_iconbox.cs_style_7 .cs_iconbox_overlay {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon {
  width: 53px;
  height: 53px;
  background-color: var(--white);
  border-radius: 50%;
  margin: -50px 0 32px;
  position: relative;
  z-index: 3;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: var(--blue-color);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 8px;
}

.cs_iconbox.cs_style_7 .cs_iconbox_subtitle {
  margin-bottom: 13px;
}

.cs_iconbox.cs_style_7 .cs_iconbox_title,
.cs_iconbox.cs_style_7 .cs_iconbox_subtitle,
.cs_iconbox.cs_style_7 .cs_iconbox_btn {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_shape_1,
.cs_iconbox.cs_style_7 .cs_iconbox_shape_2 {
  width: 40px;
  height: 40px;
  background-color: var(--blue-color);
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_shape_1 {
  left: -20px;
  bottom: -20px;
}

.cs_iconbox.cs_style_7 .cs_iconbox_shape_2 {
  right: -20px;
  bottom: -20px;
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_overlay {
  opacity: 1;
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_icon::before {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_icon::after {
  background-color: var(--white);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_title,
.cs_iconbox.cs_style_7:hover .cs_iconbox_subtitle,
.cs_iconbox.cs_style_7:hover .cs_iconbox_btn {
  color: var(--white);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_btn {
  color: var(--white);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_btn:hover {
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_shape_1,
.cs_iconbox.cs_style_7:hover .cs_iconbox_shape_2 {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 40px 20px 1px;
  background-color: #fff;
  gap: 25px;
  height: 190px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 410px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_8 {
    max-width: calc(100% - 65px);
    height: 170px;
    gap: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 350px) {
  .cs_iconbox.cs_style_8 {
    max-width: calc(100% - 54px);
    height: 140px;
    gap: 12px;
  }
}

.cs_iconbox.cs_style_8 .cs_iconbox_icon {
  height: 120px;
  width: 120px;
  border: 7px solid #fff;
  background-color: var(--accent-color);
  margin-left: -60px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_icon {
    height: 100px;
    width: 100px;
    border-width: 4px;
    margin-left: -50px;
    padding: 18px;
  }
}

@media (max-width: 350px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_icon {
    height: 80px;
    width: 80px;
    margin-left: -40px;
    padding: 14px;
  }
}

.cs_iconbox.cs_style_8 .cs_iconbox_title {
  font-size: 35px;
  margin-bottom: 7px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_title {
    font-size: 28px;
  }
}

@media (max-width: 400px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_title {
    font-size: 24px;
  }
}

.cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
  font-size: 20px;
  margin: 0;
  color: var(--heading-color);
}

@media (max-width: 400px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
    font-size: 18px;
  }
}

.cs_iconbox_9_wrapper {
  padding: 30px 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_iconbox_9_wrapper {
    padding: 30px 15px 0;
  }
}

.cs_iconbox.cs_style_9 {
  padding: 30px 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_9 {
    padding: 30px 15px;
  }
}

@media (min-width: 1200px) {
  .cs_iconbox.cs_style_9 {
    padding: 30px 40px 40px;
  }
}

.cs_iconbox.cs_style_9.active {
  border: 1px dashed var(--border-color);
  border-radius: 10px;
}

.cs_iconbox.cs_style_9 .cs_index {
  font-size: 48px;
  font-weight: 700;
  color: var(--border-color);
}

.cs_iconbox.cs_style_9 .cs_iconbox_icon {
  width: 124px;
  height: 124px;
  background-color: rgb(240, 244, 246);
  padding: 10px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: -12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_9 .cs_iconbox_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_9 .cs_iconbox_icon::after {
  content: "";
  width: 104px;
  height: 104px;
  border: 1px dashed var(--border-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_9 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 8px;
}

.cs_iconbox.cs_style_9 .cs_iconbox_shape {
  position: absolute;
  right: 0;
  top: 50px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_9 .cs_iconbox_shape {
    display: none;
  }
}

.cs_iconbox.cs_style_9 .cs_iconbox_shape.cs_left {
  left: 0;
  right: auto;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.cs_iconbox.cs_style_9:hover .cs_iconbox_icon {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_9:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_9:hover .cs_iconbox_icon::after {
  border-color: var(--white);
}

.cs_iconbox.cs_style_10 {
  width: 100%;
  height: 100%;
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10 .cs_iconbox_icon {
  font-size: 28px;
  color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10 .cs_iconbox_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10:hover {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_10:hover .cs_iconbox_icon,
.cs_iconbox.cs_style_10:hover .cs_iconbox_title,
.cs_iconbox.cs_style_10:hover .cs_iconbox_subtitle {
  color: var(--white);
}

.cs_iconbox.cs_style_11 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_11 {
    padding: 30px 15px;
  }
}

.cs_iconbox.cs_style_11 .cs_iconbox_icon {
  width: 65px;
  height: 65px;
  border-radius: 5px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_11 .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_11 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 6px;
}

.cs_iconbox.cs_style_11 .cs_iconbox_subtitle {
  margin-bottom: 13px;
}

.cs_iconbox.cs_style_11 .cs_iconbox_btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_11:hover .cs_iconbox_icon {
  background-color: var(--white);
}

.cs_iconbox.cs_style_11:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.cs_iconbox.cs_style_11:hover .cs_iconbox_btn {
  background-color: var(--accent-color);
  color: var(--white);
}

/*--------------------------------------------------------------
  12. Posts
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
  overflow: hidden;
}

.cs_post.cs_style_1 .cs_post_thumbnail {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: -8px;
}

.cs_post.cs_style_1 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_post.cs_style_1 .cs_post_content {
  border: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 30px 35px 30px 30px;
}

@media (max-width: 575px) {
  .cs_post.cs_style_1 .cs_post_content {
    padding: 40px 20px 30px;
  }
}

.cs_post.cs_style_1 .cs_post_category {
  padding: 5px 20px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  left: 30px;
  top: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1 .cs_post_meta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.cs_post.cs_style_1 .cs_post_meta_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cs_post.cs_style_1 .cs_posted_by {
  width: 65px;
  height: 57px;
  padding: 10px;
  border: 2px solid var(--white);
  background-color: var(--blue-color);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  right: 30px;
  top: -30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1 .cs_post_title {
  font-size: 22px;
  margin-bottom: 10px;
}

.cs_post.cs_style_1 .cs_post_subtitle {
  font-size: 17px;
  margin-bottom: 7px;
}

.cs_post.cs_style_1 .cs_post_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.cs_post.cs_style_1 .cs_post_shape {
  width: 120px;
  height: 100px;
  background-color: var(--accent-color);
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  right: -150px;
  bottom: -100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.cs_post.cs_style_1 .cs_post_shape::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(-30px, -15px);
  transform: translate(-30px, -15px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1:hover .cs_post_shape {
  opacity: 1;
  right: -50px;
  bottom: -75px;
}

.cs_post.cs_style_1:hover .cs_post_category {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_post.cs_style_1:hover .cs_posted_by {
  background-color: var(--accent-color);
}

.cs_post.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media (max-width: 1199px) {
  .cs_post.cs_style_2 br {
    display: none;
  }
}

.cs_post.cs_style_2:not(:last-child) {
  margin-bottom: 30px;
}

.cs_post.cs_style_2 .cs_post_thumb_thumbnail {
  display: inline-block;
  width: 94px;
  height: 78px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_post.cs_style_2 .cs_post_thumb_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_post.cs_style_2 .cs_post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.cs_post.cs_style_2 .cs_post_title {
  font-size: 17px;
  font-weight: 600;
}

.cs_posts_grid.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .cs_posts_grid.cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cs_posts_grid.cs_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*-------------------------------------------
 Blog Details Page Styling
----------------------------------------------*/
.cs_post_details.cs_style_1 .cs_post_thumb_thumbnail {
  margin-bottom: 24px;
}

.cs_post_details.cs_style_1 .cs_post_thumb_thumbnail img {
  width: 100%;
}

.cs_post_details.cs_style_1 .cs_post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  margin-bottom: 17px;
}

.cs_post_details.cs_style_1 .cs_post_meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cs_post_details.cs_style_1 .cs_reply_title {
  font-size: 22px;
}

.cs_post_details.cs_style_1 p {
  margin-bottom: 20px;
}

.cs_comment_body {
  width: 100%;
  max-width: 730px;
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 575px) {
  .cs_comment_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.cs_comment_body:nth-child(even) {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .cs_comment_body:nth-child(even) {
    padding-left: 0;
  }
}

.cs_comment_body h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.cs_comment_body p {
  margin-bottom: 14px;
}

.cs_comment_body .cs_comment_thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
}

.cs_comment_body .cs_comment_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_comment_body .cs_comment_meta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

.cs_comment_body .cs_reply_btn {
  font-size: 17px;
  font-weight: 500;
}

.cs_reply_heading {
  font-size: 40px;
  margin-bottom: 33px;
}

.cs_reply_form .cs_form_field {
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
}

.cs_reply_form select {
  padding: 12.3px 20px;
  font-size: 17px;
  color: var(--body-color);
}

.cs_reply_form .cs_btn.cs_style_1 {
  border: none;
  outline: none;
  padding: 11px 50px;
  margin-top: 20px;
}

/*--------------------------------------------------------------
  13. CTA
----------------------------------------------------------------*/
@media (max-width: 991px) {
  .cs_cta.cs_style_1 {
    padding: 70px 0;
  }
}

.cs_cta.cs_style_1 .cs_cta_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_cta_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px 0;
  }
}

.cs_cta.cs_style_1 .cs_cta_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 70px;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_cta_left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.cs_cta.cs_style_1 .cs_cta_right {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

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

.cs_cta.cs_style_1 .cs_cta_title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.cs_cta.cs_style_1 .cs_cta_subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cs_cta.cs_style_1 .cs_cta_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 200px;
  height: 190px;
  position: relative;
}

.cs_cta.cs_style_1 .cs_cta_thumb::before {
  content: "";
  height: 110px;
  width: 110px;
  background-color: var(--accent-color);
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -20px;
  top: 50%;
  margin-top: -55px;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_cta_thumb::before {
    display: none;
  }
}

.cs_cta.cs_style_1 .cs_cta_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.cs_cta.cs_style_1 .cs_cta_shape {
  width: 300px;
  height: 300px;
  position: absolute;
  right: -140px;
  bottom: -150px;
}

.cs_cta.cs_style_1 .cs_cta_shape::before,
.cs_cta.cs_style_1 .cs_cta_shape::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: absolute;
  top: 0;
  right: 0;
}

.cs_cta.cs_style_1 .cs_cta_shape::before {
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: 1;
  -webkit-animation: zoom-shape1 4s linear infinite;
  animation: zoom-shape1 4s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.cs_cta.cs_style_1 .cs_cta_shape::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: zoom-shape2 4s linear infinite;
  animation: zoom-shape2 4s linear infinite;
  opacity: 0.71;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1.cs_type_1 {
    padding: 0;
  }
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_in {
  padding: 33px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1.cs_type_1 .cs_cta_in {
    padding: 70px 0;
  }
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_left {
  gap: 30px 60px;
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_thumb {
  width: initial;
  height: 125px;
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_thumb:before {
  height: 60px;
  width: 60px;
  margin-top: -32px;
  right: -12px;
}

.cs_cta.cs_style_1.cs_type_1 .container {
  position: relative;
  z-index: 2;
}

.cs_cta.cs_style_1.cs_type_1 .container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  left: -20px;
  top: 0;
  background-color: var(--blue-color);
  border-radius: 100px 0 0 100px;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1.cs_type_1 .container::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0;
  }
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_shape {
  z-index: 3;
}

.cs_cta.cs_style_2 {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: relative;
}

@media (max-width: 500px) {
  .cs_cta.cs_style_2 {
    min-height: 640px;
  }
}

@media (max-width: 380px) {
  .cs_cta.cs_style_2 {
    min-height: 680px;
  }
}

.cs_cta.cs_style_2 .cs_cta_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_2 .cs_cta_btn_wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.cs_cta.cs_style_2 .cs_player_btn {
  width: 43px;
  height: 43px;
  color: var(--accent-color);
}

.cs_cta.cs_style_2 .cs_player_btn:before,
.cs_cta.cs_style_2 .cs_player_btn:after {
  background-color: var(--white);
}

.cs_cta.cs_style_2 .cs_play_btn_text {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.cs_cta.cs_style_2 .cs_play_btn_text:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_cta.cs_style_2 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
}

.cs_cta.cs_style_2 .cs_video_open:hover .cs_play_btn_text {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_cta.cs_style_2 .cs_cta_text {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

.cs_cta.cs_style_2 .cs_section_title {
  margin-bottom: 12px;
}

.cs_cta.cs_style_2 .cs_cta_subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 44px;
}

.cs_cta.cs_style_2 .cs_btn.cs_style_1 {
  margin-top: 1px;
}

.cs_cta.cs_style_2 .cs_cta_shape {
  right: 3%;
  bottom: 8%;
}

@media (max-width: 767px) {
  .cs_cta.cs_style_2 .cs_cta_shape {
    display: none;
  }
}

.cs_cta.cs_style_3 {
  padding: 60px 0 65px;
}

@media (max-width: 767px) {
  .cs_cta.cs_style_3 {
    padding: 40px 0;
  }
}

.cs_cta.cs_style_3 .cs_cta_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 767px) {
  .cs_cta.cs_style_3 .cs_cta_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 24px;
  }
}

.cs_cta.cs_style_3 .cs_cta_info {
  padding-left: 20px;
  position: relative;
}

.cs_cta.cs_style_3 .cs_cta_info::after,
.cs_cta.cs_style_3 .cs_cta_info::before {
  content: "";
  width: 3px;
  height: 100%;
  border-radius: 2px;
  position: absolute;
  left: 0;
}

.cs_cta.cs_style_3 .cs_cta_info::before {
  background-color: var(--white);
  top: 0;
}

.cs_cta.cs_style_3 .cs_cta_info::after {
  height: 50%;
  background-color: var(--blue-color);
  bottom: 0;
}

.cs_cta.cs_style_3 .cs_cta_title {
  font-size: 24px;
  margin-bottom: 10px;
}

.cs_cta.cs_style_3 .cs_color_3:hover {
  background-color: var(--blue-color);
}

@-webkit-keyframes zoom-shape1 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoom-shape1 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes zoom-shape2 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoom-shape2 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
  14. Testimonial
----------------------------------------------------------------*/
.cs_testimonial_area {
  background-repeat: no-repeat;
  background-position: right;
}

.cs_testimonial_content {
  padding-left: 75px;
  position: relative;
  margin-left: 75px;
}

@media (max-width: 991px) {
  .cs_testimonial_content {
    margin-left: 0;
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .cs_testimonial_content {
    padding-left: 0px;
  }
}

.cs_testimonial_content::after {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0px;
}

@media (max-width: 575px) {
  .cs_testimonial_content::after {
    display: none;
  }
}

.cs_testimonial.cs_style_1 {
  max-width: 491px;
}

.cs_testimonial.cs_style_1.cs_type_1 {
  max-width: 100%;
  padding: 35px 35px 40px;
  background-color: #f2f6fd;
}

@media (max-width: 575px) {
  .cs_testimonial.cs_style_1.cs_type_1 {
    padding: 35px 20px;
  }
}

.cs_testimonial.cs_style_1.cs_type_1 .cs_testimonial_subtitle {
  margin-bottom: 30px;
}

.cs_testimonial.cs_style_1 .cs_rating_container {
  margin-bottom: 17px;
}

.cs_testimonial.cs_style_1 .cs_avatar.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .cs_testimonial.cs_style_1 .cs_avatar.cs_style_1 {
    gap: 15px;
  }
}

.cs_testimonial.cs_style_1 .cs_avatar_thumbnail {
  width: 73px;
  height: 73px;
  border-radius: 50%;
}

.cs_testimonial.cs_style_1 .cs_avatar_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.cs_testimonial.cs_style_1 .cs_avatar_title {
  font-size: 22px;
  margin-bottom: 1px;
}

@media (max-width: 575px) {
  .cs_testimonial.cs_style_1 .cs_avatar_title {
    font-size: 20px;
  }
}

.cs_testimonial.cs_style_1 .cs_testimonial_subtitle {
  margin-bottom: 38px;
}

.cs_testimonial.cs_style_1+.cs_testimonial_heading {
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
  15. Counter
----------------------------------------------------------------*/
.odometer-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_counter_area {
  position: relative;
}

.cs_counter_area::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_counter_content {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}

.cs_counter_content .cs_counter_shape {
  width: 100%;
  left: 0;
  top: -20px;
}

.cs_counter_content .cs_counter_shape img {
  display: inline-block;
  width: 100%;
}

.cs_counter_1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 40px;
  position: relative;
  z-index: 1;
  padding: 45px 0;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 {
  position: relative;
  z-index: 2;
  width: 25%;
  padding: 0 45px;
  text-align: center;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_icon {
  width: 74px;
  height: 74px;
  background-color: var(--white);
  border-radius: 50%;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_nmber {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2em;
  margin-bottom: -2px;
  font-family: var(--heading-font);
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

@media (min-width: 575px) {
  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    padding: 0 20px;
  }
}

@media (min-width: 575px) {
  .cs_counter_1_wrap .cs_counter.cs_style_1:not(:nth-child(4n+0))::before {
    content: "";
    height: 57%;
    width: 1px;
    background-color: var(--border-color);
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
  }
}

.cs_counter_1_wrap .cs_counter.cs_style_1:last-child::before {
  display: none;
}

.cs_counter_1_wrap .cs_counter.cs_style_1:hover .cs_counter_icon {
  background-color: var(--accent-color);
}

.cs_counter_1_wrap .cs_counter.cs_style_1:hover .cs_counter_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (max-width: 1199px) {
  .cs_counter_1_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    width: calc(50% - 25px);
  }

  .cs_counter_1_wrap .cs_counter.cs_style_1:nth-child(2)::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .cs_counter_1_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    width: 100%;
    margin: auto;
  }
}

.cs_counter.cs_style_1 {
  gap: 17px;
}

@media (max-width: 575px) {
  .cs_counter.cs_style_1 .cs_counter_nmber {
    min-width: 70px;
  }
}

.cs_counter_2_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
  .cs_counter_2_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .cs_counter_2_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_counter_2_wrap .cs_counter.cs_style_2 {
  position: relative;
  width: 100%;
  padding: 48px 15px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .cs_counter_2_wrap .cs_counter.cs_style_2:nth-child(1) {
    border-right: 0;
    border-radius: 10px 0 0 10px;
  }

  .cs_counter_2_wrap .cs_counter.cs_style_2:nth-child(4) {
    border-radius: 0 10px 10px 0;
  }

  .cs_counter_2_wrap .cs_counter.cs_style_2:nth-child(3) {
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 1199px) {
  .cs_counter_2_wrap .cs_counter.cs_style_2 {
    border-radius: 10px;
  }
}

.cs_counter_2_wrap .cs_counter.cs_style_2::after,
.cs_counter_2_wrap .cs_counter.cs_style_2::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: transparent;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cs_counter_2_wrap .cs_counter.cs_style_2::after {
  top: 0px;
}

.cs_counter_2_wrap .cs_counter.cs_style_2::before {
  bottom: 0px;
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_icon {
  width: 74px;
  height: 74px;
  background-color: var(--blue-color);
  border-radius: 50%;
  margin-bottom: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_nmber {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2em;
  margin-bottom: -2px;
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--heading-color);
}

.cs_counter_2_wrap .cs_counter.cs_style_2:hover .cs_counter_icon {
  background-color: var(--accent-color);
}

.cs_counter_2_wrap .cs_counter.cs_style_2:hover::after,
.cs_counter_2_wrap .cs_counter.cs_style_2:hover::before {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
  16. Casestudie
----------------------------------------------------------------*/
.cs_timeline_wrapper {
  overflow-x: auto;
}

.cs_days_row {
  min-width: 1070px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--border-color);
}

.cs_days_row .cs_day_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_days_row .cs_day_col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.cs_days_row .cs_day_col:hover {
  background-color: var(--blue-color);
  color: var(--white);
}

.cs_content_row {
  min-width: 1070px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--border-color);
  border-top: 0;
}

.cs_content_row .cs_content_col {
  padding: 30px 10px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.cs_content_row .cs_content_col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.cs_content_row .cs_content_col::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/schedule_bg_1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_content_row .cs_content_col.cs_time::after {
  display: none;
}

.cs_content_row .cs_content_col:hover::after {
  opacity: 1;
}

.cs_content_row .cs_content_col:hover .cs_schedule_title,
.cs_content_row .cs_content_col:hover .cs_schedule_time,
.cs_content_row .cs_content_col:hover .cs_doctor_title {
  color: var(--white);
}

.cs_content_row .cs_time {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.cs_content_row .cs_schedule_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.cs_content_row .cs_schedule_wrapper .cs_schedule_title {
  font-size: 20px;
  margin-bottom: 2px;
}

.cs_content_row .cs_schedule_wrapper .cs_schedule_time {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 0px;
}

.cs_content_row .cs_schedule_wrapper .cs_doctor_title {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  17. Team
----------------------------------------------------------------*/
.cs_team.cs_style_1 {
  width: 100%;
  max-width: 320px;
  height: 415px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .cs_team.cs_style_1 {
    height: 360px;
  }
}

@media (max-width: 1199px) {
  .cs_team.cs_style_1 {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .cs_team.cs_style_1 {
    height: 415px;
  }
}

.cs_team.cs_style_1 .cs_team_thumbnail {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs_team.cs_style_1 .cs_team_bio {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_team.cs_style_1 .cs_team_title a {
  font-size: 20px;
  color: var(--white);
}

.cs_team.cs_style_1 .cs_team_subtitle {
  margin-bottom: 10px;
  color: var(--white);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a {
  background-color: var(--white);
  color: var(--blue-color);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:hover.cs_blue_hover {
  background-color: var(--blue-color);
}

.cs_team.cs_style_1 .cs_team_shape {
  width: 330px;
  height: 270px;
  position: absolute;
  top: -250px;
  right: -240px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs_team.cs_style_1 .cs_team_shape.cs_blue_bg {
  width: 160px;
  height: 330px;
  top: -125px;
  left: -100px;
  -webkit-transform: rotate(-48deg);
  transform: rotate(-48deg);
}

.cs_team.cs_style_1:hover .cs_team_thumbnail {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  overflow: hidden;
}

.cs_team.cs_style_1:hover .cs_team_bio {
  position: initial;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cs_team.cs_style_1:hover .cs_team_shape {
  top: -170px;
  right: -110px;
}

.cs_team.cs_style_1:hover .cs_team_shape.cs_blue_bg {
  top: -135px;
  left: -50px;
}

.cs_team_bg_dark {
  width: 100%;
  height: 45%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_team_bg_dark .cs_team_bg_white {
  width: 100%;
  max-width: 1400px;
  height: 170px;
  position: absolute;
  top: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cs_doctors_grid.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .cs_doctors_grid.cs_style_1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .cs_doctors_grid.cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cs_doctors_grid.cs_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*-------------------------------------------
 Doctor Details Page Styling
----------------------------------------------*/
.cs_doctor_details_wrapper {
  width: 100%;
  max-width: 1170px;
}

.cs_doctor_details_wrapper .cs_progress_bar_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 70px;
}

@media (max-width: 767px) {
  .cs_doctor_details_wrapper .cs_progress_bar_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_doctor_details_thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.cs_doctor_details_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape1,
.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape2 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0.5;
  -webkit-animation: scale-shape 5s linear infinite;
  animation: scale-shape 5s linear infinite;
}

.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape1 {
  left: -70px;
  top: -100px;
  z-index: 1;
}

.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape2 {
  left: -100px;
  top: -40px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.cs_doctor_details {
  width: 100%;
  padding-left: 60px;
}

@media (max-width: 991px) {
  .cs_doctor_details {
    max-width: 100%;
  }
}

.cs_doctor_details .cs_doctor_info_header {
  margin-bottom: 17px;
}

.cs_doctor_details .cs_doctor_title {
  font-size: 22px;
  margin-bottom: 3px;
}

.cs_doctor_details .cs_doctor_info_wrapper {
  width: 100%;
  border: 1px solid var(--border-color);
}

@media (max-width: 991px) {
  .cs_doctor_details .cs_doctor_info_wrapper {
    max-width: 100%;
  }
}

.cs_doctor_details .cs_doctor_info_row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 575px) {
  .cs_doctor_details .cs_doctor_info_row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_doctor_details .cs_doctor_info_row:last-child {
  border-bottom: 0;
}

.cs_doctor_details .cs_doctor_info_row::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .cs_doctor_details .cs_doctor_info_row::after {
    display: none;
  }
}

.cs_doctor_details .cs_doctor_info_col {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .cs_doctor_details .cs_doctor_info_col:first-child {
    border-bottom: 1px solid var(--border-color);
  }
}

@-webkit-keyframes scale-shape {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-shape {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
  18. Card
----------------------------------------------------------------*/
.cs_card.cs_style_1 {
  padding-bottom: 1px;
  position: relative;
}

.cs_card.cs_style_1 .cs_card_info_wrapper {
  width: 100%;
  max-width: 426px;
  padding: 30px;
  position: relative;
  margin-top: -70px;
}

@media (max-width: 480px) {
  .cs_card.cs_style_1 .cs_card_info_wrapper {
    padding: 20px 20px 20px 12px;
  }
}

.cs_card.cs_style_1 .cs_card_info_wrapper::after {
  content: "";
  width: 93%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .cs_card.cs_style_1 .cs_card_info_wrapper::after {
    width: 100%;
  }
}

.cs_card.cs_style_1 .cs_card_text {
  width: 100%;
  max-width: 370px;
  padding-left: 20px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .cs_card.cs_style_1 .cs_card_text {
    padding-left: 0;
  }
}

.cs_card.cs_style_1 .cs_card_text::after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 480px) {
  .cs_card.cs_style_1 .cs_card_text::after {
    display: none;
  }
}

.cs_card.cs_style_1 .cs_card_index {
  width: 47px;
  height: 47px;
  background-color: var(--blue-color);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_1 .cs_card_title {
  font-size: 22px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_1 .cs_card_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_1:hover .cs_card_info_wrapper:after {
  background-color: var(--blue-color);
}

.cs_card.cs_style_1:hover .cs_card_title,
.cs_card.cs_style_1:hover .cs_card_subtitle {
  color: var(--white);
}

.cs_card.cs_style_1:hover .cs_card_index {
  background-color: var(--accent-color);
}

.cs_card.cs_style_2 {
  padding: 10px 0 10px 10px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

@media (max-width: 991px) {
  .cs_card.cs_style_2 {
    padding: 10px 10px 40px 10px;
  }
}

.cs_card.cs_style_2 .cs_card_thumb img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_card.cs_style_2 .cs_card_text {
  max-width: 500px;
  margin-left: 30px;
}

.cs_card.cs_style_2 .cs_card_title {
  font-size: 30px;
  margin-bottom: 16px;
}

.cs_card.cs_style_2 .cs_card_subtitle {
  margin-bottom: 28px;
}

.cs_card.cs_style_2 .cs_list.cs_style_1 {
  margin-bottom: 35px;
}

.cs_card.cs_style_2 hr {
  margin-bottom: 40px;
}

.cs_card.cs_style_3 {
  min-height: 800px;
  overflow: hidden;
}

.cs_card.cs_style_3 .cs_solution_content {
  max-width: 550px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_solution_content {
    padding-right: 0;
    max-width: 100%;
  }
}

.cs_card.cs_style_3 .cs_section_heading.cs_style_1 {
  margin-bottom: 22px;
}

.cs_card.cs_style_3 .cs_solution_text {
  margin-bottom: 18px;
}

.cs_card.cs_style_3 .cs_solution_list_wrapper {
  margin-bottom: 42px;
}

.cs_card.cs_style_3 .cs_solution_thumbnail {
  height: 100%;
  min-height: 600px;
  width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_solution_thumbnail {
    width: 100%;
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_card.cs_style_3 .cs_player_btn_2 {
  -webkit-transform: translate(-75px, -60px);
  transform: translate(-75px, -60px);
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_player_btn_2 {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.cs_card.cs_style_3 .cs_player_btn_wrapper {
  width: 150px;
  height: 150px;
  background-color: var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_player_btn_wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background-color: transparent;
  }
}

.cs_card.cs_style_3 .cs_video_open {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.cs_card.cs_style_3 .cs_player_btn_column {
  width: 40px;
  height: 330px;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: absolute;
  left: 50%;
  bottom: 70%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 20px;
  padding: 10px;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_player_btn_column {
    display: none;
  }
}

.cs_card.cs_style_3 .cs_player_btn_column div {
  width: 100%;
  height: 50%;
  background-color: var(--accent-color);
  border-radius: inherit;
  -webkit-animation: thermometer-animation 3s cubic-bezier(0.52, 1.64, 0.37, 0.66) infinite;
  animation: thermometer-animation 3s cubic-bezier(0.52, 1.64, 0.37, 0.66) infinite;
}

.cs_card.cs_style_3 .cs_solution_shape {
  left: 2%;
  bottom: -20px;
  width: 16%;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_solution_shape {
    display: none;
  }
}

.cs_card.cs_style_4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .cs_card.cs_style_4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_card.cs_style_4 .cs_card_thumbnail {
  margin-bottom: -189px;
  margin-left: -50px;
}

@media (max-width: 1399px) {
  .cs_card.cs_style_4 .cs_card_thumbnail {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .cs_card.cs_style_4 .cs_card_thumbnail {
    margin-bottom: 0;
  }
}

.cs_card.cs_style_5 {
  position: relative;
}

@media (max-width: 1500px) {
  .cs_card.cs_style_5 {
    height: 450px;
  }
}

@media (max-width: 1200px) {
  .cs_card.cs_style_5 {
    height: 360px;
  }
}

.cs_card.cs_style_5 .cs_card_thumbnail {
  height: 100%;
  width: 100%;
}

.cs_card.cs_style_5 .cs_card_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_card.cs_style_5 .cs_card_info_wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
  position: absolute;
  left: 50%;
  bottom: 45px;
  -webkit-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_card_info_wrapper {
    width: 100%;
    max-width: calc(100% - 30px);
    bottom: 15px;
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 15px;
  }
}

.cs_card.cs_style_5 .cs_card_info_wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(0, 34, 97, 0.8);
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_card_info_wrapper::before {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}

.cs_card.cs_style_5 .cs_card_text {
  position: relative;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_card_text {
    padding-left: 0;
  }

  .cs_card.cs_style_5 .cs_card_text::after {
    display: none;
  }
}

.cs_card.cs_style_5 .cs_card_text::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_card.cs_style_5 .cs_card_index {
  font-size: 28px;
  position: relative;
  z-index: 2;
}

.cs_card.cs_style_5 .cs_card_title {
  font-size: 22px;
}

.cs_card.cs_style_5 .cs_iconbox_btn {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--white);
  border: 5px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: -30px;
  right: -45px;
  font-size: 30px;
  z-index: 3;
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_iconbox_btn {
    width: 60px;
    height: 60px;
    position: initial;
    font-size: 22px;
    border-width: 3px;
  }
}

.cs_card.cs_style_5:hover .cs_card_info_wrapper {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.cs_card.cs_style_6 {
  position: relative;
  padding: 50px 30px;
  background-color: var(--white);
  border-top: 5px solid var(--accent-color);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cs_card.cs_style_6 .cs_card_shape {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 6px 6px 10px 10px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_6 .cs_card_thumbnail {
  width: 200px;
  height: 200px;
  border: 10px solid var(--white);
  -webkit-filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
  border-radius: 50%;
  margin: -140px 0px 30px;
}

.cs_card.cs_style_6 .cs_card_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_card.cs_style_6 .cs_card_info,
.cs_card.cs_style_6 .cs_card_thumbnail {
  position: relative;
  z-index: 1;
}

.cs_card.cs_style_6 .cs_card_title {
  font-size: 22px;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_6 .cs_card_btn {
  width: 43px;
  height: 43px;
  background-color: var(--blue-color);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 50%;
  font-size: 18px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_6:hover .cs_card_btn {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--white);
}

.cs_card.cs_style_6:hover .cs_card_title,
.cs_card.cs_style_6:hover .cs_card_subtitle {
  color: var(--white);
}

.cs_card.cs_style_6:hover .cs_card_shape {
  opacity: 1;
}

.cs_card.cs_style_7 {
  max-height: 312px;
  background-color: #d8e6f3;
  position: relative;
  padding: 114px 40px 40px 40px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_thumbnail_wrapper {
  width: 257px;
  height: auto;
  position: absolute;
  top: -50px;
  right: -55px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_7 .cs_card_thumbnail_wrapper {
    width: 220px;
    top: -40px;
    right: -35px;
  }
}

.cs_card.cs_style_7 .cs_card_thumbnail {
  width: 257px;
  height: 257px;
  background-color: var(--white);
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_7 .cs_card_thumbnail {
    width: 220px;
    height: 220px;
  }
}

.cs_card.cs_style_7 .cs_thumbnail_shape {
  position: absolute;
  left: -15px;
  bottom: -15px;
}

.cs_card.cs_style_7 .cs_card_index {
  width: 65px;
  height: 65px;
  background-color: var(--white);
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_info_wrapper {
  max-width: 220px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_title {
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 7px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_subtitle {
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_btn {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7:hover {
  padding: 68px 20px 40px 40px;
}

.cs_card.cs_style_7:hover .cs_card_overlay {
  opacity: 1;
}

.cs_card.cs_style_7:hover .cs_card_index {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_card.cs_style_7:hover .cs_card_title,
.cs_card.cs_style_7:hover .cs_card_subtitle {
  color: var(--white);
}

.cs_card.cs_style_7:hover .cs_card_btn {
  visibility: visible;
  opacity: 1;
}

.cs_card.cs_style_7:hover .cs_card_thumbnail_wrapper {
  visibility: hidden;
  opacity: 0;
}

.cs_card.cs_style_8 .cs_card_title {
  font-size: 22px;
  margin-bottom: 15px;
}

.cs_card.cs_style_8 .cs_card_subtitle {
  margin-bottom: 20px;
}

.cs_card.cs_style_8 .cs_progress_bar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

/*--------------------------------------------------------------
  19. Card
----------------------------------------------------------------*/
.cs_tab_links.cs_style_1 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .cs_tab_links.cs_style_1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cs_tab_links.cs_style_1 li {
  border-radius: 5px;
  position: relative;
  background-color: #f1f7fc;
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_tab_links.cs_style_1 li::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
  transform: translate(-50%, -10px) rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .cs_tab_links.cs_style_1 li::after {
    display: none;
  }
}

.cs_tab_links.cs_style_1 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding-right: 40px;
  font-size: 23px;
  color: var(--heading-color);
  height: 69px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_tab_links.cs_style_1 li a {
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li a {
    height: 60px;
  }
}

.cs_tab_links.cs_style_1 li a span {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.cs_tab_links.cs_style_1 li .cs_tab_link_icon {
  width: 70px;
  height: 100px;
  background-color: transparent;
  border-right: 2px solid transparent;
  border-radius: 30px 60px 60px 30px;
  margin-left: -2px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_tab_links.cs_style_1 li .cs_tab_link_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_tab_links.cs_style_1 li.active {
  background-color: var(--blue-color);
}

.cs_tab_links.cs_style_1 li.active a {
  color: var(--white);
}

.cs_tab_links.cs_style_1 li.active::after {
  -webkit-transform: translate(-50%, 14px) rotate(45deg);
  transform: translate(-50%, 14px) rotate(45deg);
  opacity: 1;
}

.cs_tab_links.cs_style_1 li.active .cs_tab_link_icon {
  background-color: var(--accent-color);
  border-color: var(--white);
}

.cs_tab_links.cs_style_1 li.active .cs_tab_link_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li.active .cs_tab_link_icon {
    background-color: inherit;
    border: none;
  }
}

.cs_tab_links.cs_style_1 li:hover {
  background-color: var(--blue-color);
  color: var(--white);
}

.cs_tab_links.cs_style_1 li:hover a {
  color: var(--white);
}

.cs_tab_links.cs_style_1 li:hover::after {
  -webkit-transform: translate(-50%, 10px) rotate(45deg);
  transform: translate(-50%, 10px) rotate(45deg);
  opacity: 1;
}

.cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon {
  background-color: var(--accent-color);
  border-color: var(--white);
}

.cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon {
    background-color: inherit;
    border: none;
  }
}

@media (max-width: 1399px) {
  .cs_tab_links.cs_style_1 {
    gap: 15px;
  }
}

/*--------------------------------
 Tab styling
 -------------------------------*/
.cs_tab {
  display: none;
}

.cs_tab.active {
  display: block;
}

/*# sourceMappingURL=style.css.map */

/*--------------------------------
 Extra css
 -------------------------------*/
.cs_hero.cs_style_1 .cs_hero_text {
  background-color: inherit;
  padding: inherit;
  border-radius: inherit;
  position: inherit;
}

.cs_tab_links.cs_style_1 li a span {
  font-size: 19px;
}

.cs_card.cs_style_2 .cs_card_text {
  max-width: 530px;
}

.cs_card.cs_style_2 .cs_card_title {
  font-size: 27px;
}

.home_form_area .cs_form_field {
  background-color: #fff;
}



/* ========== New  CSS ========== */

/* ── SECTION WRAPPER ── */
#departments {
  padding: 100px 0 0;
  background: #F0F6FF;
  position: relative;
  overflow: hidden;
}

/* decorative blob top right */
#departments::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(55, 138, 221, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#departments::after {
  content: '';
  position: absolute;
  bottom: 200px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


/* ── SECTION HEADER ── */
.sec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 60px;
}


.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #D0E4F7;
  color: #185FA5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.08);
}

.sec-kicker i {
  color: #C8102E;
  font-size: 12px;
}

.sec-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 35px;
  font-weight: 900;
  line-height: 1.1;
  color: #0D1E3A;
  margin-bottom: 0;
}

.sec-title em {
  color: #C8102E;
  font-style: italic;
}

.sec-header-right {
  padding-bottom: 4px;
}

.sec-desc {
  font-size: 15px;
  color: #5A6E8C;
  line-height: 1.8;
  margin-bottom: 24px;
}

.sec-stats {
  display: flex;
  gap: 32px;
}


.stat-num {
  /* font-family: 'Playfair Display', serif; */
  font-size: 30px;
  font-weight: 900;
  color: #185FA5;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #8A9BB5;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── SPECIALTY FEATURED CARDS (top 3) ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.feat-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #fff;
  box-shadow:
    0 4px 16px rgba(24, 95, 165, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s ease;
}

.feat-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 56px rgba(24, 95, 165, 0.16),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.feat-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.feat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.feat-card:hover .feat-card-img img {
  transform: scale(1.08);
}

.feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(13, 30, 58, 0.1) 0%, rgba(13, 30, 58, 0.55) 100%);
}

.feat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #185FA5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.feat-avail {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #22C55E;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.feat-avail::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* top colored accent bar */
.feat-card-top-bar {
  height: 4px;
  width: 100%;
}

.feat-card-body {
  padding: 24px 24px 26px;
}

.feat-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feat-card:hover .feat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feat-card-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 16px;
  font-weight: 700;
  color: #0D1E3A;
  line-height: 1.2;
  margin: 0px;
}

.feat-card-desc {
  font-size: 13.5px;
  color: #5A6E8C;
  line-height: 1.7;
  margin-bottom: 18px;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.ftag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #F0F4FA;
}

.feat-doc-avatars {
  display: flex;
}

.feat-doc-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}

.feat-doc-avatars img:first-child {
  margin-left: 0;
}

.feat-doc-count {
  font-size: 12px;
  color: #8A9BB5;
  margin-left: 10px;
  align-self: center;
  font-weight: 500;
}

.feat-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s;
}

.feat-link-btn:hover {
  gap: 10px;
}

/* ── MINI SERVICE CARDS (bottom row) ── */
.mini-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 90px;
}

.mini-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px 26px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #E4EEF8;
  box-shadow:
    0 2px 12px rgba(24, 95, 165, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.32s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.32s ease, border-color 0.3s;
}

.mini-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 0 0 2px 2px;
}

.mini-card:hover {
  border-color: #B5D4F4;
}

.mini-card:hover::after {
  transform: scaleX(1);
}

.mini-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 48px rgba(24, 95, 165, 0.13),
    0 4px 14px rgba(0, 0, 0, 0.07);
}

.mini-img-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mini-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.mini-card:hover .mini-img-wrap img {
  transform: scale(1.12);
}

.mini-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.35;
}

.mini-icon-float {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mini-card-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 16px;
  font-weight: 700;
  color: #0D1E3A;
  margin-bottom: 8px;
  line-height: 1.3;
}

.mini-card-desc {
  font-size: 12.5px;
  color: #6E82A0;
  line-height: 1.65;
  margin-bottom: 14px;
}

.mini-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ── FULL-WIDTH BOTTOM BAND ── */
.dept-bottom-band {
  background: #0D1E3A;
  margin-top: 22px;
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.band-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.band-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(200, 16, 46, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #E8315A;
}

.band-text strong {
  display: block;
  /* font-family: 'Playfair Display', serif; */
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.band-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.band-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.band-btn-outline {
  padding: 13px 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.band-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.band-btn-solid {
  padding: 13px 28px;
  background: #C8102E;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.4);
}

.band-btn-solid:hover {
  background: #9B0D22;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 16, 46, 0.5);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sec-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec-header-right {
    padding-bottom: 0;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #departments {
    padding: 72px 0 0;
  }

  .sec-title {
    font-size: 28px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .mini-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mini-card {
    padding: 22px 16px 20px;
  }

  .sec-stats {
    gap: 22px;
  }

  .stat-num {
    font-size: 24px;
  }

  .dept-bottom-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 5%;
  }

  .band-right {
    width: 100%;
    flex-direction: column;
  }

  .band-btn-outline,
  .band-btn-solid {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .mini-row {
    grid-template-columns: 1fr;
  }

  .feat-card-img {
    height: 180px;
  }
}



/* ── new team css SECTION ── */
#gsh-specialist-section {
  padding: 100px 5% 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle bg pattern */
#gsh-specialist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  background:
    radial-gradient(ellipse 60% 50% at 80% -10%, rgba(24, 95, 165, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 30%, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* .gsh-container {
  max-width: 1240px;
  margin: 0 auto;
} */

/* HEADER */
.gsh-doc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.gsh-sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F0F6FF;
  border: 1px solid #D0E4F7;
  color: #185FA5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.gsh-sec-kicker i {
  color: #C8102E;
  font-size: 11px;
}

.gsh-sec-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  color: #0D1E3A;
}

.gsh-sec-title em {
  color: #C8102E;
  font-style: italic;
}

.gsh-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.gsh-header-right p {
  font-size: 15px;
  color: #6B7A94;
  line-height: 1.7;
  max-width: 550px;
  text-align: right;
}

.gsh-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0D1E3A;
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(13, 30, 58, 0.2);
}

.gsh-view-all-btn:hover {
  background: #185FA5;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(24, 95, 165, 0.3);
}

/* GRID */
.gsh-doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.gsh-doc-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 20px rgba(13, 30, 58, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.38s cubic-bezier(.22, .68, 0, 1.15), box-shadow 0.38s ease;
  border: 1px solid #EDF2FA;
}

.gsh-doc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(13, 30, 58, 0.14), 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #D0E4F7;
}

.gsh-doc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
  z-index: 2;
  transition: width 0.3s;
}

.gsh-doc-card:hover::before {
  width: 6px;
}

.gsh-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #EDF5FF;
}

.gsh-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  display: block;
}

.gsh-doc-card:hover .gsh-img-wrap img {
  transform: scale(1.06);
}

.gsh-available {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: #16A34A;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.gsh-available-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: gsh-pulse 1.8s infinite;
}

@keyframes gsh-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.gsh-specialty-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s 0.05s;
}

.gsh-doc-card:hover .gsh-specialty-badge {
  opacity: 1;
  transform: translateY(0);
}

.gsh-doc-socials {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(14px);
  transition: all 0.35s;
  z-index: 3;
}

.gsh-doc-card:hover .gsh-doc-socials {
  opacity: 1;
  transform: translateX(0);
}

.gsh-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gsh-doc-body {
  padding: 20px 20px 22px;
  background: #fff;
  position: relative;
}

.gsh-doc-name {
  font-size: 19px;
  font-weight: 700;
  color: #0D1E3A;
  margin-bottom: 4px;
}

.gsh-doc-role {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gsh-doc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.gsh-meta-item {
  background: #F7FAFF;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #EDF2FA;
}

.gsh-meta-label {
  font-size: 10px;
  color: #8A9BB5;
  font-weight: 600;
  text-transform: uppercase;
}

.gsh-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: #0D1E3A;
}

.gsh-book-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

/* TRUST STRIP */
.gsh-trust-strip {
  margin-top: 60px;
  background: linear-gradient(135deg, #0D1E3A 0%, #1a3260 100%);
  border-radius: 22px 22px 0 0;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.gsh-trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  flex: 1;
}

.gsh-trust-stat-item {
  min-width: 0;
}

.gsh-trust-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  display: block;
}

.gsh-trust-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.gsh-trust-btn {
  padding: 13px 26px;
  background: #C8102E;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(200, 16, 46, 0.4);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .gsh-trust-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
  }

  .gsh-trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    width: 100%;
  }

  .gsh-trust-stat-item {
    text-align: center;
  }

  .gsh-trust-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .gsh-trust-strip {
    padding: 24px 16px;
  }

  .gsh-trust-stats {
    gap: 20px 12px;
  }

  .gsh-trust-stat-num {
    font-size: 28px;
  }

  .gsh-trust-stat-label {
    font-size: 11px;
  }
}

.gsh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.gsh-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gsh-doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gsh-doc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gsh-header-right {
    align-items: flex-start;
  }

  .gsh-header-right p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .gsh-doctors-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .gsh-img-wrap {
    height: 340px;
  }
}

/* ═══════════════════════════════════════
   GSH-FAQ — Gauri Shukla Hospital FAQ
   All classes prefixed with gsh-faq-
   to avoid conflicts with existing CSS
═══════════════════════════════════════ */

#gsh-faq-section {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #F0F6FF;
  position: relative;
  overflow: hidden;
}

/* subtle background blobs */
#gsh-faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(24, 95, 165, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#gsh-faq-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── OUTER LAYOUT ── */
.gsh-faq-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 600px;
  position: relative;
  z-index: 1;
}

/* ── LEFT PANEL ── */
.gsh-faq-left {
  background: #0D1E3A;
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* geometric decoration */
.gsh-faq-left::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18) 0%, transparent 65%);
  border-radius: 50%;
}

.gsh-faq-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(55, 138, 221, 0.14) 0%, transparent 65%);
  border-radius: 50%;
}

/* red vertical bar on right edge of left panel */
.gsh-faq-redbar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #C8102E 0%, #E8315A 50%, #C8102E 100%);
}

.gsh-faq-left-inner {
  position: relative;
  z-index: 1;
}

.gsh-faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: #FF6B8A;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.gsh-faq-pill i {
  font-size: 11px;
}

.gsh-faq-left-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gsh-faq-left-title em {
  font-style: italic;
  color: #E8315A;
}

.gsh-faq-left-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* highlight features */
.gsh-faq-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.gsh-faq-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.gsh-faq-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #D4A843;
  flex-shrink: 0;
}

/* CTA button */
.gsh-faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C8102E;
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 8px 26px rgba(200, 16, 46, 0.4);
  width: fit-content;
}

.gsh-faq-cta-btn:hover {
  background: #9B0D22;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 16, 46, 0.5);
}

.gsh-faq-cta-btn i {
  font-size: 18px;
}

/* helpline below button */
.gsh-faq-helpline {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.gsh-faq-helpline a {
  color: #D4A843;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.gsh-faq-helpline a:hover {
  color: #fff;
}

/* ── RIGHT PANEL ── */
.gsh-faq-right {
  background: #F0F6FF;
  padding: 72px 56px 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gsh-faq-right-header {
  margin-bottom: 40px;
}

.gsh-faq-right-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8102E;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.gsh-faq-right-kicker::before,
.gsh-faq-right-kicker::after {
  content: '';
  height: 2px;
  background: #C8102E;
  width: 24px;
  flex-shrink: 0;
}

.gsh-faq-right-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  color: #0D1E3A;
  line-height: 1.15;
}

.gsh-faq-right-title em {
  color: #185FA5;
  font-style: italic;
}

/* ── ACCORDION ── */
.gsh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.gsh-faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E0ECF8;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.gsh-faq-item:hover {
  box-shadow: 0 6px 24px rgba(24, 95, 165, 0.1);
  border-color: #B5D4F4;
}

.gsh-faq-item.gsh-active {
  border-color: #C8102E;
  box-shadow: 0 6px 28px rgba(200, 16, 46, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gsh-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.gsh-faq-q:hover {
  background: #F7FAFF;
}

.gsh-faq-item.gsh-active .gsh-faq-q {
  background: #FFF8F9;
}

.gsh-faq-q-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: #EBF3FF;
  color: #185FA5;
  transition: all 0.3s;
}

.gsh-faq-item.gsh-active .gsh-faq-q-icon {
  background: #FFECEF;
  color: #C8102E;
}

.gsh-faq-q-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0D1E3A;
  flex: 1;
  line-height: 1.4;
}

.gsh-faq-item.gsh-active .gsh-faq-q-text {
  color: #C8102E;
}

.gsh-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F0F6FF;
  border: 1px solid #D0E4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #185FA5;
  flex-shrink: 0;
  transition: all 0.3s;
}

.gsh-faq-item.gsh-active .gsh-faq-toggle {
  background: #C8102E;
  border-color: #C8102E;
  color: #fff;
  transform: rotate(45deg);
}

/* answer panel */
.gsh-faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.gsh-faq-ans-inner {
  padding: 0 24px 22px 78px;
  font-size: 14px;
  color: #5A6E8C;
  line-height: 1.8;
  border-top: 1px solid #F0F4FA;
}

.gsh-faq-ans-inner a {
  color: #185FA5;
  font-weight: 600;
  text-decoration: none;
}

.gsh-faq-ans-inner a:hover {
  text-decoration: underline;
}

/* ── SCROLL REVEAL ── */
.gsh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.gsh-reveal.gsh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gsh-faq-wrap {
    grid-template-columns: 320px 1fr;
  }

  .gsh-faq-left {
    padding: 56px 36px;
  }

  .gsh-faq-right {
    padding: 56px 40px 56px 44px;
  }
}

@media (max-width: 768px) {
  .gsh-faq-wrap {
    grid-template-columns: 1fr;
  }

  .gsh-faq-left {
    padding: 52px 5%;
    order: 2;
  }

  .gsh-faq-left::before {
    display: none;
  }

  .gsh-faq-redbar {
    display: none;
  }

  .gsh-faq-right {
    padding: 56px 5% 40px;
    order: 1;
  }

  .gsh-faq-ans-inner {
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .gsh-faq-q {
    padding: 16px 18px;
    gap: 12px;
  }

  .gsh-faq-q-icon {
    width: 34px;
    height: 34px;
  }

  .gsh-faq-q-text {
    font-size: 14px;
  }

  .gsh-faq-ans-inner {
    padding: 0 18px 18px;
  }
}

/* ================================
   GSH Professional polish (Home)
   Targets: About, Counter, Why Choose, Facilities cards, Appointment form
   ================================ */
:root {
  --gsh-surface: #ffffff;
  --gsh-surface-2: #f6f9fc;
  --gsh-border: rgba(13, 30, 58, 0.12);
  --gsh-shadow-sm: 0 6px 18px rgba(13, 30, 58, 0.08);
  --gsh-shadow-md: 0 16px 44px rgba(13, 30, 58, 0.12);
  --gsh-radius-lg: 18px;
  --gsh-radius-xl: 26px;
}

/* ================================
   GSH Header + Hero (Reference-like)
   ================================ */
.gsh-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 8px 30px rgba(13, 30, 58, 0.06);
}

.gsh-topbar {
  background: var(--blue-color);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.gsh-topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}

.gsh-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gsh-topbar-link {
  color: rgba(255, 255, 255, 0.95);
}

.gsh-topbar-text {
  color: rgba(255, 255, 255, 0.88);
}

.gsh-topbar-left i {
  margin-right: 8px;
  opacity: 0.95;
}

.gsh-topbar-sep {
  opacity: 0.55;
}

.gsh-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gsh-social {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gsh-social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

.gsh-nav {
  background: #fff;
}

.gsh-nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.gsh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.gsh-brand img {
  width: 70px;
  height: 70px;
  /* border-radius: 14px; */
  object-fit: contain;
  /* background: #0b1c36; */
  padding: 8px;
}

.gsh-brand-title {
  font-family: var(--heading-font);
  font-weight: 800;
  color: #0b1c36;
  line-height: 1.1;
  font-size: 16px;
}

.gsh-brand-subtitle {
  font-size: 12px;
  color: rgba(13, 30, 58, 0.65);
  margin-top: 2px;
}

.gsh-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.gsh-menu-link {
  color: rgba(13, 30, 58, 0.82);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

.gsh-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.25s ease;
}

.gsh-menu-link:hover::after,
.gsh-menu-link.is-active::after {
  width: 100%;
}

.gsh-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #22c55e, #14b8a6);
  color: #072016;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(7, 32, 22, 0.08);
  white-space: nowrap;
}

.gsh-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

@media (max-width: 991px) {
  body.gsh-nav-open .gsh-header {
    z-index: 1100 !important;
  }

  .gsh-menu {
    display: none;
    flex: none !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .gsh-menu.active {
    display: block !important;
  }

  .gsh-menu>li {
    display: block;
    width: 100%;
  }

  .gsh-menu-link::after {
    display: none;
  }

  .gsh-brand {
    min-width: 0;
  }

  .gsh-toggle {
    display: block;
  }
}

@media (max-width: 575px) {
  .gsh-topbar {
    display: none;
  }

  .gsh-cta {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ---- Hero ---- */
/* .gsh-hero {
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(46, 166, 247, 0.20), transparent 55%),
    radial-gradient(900px 650px at 80% 70%, rgba(34, 197, 94, 0.12), transparent 55%),
    linear-gradient(180deg, #07224b 0%, #061a38 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}

.gsh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
} */
.gsh-hero {
  /* Reduced opacities to let the hospital building shine through beautifully */
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(46, 166, 247, 0.15), transparent 55%),
    radial-gradient(900px 650px at 80% 70%, rgba(34, 197, 94, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(7, 34, 75, 0.65) 0%, rgba(6, 26, 56, 0.78) 100%),
    url('../img/hospital.png');

  /* Core layout structure remains identical */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}

.gsh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.gsh-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gsh-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  margin-bottom: 18px;
  width: fit-content;
}

.gsh-hero-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.gsh-hero-title {
  color: #fff;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.gsh-hero-title span {
  color: #2ea6f7;
  font-style: italic;
}

.gsh-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 22px;
}

.gsh-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gsh-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
}

.gsh-hero-btn-primary {
  background: linear-gradient(90deg, #2ea6f7, #14b8a6);
  color: #06213f;
  box-shadow: 0 18px 40px rgba(46, 166, 247, 0.18);
}

.gsh-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.gsh-hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.gsh-hero-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #0b6b44;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gsh-hero-card-title {
  font-weight: 900;
  color: #0b1c36;
  font-size: 18px;
  margin-bottom: 3px;
  font-family: var(--heading-font);
}

.gsh-hero-card-subtitle {
  color: rgba(13, 30, 58, 0.68);
  font-size: 13px;
  margin-bottom: 14px;
}

.gsh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gsh-field span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13, 30, 58, 0.72);
  margin-bottom: 6px;
}

.gsh-field input,
.gsh-field select {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(13, 30, 58, 0.14);
  padding: 0 12px;
  background: #f7f9fc;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.gsh-field input:focus,
.gsh-field select:focus {
  border-color: rgba(46, 166, 247, 0.9);
  box-shadow: 0 10px 26px rgba(46, 166, 247, 0.18);
  background: #fff;
}

.gsh-field-full {
  grid-column: 1 / -1;
}

.gsh-submit {
  width: 100%;
  margin-top: 14px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #07224b, #061a38);
  box-shadow: 0 20px 40px rgba(6, 26, 56, 0.22);
  cursor: pointer;
}

.gsh-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.gsh-form-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(13, 30, 58, 0.62);
  text-align: center;
}

.gsh-form-note a {
  color: var(--blue-color);
  font-weight: 800;
}

.gsh-form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.gsh-form-alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.gsh-form-alert-error {
  background: #fef0f3;
  color: #c8102e;
  border: 1px solid #fecdd3;
}

.gsh-form-alert-error a {
  color: #c8102e;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .gsh-hero-title {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .gsh-hero-grid {
    grid-template-columns: 1fr;
  }

  .gsh-hero {
    padding: 48px 0 44px;
  }

  .gsh-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .gsh-hero-title {
    font-size: 34px;
  }

  .gsh-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- About (Providing Quality Healthcare...) ---- */
.cs_about.cs_style_1 {
  background: radial-gradient(800px 500px at 85% 0%, rgba(46, 166, 247, 0.10), transparent 55%),
    radial-gradient(700px 450px at 0% 75%, rgba(0, 34, 97, 0.08), transparent 55%);
}

.cs_about.cs_style_1 .cs_section_subtitle {
  letter-spacing: 0.16em;
  font-weight: 700;
}

.cs_about.cs_style_1 .cs_section_heading.cs_style_1 .cs_section_title {
  letter-spacing: -0.02em;
  font-size: 44px;
  line-height: 1.15;
}

.cs_about.cs_style_1 .cs_about_text {
  color: rgba(13, 30, 58, 0.72);
  font-size: 16px;
  line-height: 1.9;
}

.cs_about.cs_style_1 .cs_iconbox.cs_style_1 {
  border: 1px solid var(--gsh-border);
  border-radius: var(--gsh-radius-lg);
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--gsh-shadow-sm);
  padding: 18px 18px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs_about.cs_style_1 .cs_iconbox.cs_style_1 .cs_iconbox_head {
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom-color: rgba(13, 30, 58, 0.10);
}

.cs_about.cs_style_1 .cs_iconbox.cs_style_1 .cs_iconbox_subtitle {
  max-width: none;
  margin: 0;
  color: rgba(13, 30, 58, 0.72);
}

.cs_about.cs_style_1 .cs_iconbox.cs_style_1:hover {
  transform: translateY(-3px);
  box-shadow: var(--gsh-shadow-md);
}

@media (max-width: 991px) {
  .cs_about.cs_style_1 .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .cs_about.cs_style_1 .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 32px;
  }
}

/* ---- Counter strip (24/7, 10+, 5+, 100%) ---- */
.cs_counter_content {
  border-radius: var(--gsh-radius-xl);
  box-shadow: var(--gsh-shadow-md);
}

.cs_counter_area .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.cs_counter_content {
  border-radius: 0;
}

.cs_counter_area::after {
  display: none;
}

.cs_counter_area.cs_gray_bg {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 60%);
}

.cs_counter_content.cs_blue_bg {
  background: linear-gradient(180deg, #0a2a5c 0%, #051a38 100%);
}

.cs_counter_1_wrap {
  padding: 62px 0;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_icon {
  width: 84px;
  height: 84px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_nmber {
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.cs_counter_1_wrap .cs_counter.cs_style_1 {
  padding: 0 46px;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_title {
  font-size: 18px;
  opacity: 0.9;
}

@media (max-width: 575px) {
  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    padding: 0 18px;
  }
}

@media (min-width: 575px) {
  .cs_counter_1_wrap .cs_counter.cs_style_1:not(:nth-child(4n+0))::before {
    background-color: rgba(255, 255, 255, 0.35);
    opacity: 1;
  }
}

/* ---- Why Choose Us (6 iconboxes) ---- */
.cs_service_wrapper .cs_service_list {
  background: var(--gsh-surface);
  border: 1px solid var(--gsh-border);
  border-radius: var(--gsh-radius-xl);
  box-shadow: var(--gsh-shadow-sm);
  overflow: hidden;
}

.cs_iconbox.cs_style_3 {
  border-right: 0;
  border-bottom: 1px solid rgba(13, 30, 58, 0.10);
  padding: 26px 28px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cs_iconbox.cs_style_3:nth-child(even),
.cs_iconbox.cs_style_3:nth-child(odd) {
  padding-left: 28px;
  padding-right: 28px;
}

.cs_iconbox.cs_style_3:last-child,
.cs_iconbox.cs_style_3:nth-child(5),
.cs_iconbox.cs_style_3:nth-child(6) {
  border-bottom: 0;
}

.cs_iconbox.cs_style_3:hover {
  background: linear-gradient(90deg, rgba(46, 166, 247, 0.10), transparent 70%);
  transform: translateY(-2px);
}

.cs_iconbox.cs_style_3 .cs_iconbox_title {
  letter-spacing: -0.01em;
}

.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
  color: rgba(13, 30, 58, 0.72);
}

@media (max-width: 767px) {
  .cs_service_wrapper .cs_service_list {
    border-radius: var(--gsh-radius-lg);
  }

  .cs_iconbox.cs_style_3 {
    padding: 22px 20px !important;
  }
}

/* ---- Facilities cards grid (cs_card cs_style_1) ---- */
.cs_card.cs_style_1 {
  border-radius: var(--gsh-radius-xl);
  overflow: hidden;
  transform: translateZ(0);
}

.cs_card.cs_style_1 .cs_card_thumbnail img {
  transform: scale(1);
  transition: transform 0.45s ease;
}

.cs_card.cs_style_1:hover .cs_card_thumbnail img {
  transform: scale(1.06);
}

.cs_card.cs_style_1 .cs_card_info_wrapper {
  max-width: none;
  padding: 26px;
}

.cs_card.cs_style_1 .cs_card_info_wrapper::after {
  width: 100%;
  border-radius: var(--gsh-radius-xl);
  box-shadow: var(--gsh-shadow-sm);
}

.cs_card.cs_style_1 .cs_card_text {
  padding-left: 0;
  padding-right: 64px;
  max-width: none;
}

.cs_card.cs_style_1 .cs_card_text::after {
  display: none;
}

.cs_card.cs_style_1 .cs_card_index {
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 999px;
  right: 18px;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 22px rgba(0, 34, 97, 0.20);
}

/* ---- Appointment form (Make An Appointment...) ---- */
.home_form_area .cs_form_field {
  border-radius: 12px;
  border-color: rgba(13, 30, 58, 0.14);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(13, 30, 58, 0.06);
  padding: 12px 16px;
}

.home_form_area .cs_form_field:focus {
  border-color: rgba(46, 166, 247, 0.9);
  box-shadow: 0 10px 26px rgba(46, 166, 247, 0.18);
}

.cs_contact_form.home_form_area .cs_btn.cs_style_1 {
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 18px 38px rgba(0, 34, 97, 0.20);
}

.cs_contact_form.home_form_area .cs_btn.cs_style_1:hover {
  transform: translateY(-1px);
}

/* ================================
   GSH Steps section (Why choose us)
   Reference: "4 easy steps" style
   ================================ */
.gsh-steps-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  padding: 86px 0;
}

.gsh-steps-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.gsh-steps-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46, 166, 247, 0.22);
  background: rgba(46, 166, 247, 0.06);
  color: #0a2a5c;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 11px;
  width: fit-content;
  margin-bottom: 12px;
}

.gsh-steps-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.gsh-steps-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.gsh-steps-desc {
  margin: 0;
  max-width: 520px;
  color: rgba(13, 30, 58, 0.72);
  line-height: 1.9;
  font-size: 15px;
}

.gsh-steps-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.gsh-steps-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(13, 30, 58, 0.10);
  box-shadow: 0 26px 70px rgba(13, 30, 58, 0.12);
  background: #0a2a5c;
  min-height: 420px;
}

.gsh-steps-media-img {
  position: absolute;
  inset: 0;
}

/* .gsh-steps-media-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 42, 92, 0.15), rgba(5, 26, 56, 0.62));
} */

.gsh-steps-media-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 30, 58, 0.10);
  border-radius: 18px;
  padding: 14px 16px;
  width: 170px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.gsh-steps-badge-num {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: #0a2a5c;
}

.gsh-steps-badge-text {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(13, 30, 58, 0.65);
  font-weight: 800;
}

.gsh-steps-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gsh-step-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 30, 58, 0.10);
  border-radius: 18px;
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 14px 34px rgba(13, 30, 58, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gsh-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 166, 247, 0.26);
  box-shadow: 0 22px 50px rgba(13, 30, 58, 0.12);
}

.gsh-step-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 166, 247, 0.08);
  border: 1px solid rgba(46, 166, 247, 0.18);
  flex: none;
}

.gsh-step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.gsh-step-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.gsh-step-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(13, 30, 58, 0.70);
}

@media (max-width: 1199px) {
  .gsh-steps-title {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .gsh-steps-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gsh-steps-grid {
    grid-template-columns: 1fr;
  }

  .gsh-steps-media {
    min-height: 320px;
  }
}

@media (max-width: 575px) {
  .gsh-steps-section {
    padding: 64px 0;
  }

  .gsh-steps-title {
    font-size: 28px;
  }

  .gsh-steps-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================
   GSH Hover Grid (Facilities) - Fixed
   ================================ */
.gsh-hovergrid {
  padding: 86px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.gsh-hovergrid-head {
  text-align: center;
  margin-bottom: 34px;
}

.gsh-hovergrid-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46, 166, 247, 0.22);
  background: rgba(46, 166, 247, 0.06);
  color: #0a2a5c;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 11px;
  width: fit-content;
  margin: 0 auto 12px;
}

.gsh-hovergrid-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.gsh-hovergrid-title {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0a2a5c;
}

.gsh-hovergrid-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

/* Master Tile Node */
.gsh-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 30, 58, 0.12);
  box-shadow: 0 15px 45px rgba(13, 30, 58, 0.08);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gsh-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(13, 30, 58, 0.15);
}

/* FIX 1: Lightened Overlay for Pristine Contrast & Text Visibility */
.gsh-tile-front {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Balanced, dark-neutral vignette that instantly makes all elements pop out readable */
  background: linear-gradient(180deg, rgba(10, 42, 92, 0.45) 0%, rgba(5, 26, 56, 0.65) 100%);
  color: #ffffff !important;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}

/* Explicit color enforcement for all child elements on front view */
.gsh-tile-front a,
.gsh-tile-number,
.gsh-tile-number a,
.gsh-tile-sub,
.gsh-tile-cta-title,
.gsh-tile-loc-title,
.gsh-tile-doc-title,
.gsh-tile-overlay-title {
  color: #ffffff !important;
}

/* FIX 2: Removed solid blue background on hover to preserve the client images */
.gsh-tile-back {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: scale(0.95);
  /* Uses a cleaner transparent dark blur effect over the image instead of blocking it with solid blue */
  background: linear-gradient(180deg, rgba(10, 42, 92, 0.85) 0%, rgba(5, 26, 56, 0.90) 100%);
  backdrop-filter: blur(4px);
  color: #ffffff !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

/* Clean Hover State Actions */
.gsh-tile:hover .gsh-tile-front {
  opacity: 0;
  transform: scale(1.05);
}

.gsh-tile:hover .gsh-tile-back {
  opacity: 1;
  transform: scale(1);
}

/* Structural Alignment Rules */
.gsh-tile-back-title {
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 8px 0;
  color: #ffffff !important;
}

.gsh-tile-back-text {
  margin: 0 0 14px 0;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.5;
  font-size: 13.5px;
}

.gsh-tile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2ea6f7, #14b8a6);
  color: #ffffff !important;
  font-weight: 700;
  border: 0;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(46, 166, 247, 0.3);
}

.gsh-tile-link {
  font-weight: 700;
  color: #2ea6f7 !important;
  font-size: 14px;
}

.gsh-tile-pill {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10.5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gsh-tile-number {
  font-size: 26px;
  font-weight: 800;
  margin: 8px 0;
}

.gsh-tile-sub,
.gsh-tile-cta-hint,
.gsh-tile-loc-sub,
.gsh-tile-doc-sub,
.gsh-tile-overlay-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.4;
}

.gsh-tile-cta-icon,
.gsh-tile-loc-icon,
.gsh-tile-doc-icon {
  font-size: 24px;
  color: #2ea6f7;
  margin-bottom: 8px;
}

.gsh-tile-cta-title,
.gsh-tile-loc-title,
.gsh-tile-doc-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.gsh-tile-overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.gsh-tile-overlay-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Responsive Structural Viewports */
@media (max-width: 991px) {
  .gsh-hovergrid-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
}

@media (max-width: 575px) {
  .gsh-hovergrid-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

/* Emergency big tile */
.gsh-tile-emergency {
  grid-column: 1 / 2;
  /* background: radial-gradient(900px 400px at 30% 20%, rgba(46, 166, 247, 0.22), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); */
}

.gsh-tile-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 42, 92, 0.06);
  color: rgba(13, 30, 58, 0.72);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.gsh-tile-number {
  margin-top: 18px;
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0a2a5c;
}

.gsh-tile-number a {
  color: inherit;
}

.gsh-tile-sub {
  margin-top: 12px;
  max-width: 520px;
  color: rgba(13, 30, 58, 0.70);
  line-height: 1.8;
}

/* CTA tile */
.gsh-tile-cta {
  grid-column: 2 / 3;
  background: linear-gradient(180deg, #0a2a5c 0%, #051a38 100%);
  color: #fff;
  text-decoration: none;
}

.gsh-tile-cta .gsh-tile-front {
  color: #fff;
}

.gsh-tile-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.gsh-tile-cta-title {
  margin-top: 16px;
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
}

.gsh-tile-cta-hint {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* Image tiles */
.gsh-tile-image {
  background-size: cover;
  background-position: center;
}

.gsh-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 26, 56, 0.78) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.gsh-tile-overlay-title {
  font-weight: 900;
  font-family: var(--heading-font);
  font-size: 16px;
  margin-bottom: 2px;
}

.gsh-tile-overlay-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

/* Location tile */
.gsh-tile-location {
  background: linear-gradient(180deg, #081e3f 0%, #061a38 100%);
  color: rgba(255, 255, 255, 0.92);
}

.gsh-tile-location .gsh-tile-front {
  color: rgba(255, 255, 255, 0.92);
}

.gsh-tile-loc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.gsh-tile-loc-title {
  margin-top: 14px;
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
}

.gsh-tile-loc-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

/* Doctors tile */
.gsh-tile-doctors {
  text-decoration: none;
  background: linear-gradient(180deg, #1bb6d7 0%, #1497c7 100%);
  color: #06213f;
}

.gsh-tile-doctors .gsh-tile-front {
  color: #06213f;
}

.gsh-tile-doc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.gsh-tile-doc-title {
  margin-top: 14px;
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
}

.gsh-tile-doc-sub {
  margin-top: 10px;
  color: rgba(6, 33, 63, 0.75);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .gsh-hovergrid-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gsh-tile-emergency,
  .gsh-tile-cta {
    grid-column: auto;
  }

  .gsh-tile-number {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .gsh-hovergrid-title {
    font-size: 28px;
  }

  .gsh-tile-front,
  .gsh-tile-back {
    padding: 18px;
  }
}

/* ================================
   GSH Appointment section (Premium)
   ================================ */
.gsh-appointment {
  background: radial-gradient(900px 520px at 75% 30%, rgba(46, 166, 247, 0.14), transparent 55%),
    radial-gradient(760px 480px at 10% 60%, rgba(34, 197, 94, 0.10), transparent 55%),
    linear-gradient(180deg, #eef5ff 0%, #ffffff 70%);
}

.gsh-appointment .gsh-appointment-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 30, 58, 0.10);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(13, 30, 58, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 28px;
}

.gsh-appointment .cs_section_heading.cs_style_1 .cs_section_title {
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.gsh-appointment-subtext {
  color: rgba(13, 30, 58, 0.72);
  line-height: 1.8;
  font-size: 14px;
  margin-top: 6px;
}

.gsh-appointment .home_form_area .cs_form_field {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 30, 58, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(13, 30, 58, 0.06);
}

.gsh-appointment .home_form_area textarea.cs_form_field {
  min-height: 120px;
}

.gsh-appointment .cs_contact_form.home_form_area .cs_btn.cs_style_1 {
  width: 100%;
  height: 50px;
  border-radius: 16px;
  font-weight: 900;
  background: linear-gradient(90deg, #2ea6f7, #14b8a6);
  color: #06213f;
  box-shadow: 0 22px 46px rgba(46, 166, 247, 0.22);
}

.gsh-appointment .cs_contact_form.home_form_area .cs_btn.cs_style_1:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.gsh-appointment-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 30, 58, 0.16);
  border: 1px solid rgba(13, 30, 58, 0.10);
  min-height: 520px;
  position: relative;
}

.gsh-appointment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 42, 92, 0.08), rgba(5, 26, 56, 0.18));
}

@media (max-width: 991px) {
  .gsh-appointment .gsh-appointment-card {
    padding: 22px;
  }

  .gsh-appointment .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 32px;
  }

  .gsh-appointment-media {
    min-height: 320px;
  }
}

@media (max-width: 575px) {
  .gsh-appointment .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 28px;
  }
}

/* ============================================================
       GSH FOOTER — Reference Style
       Colors: --navy #003366 | --green #7db928 | --red #e02020
    ============================================================ */
:root {
  --navy: #003366;
  --navy-light: #004080;
  --green: #7db928;
  --red: #e02020;
  --red-dark: #b91515;
  --text-dark: #1a2535;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --bg-light: #f7f9fc;
}

/* ─── FOOTER WRAPPER ─── */
.gsh-footer {
  background: #fff;
  border-top: 4px solid var(--navy);
  color: var(--text-dark);
  font-size: 14px;
}

/* thin green accent line below navy top border */
.gsh-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--green);
}

.gsh-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── MAIN GRID ─── */
.gsh-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.gsh-footer-col {
  padding: 48px 28px 40px;
  border-right: 1px solid var(--border);
}

.gsh-footer-col:last-child {
  border-right: none;
}

/* ─── COLUMN HEADINGS ─── */
.gsh-footer-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
  letter-spacing: .01em;
  text-transform: uppercase;
}

/* ─── COL 1 — ABOUT ─── */
.gsh-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gsh-footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  padding: 4px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.gsh-footer-brand-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.2;
}

.gsh-footer-brand-subtitle {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.gsh-footer-about-text {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 13.5px;
}

/* contact list */
.gsh-contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.gsh-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-mid);
  font-size: 13.5px;
  line-height: 1.6;
}

.gsh-contact-list li i {
  color: var(--navy);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
  font-size: 13px;
}

.gsh-contact-list a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.gsh-contact-list a:hover {
  color: var(--navy);
}

/* social icons */
.gsh-footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.gsh-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
  transition: .2s;
}

.gsh-footer-social a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Emergency button */
.gsh-emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.gsh-emergency-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.gsh-emergency-btn i {
  font-size: 14px;
  animation: ring 1.8s infinite;
}

@keyframes ring {

  0%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0);
  }
}

/* ─── COL 2 — DEPARTMENTS ─── */
.gsh-two-col-links {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 6px 12px;
}

.gsh-footer-link {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  transition: color .2s, padding-left .2s;
}

.gsh-footer-link::before {
  content: "›";
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.gsh-footer-link:hover {
  color: var(--navy);
  padding-left: 4px;
}

/* view all link */
.gsh-view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 1px;
  transition: color .2s;
}

.gsh-view-all:hover {
  color: var(--green);
}

/* ─── COL 3 — OUR SPECIALISTS + QUICK LINKS ─── */
.gsh-specialist-list {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-bottom: 24px;
}

.gsh-specialist-list li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.gsh-specialist-list li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.gsh-specialist-list li a:hover {
  color: var(--navy);
}

.gsh-sub-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.gsh-sub-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.gsh-quick-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gsh-quick-links li a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 12.5px;
  text-decoration: none;
  transition: .2s;
}

.gsh-quick-links li a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ─── COL 4 — LOCATION & MAP ─── */
.gsh-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.gsh-map-wrap iframe {
  width: 100%;
  height: 180px;
  display: block;
  border: none;
}

.gsh-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 14px;
}

.gsh-hours-table tr td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-mid);
}

.gsh-hours-table tr:last-child td {
  border-bottom: none;
}

.gsh-hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
}

.gsh-badge-emergency {
  display: inline-block;
  background: #fff3f3;
  color: var(--red);
  border: 1px solid #fecaca;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
}

/* ─── BOTTOM BAR ─── */
.gsh-footer-bottom {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  padding: 14px 0;
}

.gsh-footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gsh-footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: #fff;
}

.gsh-footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gsh-footer-bottom-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.gsh-footer-bottom-links a:hover {
  color: var(--green);
}

.gsh-footer-bottom-links a+a {
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding-left: 20px;
}

/* ─── RESPONSIVE ─── */
@media(max-width: 991px) {
  .gsh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gsh-footer-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 20px;
  }

  .gsh-footer-col:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}

@media(max-width: 575px) {
  .gsh-footer-grid {
    grid-template-columns: 1fr;
  }

  .gsh-footer-col,
  .gsh-footer-col:nth-child(odd) {
    border-right: none;
    padding: 28px 16px;
  }

  .gsh-two-col-links {
    grid-template-columns: 1fr;
  }

  .gsh-footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ================================
   Global Typography System (Site-wide)
   Goal: consistent font + sizes everywhere
   ================================ */
:root {
  --gsh-accent-red: #c8102e;
  --gsh-text: rgba(13, 30, 58, 0.78);
  --gsh-heading: #0b1c36;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gsh-text);
  font-family: var(--body-font);
}

/* Headings: responsive, consistent */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gsh-heading);
  font-family: var(--heading-font);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(34px, 4.1vw, 56px);
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.1vw, 30px);
}

h4 {
  font-size: clamp(18px, 1.8vw, 24px);
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Paragraph + small text consistency */
p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gsh-text);
}

small,
.text-muted {
  font-size: 13px;
  line-height: 1.6;
}

/* Buttons + nav consistent */
.cs_btn,
.gsh-cta,
.gsh-hero-btn,
.gsh-submit,
.gsh-tile-btn {
  font-family: var(--heading-font);
  letter-spacing: 0;
}

/* Heading highlight (red) across site */
.gsh-accent {
  color: var(--gsh-accent-red) !important;
}

.cs_section_title em,
.sec-title em,
.gsh-steps-title em {
  color: var(--gsh-accent-red);
  font-style: italic;
}

/* Common pattern: any emphasized span inside headings */
h1 span,
h2 span,
h3 span {
  color: var(--gsh-accent-red);
}

/* Keep hero title highlight consistent */
.gsh-hero-title span {
  color: var(--gsh-accent-red);
}

/* Reduce “too large” headings in specific components */
.cs_card.cs_style_2 .cs_card_title,
.cs_card.cs_style_3 .cs_section_title,
.cs_section_heading.cs_style_1 .cs_section_title {
  letter-spacing: -0.02em;
}

/* Make section subtitles uniform */
.cs_section_subtitle {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}





:root {
  --navy: #003366;
  --navy-mid: #004a8f;
  --navy-light: #e6f0fb;
  --green: #7db928;
  --green-light: #eef6db;
  --white: #ffffff;
  --bg: #f0f6ff;
  --text: #1a2a3a;
  --muted: #5a7090;
  --border: rgba(0, 51, 102, 0.12);
}



/* ── Section wrapper ───────────────────── */
.hospital-section {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

/* ══════════════════════════════════════════
       MESSAGE CARD
    ══════════════════════════════════════════ */
.msg-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: 0 8px 40px rgba(0, 51, 102, 0.10);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

/* Sidebar */
.msg-sidebar {
  background: var(--navy);
  padding: 50px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.msg-sidebar::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(125, 185, 40, 0.08);
}

.msg-sidebar::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-icon {
  width: 48px;
  height: 48px;
  background: rgba(125, 185, 40, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.sidebar-icon svg {
  width: 24px;
  height: 24px;
}

.msg-sidebar h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 16px;
}

.msg-sidebar p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

.green-line {
  width: 36px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin-top: auto;
}

/* Body */
.msg-body {
  padding: 48px 52px 44px;
  background: #ffffff;
}

.salutation {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.msg-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a4e65;
  /* margin-bottom: 16px; */
}

.msg-body p:last-of-type {
  margin-bottom: 0;
}

.msg-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 51, 102, 0.08);
}

.sig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  flex-shrink: 0;
}

.sig-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.sig-role {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
       INSPIRATION CARD
    ══════════════════════════════════════════ */
.insp-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 51, 102, 0.10);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.insp-header {
  background: var(--navy);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.insp-header::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(125, 185, 40, 0.10);
}

.insp-header-icon {
  width: 44px;
  height: 44px;
  background: rgba(125, 185, 40, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insp-header-icon svg {
  width: 20px;
  height: 20px;
}

.insp-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.insp-header p {
  font-size: 12.5px;
  color: rgb(255 255 255 / 85%);
}

.insp-body {
  display: grid;
  grid-template-columns: 260px 1fr;
}

/* Left profile column */
.insp-profile {
  padding: 36px 28px;
  border-right: 1px solid rgba(0, 51, 102, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #f7faff;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(125, 185, 40, 0.4);
}

.portrait-img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--navy-light);
}

.prof-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}

.prof-rank {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}

.pills {
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
  width: 100%;
  margin-top: 6px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Updated Icon Styling ── */
.gsh-avatar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e6f0fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 51, 102, 0.1);
}

.gsh-signature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--gsh-border-color);
}

/* Right text column */
.insp-text {
  padding: 40px 48px;
}

.warrior-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.insp-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a4e65;
  margin-bottom: 16px;
}

.quote-block {
  margin-top: 20px;
  padding: 18px 22px;
  border-left: 4px solid var(--green);
  background: var(--green-light);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 14.5px;
  color: #3a5a20;
  line-height: 1.75;
}

/* ── Animation ─────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ────────────────────────── */
@media (max-width: 860px) {
  .msg-card {
    grid-template-columns: 1fr;
  }

  .msg-sidebar {
    padding: 36px 28px;
  }

  .msg-body {
    padding: 32px 28px;
  }

  .green-line {
    margin-top: 24px;
  }

  .insp-body {
    grid-template-columns: 1fr;
  }

  .insp-profile {
    border-right: none;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    padding: 28px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pills {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pill {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .insp-text {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  /* body {
    padding: 32px 4%;
  } */

  .insp-header {
    padding: 22px 24px;
  }
}


/* ======== HOMEPAGE SERVICE SECTION CSS =========== */
:root {
  --navy: #003366;
  --navy-mid: #004a8f;
  --navy-light: #ddeaf8;
  --green: #7db928;
  --green-light: #eef6db;
  --white: #ffffff;
  --bg: #f0f6ff;
  --text: #1a2a3a;
  --muted: #5a7090;
  --border: rgba(0, 51, 102, 0.10);
  --shadow: 0 4px 24px rgba(0, 51, 102, 0.09);
  --shadow-hover: 0 12px 40px rgba(0, 51, 102, 0.16);
}



/* ── SECTION ── */
.services-section {
  padding: 80px 0px;
  max-width: 1280px;
  margin: 0 auto
}

/* ── HEADER ── */
.sec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px
}

.sec-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e05252
}

.sec-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  line-height: 1.2;
  color: var(--navy)
}

.sec-header h1 em {
  font-style: italic;
  color: var(--green)
}

.sec-right p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 32px
}

.stats-row {
  display: flex;
  gap: 36px
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px
}

/* ── GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* ── UNIVERSAL CARD — every card identical ── */
.s-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp .55s ease forwards;
}

.s-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover)
}

/* Image — fixed height, same on every card */
.s-card-img {
  position: relative;
  height: 185px;
  overflow: hidden;
  flex-shrink: 0;
}

.s-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

.s-card:hover .s-card-img img {
  transform: scale(1.07)
}

.s-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to top, rgba(0, 25, 55, 0.52), transparent);
}

/* Category label — top-left on image */
.s-img-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  z-index: 2;
}

/* Status badge — bottom-right on image */
.s-status {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #1e7a1e;
  z-index: 2;
}

.s-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0
}

.s-status.red {
  color: #b52020
}

.s-status.red .s-status-dot {
  background: #e05252
}

.s-status.blue {
  color: #185fa5
}

.s-status.blue .s-status-dot {
  background: #378add
}

/* Card body */
.s-card-body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Icon + title */
.s-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.s-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.s-icon svg {
  width: 18px;
  height: 18px
}

.s-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0px;
}

/* Description */
.s-desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1
}

/* Tags */
.s-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
  display: none;
}

.s-tag {
  background: var(--navy-light);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px
}

/* Footer */
.s-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.s-spec {
  font-size: 11.5px;
  color: var(--muted);
  display: none;
}

.s-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}

.s-btn:hover {
  background: var(--navy-mid)
}

/* Staggered animation */
.s-card:nth-child(1) {
  animation-delay: .04s
}

.s-card:nth-child(2) {
  animation-delay: .08s
}

.s-card:nth-child(3) {
  animation-delay: .12s
}

.s-card:nth-child(4) {
  animation-delay: .16s
}

.s-card:nth-child(5) {
  animation-delay: .20s
}

.s-card:nth-child(6) {
  animation-delay: .24s
}

.s-card:nth-child(7) {
  animation-delay: .28s
}

.s-card:nth-child(8) {
  animation-delay: .32s
}

.s-card:nth-child(9) {
  animation-delay: .36s
}

.s-card:nth-child(10) {
  animation-delay: .40s
}

.s-card:nth-child(11) {
  animation-delay: .44s
}

.s-card:nth-child(12) {
  animation-delay: .48s
}

.s-card:nth-child(13) {
  animation-delay: .52s
}

.s-card:nth-child(14) {
  animation-delay: .56s
}

.s-card:nth-child(15) {
  animation-delay: .60s
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Responsive */
@media(max-width:1100px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:760px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sec-header {
    grid-template-columns: 1fr
  }

  .sec-header h1 {
    font-size: 30px
  }
}

@media(max-width:480px) {
  .cards-grid {
    grid-template-columns: 1fr
  }

  .services-section {
    padding: 48px 5%
  }
}


/* ======= ABOUT PAGE CSS ===========  */

/* ========================================================
           4. LEADERSHIP — Portrait with overlaid info
        ======================================================== */

:root {
  --navy: #1B3A6B;
  --navy-dark: #0F2449;
  --navy-light: #2A5298;
  --navy-pale: #EEF3FC;
  --red: #C8102E;
  --red-dark: #A00D24;
  --red-light: #E8315A;
  --red-pale: #FEF0F3;
  --white: #FFFFFF;
  --off-white: #F7F9FD;
  --light: #F2F5FB;
  --gray: #6B7A94;
  --border: #E2E8F3;
  --gold: #C9932A;
}

#leadership {
  padding: 100px 5%;
  background: var(--off-white);
  position: relative;
  overflow: hidden
}

.lead-header {
  margin-bottom: 60px
}

.lead-header h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy-dark);
  line-height: 1.1;
  margin-top: 8px
}

.lead-header h2 em {
  color: var(--red);
  font-style: italic
}

/* Large split portrait layout */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.lead-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  min-height: 480px;
  cursor: pointer
}

.lead-card-img {
  position: absolute;
  inset: 0
}

.lead-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease
}

.lead-card:hover .lead-card-img img {
  transform: scale(1.05)
}

.lead-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 18, 40, 0.94) 0%,
      rgba(10, 18, 40, 0.4) 50%,
      rgba(10, 18, 40, 0.05) 100%);
  transition: all 0.4s
}

.lead-card:hover .lead-card-overlay {
  background: linear-gradient(to top,
      rgba(160, 13, 36, 0.88) 0%,
      rgba(15, 36, 73, 0.3) 50%,
      transparent 100%)
}

.lead-card-top-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 16px;
  z-index: 2
}

.lead-card-top-badge span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff002a;
  font-weight: 700
}

.lead-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  z-index: 2
}

.lead-spec {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px
}

.lead-name {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 34px;
  color: white;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 6px
}

.lead-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px
}

/* Reveal on hover */
.lead-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0
}

.lead-card:hover .lead-quote {
  max-height: 100px;
  opacity: 1
}

.lead-divider {
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 14px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease 0.1s
}

.lead-card:hover .lead-divider {
  transform: scaleX(1)
}

/* ========================================================
           5. INFRASTRUCTURE & FACILITIES — Icon-led horizontal bands
        ======================================================== */
#infra {
  padding: 60px 100px;
  background: white;
  overflow: hidden
}

.infra-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center
}

.infra-left {}

.infra-left h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(32px, 4vw, 50px);
  color: var(--navy-dark);
  line-height: 1.1;
  margin: 10px 0 16px
}

.infra-left h2 em {
  color: var(--red);
  font-style: italic
}

.infra-left p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 36px
}

/* Infra items stacked */
.infra-items {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.infra-item {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default
}

.infra-item-num {
  width: 56px;
  background: var(--navy-pale);
  padding: 20px 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-light);
  flex-shrink: 0;
  transition: all 0.3s
}

.infra-item-icon {
  width: 56px;
  background: var(--off-white);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy-light);
  flex-shrink: 0;
  transition: all 0.3s
}

.infra-item-body {
  flex: 1;
  background: var(--off-white);
  padding: 18px 20px;
  border-left: 1px solid var(--border);
  transition: all 0.3s
}

.infra-item-body h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px
}

.infra-item-body p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5
}

.infra-item:hover .infra-item-num {
  background: var(--red);
  color: white
}

.infra-item:hover .infra-item-icon {
  background: var(--navy-pale);
  color: var(--red)
}

.infra-item:hover .infra-item-body {
  background: var(--navy-pale)
}

.infra-item:hover .infra-item-body h5 {
  color: var(--red)
}

/* Right: image with overlapping accreditation card */
.infra-right {
  position: relative
}

.infra-img-main {
  border-radius: 22px;
  overflow: hidden;
  height: 520px
}

.infra-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* .infra-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15, 36, 73, 0.4) 100%);
  z-index: 1
} */

.infra-float-badge {
  position: absolute;
  top: -20px;
  left: -24px;
  background: var(--red);
  color: white;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 16px 44px rgba(200, 16, 46, 0.3);
  z-index: 2
}

.infra-float-badge .fb-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  line-height: 1
}

.infra-float-badge .fb-lbl {
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px
}

.infra-float-cert {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 44px rgba(27, 58, 107, 0.15);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px
}

.infra-float-cert .cert-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy-light)
}

.infra-float-cert .cert-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0px;
}

.infra-float-cert .cert-text p {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
  margin-bottom: 0px;
  font-weight: 700;
}


.cert-logo {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f6fb;
  border-radius: 16px;
  padding: 8px;
}

.cert-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* --- Mobile Styles (Add This) --- */
@media (max-width: 768px) {
  #infra {
    /* Reduces top/bottom padding to 40px and side padding to 20px */
    padding: 40px 20px;
  }

  .infra-img-main {
    /* Reduces height so it doesn't swallow the whole screen on mobile */
    height: 280px;

    /* Optional but highly recommended: ensures the image scales beautifully 
           without stretching or distorting inside its new height */
    width: 100%;
    object-fit: cover;
  }


  .infra-float-cert {
    padding: 7px 5px;
  }
}



/* ========================================================
           3. CORE VALUES — Staggered alternating layout
        ======================================================== */
#values {
  padding: 100px 5%;
  background: white;
  position: relative;
  overflow: hidden
}

.values-header {
  text-align: center;
  margin-bottom: 72px
}

.values-header h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy-dark);
  line-height: 1.1;
  margin-top: 8px
}

.values-header h2 em {
  color: var(--red);
  font-style: italic
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center
}

.section-eyebrow .line {
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

/* 3-column hex-inspired card grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto
}

.val-card {
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default
}

.val-card.light-bg {
  background: var(--off-white);
  border: 1px solid var(--border)
}

.val-card.navy-bg {
  background: var(--navy-dark)
}

.val-card.red-bg {
  background: var(--red)
}

.val-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 58, 107, 0.14)
}

/* Deco circle in corner */
.val-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.07)
}

.val-card.light-bg::after {
  border-color: rgba(27, 58, 107, 0.06)
}

.val-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px
}

.light-bg .val-icon-box {
  background: var(--navy-pale);
  color: var(--navy-light)
}

.navy-bg .val-icon-box {
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd
}

.red-bg .val-icon-box {
  background: rgba(255, 255, 255, 0.15);
  color: white
}

.val-card:hover .val-icon-box {
  transform: scale(1.1)
}

.val-card h3 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2
}

.light-bg h3 {
  color: var(--navy-dark)
}

.navy-bg h3,
.red-bg h3 {
  color: white
}

.val-card p {
  font-size: 14px;
  line-height: 1.8
}

.light-bg p {
  color: var(--gray)
}

.navy-bg p,
.red-bg p {
  color: rgba(255, 255, 255, 0.6)
}

.val-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.05
}

.light-bg .val-number {
  color: var(--navy-dark)
}

.navy-bg .val-number,
.red-bg .val-number {
  color: white
}


/* ========== RESPONSIVE ========== */
@media(max-width:1100px) {

  .lead-grid {
    grid-template-columns: 1fr
  }

  .infra-wrap {
    grid-template-columns: 1fr;
    gap: 50px
  }


  .ts-inner {
    grid-template-columns: 1fr
  }

  .ts-badges {
    justify-content: flex-start
  }


}

@media(max-width:768px) {


  .ah-float-card {
    display: none
  }

  .values-grid {
    grid-template-columns: 1fr
  }


}

/* Force icons to be visible */
.cs_iconbox_icon i {
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 24px;
  color: #e3010f;
  z-index: 100;
}

/* Ensure the circle shows even if the template tries to hide it */
.cs_iconbox_icon {
  /* background-color: #003366 !important; */
  overflow: visible !important;
}




/* Override the breadcrumb divider */
.breadcrumb-item+.breadcrumb-item::before {
  content: "/" !important;
  /* Changes the link text to a simple slash */
  padding-right: 8px;
  padding-left: 8px;
  color: #64748B;
  /* Matches your slate color theme */
}


/* =====  Hero Section ===== */
.gsh-service-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Unsplash Hospital Image */
  background: url(../img/hospital.png) no-repeat center center/cover;
}

.gsh-service-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 32, 70, 0.85),
      rgba(0, 20, 50, 0.9));
  top: 0;
  left: 0;
}

.gsh-service-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.gsh-service-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.gsh-service-tagline {
  font-size: 18px;
  color: #d0e2ff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.gsh-service-breadcrumb {
  font-size: 14px;
  color: #ffffff;
}

.gsh-service-breadcrumb a {
  color: #7ac142;
  text-decoration: none;
  font-weight: 500;
}

.gsh-service-breadcrumb span {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .gsh-service-title {
    font-size: 28px;
  }

  .gsh-service-tagline {
    font-size: 15px;
  }
}

/* ================== CARDIOLOGY PAGE CSS ==================  */

:root {
  --navy: #0F2040;
  --navy-light: #1B3A6B;
  --crimson: #C8102E;
  --crimson-dark: #A00D24;
  --crimson-pale: #FEF0F3;
  --slate: #64748B;
  --ice: #F8FAFC;
  --ice2: #F1F5FB;
  --border: #E2E8F0;
  --gold: #C9932A;
  --white: #ffffff;
}



/* ── LAYOUT ── */
.main-wrapper {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 48px;
  max-width: 1450px;
  margin: 60px auto 80px;
  padding: 0 40px;
}

/* ── SIDEBAR ── */
.sidebar-sec {
  position: sticky;
  top: 30px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.service-list {
  list-style: none;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 32, 64, 0.07);
  border: 1px solid var(--border);
  padding: 0;
}

.service-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  font-size: 13px;
  transition: all 0.25s;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child a {
  border-bottom: none;
}

.service-list li a .svc-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--ice2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--slate);
  transition: all 0.25s;
  flex-shrink: 0;
}

.service-list li a .svc-name {
  flex: 1;
  margin: 0 10px;
  line-height: 1.3;
}

.service-list li a .arr {
  font-size: 10px;
  opacity: 0.35;
  transition: all 0.25s;
}

.service-list li a:hover,
.service-list li a.active {
  background: var(--navy);
  color: white;
  padding-left: 24px;
}

.service-list li a:hover .svc-ico,
.service-list li a.active .svc-ico {
  background: rgba(200, 16, 46, 0.2);
  color: #ff8fa3;
}

.service-list li a:hover .arr,
.service-list li a.active .arr {
  opacity: 0.7;
  transform: translateX(2px);
}

.quick-info {
  background: var(--navy);
  border-radius: 14px;
  padding: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.quick-info::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.quick-info-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-info-title::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.25);
}

.qi-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.qi-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qi-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ff8fa3;
  flex-shrink: 0;
}

.qi-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.qi-val {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.sidebar-appt {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  border-radius: 14px;
  padding: 24px;
  color: white;
  text-align: center;
}

.sidebar-appt i {
  font-size: 28px;
  opacity: 0.8;
  margin-bottom: 12px;
  display: block;
}

.sidebar-appt h4 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 20px;
  margin-bottom: 6px;
}

.sidebar-appt p {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #fff;
}

.sidebar-appt a {
  display: block;
  background: white;
  color: var(--crimson);
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar-appt a:hover {
  background: var(--navy);
  color: white;
}

/* ── CONTENT AREA ── */
.content-area {
  min-width: 0;
}

.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.sec-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--crimson);
}

.sec-title {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.lead-text {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.85;
  border-left: 3px solid var(--crimson);
  padding-left: 18px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* Image Grid */
.img-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 16px;
  margin-bottom: 44px;
}

.img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 32, 64, 0.12);
}

.img-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-sub img {
  width: 100%;
  height: 202px;
  object-fit: cover;
  border-radius: 14px;
}

/* ── READ MORE / OVERVIEW ── */
.overview-text-full {
  display: none;
}

.overview-text-full.expanded {
  display: block;
}

.read-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 20px;
  background: var(--crimson-pale);
  color: var(--crimson);
  border: 1.5px solid rgba(200, 16, 46, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.read-toggle-btn:hover {
  background: var(--crimson);
  color: white;
}

.read-toggle-btn i {
  font-size: 11px;
  transition: transform 0.3s;
}

.read-toggle-btn.expanded i {
  transform: rotate(180deg);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.stat-box {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-box:hover {
  box-shadow: 0 8px 28px rgba(15, 32, 64, 0.09);
  transform: translateY(-3px);
}

.stat-box .s-icon {
  font-size: 22px;
  color: var(--crimson);
  margin-bottom: 10px;
}

.stat-box .s-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
}

.stat-box .s-num span {
  color: var(--crimson);
}

.stat-box .s-lbl {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── WHY CHOOSE US ── */
.why-choose-section {
  background: linear-gradient(110deg, var(--navy) 0%, #1B3A6B 100%);
  border-radius: 20px;
  padding: 44px 48px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.why-header-left {}

.why-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.why-eyebrow::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--crimson);
}

.why-header h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(26px, 3vw, 40px);
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}

.why-header h2 em {
  color: #ff8fa3;
  font-style: italic;
}

.why-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 420px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.35);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(200, 16, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff8fa3;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.why-card:hover .why-card-icon {
  background: var(--crimson);
  color: white;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Feature Banner */
.feature-banner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  background: white;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(15, 32, 64, 0.07);
  border: 1px solid var(--border);
  margin: 32px 0;
}

.feature-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
}

.check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--crimson);
  font-size: 14px;
}

/* Services cards */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.svc-mini-card {
  padding: 24px 20px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.svc-mini-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.svc-mini-card:hover {
  box-shadow: 0 12px 36px rgba(15, 32, 64, 0.1);
  transform: translateY(-4px);
  border-color: transparent;
}

.svc-mini-card:hover::after {
  transform: scaleX(1);
}

.smc-icon {
  width: 44px;
  height: 44px;
  background: var(--crimson-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--crimson);
  margin-bottom: 14px;
  transition: all 0.3s;
}

.svc-mini-card:hover .smc-icon {
  background: var(--crimson);
  color: white;
}

.smc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.smc-desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.55;
}

/* Updated Conditions Grid - Modern Two-Tier Layout */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Maintains 2-column layout from reference */
  gap: 16px;
  margin: 30px 0;
}

.cond-item {
  display: flex;
  flex-direction: column;
  /* Stacks header above description */
  gap: 8px;
  padding: 20px;
  background: #f8fafc;
  /* Professional soft background */
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: default;
  /* Descriptions make these more informative than just links */
}

.cond-item:hover {
  background: #ffffff;
  border-color: #cf304a;
  /* Highlights with your primary green */
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.05);
  /* Subtle navy-tinted shadow */
  transform: translateY(-3px);
}

/* Header within the item (Icon + Title) */
.cond-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  /* Primary branding color */
}

.cond-header i {
  color: #cf304a;
  /* Green accents for a clinical feel */
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Description Text Styling */
.cond-desc {
  font-size: 13px;
  color: #64748b;
  /* Slate color for readability */
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  /* Contrast against the bold header */
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: 1fr;
    /* Stacks to 1 column on smaller screens */
    gap: 12px;
  }
}

/* ── ADVANCED DIAGNOSTICS TABS ── */
.diag-section {
  margin: 40px 0;
}

.diag-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.diag-tab {
  padding: 12px 22px;
  border-radius: 10px 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid var(--border);
  border-bottom: none;
  background: var(--ice2);
  position: relative;
  bottom: -2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.diag-tab i {
  font-size: 13px;
  color: var(--slate);
  transition: color 0.25s;
}

.diag-tab:hover {
  color: var(--crimson);
  background: white;
}

.diag-tab:hover i {
  color: var(--crimson);
}

.diag-tab.active {
  background: white;
  color: var(--navy);
  border-color: var(--border);
  border-bottom-color: white;
  z-index: 1;
}

.diag-tab.active i {
  color: var(--crimson);
}

.diag-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  border-radius: 2px 2px 0 0;
}

.diag-panel {
  display: none;
  background: white;
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 14px 14px 14px;
  overflow: hidden;
}

.diag-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.diag-panel-info {
  padding: 36px 36px;
}

.diag-panel-info h3 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
}

.diag-panel-info p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
}

.diag-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diag-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.diag-feat-list li i {
  color: var(--crimson);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.diag-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--crimson-pale);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--crimson);
  margin-top: 18px;
}

.diag-badge i {
  font-size: 10px;
}

.diag-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.diag-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.diag-panel:hover .diag-panel-img img {
  transform: scale(1.04);
}

/* Mobile: accordion layout for diagnostics */
@media (max-width: 768px) {
  .diag-section.diag-is-accordion .diag-tabs {
    display: none;
  }

  .diag-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .diag-accordion-item {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: white;
  }

  .diag-accordion-item .diag-tab {
    width: 100%;
    border: none;
    border-radius: 0;
    bottom: 0;
    margin: 0;
    padding: 14px 44px 14px 16px;
    background: var(--ice2);
    color: var(--navy);
    justify-content: flex-start;
    position: relative;
  }

  .diag-accordion-item .diag-tab::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: auto;
    background: none;
    border-radius: 0;
    font-size: 12px;
    color: var(--slate);
    transition: transform 0.25s ease;
  }

  .diag-accordion-item.open .diag-tab {
    background: white;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
  }

  .diag-accordion-item.open .diag-tab::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--crimson);
  }

  .diag-accordion-item .diag-tab.active::after {
    background: none;
  }

  .diag-accordion-item .diag-panel {
    display: none !important;
    border: none;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .diag-accordion-item.open .diag-panel.active {
    display: grid !important;
  }

  .diag-accordion-item .diag-panel-info {
    padding: 20px 18px;
  }

  .diag-accordion-item .diag-panel-info h3 {
    font-size: 20px;
  }

  .diag-accordion-item .diag-panel-img {
    min-height: 200px;
    order: -1;
  }
}

.diag-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 32, 64, 0.8) 0%, transparent 100%);
  padding: 20px 22px;
}

.diag-img-overlay span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Journey steps */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.journey-card {
  padding: 28px 22px;
  background: var(--ice2);
  border-radius: 14px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.journey-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(15, 32, 64, 0.09);
  border-color: transparent;
}

.step-num {
  background: var(--crimson);
  color: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.journey-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.journey-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* Callout */
.callout {
  background: var(--navy);
  padding: 36px 40px;
  border-radius: 18px;
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 36px 0;
  color: white;
}

.callout-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 16, 46, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ff8fa3;
  flex-shrink: 0;
}

.callout h3 {
  /*   /* font-family: 'Cormorant Garamond', serif; */
  */ font-size: 22px;
  color: white;
  margin-bottom: 6px;
}

.callout p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.callout-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.btn-crimson {
  background: var(--crimson);
  color: white;
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-crimson:hover {
  background: var(--crimson-dark);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Video Box */
.video-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  margin: 36px 0;
}

.video-play-wrap {
  position: relative;
  overflow: hidden;
}

.video-play-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}

.video-content {
  padding: 40px;
  color: white;
}

.video-content .vc-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.video-content h3 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 26px;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.video-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.vc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vc-bullets li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Doctor card */
.doctor-card {
  display: flex;
  gap: 20px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(15, 32, 64, 0.06);
  transition: all 0.3s;
}

.doctor-card:hover {
  box-shadow: 0 10px 36px rgba(15, 32, 64, 0.1);
}

.doc-info {
  flex: 1;
  min-width: 0;
}

.doc-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.doc-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--crimson-pale);
}

.doc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-info .doc-spec {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.doc-info .doc-name {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 3px;
}

.doc-info .doc-deg {
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 10px;
}

.doc-info .doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.doc-tag {
  padding: 4px 11px;
  background: var(--ice2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-light);
}

@media (max-width: 768px) {
  .doctor-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .doc-img-wrap {
    width: 84px;
    height: 84px;
    align-self: center;
  }

  .doc-info .doc-name {
    font-size: 20px;
    line-height: 1.25;
  }

  .doc-info .doc-deg {
    font-size: 13px;
    line-height: 1.5;
  }

  .doc-info .doc-tags {
    justify-content: flex-start;
  }

  .doc-actions {
    width: 100%;
  }

  .doc-actions .btn-crimson,
  .doc-actions .btn-outline-white {
    width: 100%;
    white-space: normal !important;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .doctor-card {
    padding: 16px 14px;
    margin: 24px 0;
  }

  .doc-info .doc-name {
    font-size: 18px;
  }
}

/* FAQ */
.faq-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: box-shadow 0.3s;
  overflow: hidden;
}

.faq-card.open {
  box-shadow: 0 6px 24px rgba(15, 32, 64, 0.08);
}

.faq-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  gap: 16px;
}

.faq-header i {
  color: var(--crimson);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-card.open .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px;
  display: none;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
}

/* ── OTHER SPECIALITIES SLIDER ── */
.specialities-section {
  margin: 44px 0 0;
}

.spec-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

.spec-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 10px 0px;
}

.spec-card {
  flex: 0 0 calc(25% - 12px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.spec-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.spec-card:hover {
  box-shadow: 0 12px 36px rgba(15, 32, 64, 0.1);
  transform: translateY(-5px);
  border-color: transparent;
}

.spec-card:hover::after {
  transform: scaleX(1);
}

.spec-card.active-card {
  border-color: var(--crimson);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.12);
}

.spec-card.active-card::after {
  transform: scaleX(1);
}

.spec-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--crimson-pale);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--crimson);
  transition: all 0.3s;
}

.spec-card:hover .spec-icon,
.spec-card.active-card .spec-icon {
  background: var(--crimson);
  color: white;
}

.spec-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.spec-card p {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.5;
}

.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--navy);
  transition: all 0.25s;
}

.slider-btn:hover {
  background: var(--crimson);
  color: white;
  border-color: var(--crimson);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.slider-btn:disabled:hover {
  background: white;
  color: var(--navy);
  border-color: var(--border);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .main-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
    margin-top: 40px;
  }

  .sidebar-sec {
    position: static;
  }

  .img-grid {
    grid-template-columns: 1fr;
  }

  .img-sub {
    flex-direction: row;
  }

  .img-sub img {
    height: 160px;
  }

  .feature-banner {
    grid-template-columns: 1fr;
  }

  .video-box {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .diag-panel.active {
    grid-template-columns: 1fr;
  }

  .diag-panel-img {
    min-height: 220px;
  }

  .spec-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media(max-width:768px) {

  .journey-grid,
  .services-row,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .check-list,
  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .callout {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-choose-section {
    padding: 32px 24px;
  }

  .diag-tabs {
    flex-wrap: wrap;
  }

  .diag-section:not(.diag-is-accordion) .diag-tabs {
    flex-wrap: wrap;
  }

  .spec-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media(max-width:480px) {

  .journey-grid,
  .services-row {
    grid-template-columns: 1fr;
  }

  .img-sub {
    flex-direction: column;
  }

  .spec-card {
    flex: 0 0 calc(100% - 0px);
  }
}



.gsh-cta-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gsh-cta-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gsh-cta-icon i {
  font-size: 30px;
  color: #e11d48;
}

/* .gsh-cta-icon:hover {
  transform: translateY(-5px);
} */

@media(max-width:768px) {
  .gsh-cta-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .gsh-cta-icon {
    width: 60px;
    height: 60px;
  }

  .gsh-cta-icon i {
    font-size: 24px;
  }
}


/* ==================== Doctor Profile Page Styles v2 ==================== */
:root {
  --navy: #0F2040;
  --navy-light: #1B3A6B;
  --navy-deep: #081526;
  --crimson: #C8102E;
  --crimson-dark: #A00D24;
  --crimson-pale: #FEF0F3;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --ice: #F8FAFC;
  --ice2: #F1F5FB;
  --border: #E2E8F0;
  --gold: #C9932A;
  --gold-light: #F0C96A;
  --white: #ffffff;
}

/* ─────────────── PAGE HERO ─────────────── */
.doctors-hero {
  background: linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3560 100%);
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.doctors-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.doctors-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 147, 42, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-deco span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero-deco span:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-deco span:nth-child(2) {
  width: 900px;
  height: 900px;
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-deco span:nth-child(3) {
  width: 1200px;
  height: 1200px;
  top: -500px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  width: 28px;
  background: linear-gradient(90deg, transparent, var(--crimson));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--crimson), transparent);
}

.doctors-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: white;
  margin-bottom: 18px;
  font-weight: 600;
}

.doctors-hero h1 em {
  color: #ff8fa3;
  font-style: italic;
}

.doctors-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.hs-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-item:last-child {
  border-right: none;
}

.hs-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-num span {
  color: #ff8fa3;
}

.hs-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wave-divider {
  display: block;
  margin-top: -2px;
  width: 100%;
  height: 60px;
  fill: var(--ice);
}

/* ─────────────── FILTER BAR ─────────────── */
.filter-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--slate);
  transition: all 0.25s;
}

.pill:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.pill.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ─────────────── MAIN GRID WRAPPER ─────────────── */
.doctors-wrap {
  max-width: 1300px;
  margin: 40px auto 80px;
  padding: 0 40px;
}

/* ─────────────── SECTION LABEL ─────────────── */
.dept-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  margin-top: 10px;
}

.dept-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.dept-label-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dept-label-text i {
  font-size: 11px;
}

/* ─────────────── DOCTORS GRID ─────────────── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

/* ─────────────── DOCTOR CARD ─────────────── */
.doc-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  box-shadow: 0 20px 56px rgba(15, 32, 64, 0.13);
  transform: translateY(-6px);
  border-color: transparent;
}

/* top colour strip */
.doc-card-strip {
  height: 5px;
  background: linear-gradient(90deg, var(--crimson), var(--crimson-dark));
}

/* ── PHOTO AREA — square with slight radius ── */
.doc-photo-area {
  position: relative;
  background: linear-gradient(160deg, var(--ice2) 0%, #e8eef7 100%);
  padding: 0;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: stretch;
}

.doc-photo-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.doc-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.doc-card:hover .doc-photo-frame img {
  transform: scale(1.04);
}

/* overlay gradient at bottom of photo */
.doc-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(15, 32, 64, 0.18), transparent);
  pointer-events: none;
}

/* dept badge on photo */
.dept-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

/* ── DEGREE BADGE STRIP — sits between photo and body ── */
.doc-degree-strip {
  background: var(--navy);
  padding: 10px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.doc-degree-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.6px;
  line-height: 1;
}

/* highlight the primary/top degree */
.doc-degree-pill.primary {
  background: var(--crimson);
  border-color: var(--crimson-dark);
  color: white;
}

.doc-degree-pill.gold {
  background: rgba(201, 147, 42, 0.2);
  border-color: rgba(201, 147, 42, 0.4);
  color: var(--gold-light);
}

/* ── CARD BODY ── */
.doc-body {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doc-spec-tag {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 5px;
}

.doc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 700;
}

.doc-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* highlights */
.doc-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.doc-highlights li {
  font-size: 12px;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.doc-highlights li i {
  color: var(--crimson);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* specialty tags */
.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.doc-tag-pill {
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--ice2);
  font-size: 10px;
  font-weight: 600;
  color: var(--navy-light);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.doc-card:hover .doc-tag-pill {
  background: var(--crimson-pale);
  border-color: rgba(200, 16, 46, 0.15);
  color: var(--crimson-dark);
}

/* ── ACTIONS — Book + View Profile ── */
.doc-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-appt {
  flex: 1;
  padding: 10px 14px;
  background: var(--crimson);
  color: white;
  border-radius: 9px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s;
}

.btn-appt:hover {
  background: var(--crimson-dark);
}

/* View Profile / More Info button */
.btn-view-profile {
  padding: 10px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-view-profile:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.btn-view-profile i {
  font-size: 12px;
}

/* ─────────────── FEATURED CARD (Dr Sumit) ─────────────── */
.doc-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 350px 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.doc-card-featured:hover {
  box-shadow: 0 24px 64px rgba(15, 32, 64, 0.14);
  transform: translateY(-6px);
  border-color: transparent;
}

.feat-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  z-index: 1;
}

/* Photo column — now full square fill */
.feat-photo-col {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.feat-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.doc-card-featured:hover .feat-photo-col img {
  transform: scale(1.04);
}

/* overlay on featured photo */
.feat-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(8, 21, 38, 0.95) 0%, rgba(8, 21, 38, 0.6) 60%, transparent 100%);
  z-index: 2;
}

.feat-spec-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin-bottom: 5px;
}

.feat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: white;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

.feat-aiims-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(200, 16, 46, 0.25);
  border: 1px solid rgba(200, 16, 46, 0.4);
  border-radius: 6px;
}

.feat-aiims-badge i {
  font-size: 10px;
  color: #ff8fa3;
}

.feat-aiims-badge span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ── FEATURED DEGREE ROW — prominent block ── */
.feat-degree-block {
  background: var(--navy);
  padding: 12px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.feat-degree-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  margin-right: 4px;
  flex-shrink: 0;
}

.feat-deg-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  line-height: 1;
}

.feat-deg-pill.primary {
  background: var(--crimson);
  border-color: var(--crimson-dark);
}

.feat-deg-pill.gold {
  background: rgba(201, 147, 42, 0.2);
  border-color: rgba(201, 147, 42, 0.4);
  color: var(--gold-light);
}

/* Info column */
.feat-info-col {
  padding: 40px 30px 36px;
  display: flex;
  flex-direction: column;
}

.feat-info-top {
  margin-bottom: 20px;
}

/* Desktop / Default Padding */
.doctor-card-content {
  padding: 32px 36px 28px;
}

/* Mobile Padding (Screens smaller than 768px) */
@media (max-width: 768px) {
  .doctor-card-content {
    padding: 16px 10px 16px;
    /* Reduced spacing for smaller screens */
  }
}

.feat-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.feat-eyebrow::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}

.feat-full-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.5vw, 34px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--ice2);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.feat-item i {
  font-size: 13px;
  color: var(--crimson);
  margin-top: 1px;
  flex-shrink: 0;
}

.feat-item-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.feat-item-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.feat-tag {
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--crimson-pale);
  border: 1px solid rgba(200, 16, 46, 0.15);
  font-size: 10px;
  font-weight: 600;
  color: var(--crimson-dark);
}

.feat-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ─────────────── DOCTOR MODAL ─────────────── */
.doc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 38, 0.7);
  z-index: 9000;
  padding: 12px;
  padding-top: max(12px, env(safe-area-inset-top));
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(4px);
}

.doc-modal-overlay.open {
  display: block;
}

.doc-modal {
  background: white;
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(8, 21, 38, 0.35);
  animation: modalIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 21, 38, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  touch-action: manipulation;
}

.modal-close:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

.modal-header {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 200px;
  position: relative;
}

.modal-photo {
  height: 200px;
  overflow: hidden;
  background: var(--navy-deep);
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.modal-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  color: rgba(255, 255, 255, 0.2);
  font-size: 56px;
}

.modal-header-info {
  padding: 24px 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-spec {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Degree block inside modal */
.modal-degrees {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal-deg-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.modal-deg-pill.primary {
  background: var(--crimson);
  border-color: var(--crimson-dark);
}

.modal-deg-pill.gold {
  background: rgba(201, 147, 42, 0.2);
  border-color: rgba(201, 147, 42, 0.45);
  color: var(--gold-light);
}

.modal-body {
  padding: 28px 32px 32px;
}

.modal-section-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--crimson);
}

.modal-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-highlights li {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.modal-highlights li i {
  color: var(--crimson);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.modal-tag {
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--ice2);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-light);
}

/* PDF link inside modal */
.modal-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ice2);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.2s;
}

.modal-pdf-link:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.modal-pdf-link i {
  color: var(--crimson);
  font-size: 16px;
}

.modal-pdf-link:hover i {
  color: #ff8fa3;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-btn-appt {
  flex: 1;
  padding: 13px 20px;
  background: var(--crimson);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
}

.modal-btn-appt:hover {
  background: var(--crimson-dark);
}

.modal-btn-call {
  padding: 13px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.modal-btn-call:hover {
  border-color: var(--navy);
  background: var(--ice2);
}

/* ─────────────── UNKNOWN DOCTORS GRID ─────────────── */
.unknown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.unknown-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0 0 24px 0;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.unknown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--border), var(--border));
  transition: background 0.3s;
}

.unknown-card:hover {
  box-shadow: 0 14px 40px rgba(15, 32, 64, 0.1);
  transform: translateY(-5px);
}

.unknown-card:hover::before {
  background: linear-gradient(90deg, var(--crimson), var(--crimson-dark));
}

/* Square photo for unknown cards */
.unknown-photo {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, var(--ice2), #dce6f5);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 18px;
  transition: border-color 0.3s;
}

.unknown-card:hover .unknown-photo {
  border-color: transparent;
}

.unknown-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.unknown-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--slate-light);
}

/* Degree pills in unknown cards */
.unknown-degree-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 14px;
  margin-bottom: 8px;
}

.unknown-deg-pill {
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.unknown-coming {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.unknown-pos-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  padding: 0 14px;
}

.unknown-sub {
  font-size: 11px;
  color: var(--slate-light);
  line-height: 1.5;
  padding: 0 14px;
}

.unknown-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  margin: 12px auto 0;
  transition: background 0.3s;
}

.unknown-card:hover .unknown-dot {
  background: var(--crimson);
}

/* ─────────────── JOIN BANNER ─────────────── */
.join-banner {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.join-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.join-left {
  position: relative;
  z-index: 1;
}

.join-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.join-eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--crimson);
}

.join-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  line-height: 1.15;
  margin-bottom: 10px;
  font-weight: 600;
}

.join-banner h3 em {
  color: #ff8fa3;
  font-style: italic;
}

.join-banner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 480px;
}

.join-right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}

/* ─────────────── REVEAL ANIM ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media(max-width:1100px) {
  .doc-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .modal-header {
    grid-template-columns: 140px 1fr;
  }

  .modal-photo {
    height: 180px;
  }
}

@media(max-width:768px) {
  .doctors-hero {
    padding: 60px 24px 80px;
  }

  .filter-wrap {
    padding: 28px 20px 0;
  }

  .doctors-wrap {
    padding: 0 20px;
    margin-top: 28px;
  }

  .doctors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .unknown-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .join-banner {
    flex-direction: column;
    padding: 32px 28px;
  }

  .modal-header {
    grid-template-columns: 120px 1fr;
  }

  .modal-photo {
    height: 180px;
  }

  .modal-photo img {
    object-fit: cover;
    object-position: center top;
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .modal-header-info {
    text-align: left;
    align-items: flex-start;
    padding: 20px 18px;
  }

  .modal-degrees {
    justify-content: flex-start;
  }

  .feat-info-col {
    padding: 24px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:520px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }

  .unknown-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-direction: column;
    max-width: 200px;
  }

  .hs-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hs-item:last-child {
    border-bottom: none;
  }

  .modal-header {
    grid-template-columns: 1fr;
  }

  .modal-photo {
    height: auto;
    min-height: 220px;
    max-height: 320px;
  }

  .modal-photo img {
    object-fit: contain;
    object-position: center center;
    height: auto;
    min-height: 220px;
    max-height: 320px;
  }

  .modal-header-info {
    padding: 20px 18px;
    text-align: center;
    align-items: center;
  }

  .modal-name {
    font-size: 22px;
  }

  .modal-degrees {
    justify-content: center;
  }

  .modal-body {
    padding: 22px 18px 24px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-btn-appt,
  .modal-btn-call {
    width: 100%;
  }
}



/* ==================== CONTACT US PAGE STYLES ====================  */

/* ─────────────── TOKENS ─────────────── */
:root {
  --navy: #0F2040;
  --navy-light: #1B3A6B;
  --navy-deep: #081526;
  --crimson: #C8102E;
  --crimson-dark: #A00D24;
  --crimson-pale: #FEF0F3;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --ice: #F8FAFC;
  --ice2: #F1F5FB;
  --border: #E2E8F0;
  --gold: #C9932A;
  --white: #ffffff;
}



/* ─────────────── HERO ─────────────── */
.contact-hero {
  background: linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3560 100%);
  padding: 80px 40px 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 147, 42, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-deco span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero-deco span:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-deco span:nth-child(2) {
  width: 800px;
  height: 800px;
  top: -320px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-deco span:nth-child(3) {
  width: 1100px;
  height: 1100px;
  top: -460px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
}

.hero-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--crimson));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--crimson), transparent);
}

.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.05;
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-hero h1 em {
  color: #ff8fa3;
  font-style: italic;
}

.contact-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

/* Quick contact chips in hero */
.hero-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.25s;
}

.hero-chip i {
  font-size: 11px;
  color: #ff8fa3;
}

.hero-chip:hover {
  background: rgba(200, 16, 46, 0.2);
  border-color: rgba(200, 16, 46, 0.4);
  color: white;
}

/* wave */
.wave-divider {
  display: block;
  margin-top: -2px;
  width: 100%;
  height: 60px;
  fill: var(--ice);
}

/* ─────────────── QUICK INFO STRIP ─────────────── */
.info-strip {
  max-width: 1240px;
  margin: -32px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.info-strip-inner {
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(15, 32, 64, 0.12);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.info-block {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  text-decoration: none;
}

.info-block:last-child {
  border-right: none;
}

.info-block:hover {
  background: var(--ice2);
}

.info-block-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--crimson-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--crimson);
  transition: all 0.3s;
}

.info-block:hover .info-block-icon {
  background: var(--crimson);
  color: white;
}

.info-block-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 5px;
}

.info-block-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.info-block-sub {
  font-size: 11px;
  color: var(--slate);
  margin-top: 2px;
}

/* ─────────────── MAIN CONTENT ─────────────── */
.contact-main {
  max-width: 1240px;
  margin: 56px auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}

/* ─────────────── LEFT COL ─────────────── */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Section eyebrow */
.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.sec-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--crimson);
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

/* Map card */
.map-card {
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(15, 32, 64, 0.07);
}

.map-card iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
  filter: grayscale(15%);
}

.map-footer {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.map-footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-footer-info i {
  color: var(--crimson);
  font-size: 14px;
}

.map-footer-info span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.map-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.map-dir-btn:hover {
  background: var(--crimson);
}

.map-dir-btn i {
  font-size: 10px;
}

/* Contact detail cards */
.detail-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-card {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  text-decoration: none;
}

.detail-card:hover {
  box-shadow: 0 8px 28px rgba(15, 32, 64, 0.09);
  transform: translateX(4px);
  border-color: transparent;
}

.detail-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.detail-card:hover .detail-card-icon {
  transform: scale(1.08);
}

.dc-crimson {
  background: var(--crimson-pale);
  color: var(--crimson);
}

.dc-navy {
  background: var(--ice2);
  color: var(--navy-light);
}

.dc-gold {
  background: #FEF9EE;
  color: var(--gold);
}

.detail-card-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.detail-card-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.detail-card-sub {
  font-size: 11px;
  color: var(--slate);
  margin-top: 2px;
}

/* OPD timings card */
.timing-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.timing-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.timing-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.timing-header i {
  font-size: 16px;
  color: #ff8fa3;
}

.timing-header span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.timing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.timing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timing-day {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.timing-day::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}

.timing-time {
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 7px 14px;
  background: rgba(200, 16, 46, 0.2);
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 100px;
}

.timing-badge i {
  font-size: 10px;
  color: #ff8fa3;
}

.timing-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ─────────────── RIGHT COL — FORM ─────────────── */
.form-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(15, 32, 64, 0.09);
  overflow: hidden;
  position: sticky;
  top: 24px;
}

.form-card-header {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.form-card-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.22) 0%, transparent 70%);
  border-radius: 50%;
}

.form-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.fch-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.fch-eyebrow::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--crimson);
}

.form-card-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: white;
  line-height: 1.15;
  margin-bottom: 6px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.form-card-header h2 em {
  color: #ff8fa3;
  font-style: italic;
}

.form-card-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.form-body {
  padding: 32px 36px;
}

/* form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  font-size: 10px;
  color: var(--crimson);
}

.form-group label .req {
  color: var(--crimson);
  font-size: 13px;
  line-height: 1;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--navy);
  background: var(--ice);
  transition: all 0.25s;
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--crimson);
  background: white;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

.form-control::placeholder {
  color: var(--slate-light);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* character count */
.char-count {
  font-size: 10px;
  color: var(--slate-light);
  text-align: right;
  margin-top: -10px;
  margin-bottom: 16px;
}

/* submit btn */
.btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: white;
  border: none;
  border-radius: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.38);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit i {
  font-size: 13px;
}

/* form note */
.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--ice2);
  border-radius: 9px;
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--slate);
  line-height: 1.55;
}

.form-note i {
  color: var(--crimson);
  font-size: 11px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* success message (hidden by default) */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  gap: 14px;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 2px solid #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #059669;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(0.4);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--navy);
}

.form-success p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 320px;
}

/* ─────────────── EMERGENCY STRIP ─────────────── */
.emergency-strip {
  max-width: 1240px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.emergency-inner {
  background: linear-gradient(110deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  border-radius: 18px;
  padding: 32px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.emergency-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.emg-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  animation: pulse-ring 2s infinite;
  position: relative;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.emg-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.emg-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 5px;
}

.emg-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.emg-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: white;
  color: var(--crimson);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--navy);
  color: white;
}

/* ─────────────── REVEAL ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media(max-width:1024px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
  }

  .info-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .info-block:nth-child(2) {
    border-right: none;
  }

  .info-block:nth-child(3) {
    border-top: 1px solid var(--border);
  }
}

@media(max-width:768px) {
  .contact-hero {
    padding: 60px 24px 90px;
  }

  .info-strip {
    padding: 0 20px;
  }

  .contact-main {
    padding: 0 20px;
    margin-top: 44px;
  }

  .emergency-strip {
    padding: 0 20px;
  }

  .emergency-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-body {
    padding: 24px;
  }

  .form-card-header {
    padding: 24px;
  }
}

@media(max-width:520px) {
  .info-strip-inner {
    grid-template-columns: 1fr;
  }

  .info-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .info-block:last-child {
    border-bottom: none;
  }

  .hero-chips {
    flex-direction: column;
    align-items: center;
  }
}


/* Luxury Gallery Parent Setup */
.gsh-luxury-gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Master Fixed Showcase Frame (Protects layout from erratic image uploads) */
.gsh-main-display-box {
  position: relative;
  width: 100%;
  height: 480px;
  /* Force rigid vertical structural footprint */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 44, 122, 0.08);
  background: #f4f7fc;
}

/* Rigid Object-Fit Rules for Primary Display */
.gsh-main-display-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Automatically crop/fill container flawlessly without warping */
  object-position: center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s ease;
}

/* Floating Brand Callout Badge */
.gsh-floating-brand-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #002c7a;
  /* Clean Hospital Corporate Royal Navy */
  border: 4px solid #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
  text-align: center;
  white-space: nowrap;
}

.gsh-badge-inner {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gsh-badge-primary {
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.gsh-badge-secondary {
  color: #ff2c54;
  /* Clinical Crimson Accent Accent */
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Carousel Track Shield */
.gsh-thumb-carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 5px 0;
}

/* Horizontal Track System */
.gsh-thumb-carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}

/* Rigid Thumbnail Node Dimensions */
.gsh-thumb-slide {
  flex: 0 0 calc(25% - 9px);
  /* Flawlessly partitions exactly 4 items across space lines */
  height: 95px;
  /* Fixed anchor thickness */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Auto-Scale Safe Rules for Mini Track Items */
.gsh-thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gsh-thumb-slide:hover img {
  transform: scale(1.08);
}

/* Active Highlight Border Metrics */
.gsh-thumb-slide.active {
  border-color: #ff2c54;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 44, 84, 0.2);
}

/* Responsive Adaptive Viewports */
@media (max-width: 768px) {
  .gsh-main-display-box {
    height: 360px;
  }

  .gsh-thumb-slide {
    flex: 0 0 calc(33.33% - 8px);
    /* Shifts gracefully into 3 view paths on tablets */
  }
}


/* This targets screens smaller than 768px (standard phone/tablet breakpoint) */
@media (max-width: 768px) {
  .filter-wrap {
    display: none;
  }
}