/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Google Fonts
02. All Variable
03. Typography
04. Preloader
05. Spacing
06. General
07. Slider
08. Header
09. Footer
10. Isotope
11. Sidebar
12. Hero
13. CTA
14. Testimonial
15. Service
16. Projects
17. Contact
18. Posts
19. Experience
20. Value
21. Expertise
22. Partner
23. Award
24. Process
25. FAQ Section
--------------------------------------------------------------*/
/*=========================================================
 01. Google Fonts
===========================================================*/
/** Switzer **/
@font-face {
  font-family: "Switzer";
  src: url("../fonts/switzer/Switzer-Variable.woff2") format("woff2"), url("../fonts/switzer/Switzer-Variable.woff") format("woff"), url("../fonts/switzer/Switzer-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
/* Satoshi Regular */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Satoshi Medium */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/* Satoshi Bold */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/*=============================================================
 02. All Variable
===============================================================*/
:root {
  --white-color: #fff;
  --heading-color: #222;
  --body-color: #777;
  --gray-color: #f2f2f2;
  --border-color: #aaa;
  --heading-font: "Switzer", sans-serif;
  --body-font: "Satoshi", sans-serif;
  /* Spacing & Radius Variables from North Island */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/*========================================================
03. Typography
==========================================================*/
body,
html {
  color: var(--body-color);
  background-color: var(--white-color);
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 1.35em;
  font-weight: 400;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  body,
  html {
    font-size: 18px;
    line-height: 1.4em;
  }
}

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

.cs_heading_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;
}

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;
  transition: all 0.3s ease;
}

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

a:hover {
  text-decoration: none;
  color: var(--heading-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 {
  transition: all 0.4s ease;
}

label {
  margin-bottom: 5px;
}

/*======================================================
  04. Preloader
========================================================*/
.cs_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: 99999;
}
.cs_preloader .cs_loading_text {
  color: var(--heading-color);
  letter-spacing: 2px;
  overflow: hidden;
}
.cs_preloader .cs_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
}
.cs_preloader .cs_circle::before, .cs_preloader .cs_circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
}
.cs_preloader .cs_circle::before {
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(225deg, #222 10%, #f2f2f2 90%);
  animation: circularRotation 2s linear infinite;
}
.cs_preloader .cs_circle::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--white-color);
  z-index: 1;
}

@keyframes circularRotation {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*======================================================
  05. Spacing
========================================================*/
.cs_mb_1 {
  margin-bottom: 1px;
}

.cs_mb_2 {
  margin-bottom: 2px;
}

.cs_mb_3 {
  margin-bottom: 3px;
}

.cs_mb_4 {
  margin-bottom: 4px;
}

.cs_mb_5 {
  margin-bottom: 5px;
}

.cs_mb_6 {
  margin-bottom: 6px;
}

.cs_mb_7 {
  margin-bottom: 7px;
}

.cs_mb_8 {
  margin-bottom: 8px;
}

.cs_mb_9 {
  margin-bottom: 9px;
}

.cs_mb_10 {
  margin-bottom: 10px;
}

.cs_mb_11 {
  margin-bottom: 11px;
}

.cs_mb_12 {
  margin-bottom: 12px;
}

.cs_mb_13 {
  margin-bottom: 13px;
}

.cs_mb_14 {
  margin-bottom: 14px;
}

.cs_mb_15 {
  margin-bottom: 15px;
}

.cs_mb_16 {
  margin-bottom: 16px;
}

.cs_mb_17 {
  margin-bottom: 17px;
}

.cs_mb_18 {
  margin-bottom: 18px;
}

.cs_mb_19 {
  margin-bottom: 19px;
}

.cs_mb_20 {
  margin-bottom: 20px;
}

.cs_mb_21 {
  margin-bottom: 21px;
}

.cs_mb_22 {
  margin-bottom: 22px;
}

.cs_mb_23 {
  margin-bottom: 23px;
}

.cs_mb_24 {
  margin-bottom: 24px;
}

.cs_mb_25 {
  margin-bottom: 25px;
}

.cs_mb_26 {
  margin-bottom: 26px;
}

.cs_mb_27 {
  margin-bottom: 27px;
}

.cs_mb_28 {
  margin-bottom: 28px;
}

.cs_mb_29 {
  margin-bottom: 29px;
}

.cs_mb_30 {
  margin-bottom: 30px;
}

.cs_mb_31 {
  margin-bottom: 31px;
}

.cs_mb_32 {
  margin-bottom: 32px;
}

.cs_mb_33 {
  margin-bottom: 33px;
}

.cs_mb_34 {
  margin-bottom: 34px;
}

.cs_mb_35 {
  margin-bottom: 35px;
}

.cs_mb_36 {
  margin-bottom: 36px;
}

.cs_mb_37 {
  margin-bottom: 37px;
}

.cs_mb_38 {
  margin-bottom: 38px;
}

.cs_mb_39 {
  margin-bottom: 39px;
}

.cs_mb_40 {
  margin-bottom: 40px;
}

.cs_mb_41 {
  margin-bottom: 41px;
}

.cs_mb_42 {
  margin-bottom: 42px;
}

.cs_mb_43 {
  margin-bottom: 43px;
}

.cs_mb_44 {
  margin-bottom: 44px;
}

.cs_mb_45 {
  margin-bottom: 45px;
}

.cs_mb_46 {
  margin-bottom: 46px;
}

.cs_mb_47 {
  margin-bottom: 47px;
}

.cs_mb_48 {
  margin-bottom: 48px;
}

.cs_mb_49 {
  margin-bottom: 49px;
}

.cs_mb_50 {
  margin-bottom: 50px;
}

.cs_mb_51 {
  margin-bottom: 51px;
}

.cs_mb_52 {
  margin-bottom: 52px;
}

.cs_mb_53 {
  margin-bottom: 53px;
}

.cs_mb_54 {
  margin-bottom: 54px;
}

.cs_mb_55 {
  margin-bottom: 55px;
}

.cs_mb_56 {
  margin-bottom: 56px;
}

.cs_mb_57 {
  margin-bottom: 57px;
}

.cs_mb_58 {
  margin-bottom: 58px;
}

.cs_mb_59 {
  margin-bottom: 59px;
}

.cs_mb_60 {
  margin-bottom: 60px;
}

@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_mb_lg_1 {
    margin-bottom: 1px;
  }
  .cs_mb_lg_2 {
    margin-bottom: 2px;
  }
  .cs_mb_lg_3 {
    margin-bottom: 3px;
  }
  .cs_mb_lg_4 {
    margin-bottom: 4px;
  }
  .cs_mb_lg_5 {
    margin-bottom: 5px;
  }
  .cs_mb_lg_6 {
    margin-bottom: 6px;
  }
  .cs_mb_lg_7 {
    margin-bottom: 7px;
  }
  .cs_mb_lg_8 {
    margin-bottom: 8px;
  }
  .cs_mb_lg_9 {
    margin-bottom: 9px;
  }
  .cs_mb_lg_10 {
    margin-bottom: 10px;
  }
  .cs_mb_lg_11 {
    margin-bottom: 11px;
  }
  .cs_mb_lg_12 {
    margin-bottom: 12px;
  }
  .cs_mb_lg_13 {
    margin-bottom: 13px;
  }
  .cs_mb_lg_14 {
    margin-bottom: 14px;
  }
  .cs_mb_lg_15 {
    margin-bottom: 15px;
  }
  .cs_mb_lg_16 {
    margin-bottom: 16px;
  }
  .cs_mb_lg_17 {
    margin-bottom: 17px;
  }
  .cs_mb_lg_18 {
    margin-bottom: 18px;
  }
  .cs_mb_lg_19 {
    margin-bottom: 19px;
  }
  .cs_mb_lg_20 {
    margin-bottom: 20px;
  }
  .cs_mb_lg_21 {
    margin-bottom: 21px;
  }
  .cs_mb_lg_22 {
    margin-bottom: 22px;
  }
  .cs_mb_lg_23 {
    margin-bottom: 23px;
  }
  .cs_mb_lg_24 {
    margin-bottom: 24px;
  }
  .cs_mb_lg_25 {
    margin-bottom: 25px;
  }
  .cs_mb_lg_26 {
    margin-bottom: 26px;
  }
  .cs_mb_lg_27 {
    margin-bottom: 27px;
  }
  .cs_mb_lg_28 {
    margin-bottom: 28px;
  }
  .cs_mb_lg_29 {
    margin-bottom: 29px;
  }
  .cs_mb_lg_30 {
    margin-bottom: 30px;
  }
  .cs_mb_lg_31 {
    margin-bottom: 31px;
  }
  .cs_mb_lg_32 {
    margin-bottom: 32px;
  }
  .cs_mb_lg_33 {
    margin-bottom: 33px;
  }
  .cs_mb_lg_34 {
    margin-bottom: 34px;
  }
  .cs_mb_lg_35 {
    margin-bottom: 35px;
  }
  .cs_mb_lg_36 {
    margin-bottom: 36px;
  }
  .cs_mb_lg_37 {
    margin-bottom: 37px;
  }
  .cs_mb_lg_38 {
    margin-bottom: 38px;
  }
  .cs_mb_lg_39 {
    margin-bottom: 39px;
  }
  .cs_mb_lg_40 {
    margin-bottom: 40px;
  }
  .cs_mb_lg_41 {
    margin-bottom: 41px;
  }
  .cs_mb_lg_42 {
    margin-bottom: 42px;
  }
  .cs_mb_lg_43 {
    margin-bottom: 43px;
  }
  .cs_mb_lg_44 {
    margin-bottom: 44px;
  }
  .cs_mb_lg_45 {
    margin-bottom: 45px;
  }
  .cs_mb_lg_46 {
    margin-bottom: 46px;
  }
  .cs_mb_lg_47 {
    margin-bottom: 47px;
  }
  .cs_mb_lg_48 {
    margin-bottom: 48px;
  }
  .cs_mb_lg_49 {
    margin-bottom: 49px;
  }
  .cs_mb_lg_50 {
    margin-bottom: 50px;
  }
  .cs_mb_lg_51 {
    margin-bottom: 51px;
  }
  .cs_mb_lg_52 {
    margin-bottom: 52px;
  }
  .cs_mb_lg_53 {
    margin-bottom: 53px;
  }
  .cs_mb_lg_54 {
    margin-bottom: 54px;
  }
  .cs_mb_lg_55 {
    margin-bottom: 55px;
  }
  .cs_mb_lg_56 {
    margin-bottom: 56px;
  }
  .cs_mb_lg_57 {
    margin-bottom: 57px;
  }
  .cs_mb_lg_58 {
    margin-bottom: 58px;
  }
  .cs_mb_lg_59 {
    margin-bottom: 59px;
  }
  .cs_mb_lg_60 {
    margin-bottom: 60px;
  }
  .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;
  }
}

/*============================================================
  06. General
==============================================================*/
@media (min-width: 1400px) {
  .container {
    max-width: 1364px;
  }
  .container-fluid {
    max-width: 1440px;
  }
}
.cs_fs_16 {
  font-size: 16px;
  line-height: 1.5em;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.33em;
}

.cs_fs_20 {
  font-size: 20px;
  line-height: 1.35em;
}

.cs_fs_24 {
  font-size: 24px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .cs_fs_24 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .cs_fs_24 {
    font-size: 20px;
  }
}

.cs_fs_28 {
  font-size: 28px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .cs_fs_28 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .cs_fs_28 {
    font-size: 22px;
  }
}

.cs_fs_32 {
  font-size: 32px;
  line-height: 1.31em;
}
@media (max-width: 1400px) {
  .cs_fs_32 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_32 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .cs_fs_32 {
    font-size: 22px;
  }
}

.cs_fs_42 {
  font-size: 42px;
  line-height: 1.34em;
}
@media (max-width: 1400px) {
  .cs_fs_42 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_42 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .cs_fs_42 {
    font-size: 24px;
  }
}

.cs_fs_48 {
  font-size: 48px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .cs_fs_48 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_48 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .cs_fs_48 {
    font-size: 26px;
  }
}

.cs_fs_86 {
  font-size: 86px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .cs_fs_86 {
    font-size: 72px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_86 {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .cs_fs_86 {
    font-size: 48px;
  }
}

.cs_fs_90 {
  font-size: 90px;
  line-height: 1.32em;
}
@media (max-width: 1400px) {
  .cs_fs_90 {
    font-size: 72px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_90 {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .cs_fs_90 {
    font-size: 48px;
  }
}

.cs_fs_96 {
  font-size: 96px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .cs_fs_96 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_96 {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .cs_fs_96 {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .cs_fs_96 {
    font-size: 42px;
  }
  .cs_fs_96 br {
    display: none;
  }
}

.cs_fs_132 {
  font-size: 132px;
  line-height: 1.32em;
}
@media (max-width: 1400px) {
  .cs_fs_132 {
    font-size: 110px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_132 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .cs_fs_132 {
    font-size: 70px;
    line-height: 1.2em;
  }
}
@media (max-width: 575px) {
  .cs_fs_132 {
    font-size: 56px;
  }
}

.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_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_radius_20 {
  border-radius: 20px;
}

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

.cs_opacity_1 {
  opacity: 0.1;
}

.cs_opacity_2 {
  opacity: 0.2;
}

.cs_opacity_3 {
  opacity: 0.3;
}

.cs_opacity_4 {
  opacity: 0.4;
}

.cs_opacity_5 {
  opacity: 0.5;
}

.cs_opacity_6 {
  opacity: 0.6;
}

.cs_opacity_7 {
  opacity: 0.7;
}

.cs_opacity_7_5 {
  opacity: 0.75;
}

.cs_opacity_8 {
  opacity: 0.8;
}

.cs_opacity_9 {
  opacity: 0.9;
}

.cs_gap_y_20 {
  gap: 20px 0;
}

.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;
}
@media (max-width: 991px) {
  .cs_gap_y_50 {
    gap: 40px 0;
  }
}

.cs_gap_y_60 {
  gap: 60px 0;
}

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_80 {
    gap: 30px 0;
  }
}

.cs_gap_y_100 {
  gap: 100px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_100 {
    gap: 50px 0;
  }
}

.cs_gap_x_36 {
  margin-left: -18px;
  margin-right: -18px;
}
.cs_gap_x_36 > * {
  padding-left: 18px;
  padding-right: 18px;
}

.cs_gap_x_50 {
  margin-left: -25px;
  margin-right: -25px;
}
.cs_gap_x_50 > * {
  padding-left: 25px;
  padding-right: 25px;
}

.cs_gap_x_64 {
  margin-left: -32px;
  margin-right: -32px;
}
.cs_gap_x_64 > * {
  padding-left: 32px;
  padding-right: 32px;
}

.cs_gap_x_72 {
  margin-left: -36px;
  margin-right: -36px;
}
.cs_gap_x_72 > * {
  padding-left: 36px;
  padding-right: 36px;
}

.cs_gap_x_82 {
  margin-left: -41px;
  margin-right: -41px;
}
.cs_gap_x_82 > * {
  padding-left: 41px;
  padding-right: 41px;
}

@media (max-width: 1400px) {
  .cs_gap_x_82 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .cs_gap_x_82 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}
hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--heading-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_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cs_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.cs_gray_color {
  color: var(--gray-color);
}

.cs_border_color {
  color: var(--border-color);
}

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

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

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

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

/* Start Accordion */
.cs_accordians_style_1 .cs_accordian_title {
  margin-bottom: 0;
}
.cs_accordians_style_1 .cs_accordian_body {
  margin-top: -8px;
  padding-bottom: 30px;
}
.cs_accordians_style_1 .cs_accordian_head {
  padding: 30px 0px;
  position: relative;
  cursor: pointer;
}
.cs_accordians_style_1 .cs_accordian_toggle {
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  height: 33px;
  width: 33px;
  transform: translateY(-50%);
}
.cs_accordians_style_1 .cs_accordian_toggle::before, .cs_accordians_style_1 .cs_accordian_toggle::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--heading-color);
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.cs_accordians_style_1 .cs_accordian_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(1);
}
.cs_accordians_style_1 .cs_accordian {
  border-bottom: 1px solid var(--border-color);
}
.cs_accordians_style_1 .cs_accordian.active .cs_accordian_head {
  pointer-events: auto;
}
.cs_accordians_style_1 .cs_accordian.active .cs_accordian_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}
@media (max-width: 1400px) {
  .cs_accordians_style_1 {
    margin-left: 20px;
  }
  .cs_accordians_style_1 .cs_accordian_toggle {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 1199px) {
  .cs_accordians_style_1 {
    margin-left: 0px;
  }
}
@media (max-width: 991px) {
  .cs_accordians_style_1 .cs_accordian_head {
    padding: 15px 25px 15px 0px;
  }
  .cs_accordians_style_1 .cs_accordian_toggle {
    height: 16px;
    width: 16px;
  }
}

.cs_accordian_border {
  border: 1px solid var(--border-color);
}

/* End Accordion */
.cs_custom_pointer_wrap {
  position: relative;
}
.cs_custom_pointer_wrap .cs_mouse_point {
  position: absolute;
  z-index: 10;
  width: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform ease 0.4s, opacity ease 0.4s;
  pointer-events: none;
}
.cs_custom_pointer_wrap:hover .cs_mouse_point {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cs_btn_style_1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  outline: none;
  border: 1px solid currentColor;
  position: relative;
  font-size: 14px;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .cs_btn_style_1 {
    gap: 6px;
    padding: 5px 12px;
    font-size: 13px;
  }
}
.cs_btn_style_1 img {
  transition: all 0.3s ease;
}
.cs_btn_style_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--heading-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}
.cs_btn_style_1:hover {
  color: #fff;
}
.cs_btn_style_1:hover img {
  transform: translateX(5px);
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}
.cs_btn_style_1:hover span {
  position: relative;
  z-index: 1;
}
.cs_btn_style_1:hover::before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.cs_btn_style_1.cs_btn_color_1 {
  background-color: var(--gray-color);
  color: var(--heading-color);
  border-color: var(--gray-color);
}
.cs_btn_style_1.cs_btn_color_1:hover {
  border-color: var(--white-color);
  background-color: var(--white-color);
  color: #fff;
}
.cs_btn_style_1.cs_btn_color_2 {
  background-color: var(--heading-color);
  color: var(--gray-color);
  border-color: var(--gray-color);
}
.cs_btn_style_1.cs_btn_color_2:hover {
  color: var(--white-color);
}

.cs_button_style_2 {
  border: none;
  border-radius: 1.8em;
  line-height: 1.625em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: none;
  padding: 0;
  background-color: transparent;
  transition: all 0.4s ease;
}
.cs_button_style_2 span {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 13px;
  color: var(--accent);
}
.cs_button_style_2 span svg {
  transform: rotate(45deg);
}
.cs_button_style_2 u {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 0px;
}
.cs_button_style_2 u::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: all 0.4s ease;
}
.cs_button_style_2 i {
  transform: rotate(-45deg);
  transition: all 0.5s;
  color: inherit;
}
.cs_button_style_2 i:last-child {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: -19px;
  bottom: -21px;
  transform: translate(0, 0) rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  color: currentColor;
}
.cs_button_style_2:hover {
  background-color: transparent;
  color: var(--heading-color);
}
.cs_button_style_2:hover i:first-child {
  transform: translate(20px, -20px) rotate(-45deg);
}
.cs_button_style_2:hover i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(20px, -20px) rotate(-45deg);
}
.cs_button_style_2:hover u::after {
  width: 80%;
}

.cs_section_subtitle {
  position: relative;
  padding-left: 19px;
}
.cs_section_subtitle::before {
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.cs_brand_section_style_1 .cs_brand {
  text-align: center;
}

.cs_brand_section_heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.cs_brand_section_style_1 .slick-slide img {
  display: inline-block;
}

/* Brand Section Style 1 */
.cs_brand_section_style_1 {
  background-color: #141F4C;
  padding: 30px 0;
  margin-top: -45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_brand_section_style_1 {
    padding: 25px 0;
    margin-top: -35px;
  }
}

@media (max-width: 767px) {
  .cs_brand_section_style_1 {
    padding: 20px 0;
    margin-top: -30px;
  }
}

.cs_brand_section_style_1 .cs_brand img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  max-height: 35px;
}

.cs_brand_section_style_1 .cs_brand img:hover {
  opacity: 1;
}

/* Continuous Marquee Styles */
.cs_brand_marquee {
  overflow: hidden;
}

.cs_brand_marquee_container {
  width: 100%;
  overflow: hidden;
}

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

.cs_brand_marquee_track {
  display: flex;
  width: max-content;
  animation: marquee 240s linear infinite;
}

.cs_brand_marquee_content {
  display: flex;
  flex-shrink: 0;
  gap: 90px;
  padding-right: 90px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Marquee */
@media (max-width: 991px) {
  .cs_brand_marquee_content {
    gap: 60px;
    padding-right: 60px;
  }
  .cs_brand_marquee_track {
    animation: marquee 220s linear infinite;
  }
}

@media (max-width: 767px) {
  .cs_brand_marquee_content {
    gap: 50px;
    padding-right: 50px;
  }
  .cs_brand_marquee_track {
    animation: marquee 200s linear infinite;
  }
  .cs_brand_section_style_1 .cs_brand img {
    max-height: 28px;
  }
}

/* Pause on hover (optional - remove if you want it to always run) */
.cs_brand_marquee:hover .cs_brand_marquee_track, .cs_brand_marquee_track:hover {
  animation-play-state: paused !important;
}

.cs_inside_span_secondary_color span {
  color: var(--body-color);
}

.cs_inside_span_border_color span {
  color: var(--border-color);
}

.cs_hover_img {
  overflow: hidden;
  display: inline-flex;
  display: block;
}
.cs_hover_img img {
  transition: all 0.6s ease-in-out;
}
.cs_hover_img:hover img {
  transform: scale(1.1);
}

.cs_hover_text_opacity_8 {
  transition: all 0.3s ease;
}
.cs_hover_text_opacity_8:hover {
  opacity: 0.8;
}

.cs_flex_between {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .cs_flex_between {
    gap: 30px 15px;
  }
}

.cs_custom_row_2 {
  display: flex;
  gap: 82px;
}
@media (max-width: 1400px) {
  .cs_custom_row_2 {
    gap: 50px;
  }
}
.cs_custom_row_2 .cs_custom_col_left {
  flex: none;
  width: 36%;
}
.cs_custom_row_2 .cs_custom_col_right {
  flex: 1;
}

.cs_tabs .cs_tab {
  display: none;
}
.cs_tabs .cs_tab.active {
  display: block;
}

.cs_section_heading_style_3 .cs_section_description {
  max-width: 574px;
  margin-left: auto;
  margin-bottom: 111px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .cs_section_heading_style_3 .cs_section_description {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.cs_section_heading_style_3 .cs_section_btn {
  text-align: right;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .cs_section_heading_style_3 .cs_section_btn {
    text-align: left;
  }
}
.cs_section_heading_style_3 .cs_project_title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .cs_section_heading_style_3 .cs_project_title {
    margin-bottom: 20px;
  }
}

.cs_section_heading_style_4 .cs_section_tagline {
  max-width: 500px;
}
.cs_section_heading_style_4 .cs_section_title {
  max-width: 40%;
}

@media (max-width: 991px) {
  .cs_section_heading_style_1 {
    text-align: center;
  }
  .cs_section_heading_style_1 .cs_section_subtitle {
    display: inline-block;
  }
  .cs_section_heading_style_1 .text-end {
    text-align: center !important;
  }
}
.cs_gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 156px 0;
}
@media (max-width: 991px) {
  .cs_gallery {
    gap: 50px 0;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .cs_gallery {
    gap: 30px 0;
  }
}
@media (min-width: 576px) {
  .cs_gallery .cs_gallery_col {
    flex: none;
    width: 50%;
  }
  .cs_gallery .cs_gallery_col:nth-child(1) .cs_gallery_item {
    display: block;
    max-width: 372px;
  }
  .cs_gallery .cs_gallery_col:nth-child(2) {
    padding: 20.5% 0 0 6%;
  }
  .cs_gallery .cs_gallery_col:nth-child(2) .cs_gallery_item {
    display: block;
    max-width: 292px;
  }
  .cs_gallery .cs_gallery_col:nth-child(3) {
    padding-left: 9.6%;
  }
  .cs_gallery .cs_gallery_col:nth-child(3) .cs_gallery_item {
    display: block;
    max-width: 488px;
  }
  .cs_gallery .cs_gallery_col:nth-child(4) {
    padding-top: 10.275%;
    padding-left: 13.5%;
  }
  .cs_gallery .cs_gallery_col:nth-child(4) .cs_gallery_item {
    display: block;
    max-width: 488px;
  }
}

.cs_pagination_box {
  margin: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_pagination_box .cs_pagination_item {
  margin: 5px;
}

.cs_pagination_item {
  height: 42px;
  width: 42px;
  border-radius: 7px;
  background-color: var(--gray-color);
}

.cs_pagination_item:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.cs_pagination_item.active {
  background-color: var(--heading-color);
  color: #fff;
  pointer-events: none;
}

/*========================================================
  Funfact & Odometer
==========================================================*/
.cs_funfact_style_1 .cs_funfact_number {
  display: flex;
  align-items: center;
  gap: 5px;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  right: -3px;
}

/*====================================================
 GSAP Animation Styling
======================================================*/
.cs_invert_text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #222222 50%, #777 50%);
}

.cs_opacity_text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #222 50%, #777 50%);
}

/*===================================================
 Scroll Top Button
=====================================================*/
.cs_scrollup {
  width: 50px;
  height: 50px;
  border: 0;
  outline: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  z-index: 99;
  transform: translateY(100px);
  visibility: hidden;
  border: 2px solid var(--white-color);
  transition: all 0.3s ease;
}
.cs_scrollup svg {
  animation: up-arrow 2s linear infinite;
}
.cs_scrollup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cs_scrollup:hover {
  color: var(--heading-color);
  border-color: var(--heading-color);
  background-color: var(--white-color);
}

/*===================================================
 Responsive Tags
=====================================================*/
@media (max-width: 991px) {
  br {
    display: none;
  }
}
@keyframes up-arrow {
  50% {
    transform: translateY(-2px);
  }
}
/*==============================================================
  07. Slider
================================================================*/
.cs_slider {
  position: relative;
}

.slick-arrow {
  cursor: pointer;
}

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

.slick-slide > div {
  display: flex;
  flex-direction: column;
}

.cs_remove_overflow .slick-list {
  overflow: visible;
}
.cs_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  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_slider_gap_104 .slick-slide {
  padding-left: 52px;
  padding-right: 52px;
}
.cs_slider_gap_104 .slick-list {
  margin-left: -52px;
  margin-right: -52px;
}
@media (max-width: 991px) {
  .cs_slider_gap_104 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cs_slider_gap_104 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.cs_slider_arrows.cs_style_1 {
  gap: 30px;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
  color: var(--gray-color);
}

.cs_pagination.cs_style_1 {
  display: flex;
  justify-content: center;
}
.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  width: 100%;
}
.cs_pagination.cs_style_1 li {
  display: flex;
  flex: 1;
  height: 4px;
}
.cs_pagination.cs_style_1 li button {
  height: 100%;
  width: 100%;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: rgba(249, 251, 243, 0.5);
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li button:hover {
  background-color: rgba(249, 251, 243, 0.75);
}
.cs_pagination.cs_style_1 li.slick-active button {
  background-color: var(--white-color);
}

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

@media (max-width: 991px) {
  .cs_hide_lg {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cs_show_lg {
    display: flex !important;
  }
}
.cs_slider_indicator {
  max-width: 875px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.cs_slider_number .cs_total_numbers {
  line-height: 0.8em;
}
.cs_slider_number .cs_current_number,
.cs_slider_number .cs_slider_number_seperator {
  color: var(--gray-color);
  font-size: 42px;
}
@media (max-width: 991px) {
  .cs_slider_number .cs_current_number,
  .cs_slider_number .cs_slider_number_seperator {
    font-size: 32px;
  }
}
.cs_slider_number > span[data-number]:before {
  content: "0" attr(data-number);
}
.cs_slider_number > span:before {
  content: attr(data-number);
  display: none;
}
.cs_slider_number > span > span {
  display: block;
}
.cs_slider_number [data-number="1"]::before,
.cs_slider_number [data-number="2"]::before,
.cs_slider_number [data-number="3"]::before,
.cs_slider_number [data-number="4"]::before,
.cs_slider_number [data-number="5"]::before,
.cs_slider_number [data-number="6"]::before,
.cs_slider_number [data-number="7"]::before,
.cs_slider_number [data-number="8"]::before,
.cs_slider_number [data-number="9"]::before {
  display: block;
}
.cs_slider_number [data-number="1"] > span,
.cs_slider_number [data-number="2"] > span,
.cs_slider_number [data-number="3"] > span,
.cs_slider_number [data-number="4"] > span,
.cs_slider_number [data-number="5"] > span,
.cs_slider_number [data-number="6"] > span,
.cs_slider_number [data-number="7"] > span,
.cs_slider_number [data-number="8"] > span,
.cs_slider_number [data-number="9"] > span {
  display: none;
}

#smooth-wrapper .cs_slider_container {
  transform: translate(0) !important;
}

/* ==========================================================================
   TRAVEL SLIDER UI (Desktop & Mobile) - Matched to Fleet Logic
   ========================================================================== */
.cs_travel_slider {
  padding: 0 15px;
  margin-bottom: 40px;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  overflow: hidden;
  will-change: transform;
}

.cs_travel_slider .cs_slide {
  display: block !important;
  flex: 0 0 auto !important;
  min-width: 0;
  max-width: 220px !important;
}

.cs_travel_slider .cs_slide + .cs_slide {
  margin-left: 24px;
}

@media (min-width: 1200px) {
  .cs_travel_slider .cs_slide {
    max-width: 320px !important;
  }
}

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

  .cs_travel_slider .cs_slide {
    max-width: 100% !important;
  }

  .cs_travel_slider .cs_slide + .cs_slide {
    margin-left: 16px;
  }

  .cs_travel_slider .cs_value_card_style_1 {
    padding: 14px;
  }

  .cs_travel_slider .cs_value_card_style_1 img {
    max-height: 140px;
    object-fit: contain;
  }

  @media (max-width: 767px) {
    .cs_travel_slider .cs_value_card_style_1 img {
      max-height: 120px;
    }
  }

  .travel-slider__nav {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .travel-slider__nav--prev {
    left: 8px;
  }

  .travel-slider__nav--next {
    right: 8px;
  }
}

.cs_travel_slider .slick-list {
  padding: 15px 0;
}

.cs_travel_slider .slick-slide {
  height: auto;
  display: flex;
}

.cs_travel_slider .slick-slide > div {
  width: 100%;
  height: 100%;
}

.travel-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(22, 33, 77, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.travel-slider__nav:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(22, 33, 77, 1);
}

.travel-slider__nav--prev {
  left: 12px;
}

.travel-slider__nav--next {
  right: 12px;
}

.travel-slider__nav i {
  font-size: 16px;
}

/* Slider Navigation Dots */
.cs_travel_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.cs_travel_slider .slick-dots li {
  margin: 0;
}

.cs_travel_slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(20, 31, 76, 0.2);
  text-indent: -9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs_travel_slider .slick-dots li.slick-active button {
  background: #D5AB5A;
  width: 32px;
  border-radius: 6px;
}

/* Slider Arrow Styles */
.cs_travel_slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #141F4C;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.cs_travel_slider .slick-arrow:hover {
  background: #141F4C;
  color: #D5AB5A;
  opacity: 1;
}

.cs_travel_slider .slick-arrow::before {
  display: none;
}

.cs_travel_slider .slick-prev {
  left: -5px;
}

.cs_travel_slider .slick-next {
  right: -5px;
}

/*============================================================
 08. Header
==============================================================*/
.cs_site_header {
  position: relative;
  z-index: 101;
  width: 100%;
  left: 0;
  top: 0px;
  transition: all 0.4s ease;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.cs_site_header.cs_style_1 .cs_main_header_in,
.cs_site_header.cs_style_1 .cs_top_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.cs_site_header.cs_style_1 .cs_main_header_in {
  height: 60px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.cs_site_header.cs_style_1 .cs_top_header_in {
  height: 50px;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-right: 50px;
  }
}

.cs_site_header.cs_style_1.cs_sticky_active {
  background-color: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cs_site_header.cs_style_1.cs_sticky_active .cs_main_header_in {
  height: 56px;
}

@media screen and (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_top_header_in {
    justify-content: center;
  }
  .cs_main_header .container {
    max-width: 100%;
  }
  .cs_site_header.cs_style_1 .cs_nav {
    display: flex;
  }
}
.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;
  transition: all 0.3s ease;
}

.cs_site_branding {
  display: inline-flex;
}
.cs_site_branding + .cs_nav {
  margin-left: 25px;
}
@media (max-width: 1600px) {
  .cs_site_branding + .cs_nav {
    margin-left: 25px;
  }
}
@media (max-width: 1540px) {
  .cs_site_branding + .cs_nav {
    margin-left: 20px;
  }
}

.cs_main_header {
  position: relative;
  box-sizing: border-box;
}
.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%;
    transform: translate(-50%, -50%);
  }
  .cs_nav {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
  }
  .cs_nav .cs_nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li {
    margin-right: 18px;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li:last-child {
    margin-right: 0;
  }
  .cs_nav .cs_nav_list > li > a {
    padding: 6px 0;
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
  .cs_nav .cs_nav_list > li > a:hover {
    opacity: 0.65;
  }
  .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 .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-size: 10px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .cs_nav .cs_nav_list > li.menu-item-has-children:hover > a .dropdown-arrow {
    transform: translateY(2px);
  }
  .cs_nav .cs_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    border-top: 2px solid var(--heading-color);
    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;
    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;
    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 a:hover {
    background-color: #f2f2f2;
  }
  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .cs_menu_toggle,
  .cs_munu_dropdown_toggle {
    display: none;
  }
}
@media screen and (max-width: 1600px) {
  .cs_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .cs_main_header .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }
  .cs_munu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .cs_munu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .cs_munu_dropdown_toggle span:before, .cs_munu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: all 0.3s ease;
  }
  .cs_munu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_munu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .cs_munu_dropdown_toggle {
    padding: 20px 18px;
  }
  .cs_site_branding {
    position: relative;
    z-index: 101;
  }
  .cs_nav .cs_nav_list_wrap {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: var(--white-color);
    color: var(--heading-color);
    top: 0;
    height: 100vh;
    line-height: 1.6em;
    padding-top: 80px;
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list_wrap.cs_active {
    left: 0vw;
  }
  .cs_nav .cs_nav_list {
    padding: 10px 0;
    height: 100%;
    overflow: auto;
  }
  .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 a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .cs_nav .cs_nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .cs_nav .menu-item-has-children {
    position: relative;
  }
  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    color: var(--heading-color);
  }
  .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;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: 0;
    transform: translateY(-50%);
  }
  .cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .cs_toggle_active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .cs_toggle_active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
  .cs_nav .cs_nav_list a {
    position: relative;
  }
  .cs_site_header.cs_style_1 .cs_main_header_in,
  .cs_site_header.cs_style_1.cs_sticky_active .cs_main_header_in {
    height: clamp(50px, 6vh, 60px);
  }
  .cs_site_branding img {
    max-height: clamp(24px, 4vh, 28px);
    width: auto;
    object-fit: contain;
  }
  .cs_site_header .current-menu-item > a:before {
    display: none;
  }
  .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cs_site_header.cs_style_1 {
    top: 0;
  }
  .cs_nav .cs_nav_list img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cs_site_header.cs_style_1 .cs_main_header_in,
  .cs_site_header.cs_style_1.cs_sticky_active .cs_main_header_in {
    height: 50px;
  }
  .cs_site_branding img {
    max-height: 24px;
  }
}
/*=============================================================
  09. Footer
===============================================================*/
.cs_footer_address_widget li:not(:last-child) {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cs_footer_address_widget li:not(:last-child) {
    margin-bottom: 16px;
  }
}

.cs_footer_widget_menu li:not(:last-child) {
  margin-bottom: 16px;
}
.cs_footer_widget_menu a {
  color: var(--border-color);
}
.cs_footer_widget_menu a:hover {
  color: var(--gray-color);
}

.cs_footer_style_1 .cs_footer_address_widget li:not(:last-child) {
  margin-bottom: 37px;
}
@media (max-width: 991px) {
  .cs_footer_style_1 .cs_footer_address_widget li:not(:last-child) {
    margin-bottom: 16px;
  }
}

.cs_newsletter {
  border-bottom: 0.5px solid var(--border-color);
  padding: 60px 0 70px;
}
.cs_newsletter .cs_newsletter_title {
  line-height: 1.25em;
}
.cs_newsletter .cs_newsletter_form {
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .cs_newsletter .cs_newsletter_form {
    margin-top: 50px;
  }
}
@media (max-width: 400px) {
  .cs_newsletter .cs_newsletter_form {
    flex-direction: column;
    gap: 10px;
  }
}
.cs_newsletter .cs_newsletter_form .cs_newsletter_input {
  width: 100%;
  border: 0;
  outline: 0;
  border-bottom: 0.5px solid var(--border-color);
  padding: 12px 18px 18px 18px;
  flex: 1;
}
.cs_newsletter .cs_newsletter_form .cs_newsletter_btn {
  background-color: var(--gray-color);
  color: var(--heading-color);
}
.cs_newsletter .cs_newsletter_thumbnail {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cs_newsletter .cs_newsletter_thumbnail img {
  height: 120%;
  width: 100%;
  object-fit: cover;
}

.cs_main_footer {
  padding: 60px 0 100px;
}
@media (max-width: 991px) {
  .cs_main_footer {
    padding: 60px 0 50px;
  }
}
.cs_main_footer .cs_footer_widget_text {
  max-width: 700px;
  width: 100%;
}
@media (min-width: 992px) {
  .cs_main_footer .cs_footer_widget_text {
    padding-top: 32px;
  }
}
@media (max-width: 991px) {
  .cs_main_footer .cs_footer_top img {
    width: 400px;
  }
}
@media (max-width: 991px) {
  .cs_main_footer .cs_footer_address_widget {
    padding-bottom: 20px;
  }
}

.cs_copyright {
  padding: 22px 0;
}
@media (max-width: 991px) {
  .cs_copyright {
    text-align: center !important;
  }
}

.cs_footer_address_widget a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  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 2px;
}
.cs_footer_address_widget a:hover {
  color: #fff;
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.cs_footer_address_widget a.cs_heading_color:hover {
  color: var(--heading-color);
}

.cs_custom_row_1 {
  display: flex;
  gap: 30px 73px;
}
@media (max-width: 1400px) {
  .cs_custom_row_1 {
    gap: 30px 50px;
  }
}
@media (max-width: 991px) {
  .cs_custom_row_1 {
    flex-direction: column;
  }
}
.cs_custom_row_1 .cs_custom_col_left {
  width: 567px;
  flex: none;
}
@media (max-width: 1400px) {
  .cs_custom_row_1 .cs_custom_col_left {
    width: 520px;
  }
}
@media (max-width: 1199px) {
  .cs_custom_row_1 .cs_custom_col_left {
    width: 400px;
  }
}
@media (max-width: 991px) {
  .cs_custom_row_1 .cs_custom_col_left {
    width: 100%;
  }
}
.cs_custom_row_1 .cs_custom_col_right {
  flex: 1;
}

/*===============================================================
  10. Isotope
=================================================================*/
.cs_isotop {
  transition: all 0.4s ease;
}

.cs_isotop.cs_has_gutter_66 {
  margin-left: -33px;
  margin-right: -33px;
  margin-bottom: -66px;
}
.cs_isotop.cs_has_gutter_66 .cs_isotop_item {
  padding: 0 33px;
  margin-bottom: 66px;
}

.cs_isotop_col_6 .cs_grid_sizer,
.cs_isotop_col_6 .cs_isotop_item {
  width: 16.666667%;
}

.cs_isotop_col_5 .cs_grid_sizer,
.cs_isotop_col_5 .cs_isotop_item {
  width: 20%;
}

.cs_isotop_col_4 .cs_grid_sizer,
.cs_isotop_col_4 .cs_isotop_item {
  width: 25%;
}

.cs_isotop_col_3 .cs_grid_sizer,
.cs_isotop_col_3 .cs_isotop_item {
  width: 33.333333%;
}

.cs_isotop_col_2 .cs_grid_sizer,
.cs_isotop_col_2 .cs_isotop_item {
  width: 50%;
}

.cs_isotop_col_1 .cs_grid_sizer,
.cs_isotop_col_1 .cs_isotop_item {
  width: 100%;
}

.cs_grid_sizer {
  width: 33.333333%;
}

.cs_isotop_col_5 .cs_w20,
.cs_isotop_col_4 .cs_w20,
.cs_isotop_col_3 .cs_w20,
.cs_isotop_col_2 .cs_w20,
.cs_isotop_col_1 .cs_w20 {
  width: 20%;
}

.cs_isotop_col_5 .cs_w25,
.cs_isotop_col_4 .cs_w25,
.cs_isotop_col_3 .cs_w25,
.cs_isotop_col_2 .cs_w25,
.cs_isotop_col_1 .cs_w25 {
  width: 25%;
}

.cs_isotop_col_5 .cs_w33,
.cs_isotop_col_4 .cs_w33,
.cs_isotop_col_3 .cs_w33,
.cs_isotop_col_2 .cs_w33,
.cs_isotop_col_1 .cs_w33 {
  width: 33.333333%;
}

.cs_isotop_col_5 .cs_w50,
.cs_isotop_col_4 .cs_w50,
.cs_isotop_col_3 .cs_w50,
.cs_isotop_col_2 .cs_w50,
.cs_isotop_col_1 .cs_w50 {
  width: 50%;
}

.cs_isotop_col_5 .cs_w66,
.cs_isotop_col_4 .cs_w66,
.cs_isotop_col_3 .cs_w66,
.cs_isotop_col_2 .cs_w66,
.cs_isotop_col_1 .cs_w66 {
  width: 66.666666%;
}

.cs_isotop_col_5 .cs_w100,
.cs_isotop_col_4 .cs_w100,
.cs_isotop_col_3 .cs_w100,
.cs_isotop_col_2 .cs_w100,
.cs_isotop_col_1 .cs_w100 {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 33.333333%;
  }
}
@media screen and (max-width: 991px) {
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 50%;
  }
  .cs_isotop_col_4 .cs_w50 {
    width: 100%;
  }
  .cs_isotop_col_3 .cs_grid_sizer,
  .cs_isotop_col_3 .cs_isotop_item {
    width: 50%;
  }
  .cs_isotop_col_2 .cs_grid_sizer,
  .cs_isotop_col_2 .cs_isotop_item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cs_isotop_col_5 .cs_w50,
  .cs_isotop_col_4 .cs_w50,
  .cs_isotop_col_3 .cs_w50,
  .cs_isotop_col_2 .cs_w50,
  .cs_isotop_col_1 .cs_w50,
  .cs_isotop_col_5 .cs_w66,
  .cs_isotop_col_4 .cs_w66,
  .cs_isotop_col_3 .cs_w66,
  .cs_isotop_col_2 .cs_w66,
  .cs_isotop_col_1 .cs_w66 {
    width: 100%;
  }
  .cs_isotop_col_5 .cs_grid_sizer,
  .cs_isotop_col_5 .cs_isotop_item {
    width: 100%;
  }
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 100%;
  }
  .cs_isotop_col_3 .cs_grid_sizer,
  .cs_isotop_col_3 .cs_isotop_item {
    width: 100%;
  }
  .cs_isotop_col_2 .cs_grid_sizer,
  .cs_isotop_col_2 .cs_isotop_item {
    width: 100%;
  }
}
.cs_isotop_filter {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--body-color);
}
.cs_isotop_filter ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 15px 50px;
}
.cs_isotop_filter li a {
  display: inline-block;
}
.cs_isotop_filter li a:hover {
  color: var(--heading-color);
}
.cs_isotop_filter li.active a {
  color: var(--heading-color);
}

/*=======================================================
 11. Sidebar
=========================================================*/
.cs_sidebar_item:not(:last-child) {
  margin-bottom: 45px;
}

.cs_sidebar_widget_title {
  font-size: 30px;
  line-height: 1.33em;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--heading-color);
  padding-bottom: 10px;
}

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tagcloud .tag-cloud-link {
  font-size: 16px;
  line-height: 1.6em;
  border: 1px solid var(--body-color);
  padding: 5px 15px;
  display: inline-block;
  color: var(--heading-color);
}
.tagcloud .tag-cloud-link:hover {
  color: var(--white-color);
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_archive ul li,
.widget_categories ul li {
  padding-left: 30px;
  position: relative;
}
.widget_archive ul li i,
.widget_categories ul li i {
  position: absolute;
  left: 0;
  top: 5px;
}
.widget_archive ul li:not(:last-child),
.widget_categories ul li:not(:last-child) {
  margin-bottom: 15px;
}

.cs_recent_posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs_recent_posts li:not(:last-child) {
  margin-bottom: 20px;
}

.cs_recent_post {
  display: flex;
  align-items: center;
}
.cs_recent_post .cs_recent_post_thumb {
  display: block;
  height: 70px;
  width: 70px;
  flex: none;
  overflow: hidden;
  margin-right: 15px;
}
.cs_recent_post .cs_recent_post_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cs_recent_post .cs_recent_post_thumb:hover img {
  transform: scale(1.06);
}
.cs_recent_post .cs_recent_post_thumb_in {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.cs_recent_post .cs_recent_post_title {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.cs_recent_post .cs_recent_post_title:hover {
  opacity: 0.85;
}

.cs_sidebar_search {
  position: relative;
}
.cs_sidebar_search input {
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: none;
  border-bottom: 1px solid var(--heading-color);
  padding: 12px 40px 12px 0;
  transition: all 0.3s ease;
}
.cs_sidebar_search input:focus {
  border-color: var(--heading-color);
}
.cs_sidebar_search .cs_sidebar_search_btn {
  position: absolute;
  border: none;
  outline: none;
  bottom: 0px;
  right: 0;
  padding: 12px 14px;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s ease;
}
.cs_sidebar_search .cs_sidebar_search_btn:hover {
  color: var(--heading-color);
}

.cs_right_sidebar {
  padding-left: 40px;
}
@media (max-width: 1199px) {
  .cs_right_sidebar {
    padding-left: 0px;
  }
}

/*==============================================================
  12. Hero
================================================================*/
.cs_hero_style_1 {
  padding: 120px 0 0;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cs_hero_style_1 .cs_hero_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cs_hero_style_1 .cs_hero_top_left {
  max-width: 563px;
}
.cs_hero_style_1 .cs_hero_bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px 24px;
}
.cs_hero_style_1 .cs_hero_bottom_right {
  flex: none;
}
.cs_hero_style_1 .cs_hero_card {
  max-width: 250px;
}
@media (max-width: 1199px) {
  .cs_hero_style_1 {
    padding: 150px 0 0;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_1 {
    padding-top: 80px;
  }
  .cs_hero_style_1 .cs_hero_card,
  .cs_hero_style_1 .cs_hero_top_left {
    max-width: 100%;
  }
  .cs_hero_style_1 .cs_hero_bottom_right {
    width: 100%;
  }
  .cs_hero_style_1 .cs_hero_bottom {
    flex-direction: column;
  }
  .cs_hero_style_1 .cs_hero_bottom .text-end {
    text-align: left !important;
  }
}

/*==========================================================
 Page Heading
============================================================*/
.cs_page_heading {
  padding: 250px 0 0;
}
@media (max-width: 1199px) {
  .cs_page_heading {
    padding: 150px 0 0;
  }
}

/*==============================================================
  13. CTA
================================================================*/
.cs_banner_style_1 {
  height: 85vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.cs_banner_style_1 img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
@media (max-width: 1300px) {
  .cs_banner_style_1 {
    height: 80vh;
  }
}
@media (max-width: 991px) {
  .cs_banner_style_1 {
    height: 75vh;
  }
}
@media (max-width: 576px) {
  .cs_banner_style_1 {
    height: 70vh;
  }
}

.cs_about_banner_style_1 {
  height: 700px;
  position: relative;
  overflow: hidden;
}
.cs_about_banner_style_1 img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
@media (max-width: 1300px) {
  .cs_about_banner_style_1 {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .cs_about_banner_style_1 {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .cs_about_banner_style_1 {
    height: 350px;
  }
}

.cs_cta_style_1 {
  padding: 70px 0px 100px;
}

/*=======================================================
 About Section
=========================================================*/
.cs_about_section {
  background-color: #ffffff;
}
.cs_about_style_1 .cs_about_title {
  width: min(100%, 790px);
  margin-left: auto;
}
.cs_about_style_1 .cs_about_bottom {
  padding-top: 50px;
}
.cs_about_style_1 .cs_about_thumbnail {
  width: min(100%, 364px);
  margin-top: -55px;
  height: 260px;
  position: relative;
  overflow: hidden;
}
.cs_about_style_1 .cs_about_thumbnail img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
.cs_about_style_1 .cs_about_desc {
  width: min(100%, 540px);
}
@media (max-width: 991px) {
  .cs_about_style_1 .cs_about_title {
    width: 100%;
  }
  .cs_about_style_1 .cs_about_bottom {
    padding-top: 40px;
  }
  .cs_about_style_1 .cs_about_thumbnail {
    width: min(100%, 364px);
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cs_about_style_1 .cs_about_thumbnail {
    width: 100%;
  }
  .cs_about_section .cs_section_heading .cs_fs_48 {
    font-size: 20px;
    text-align: justify;
   
  }
}

/*=========================================================
  14. Testimonial
===========================================================*/
.cs_testimonial_style_1 .cs_tesmonial_slider,
.cs_testimonial_style_2 .cs_tesmonial_slider {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cs_testimonial_style_1 .cs_testimonial_image,
.cs_testimonial_style_2 .cs_testimonial_image {
  height: 100%;
  min-height: 560px;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cs_testimonial_style_1 .cs_testimonial_image,
  .cs_testimonial_style_2 .cs_testimonial_image {
    overflow: hidden;
  }
}
.cs_testimonial_style_1 .cs_testimonial_image img,
.cs_testimonial_style_2 .cs_testimonial_image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
.cs_testimonial_style_1 blockquote,
.cs_testimonial_style_2 blockquote {
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 991px) {
  .cs_testimonial_style_1 .cs_testimonial_image,
  .cs_testimonial_style_2 .cs_testimonial_image {
    min-height: 560px;
  }
}

.cs_testimonial_style_1 .cs_invert_text > div {
  background-image: linear-gradient(to right, #f2f2f2 50%, #aaa 50%);
}

.cs_testimonial_style_2 {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 {
    flex-direction: column;
  }
}
.cs_testimonial_style_2 .cs_testimonial_image {
  overflow: hidden;
}
.cs_testimonial_style_2 .cs_testimonial_head {
  margin-bottom: 100px;
}
@media (max-width: 1400px) {
  .cs_testimonial_style_2 .cs_testimonial_head {
    margin-bottom: 60px;
  }
}
@media (max-width: 1199px) {
  .cs_testimonial_style_2 .cs_testimonial_head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 .cs_testimonial_head {
    margin-bottom: 30px;
  }
}
.cs_testimonial_style_2 .cs_testimonial_text {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cs_testimonial_style_2 .cs_testimonial_text {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 .cs_testimonial_text {
    margin-bottom: 30px;
  }
}
.cs_testimonial_style_2 .cs_testimonial_quote_col {
  flex: none;
  width: 175px;
}
@media (max-width: 1400px) {
  .cs_testimonial_style_2 .cs_testimonial_quote_col {
    width: 120px;
  }
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 .cs_testimonial_quote_col {
    display: none;
  }
}
.cs_testimonial_style_2 .cs_testimonial_thumb_col {
  flex: none;
  width: 390px;
}
@media (max-width: 1400px) {
  .cs_testimonial_style_2 .cs_testimonial_thumb_col {
    width: 290px;
  }
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 .cs_testimonial_thumb_col {
    width: 100%;
  }
}
.cs_testimonial_style_2 .cs_testimonial_info_col {
  flex: 1;
  padding-left: 50px;
  width: 40%;
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 .cs_testimonial_info_col {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
  }
}

/*==========================================================
 15. Service
============================================================*/
.cs_service_style_1_list > li {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 991px) {
  .cs_service_style_1_list > li {
    padding: 25px 0;
  }
}
.cs_service_style_1_list > li:last-child {
  border-bottom: none;
}

.cs_service {
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}
@media (max-width: 991px) {
  .cs_service {
    gap: 15px;
  }
  .cs_service .cs_mb_25 {
    margin-bottom: 15px;
  }
}
.cs_service .cs_service_right {
  flex: none;
  width: 100%;
  max-width: 415px;
}

.cs_service_highlight_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
}
@media (max-width: 991px) {
  .cs_service_highlight_list {
    gap: 10px;
  }
}
.cs_service_highlight_list li:not(:first-child) {
  position: relative;
  padding-left: 24px;
}
@media (max-width: 991px) {
  .cs_service_highlight_list li:not(:first-child) {
    padding-left: 12px;
  }
}
.cs_service_highlight_list li:not(:first-child)::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: var(--heading-color);
  position: absolute;
  top: 10px;
  left: 0;
}

/*=======================================================
 16. Projects
======================================================*/
.cs_project_tabs_style_1 {
  position: relative;
  min-height: 550px;
}
.cs_project_tabs_style_1 .cs_tab_links {
  position: absolute;
  height: 550px;
  top: 0;
  left: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .cs_project_tabs_style_1 .cs_tab_links {
    height: 465px;
  }
}
@media (max-width: 991px) {
  .cs_project_tabs_style_1 .cs_tab_links {
    height: initial;
    position: initial;
    width: 100%;
    flex-direction: initial;
    justify-content: center;
    gap: 10px 30px;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .cs_project_tabs_style_1 .cs_tab_links li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.cs_project_tabs_style_1 .cs_tab_links li.active a {
  font-weight: 700;
  color: var(--primary-color);
}

.cs_project_tabs_style_1_btn {
  width: fit-content;
  margin-top: -61px;
}
@media (max-width: 991px) {
  .cs_project_tabs_style_1_btn {
    margin-top: 60px;
    text-align: center;
  }
}

.cs_project_style_1 .cs_btn_style_1 {
  position: absolute;
  bottom: 27px;
  right: 28px;
  transform: scale(0);
  transition: all 0.4s ease;
}
.cs_project_style_1:hover .cs_btn_style_1 {
  transform: scale(1);
}
.cs_project_style_1 .cs_project_title a {
  color: var(--heading-color);
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  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 2px;
}
.cs_project_style_1 .cs_project_title a:hover {
  opacity: 0.8;
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.cs_project_style_1 .cs_project_info {
  gap: 5px 15px;
}
.cs_project_style_1.cs_type_1 {
  max-width: 446px;
}
@media (max-width: 1199px) {
  .cs_project_style_1.cs_type_1 {
    max-width: 370px;
  }
}
@media (max-width: 991px) {
  .cs_project_style_1.cs_type_1 {
    max-width: 100%;
  }
}
.cs_project_style_1.cs_type_1 .cs_project_thumb img {
  height: 483px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cs_project_style_1.cs_type_1 .cs_project_thumb img {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .cs_project_style_1.cs_type_1 .cs_project_thumb img {
    height: initial;
  }
}
.cs_project_style_1.cs_type_2 {
  max-width: 473px;
}
@media (max-width: 1199px) {
  .cs_project_style_1.cs_type_2 {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cs_project_style_1.cs_type_2 {
    max-width: 100%;
  }
}
.cs_project_style_1.cs_type_2 .cs_project_thumb img {
  height: 516px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cs_project_style_1.cs_type_2 .cs_project_thumb img {
    height: 436px;
  }
}
@media (max-width: 991px) {
  .cs_project_style_1.cs_type_2 .cs_project_thumb img {
    height: initial;
  }
}
.cs_project_style_1.cs_type_3 {
  max-width: 548px;
  margin-left: auto;
  margin-top: 290px;
}
@media (max-width: 1199px) {
  .cs_project_style_1.cs_type_3 {
    max-width: 390px;
  }
}
@media (max-width: 991px) {
  .cs_project_style_1.cs_type_3 {
    max-width: 100%;
    margin-top: 0px;
  }
}
.cs_project_style_1.cs_type_3 .cs_project_thumb img {
  height: 382px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cs_project_style_1.cs_type_3 .cs_project_thumb img {
    height: 272px;
  }
}
@media (max-width: 991px) {
  .cs_project_style_1.cs_type_3 .cs_project_thumb img {
    height: initial;
  }
}

.cs_projects_grid .cs_tab_links_space {
  height: 550px;
}
@media (max-width: 1199px) {
  .cs_projects_grid .cs_tab_links_space {
    height: 465px;
  }
}
@media (max-width: 991px) {
  .cs_projects_grid .cs_tab_links_space {
    height: initial;
  }
}

@media (max-width: 991px) {
  .cs_project_style_1.cs_type_3 .cs_project_thumb img {
    height: 465px;
  }
}
.cs_project_style_2 .cs_btn_style_1 {
  position: absolute;
  bottom: 27px;
  right: 28px;
  transform: scale(0);
  transition: all 0.4s ease;
}
.cs_project_style_2:hover .cs_btn_style_1 {
  transform: scale(1);
}
.cs_project_style_2 .cs_project_info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  padding: 23px;
  gap: 15px;
  flex-wrap: wrap;
}
.cs_project_style_2 .cs_project_info a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  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 2px;
}
.cs_project_style_2 .cs_project_info a:hover {
  color: var(--white-color);
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.cs_project_style_2 .cs_mouse_point {
  height: 218px;
  width: 218px;
  border-radius: 50%;
  padding: 10px;
}

/*=======================================================
 Project Details
=========================================================*/
.cs_pain_list li {
  display: flex;
}
.cs_pain_list li:not(:last-child) {
  margin-bottom: 20px;
}
.cs_pain_list .cs_pain_no {
  flex: none;
  width: 12.4%;
  min-width: 50px;
}

.cs_project_info_list {
  display: grid;
  gap: 23px 12px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
}

.cs_section_heading_style_5 {
  display: flex;
  align-items: flex-start;
  gap: 20px 40px;
}
@media (max-width: 991px) {
  .cs_section_heading_style_5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.cs_section_heading_style_5 .cs_section_title {
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cs_section_heading_style_5 .cs_section_title {
    padding-top: 0;
  }
}
.cs_section_heading_style_5 .cs_project_info {
  width: 100%;
}

.cs_project_style_3 {
  position: relative;
}
.cs_project_style_3 .cs_project_info {
  position: absolute;
  padding: 23px;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.cs_project_style_3 .cs_project_info .cs_btn_style_1 {
  position: absolute;
  bottom: 23px;
  right: 23px;
  transform: scale(0);
  transition: all 0.4s ease;
}
.cs_project_style_3 .cs_project_info h2 a {
  color: inherit;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  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 2px;
}
.cs_project_style_3 .cs_project_info h2 a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
  opacity: 0.8;
}
.cs_project_style_3:hover .cs_btn_style_1 {
  transform: scale(1);
}

/*=======================================================
 17. Contact
======================================================*/
.cs_contact_info_style_1 {
  gap: 50px;
}
.cs_contact_info_style_1 h3 {
  color: var(--border-color);
}
.cs_contact_info_style_1 a {
  color: var(--white-color);
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  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 2px;
}
.cs_contact_info_style_1 a:hover {
  opacity: 0.8;
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.cs_form_field {
  display: block;
  width: 100%;
  padding: 20px 20px;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  outline: 0;
  background: transparent;
  color: var(--border-color);
}
.cs_form_field:focus {
  border-color: var(--heading-color);
}

.cs_contact_form {
  width: min(100%, 824px);
  margin-left: auto;
}
.cs_contact_form label {
  margin-bottom: 5px;
  display: inline-block;
}
.cs_contact_form .cs_btn_style_1 {
  margin-left: auto;
}
.cs_contact_form .cs_btn_style_1:hover {
  color: var(--heading-color);
  background-color: transparent;
  border-color: var(--heading-color);
}
@media (max-width: 991px) {
  .cs_contact_form {
    width: 100%;
    margin: 0;
  }
}

.social_icon_section {
  gap: 14px;
}
.social_icon_section a {
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
}
.social_icon_section a:hover {
  background-color: var(--heading-color);
  color: var(--white-color);
}

/*====================================================
 18. Posts
======================================================*/
.cs_post_card_style_1 .cs_post_meta_wrapper {
  padding: 10px 0;
}
.cs_post_card_style_1 .cs_post_title a:hover {
  opacity: 0.8;
}
.cs_post_card_style_1 .cs_post_thumbnail {
  position: relative;
  padding-top: 77%;
}
.cs_post_card_style_1 .cs_post_thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cs_section_content_1 {
  display: flex;
  flex-direction: column;
}

.cs_blog_ladder {
  display: flex;
  gap: 82px;
  margin-top: -278px;
}
@media (max-width: 991px) {
  .cs_blog_ladder {
    margin-top: 60px;
    gap: 40px;
    flex-direction: column;
  }
}
.cs_blog_ladder .cs_post_card_style_1 {
  flex: 1;
}
.cs_blog_ladder .cs_post_card_style_1:nth-child(1) {
  flex: 1.36;
}
@media (max-width: 991px) {
  .cs_blog_ladder .cs_post_card_style_1:nth-child(1) {
    flex: 1;
  }
}
.cs_blog_ladder .cs_post_card_style_1:nth-child(2) {
  padding-top: 10%;
  padding-top: 21%;
}
@media (max-width: 991px) {
  .cs_blog_ladder .cs_post_card_style_1:nth-child(2) {
    padding-top: 0%;
  }
}
.cs_blog_ladder .cs_post_card_style_1:nth-child(3) {
  padding-top: 36%;
}
@media (max-width: 991px) {
  .cs_blog_ladder .cs_post_card_style_1:nth-child(3) {
    padding-top: 0%;
  }
}

/*===========================================================
 Post Details Page
=============================================================*/
.cs_post_details .cs_post_meta {
  margin-bottom: 20px;
}
.cs_post_details .cs_post_meta > * {
  position: relative;
  display: inline-block;
}
.cs_post_details .cs_post_meta > *:not(:last-child) {
  margin-right: 14px;
  padding-right: 14px;
}
.cs_post_details .cs_post_meta > *:not(:last-child)::before {
  content: "";
  height: 20px;
  width: 1px;
  border-radius: 2px;
  background-color: var(--body-color);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
}
.cs_post_details .cs_post_banner {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}
.cs_post_details img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cs_post_details article {
  margin-bottom: 40px;
}
.cs_post_details article:last-child {
  margin-bottom: 0;
}
.cs_post_details h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2em;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}
.cs_post_details h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2em;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}
.cs_post_details p {
  font-size: 20px;
  margin-bottom: 30px;
}
.cs_post_details p:last-child {
  margin-bottom: 0;
}
.cs_post_details blockquote {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5em;
  border-left: 5px solid var(--heading-color);
  background-color: var(--gray-color);
  padding: 40px 35px;
  color: var(--heading-color);
  margin-bottom: 35px;
  border-radius: 0 15px 15px 0;
}
.cs_post_details blockquote small {
  display: block;
  position: relative;
  color: var(--body-color);
  font-size: 20px;
  line-height: 1.9em;
  font-style: initial;
  font-weight: 500;
  margin-top: 15px;
  padding-left: 35px;
}
.cs_post_details blockquote small::before {
  content: "";
  height: 2px;
  width: 20px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: var(--heading-color);
}
.cs_post_details .embed-responsive iframe {
  width: 100%;
  min-height: 450px;
  margin-bottom: 35px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cs_post_details article {
    margin-bottom: 30px;
  }
  .cs_post_details h2 {
    font-size: 36px;
  }
  .cs_post_details h3 {
    font-size: 28px;
  }
  .cs_post_details p {
    margin-bottom: 20px;
  }
  .cs_post_details blockquote {
    font-size: 20px;
    padding: 30px 15px 30px 15px;
    margin-bottom: 30px;
  }
  .cs_post_details .embed-responsive iframe {
    min-height: 350px;
  }
}

/*====================================================
 19. Experience
======================================================*/
.cs_experience_content {
  padding: 30px 0;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
}
.cs_experience_content:last-child {
  border-bottom: none;
}
.cs_experience_content .cs_experience_content_left {
  flex: none;
  width: 39%;
}
.cs_experience_content .cs_experience_content_left .cs_experience_meta {
  gap: 8px;
}
.cs_experience_content .cs_experience_content_left span {
  padding-left: 12px;
  display: block;
  position: relative;
}
.cs_experience_content .cs_experience_content_left span:before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
}
.cs_experience_content .cs_experience_content_right {
  flex: 1;
}
@media (max-width: 767px) {
  .cs_experience_content {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .cs_experience_content .cs_experience_content_left,
  .cs_experience_content .cs_experience_content_right {
    width: 100%;
  }
}

/*====================================================
 20. Value
======================================================*/
.cs_value_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.cs_value_card_style_1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px !important;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #141F4C;
  transition: none !important;
}

.cs_travel_slider .cs_value_card_style_1:hover {
  box-shadow: none !important;
  transform: none !important;
}

.cs_value_card_style_1 .cs_value_text {
  flex: 1;
  color: #141F4C;
}

.cs_value_card_style_1 .cs_value_card_no,
.cs_value_card_style_1 .cs_value_card_title,
.cs_value_card_style_1 .cs_value_card_info {
  color: #141F4C;
}

.cs_value_card_title {
  font-size: 18px !important;
  line-height: 1.3;
  margin-bottom: 6px;
}

.cs_value_card_info {
  font-size: 12px !important;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cs_card_price_tag {
  font-size: 11px !important;
  padding: 6px 10px;
  margin-bottom: 8px;
}

.cs_value_card_divider {
  display: none !important;
}

.cs_value_btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #E2B56A;
  color: #141F4C;
  border-radius: 6px;
  border: 2px solid #E2B56A;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cs_value_btn:hover {
  background: #141F4C;
  color: #FBFBFC;
  border-color: #141F4C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 31, 76, 0.3);
}

.cs_value_btn:focus {
  outline: 2px solid #E2B56A;
  outline-offset: 2px;
}

.cs_value_btn:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cs_value_btn {
    width: auto;
  }
}

/*====================================================
 21. Expertise
======================================================*/
.cs_custom_pointer_wrap .cs_expertise_title {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, #222 -36.22%, #f4f4f4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cs_custom_pointer_wrap .cs_expertise_title:hover {
  background: var(--heading-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 11;
}

/*====================================================
 22. Partner
======================================================*/
.cs_partner_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 250px;
}
.cs_partner_wrapper .cs_partner {
  padding: 20px;
  border-right: 1px solid var(--border-color);
}
.cs_partner_wrapper .cs_partner:nth-child(4n) {
  border-right: none;
}
@media (max-width: 991px) {
  .cs_partner_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
  .cs_partner_wrapper .cs_partner {
    padding: 20px 10px;
  }
  .cs_partner_wrapper .cs_partner:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 575px) {
  .cs_partner_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_partner_wrapper .cs_partner {
    padding: 0;
    border-right: none;
  }
}

/*====================================================
 23. Award
======================================================*/
.cs_awards_style_1 .cs_award {
  padding: 30px 40px 0;
  border-bottom: 1px solid var(--border-color);
}
.cs_awards_style_1 .cs_award:last-child {
  border-bottom: none;
}
.cs_awards_style_1 .cs_award .cs_award_header {
  gap: 55px;
  padding-bottom: 30px;
  transition: all 0.6s ease;
}
.cs_awards_style_1 .cs_award .cs_award_title {
  flex: none;
  width: 41%;
}
.cs_awards_style_1 .cs_award .cs_award_category {
  flex: 1;
}
.cs_awards_style_1 .cs_award .cs_award_content {
  gap: 55px;
  position: relative;
  height: 0;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s ease;
}
.cs_awards_style_1 .cs_award .cs_award_thumb {
  flex: none;
  width: 41%;
}
.cs_awards_style_1 .cs_award .cs_award_info {
  flex: 1;
}
.cs_awards_style_1 .cs_award.active {
  padding-bottom: 30px;
}
.cs_awards_style_1 .cs_award.active .cs_award_content {
  height: auto;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.6s ease;
}
@media (max-width: 991px) {
  .cs_awards_style_1 .cs_award {
    padding: 30px 0 0;
  }
  .cs_awards_style_1 .cs_award .cs_award_content,
  .cs_awards_style_1 .cs_award .cs_award_header {
    gap: 30px;
  }
  .cs_awards_style_1 .cs_award .cs_award_thumb,
  .cs_awards_style_1 .cs_award .cs_award_title {
    width: calc(50% - 30px);
  }
  .cs_awards_style_1 .cs_award:first-child {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cs_awards_style_1 .cs_award .cs_award_content,
  .cs_awards_style_1 .cs_award .cs_award_header {
    gap: 15px;
    flex-direction: column;
  }
  .cs_awards_style_1 .cs_award .cs_award_thumb,
  .cs_awards_style_1 .cs_award .cs_award_title {
    width: 100%;
  }
}

/*====================================================
 24. Process
======================================================*/
.cs_process_wrap {
  display: flex;
  justify-content: space-between;
  gap: 55px;
}
.cs_process_wrap .cs_proces_img {
  width: 40%;
  min-height: 570px;
  flex: none;
  position: relative;
  overflow: hidden;
}
.cs_process_wrap .cs_proces_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
.cs_process_wrap .cs_process_cards {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
.cs_process_wrap .cs_process_card {
  height: 100%;
  display: flex;
  gap: 56px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  bottom: -1px;
}
.cs_process_wrap .cs_process_card .cs_process_text {
  margin-top: auto;
}
@media (max-width: 1199px) {
  .cs_process_wrap {
    gap: 30px;
  }
  .cs_process_wrap .cs_process_cards {
    gap: 24px;
  }
  .cs_process_wrap .cs_process_card {
    gap: 24px;
  }
  .cs_process_wrap .cs_process_card .cs_process_text {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .cs_process_wrap {
    flex-direction: column;
  }
  .cs_process_wrap .cs_proces_img {
    width: 100%;
    min-height: 400px;
  }
  .cs_process_wrap .cs_process_card {
    padding-bottom: 30px;
  }
}

/* Blog Cards Marquee Styles */
.cs_blog_marquee_section {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.cs_blog_marquee_wrapper {
  overflow: visible;
  width: 100%;
  position: relative;
}

.cs_blog_marquee_track {
  display: flex;
  gap: 30px;
  width: 200%;
  animation: cs_blog_marquee 25s linear infinite;
}

.cs_blog_marquee_section .container {
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}

@keyframes cs_blog_marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.cs_blog_card {
  flex: 0 0 calc(22% - 23px);
  min-width: calc(22% - 23px);
  max-width: calc(22% - 23px);
  width: calc(22% - 23px);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.cs_blog_card:hover {
  transform: translateY(-8px);
}

.cs_blog_card_thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
}

.cs_blog_card_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cs_blog_card:hover .cs_blog_card_thumb img {
  transform: scale(1.1);
}

.cs_blog_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cs_blog_card:hover .cs_blog_card_overlay {
  opacity: 1;
}

.cs_blog_card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 2;
}

.cs_blog_card_title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.cs_blog_card:hover .cs_blog_card_title {
  color: #f5a623;
}

.cs_blog_card_meta {
  font-size: 9px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1400px) {
  .cs_blog_card {
    flex: 0 0 calc(22% - 20px);
    min-width: calc(22% - 20px);
    max-width: calc(22% - 20px);
    width: calc(22% - 20px);
  }
}

@media (max-width: 991px) {
  .cs_blog_card {
    flex: 0 0 calc(30% - 14px);
    min-width: calc(30% - 14px);
    max-width: calc(30% - 14px);
    width: calc(30% - 14px);
  }
  
  .cs_blog_marquee_track {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .cs_blog_card {
    flex: 0 0 calc(45% - 8px);
    min-width: calc(45% - 8px);
    max-width: calc(45% - 8px);
    width: calc(45% - 8px);
  }
  
  .cs_blog_card_title {
    font-size: 11px;
  }
  
  .cs_blog_card_meta {
    font-size: 7px;
  }
  
  .cs_blog_card_content {
    padding: 8px;
  }
}

/* Pause on hover */
.cs_blog_marquee_section:hover .cs_blog_marquee_track {
  animation-play-state: paused;
}

@media (max-width: 575px) {
  .cs_process_wrap .cs_proces_img {
    min-height: 350px;
  }
  .cs_process_wrap .cs_process_cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*========================================================
  Inquiry Form Section
========================================================*/
.cs_inquiry_section {
  position: relative;
}

.cs_inquiry_form_wrapper {
  background-color: #F4F0ED;
  border-radius: 20px;
  padding: 60px;
}

@media (max-width: 991px) {
  .cs_inquiry_form_wrapper {
    padding: 40px 30px;
  }
}

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

.cs_inquiry_info {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .cs_inquiry_info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.cs_inquiry_title {
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cs_inquiry_desc {
  font-family: var(--body-font);
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.cs_inquiry_contact_item {
  margin-bottom: 20px;
}

.cs_inquiry_contact_item:last-child {
  margin-bottom: 0;
}

.cs_inquiry_contact_label {
  display: block;
  font-family: var(--body-font);
  margin-bottom: 5px;
}

.cs_inquiry_contact_value {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  transition: color 0.3s ease;
}

.cs_inquiry_contact_value:hover {
  color: var(--body-color);
}

/* Form Styles */
.cs_inquiry_form {
  width: 100%;
}

.cs_inquiry_form_group {
  margin-bottom: 0;
}

.cs_inquiry_label {
  display: block;
  font-family: var(--body-font);
  margin-top: 15px;
  margin-bottom: 10px;
}

.cs_inquiry_input,
.cs_inquiry_textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--body-font);
  color: var(--heading-color);
  transition: all 0.3s ease;
  outline: none;
}

.cs_inquiry_input::placeholder,
.cs_inquiry_textarea::placeholder {
  color: var(--border-color);
}

.cs_inquiry_input:focus,
.cs_inquiry_textarea:focus {
  border-color: var(--heading-color);
  box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.1);
}

.cs_inquiry_textarea {
  resize: vertical;
  min-height: 120px;
}

.cs_inquiry_submit.cs_btn_style_1 {
  width: 100%;
  justify-content: center;
  background-color: #0A0A0A;
  color: #f2f2f2;
  border-color: #f2f2f2;
}

.cs_inquiry_submit:hover {
  color: var(--white-color);
}

.cs_inquiry_submit img {
  filter: brightness(0) invert(1);
}

/* Mobile padding for labels and form fields */
@media (max-width: 767px) {
  .cs_inquiry_label {
    margin-bottom: 15px;
    padding: 5px 0;
  }
  .cs_inquiry_input,
  .cs_inquiry_textarea {
    padding: 20px 24px;
  }
}

/* Form Validation States */
.cs_inquiry_input:invalid:not(:placeholder-shown),
.cs_inquiry_textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

/* Accessibility - Focus Visible */
.cs_inquiry_input:focus-visible,
.cs_inquiry_textarea:focus-visible {
  outline: 2px solid var(--heading-color);
  outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cs_inquiry_title {
    font-size: 36px;
  }
  
  .cs_inquiry_desc {
    font-size: 18px;
  }
  
  .cs_inquiry_contact_value {
    font-size: 20px;
  }
}

/* Compact Mobile View for Inquiry Form (Plan Your Ride) */
@media (max-width: 767px) {
  .cs_inquiry_section .cs_height_lg_70 {
    height: 40px !important;
  }
  .cs_inquiry_form_wrapper {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }
  .cs_inquiry_form_wrapper .cs_gap_y_60 {
    gap: 24px 0 !important;
  }
  .cs_inquiry_info {
    margin-bottom: 0 !important;
    padding-right: 0 !important;
  }
  .cs_inquiry_info .cs_section_subtitle {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .cs_inquiry_title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
  }
  .cs_inquiry_desc {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
  }
  .cs_inquiry_contact_item {
    margin-bottom: 12px !important;
  }
  .cs_inquiry_contact_label {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }
  .cs_inquiry_contact_value {
    font-size: 15px !important;
  }
  .cs_inquiry_label {
    margin-top: 8px !important;
    margin-bottom: 4px !important;
    font-size: 13px !important;
    padding: 0 !important;
  }
  .cs_inquiry_form_group {
    margin-bottom: 10px !important;
  }
  .cs_inquiry_input, 
  .cs_inquiry_textarea {
    padding: 10px 14px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }
  .cs_inquiry_textarea {
    min-height: 80px !important;
  }
  .cs_inquiry_submit {
    padding: 12px 20px !important;
    font-size: 14px !important;
    margin-top: 8px !important;
  }
  .cs_inquiry_form .cs_gap_y_24 {
    gap: 10px 0 !important;
  }
}

/* Smooth animations */
.cs_inquiry_form_group {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.cs_inquiry_form_group:nth-child(1) { animation-delay: 0.1s; }
.cs_inquiry_form_group:nth-child(2) { animation-delay: 0.2s; }
.cs_inquiry_form_group:nth-child(3) { animation-delay: 0.3s; }
.cs_inquiry_form_group:nth-child(4) { animation-delay: 0.4s; }
.cs_inquiry_form_group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Value Slider */
@media (max-width: 768px) {
  .cs_mobile_slider_section .row {
    display: flex;
    flex-direction: column;
  }

  .cs_mobile_slider_viewport {
    overflow: hidden;
    width: 100%;
  }

  .cs_mobile_slider_track {
    display: flex;
    will-change: transform;
  }

  .cs_mobile_slider_track .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */

/* ==================================================
   Fun Fact Counters
   ================================================== */
.cs_funfact_section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}
.cs_funfact_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.cs_funfact_card {
  background: #ffffff;
  border: 1px solid rgba(20, 31, 76, 0.08);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cs_funfact_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #141F4C 0%, #2a3a6e 100%);
  color: #D5AB5A;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}
.cs_funfact_number_wrap {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 700;
  color: #141F4C;
  margin-bottom: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_funfact_title {
  font-size: 15px;
  font-weight: 600;
  color: #666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Compression */
@media (max-width: 991px) {
  .cs_funfact_grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cs_funfact_card { padding: 30px 15px; }
}
@media (max-width: 575px) {
  .cs_funfact_section { padding: 50px 0; }
  .cs_funfact_grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cs_funfact_card { padding: 20px 10px; border-radius: 12px; }
  .cs_funfact_icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 12px; }
  .cs_funfact_number_wrap { font-size: 26px; margin-bottom: 4px; }
  .cs_funfact_title { font-size: 11px; letter-spacing: 0.5px; }
}

/* Packages Page Styles */
.cs_packages_page_bg {
  background-color: #f8f9fb;
}
.cs_package_section {
  padding: 140px 0;
}
@media (max-width: 991px) {
  .cs_package_section {
    padding: 70px 0;
  }
}
.cs_package_section_heading {
  margin-bottom: 40px;
  text-align: center;
}
.cs_package_card {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.cs_package_card:hover {
  border-color: var(--border-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.cs_package_thumb {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: var(--gray-color);
}
.cs_package_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cs_package_card:hover .cs_package_thumb img {
  transform: scale(1.08);
}
.cs_package_title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.3;
  font-family: var(--heading-font);
}
.cs_package_price {
  color: #006064;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
.cs_package_subtitle {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 20px;
  font-weight: 500;
  display: block;
  line-height: 1.5;
}
.cs_package_includes_title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--border-color);
  margin-bottom: 15px;
  font-weight: 600;
}
.cs_package_list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
.cs_package_list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--body-color);
  line-height: 1.5;
}
.cs_package_list li::before {
  display: none;
}
.cs_package_footer_note {
  padding-top: 15px;
  font-size: 16px;
  color: var(--body-color);
  font-style: italic;
  border-top: 1px solid #eee;
  margin-bottom: 20px;
}
.cs_package_btn_wrap {
  margin-top: auto;
  width: 100%;
}
.cs_package_card .cs_btn_style_1 {
  width: 100%;
  padding: 12px 25px;
  justify-content: center;
}

/* Booking Form Styles */
.cs_booking_section {
  padding: 60px 15px;
}

.cs_booking_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
}

.cs_booking_progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.cs_progress_step {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--border-color);
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cs_progress_step.active {
  color: var(--heading-color);
  font-weight: 700;
}

.cs_progress_step.active::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--heading-color);
}

.cs_booking_step {
  display: none;
  animation: fadeIn 0.5s;
}

.cs_booking_step.active {
  display: block;
}

.cs_booking_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Category header for Step 2 - shows selected category */
.cs_service_step_heading {
  grid-column: 1 / -1;
  font-size: 24px;
  font-weight: 700;
  color: #141F4C;
  margin-bottom: 16px;
}

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

.cs_booking_card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  background: var(--white-color);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.cs_category_card {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.cs_category_card h4 {
  margin: 12px 0 0 0;
}

.cs_booking_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--heading-color);
}

/* Service cards in step 2 - no hover effect */
.cs_booking_step[data-step="2"] .cs_booking_card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-color);
}

.cs_booking_card.selected {
  background-color: var(--gray-color);
  border-color: var(--heading-color);
  box-shadow: 0 0 0 2px var(--heading-color) inset;
}

.cs_booking_card h4 {
  font-size: 18px;
  margin: 0 0 8px 0;
  pointer-events: none;
}

.cs_booking_price {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
  pointer-events: none;
}

.cs_booking_desc_list {
  margin: 6px 0 0 0;
  padding-left: 0;
  pointer-events: none;
}

.cs_booking_desc_list li {
  font-size: 12px;
  color: #555;
  margin-bottom: 3px;
  line-height: 1.4;
}

.cs_booking_includes {
  margin: 4px 0;
  width: 100%;
}

.cs_includes_line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 8px 0;
  width: 100%;
}

.cs_includes_label {
  display: none;
}

.cs_booking_icon {
  font-size: 32px;
  color: var(--heading-color);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.cs_booking_price {
  font-size: 25px;
  font-weight: 700;
  color: #006064;
  margin-top: 8px;
  pointer-events: none;
}

@media (max-width: 575px) {
  .cs_booking_card {
    min-height: 120px;
  }
  .cs_booking_icon {
    font-size: 28px;
    height: 40px;
  }
  .cs_booking_desc_list {
    margin: 6px 0 0 0;
  }
  .cs_booking_desc_list li {
    font-size: 11px;
    margin-bottom: 3px;
  }
  .cs_booking_card h4 {
    font-size: 16px;
  }
  .cs_booking_price {
    font-size: 12px;
  }
  .cs_booking_includes {
    margin: 6px 0;
  }
}

.cs_summary_grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cs_summary_item.full-width {
  grid-column: 1 / -1;
}

.cs_summary_item strong {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--body-color);
  letter-spacing: 1px;
}

.cs_summary_item span, 
.cs_summary_item p {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
}

.cs_summary_divider {
  grid-column: 1 / -1;
  height: 1px;
  background: #e0e0e0;
  margin: 10px 0;
}

@media (max-width: 575px) {
  .cs_summary_grid {
    grid-template-columns: 1fr;
  }
}

.cs_btn_style_1:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ==================================================
   PRODUCTION-READY BLOG COMPONENT
   ================================================== */
:root {
  --blog-spacing: 8px;
  --blog-radius: 16px;
  --blog-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --blog-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
  --blog-font: 'Inter', sans-serif;
  --blog-primary: #111111;
  --blog-secondary: #666666;
  --blog-accent: #000000;
  --blog-bg: #ffffff;
  --blog-lift: -6px;
  --blog-gap: 32px;
}

/* FIX: Remove top space before banner image in book-your-trip.html */
.cs_package_section .cs_fullwidth_banner {
  margin-top: -140px !important;
  padding-top: 0 !important;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 991px) {
  .cs_package_section .cs_fullwidth_banner {
    margin-top: -70px !important;
  }
}
@media (max-width: 575px) {
  .cs_package_section .cs_fullwidth_banner {
    margin-top: -60px !important;
  }
}

.blog-section {
  padding: 140px 0;
  background-color: transparent;
  overflow: hidden;
}

.blog-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title {
  font-family: var(--heading-font);
  font-size: clamp(32px, 5vw, 96px);
  font-weight: 400;
  color: var(--blog-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.blog-subtitle {
  font-family: var(--blog-font);
  font-size: 18px;
  color: var(--blog-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid-wrapper {
  width: 100%;
  position: relative;
}

/* Desktop & Tablet Grid */
.blog-grid {
  display: grid;
  gap: var(--blog-gap);
  width: 100%;
}

@media (min-width: 1200px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Carousel Styles (<768px) */
@media (max-width: 767px) {
  .blog-section { padding: 80px 0; }
  
  .blog-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0; 
    width: max-content; 
    cursor: grab;
    touch-action: pan-y;
    will-change: transform;
  }
  
  .blog-grid:active { cursor: grabbing; }
  
  .blog-card {
    /* Peek effect: 85vw width + margin */
    width: 85vw;
    margin-right: 20px;
    flex-shrink: 0;
    user-select: none;
  }
}

/* Blog Card Component */
.blog-card {
  background: var(--blog-bg);
  border-radius: var(--blog-radius);
  overflow: hidden;
  box-shadow: var(--blog-shadow);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  /* Fix for Safari overflow radius */
  transform: translateZ(0);
}

.blog-card:hover {
  transform: translateY(var(--blog-lift));
  box-shadow: var(--blog-shadow-hover);
}

.blog-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.blog-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image { transform: scale(1.08); }

.blog-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--blog-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--blog-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--blog-font);
  font-size: 13px;
  color: var(--blog-secondary);
}

.blog-card__author { font-weight: 600; color: var(--blog-primary); }
.blog-card__date::before { content: "•"; margin-right: 8px; color: #e5e5e5; }

.blog-card__title {
  font-family: var(--blog-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--blog-primary);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  font-family: var(--blog-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--blog-secondary);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}

.blog-card__link {
  font-family: var(--blog-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--blog-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}

.blog-card__link:hover { opacity: 0.7; }
.blog-card__link svg { transition: transform 0.3s ease; }
.blog-card__link:hover svg { transform: translateX(4px); }

/* Hero Section with Buttons - Custom */
.cs_hero_with_buttons {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.cs_hero_with_buttons .cs_banner_style_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cs_hero_content_wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}

/* Responsive for smaller laptops and tablets */
@media (max-width: 1199px) {
  .cs_hero_with_buttons {
    min-height: 80vh;
  }
}

@media (max-width: 991px) {
  .cs_hero_with_buttons {
    min-height: 75vh;
  }
  
  .cs_hero_content_wrap {
    padding: 100px 0 60px;
  }
}

@media (max-width: 576px) {
  .cs_hero_with_buttons {
    min-height: 70vh;
  }
  
  .cs_hero_content_wrap {
    padding: 80px 0 50px;
  }
}

.cs_hero_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gold Button - Book your ride */
.cs_btn_gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px !important;
  background: linear-gradient(135deg, #E2B56A 0%, #D4A855 50%, #FBFBFC 100%);
  background-size: 200% 200%;
  background-position: 100% 100%;
  color: #141F4C;
  font-weight: 600;
  font-size: 13px !important;
  text-decoration: none;
  border-radius: 6px;
  transition: none;
  box-shadow: 0 4px 20px rgba(226, 181, 106, 0.4);
  border: none;
}

.cs_btn_gold:hover {
  background-position: 100% 100%;
  transform: none;
  box-shadow: 0 4px 20px rgba(226, 181, 106, 0.4);
  color: #141F4C;
}

.cs_btn_gold svg {
  transition: none;
}

.cs_btn_gold:hover svg {
  transform: none;
}

/* Blue Button - View Services */
.cs_btn_blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px !important;
  background-color: #141F4C;
  color: #FBFBFC;
  font-weight: 600;
  font-size: 13px !important;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(20, 31, 76, 0.3);
  border: none;
}

.cs_btn_blue svg {
  transition: transform 0.3s ease;
}

.cs_btn_blue:hover {
  color: #ffffff;
}

.cs_btn_blue:hover svg {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .cs_hero_content_wrap {
    padding: 100px 0 60px;
  }
  
  .cs_hero_buttons {
    gap: 15px;
  }
  
  .cs_btn_gold,
  .cs_btn_blue {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .cs_hero_content_wrap {
    padding: 80px 0 50px;
  }
  
  .cs_hero_buttons {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .cs_btn_gold,
  .cs_btn_blue {
    flex: 1;
    max-width: none;
    justify-content: center;
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* Ultra-wide screens */
@media (min-width: 2000px) {
  .cs_hero_content_wrap {
    max-width: 1800px;
    margin: 0 auto;
  }
}

/* High DPI displays */

/* Flex center helper */
.cs_flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Remove white gradient from hero in mobile view */
@media (max-width: 991px) {
  .cs_hero_with_buttons .cs_banner_style_1::before,
  .cs_hero_with_buttons .cs_banner_style_1::after {
    display: none !important;
    background: none !important;
    content: none !important;
  }
  
  .cs_banner_style_1 {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
    background-size: auto !important;
    background-position: unset !important;
    background-repeat: no-repeat !important;
  }
  
  .cs_hero_with_buttons {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
    background-size: auto !important;
  }
  
  .cs_hero_with_buttons .cs_banner_style_1 {
    background: transparent !important;
    background-image: none !important;
  }
  
  .cs_hero_style_1.cs_hero_with_buttons .cs_banner_style_1 {
    background: none !important;
  }
  
  /* Target video element directly */
  .cs_banner_style_1 video,
  .cs_hero_with_buttons .cs_banner_style_1 video,
  .mobile-banner-video {
    filter: none !important;
    opacity: 1 !important;
    -webkit-filter: none !important;
  }
  
  /* Ensure no pseudo-elements on section */
  .cs_hero_style_1::before,
  .cs_hero_style_1::after,
  .cs_hero_with_buttons::before,
  .cs_hero_with_buttons::after,
  .cs_hero_style_1 .cs_banner_style_1::before,
  .cs_hero_style_1 .cs_banner_style_1::after,
  .cs_hero_with_buttons .cs_banner_style_1::before,
  .cs_hero_with_buttons .cs_banner_style_1::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }
  
  /* Ensure container doesn't add any overlay */
  .cs_hero_content_wrap {
    background: transparent !important;
    background-image: none !important;
  }
  
  /* Hide any overlay divs */
  .cs_hero_with_buttons > div:not(.cs_banner_style_1):not(.cs_hero_content_wrap) {
    display: none !important;
  }
  
  /* Additional - ensure no overflow issues */
  body.hero-overflow-hidden {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  
  /* Force full width without side gradients */
  .cs_hero_style_1,
  .cs_hero_with_buttons,
  .cs_banner_style_1 {
    max-width: 100vw !important;
    overflow: hidden !important;
  }
}

/* Tablet view */
@media (max-width: 991px) {
  .cs_hero_with_buttons .cs_banner_style_1::before,
  .cs_hero_with_buttons .cs_banner_style_1::after {
    display: none !important;
    background: none !important;
  }
  
  .cs_banner_style_1 {
    background: none !important;
    background-image: none !important;
  }
  
  .cs_hero_with_buttons {
    background: none !important;
    background-image: none !important;
  }
  
  .mobile-banner-video {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================================================
   NORTH ISLAND PAGE STYLES
   ========================================================================== */

/* Airport Transfers Compressed Premium Footer */
.at-compressed-footer {
  background: linear-gradient(135deg, #0a0f25 0%, #10183b 50%, #0a0f25 100%);
  border-top: 1px solid rgba(213, 171, 90, 0.15);
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.at-compressed-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 171, 90, 0.5), transparent);
}
.at-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.at-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.at-footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.at-footer-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}
.at-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.at-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.at-footer-contact a i {
  color: #D5AB5A;
  font-size: 14px;
  width: 16px;
  text-align: center;
}
.at-footer-contact a:hover {
  color: #D5AB5A;
}
.at-footer-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.at-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.at-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}
.at-footer-links a:hover {
  color: #ffffff;
}
.at-footer-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.at-footer-form:focus-within {
  border-color: #D5AB5A;
}
.at-footer-form input {
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  width: 100%;
  outline: none;
}
.at-footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.at-footer-form button {
  background: #D5AB5A;
  border: none;
  color: #141F4C;
  padding: 0 16px;
  height: 38px;
  cursor: pointer;
  transition: background 0.3s;
}
.at-footer-form button:hover {
  background: #e6c175;
}
.at-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.at-footer-social {
  display: flex;
  gap: 10px;
}
.at-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.at-footer-social a:hover {
  background: rgba(213, 171, 90, 0.1);
  border-color: #D5AB5A;
  color: #D5AB5A;
  transform: translateY(-3px);
}
.at-footer-legal {
  display: flex;
  gap: 20px;
}
.at-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.at-footer-legal a:hover {
  color: #D5AB5A;
}
@media (max-width: 991px) {
  .at-compressed-footer {
    padding: 40px 0 24px;
  }
  .at-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 32px;
  }
}
@media (max-width: 767px) {
  .at-compressed-footer {
    padding: 36px 0 20px;
  }
  .at-footer-inner {
    gap: 28px;
  }
  .at-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .at-footer-brand img {
    height: 28px;
    margin-bottom: 12px;
  }
  .at-footer-desc {
    font-size: 11.5px;
    margin-bottom: 14px;
  }
  .at-footer-contact a {
    font-size: 11px;
    gap: 6px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .at-footer-title {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .at-footer-links {
    gap: 8px;
  }
  .at-footer-links a {
    font-size: 11.5px;
  }
  .at-footer-form {
    border-radius: 6px;
  }
  .at-footer-form input {
    padding: 8px 10px;
    font-size: 11px;
  }
  .at-footer-form button {
    padding: 0 12px;
    height: 32px;
  }
  .at-footer-bottom {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
    padding-top: 20px;
    font-size: 11px;
  }
  .at-footer-social {
    justify-content: center;
    gap: 8px;
  }
  .at-footer-social a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .at-footer-legal {
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .at-footer-main {
    gap: 24px 8px;
  }
  .at-footer-contact a {
    font-size: 10px;
  }
  .at-footer-desc {
    font-size: 10.5px;
  }
  .at-footer-title {
    font-size: 11px;
  }
  .at-footer-links a {
    font-size: 11px;
  }
}

/* Page Hero Section */
.north-island-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, #141F4C 0%, #1a2a5c 50%, #234074 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.north-island-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 50%), 
              radial-gradient(ellipse at 70% 70%, rgba(213, 171, 90, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.north-island-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.north-island-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.north-island-hero .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.north-island-hero .hero-badge {
  display: inline-block;
  background: rgba(213, 171, 90, 0.2);
  border: 1px solid rgba(213, 171, 90, 0.4);
  color: #D5AB5A;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Premium Scroll Reveal Animations */
.reveal {
  opacity: 0;
  visibility: hidden;
}

.reveal-initial {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-fade {
  opacity: 0;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-card {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

/* Tab Navigation Animations */
.tab-navigation {
  opacity: 0;
  transform: translateY(30px);
}

.tab-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.tab-btn:hover {
  transform: translateY(-3px);
}

.tab-btn.active {
  transform: translateY(0);
}

.tab-btn:focus {
  outline: 2px solid #D5AB5A;
  outline-offset: 2px;
}

/* Tab Content Animations */
.tab-hero-section {
  opacity: 0;
  transform: scale(1.05);
}

.tab-main-content {
  opacity: 0;
  transform: translateY(40px);
}

.tab-title-block {
  opacity: 0;
  transform: translateX(-60px);
}

.tab-booking-card {
  opacity: 0;
  transform: translateX(60px);
}

.section-header {
  opacity: 0;
  transform: translateY(40px);
}

.attraction-card {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.attraction-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cta-wrapper {
  opacity: 0;
  transform: translateY(30px);
}

/* Smooth transitions */
.reveal-active,
.reveal-active .tab-navigation,
.reveal-active .tab-btn,
.reveal-active .tab-hero-section,
.reveal-active .tab-main-content,
.reveal-active .tab-title-block,
.reveal-active .tab-booking-card,
.reveal-active .section-header,
.reveal-active .attraction-card,
.reveal-active .cta-wrapper {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Image reveal effect */
.tab-hero-image {
  overflow: hidden;
}

.tab-hero-image img {
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-active .tab-hero-image img {
  transform: scale(1);
}

/* Content stagger animations */
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium button animation */
.tab-cta-btn,
.tab-hero-card-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.tab-cta-btn::before,
.tab-hero-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.tab-cta-btn:hover::before,
.tab-hero-card-btn:hover::before {
  left: 100%;
}

.tab-cta-btn:focus,
.tab-hero-card-btn:focus {
  outline: 2px solid #D5AB5A;
  outline-offset: 2px;
}

/* Loading state */
.page-loading .reveal-initial {
  opacity: 0;
  transform: translateY(60px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal-initial,
  .reveal-fade,
  .reveal-scale,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-card,
  .tab-navigation,
  .tab-btn,
  .tab-hero-section,
  .tab-main-content,
  .tab-title-block,
  .tab-booking-card,
  .section-header,
  .attraction-card,
  .cta-wrapper {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* iPad specific styles for Main Content Area (Side-by-side like iPad Pro) */
@media (min-width: 768px) and (max-width: 1024px) {
  .tab-main-content {
    padding: 2rem 1.5rem !important;
  }
  .tab-title-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .tab-title-block {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    text-align: left !important;
    padding: 0 !important;
  }
  .tab-booking-card {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    padding: 1.5rem !important;
    margin: 0 !important;
  }
  .tab-title-block h1 {
    font-size: 2.2rem !important;
    text-align: left !important;
    margin-bottom: 0.75rem !important;
  }
  .tab-title-block p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    text-align: left !important;
    font-size: 0.95rem !important;
  }
  .location-tag {
    justify-content: flex-start !important;
    margin-bottom: 1rem !important;
    display: inline-flex !important;
  }
  .tab-booking-card h3 {
    font-size: 1.3rem !important;
  }
  .tab-booking-card p, .tab-booking-card ul li {
    font-size: 0.85rem !important;
  }
  .tab-booking-card .tab-hero-card-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
  }
  .attractions-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .attraction-card {
    width: 100% !important;
    margin: 0 !important;
  }
  .attraction-card img {
    height: 180px !important;
  }
}

  /* Card Badges */
  .cs_marquee_card {
    position: relative;
  }
  
  .cs_badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #E2B56A, #D4A855);
    color: #ffffff !important;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(226, 181, 106, 0.3);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
  }

  .cs_badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(226, 181, 106, 0.4);
  }

  /* Specific for Value Cards - Always Visible */
  .cs_value_card_style_1 .cs_badge {
    top: 16px;
    right: 16px;
    font-size: 10px;
    padding: 6px 10px;
    z-index: 20 !important;
    position: absolute !important;
    background: linear-gradient(135deg, #D5AB5A 0%, #B88A44 100%) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .cs_value_card_style_1 {
    position: relative !important;
  }

  .cs_badge.most-booked {
    background: linear-gradient(135deg, #D5AB5A 0%, #B88A44 100%);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(213, 171, 90, 0.4);
  }

  .cs_badge.most-booked:hover {
    background: linear-gradient(135deg, #B88A44 0%, #D5AB5A 100%);
    box-shadow: 0 6px 16px rgba(213, 171, 90, 0.5);
  }

  /* Enhanced Compact & Polished Price Tags - Step 1 Complete */
  .cs_card_price_tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #D5AB5A 0%, #B88A44 50%, #D5AB5A 100%);
    background-size: 200% 200%;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px 5px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 
      0 4px 12px rgba(213, 171, 90, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    font-family: var(--body-font);
    line-height: 1.2;
    min-height: 24px;
  }

  .cs_card_price_tag i {
    font-size: 9px;
    opacity: 0.95;
    transition: transform 0.3s ease;
  }

  .cs_card_price_tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(255,255,255,0.3) 50%, 
      transparent 100%);
    transition: left 0.6s ease;
  }

  .cs_card_price_tag:hover {
    background-position: 0% 0%;
    box-shadow: 
      0 6px 20px rgba(213, 171, 90, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #141F4C 0%, #1e2d63 50%, #141F4C 100%);
  }

  .cs_card_price_tag:hover::before {
    left: 100%;
  }

  .cs_card_price_tag:hover i {
    transform: rotate(10deg) scale(1.1);
  }

  /* Ensure Value Cards inherit properly */
  .cs_value_card_style_1:hover .cs_card_price_tag {
    background: linear-gradient(135deg, #141F4C 0%, #1e2d63 50%, #141F4C 100%);
  }

  /* Responsive Enhancements - Tablet */
  @media (max-width: 768px) {
    /* Card Container Spacing */
    .cs_value_card_style_1 {
      padding: 20px !important;
      gap: 16px;
      display: flex;
      flex-direction: column;
    }
    
    /* Icon/Badge Area */
    .cs_value_card_style_1 .cs_value_card_no {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      font-size: 24px !important;
      margin-bottom: 8px;
    }
    
    .cs_value_card_style_1 .cs_badge {
      top: 12px !important;
      right: 12px !important;
      padding: 5px 10px !important;
      font-size: 10px !important;
    }
    
    /* Value Text Container */
    .cs_value_card_style_1 .cs_value_text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    /* Title */
    .cs_value_card_title {
      font-size: 18px !important;
      font-weight: 600;
      line-height: 1.35;
      color: #141F4C;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    /* Price Tag */
    .cs_card_price_tag {
      font-size: 11px;
      padding: 7px 16px;
      gap: 6px;
      min-height: 28px;
      margin: 0 !important;
      align-self: flex-start;
    }
    
    .cs_card_price_tag i {
      font-size: 9px;
    }
    
    /* Card Image */
    .cs_value_card_style_1 img {
      width: 100% !important;
      height: auto;
      max-height: none !important;
      border-radius: 8px;
      object-fit: contain;
      object-position: center;
      margin: 10px 0 !important;
      display: block;
      padding: 4px;
      background: transparent;
    }
    
    /* Description Text */
    .cs_value_card_info {
      font-size: 13px !important;
      line-height: 1.65;
      color: #666;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    /* Divider */
    .cs_value_card_style_1 .cs_value_card_divider {
      display: none !important;
    }
    
    /* Button */
    .cs_value_btn {
      padding: 12px 18px !important;
      font-size: 13px !important;
      font-weight: 600;
      border-radius: 6px;
      align-self: stretch;
      margin: 0 !important;
    }
  }

/* Responsive Enhancements - Mobile */
  @media (max-width: 480px) {
    /* Card Container Spacing */
    .cs_value_card_style_1 {
      padding: 18px !important;
      gap: 14px;
      display: flex;
      flex-direction: column;
    }
    
    /* Icon/Badge Area */
    .cs_value_card_style_1 .cs_value_card_no {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      font-size: 22px !important;
      margin-bottom: 6px;
    }
    
    .cs_value_card_style_1 .cs_badge {
      top: 10px !important;
      right: 10px !important;
      padding: 4px 8px !important;
      font-size: 9px !important;
    }
    
    /* Value Text Container */
    .cs_value_card_style_1 .cs_value_text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    
    /* Title */
    .cs_value_card_title {
      font-size: 16px !important;
      font-weight: 600;
      line-height: 1.32;
      color: #141F4C;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    /* Price Tag */
    .cs_card_price_tag {
      font-size: 10px;
      padding: 6px 14px;
      gap: 4px;
      min-height: 26px;
      margin: 0 !important;
      align-self: flex-start;
    }
    
    .cs_card_price_tag i {
      font-size: 8px;
    }
    
    /* Card Image */
    .cs_value_card_style_1 img {
      width: 100% !important;
      height: auto;
      max-height: none !important;
      border-radius: 8px;
      object-fit: contain;
      object-position: center;
      margin: 8px 0 !important;
      display: block;
      padding: 4px;
      background: transparent;
    }
    
    /* Description Text */
    .cs_value_card_info {
      font-size: 12px !important;
      line-height: 1.6;
      color: #666;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    /* Divider */
    .cs_value_card_style_1 .cs_value_card_divider {
      display: none !important;
    }
    
    /* Button */
    .cs_value_btn {
      padding: 11px 16px !important;
      font-size: 12px !important;
      font-weight: 600;
      border-radius: 6px;
      align-self: stretch;
      margin: 0 !important;
    }
  }

  /*============================================================
  25. Redesigned Modern Funfact Section - Compact Glassmorphic Animated Counters
  ================================================================*/

  /* Main Wrapper - Full Width, Auto Height */
  .cs_funfact_redesigned {
    padding: clamp(1.5rem, 4vw, 3rem) 0;
  }

  /* Enhanced Grid - Responsive 4/2/1 Columns */
  .cs_modern_funfact_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(10rem, auto);
    gap: clamp(1.25rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
  }

  /* Tablet: 2 Columns */
  @media (max-width: 991px) {
    .cs_modern_funfact_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(1rem, 2.5vw, 1.75rem);
    }
  }

  /* Mobile: 1 Column, Full Width */
  @media (max-width: 575px) {
    .cs_modern_funfact_grid {
      grid-template-columns: 1fr;
      gap: clamp(1.25rem, 4vw, 1.75rem);
      max-width: none;
      padding: 0 clamp(1rem, 5vw, 2rem);
    }
  }

  /* Individual Cards - Glassmorphic Compact Design */
  .cs_modern_funfact_card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: clamp(1rem, 3vw, 1.25rem);
    padding: clamp(1.5rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 12rem;
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .cs_modern_funfact_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
      rgba(226, 181, 106, 0.08) 0%, 
      rgba(20, 31, 76, 0.04) 40%, 
      transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
  }

  .cs_modern_funfact_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    z-index: 2;
  }

  /* Icon Styling - Larger, Gradient, Animated Hover */
  .cs_modern_funfact_icon {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    width: clamp(3.75rem, 7vw, 4.75rem);
    height: clamp(3.75rem, 7vw, 4.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    background: linear-gradient(135deg, rgba(226, 181, 106, 0.18), rgba(20, 31, 76, 0.12));
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
  }

  .cs_modern_funfact_icon i {
    background: conic-gradient(from 0deg at 50% 50%, #E2B56A 0deg, #D4A855 90deg, #141F4C 180deg, #E2B56A 270deg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(226, 181, 106, 0.28));
  }

  /* Counter Number - Large, Gradient, Animated */
  .cs_modern_funfact_number {
    margin-bottom: clamp(0.6rem, 1.5vw, 0.9rem);
    position: relative;
    z-index: 3;
  }

  .funfact-counter {
    font-family: 'Switzer', var(--heading-font);
    font-weight: 800;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1;
    background: linear-gradient(135deg, #E2B56A 0%, #D4A855 50%, #141F4C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(226, 181, 106, 0.35));
    display: inline-block;
    position: relative;
  }

  /* Counter Suffix Styling */
  .funfact-suffix {
    font-family: 'Switzer', var(--heading-font);
    font-weight: 700;
    font-size: clamp(1.25rem, 4vw, 2rem);
    line-height: 1;
    color: #141F4C;
    margin-left: 0.2em;
    position: relative;
    top: -0.1em;
  }

  .funfact-suffix.funfact-percent {
    color: #E2B56A;
  }

  /* Title - Compact, Modern Typography */
  .cs_modern_funfact_title {
    font-family: 'Satoshi', var(--body-font);
    font-size: clamp(0.875rem, 2.2vw, 1.05rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #141F4C;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 3;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  /* WOW Animation Integration */
  .cs_modern_funfact_card.wow {
    animation-fill-mode: both;
  }

  /* Staggered Animation Delays */
  .cs_modern_funfact_card[data-wow-delay="0.1s"] { animation-delay: 0.1s; }
  .cs_modern_funfact_card[data-wow-delay="0.2s"] { animation-delay: 0.2s; }
  .cs_modern_funfact_card[data-wow-delay="0.3s"] { animation-delay: 0.3s; }
  .cs_modern_funfact_card[data-wow-delay="0.4s"] { animation-delay: 0.4s; }

  /* Odometer Animation Enhancements */
  .funfact-counter.odometer {
    /* Ensure smooth counter animation */
    display: inline-block;
  }

  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
  }

  /* High Contrast Mode */
  @media (prefers-contrast: high) {
    .cs_modern_funfact_card {
      border-width: 2px;
      background: rgba(255, 255, 255, 0.3);
    }
    .cs_modern_funfact_icon {
      border-width: 3px;
    }
  }

  /* Print Styles */
  @media print {
    .cs_modern_funfact_card {
      box-shadow: none;
      background: white;
      border: 1px solid black;
    }
    .cs_modern_funfact_icon i {
      -webkit-text-fill-color: black;
      background: none;
      filter: none;
    }
  }

  /* Legacy Browser Fallbacks */
  .cs_modern_funfact_card {
    background: rgba(255, 255, 255, 0.9);
  }

  /* Ensure consistent card height across viewports */
  .cs_modern_funfact_card {
    display: flex;
    min-height: clamp(14rem, 28vh, 18rem);
  }

  /* WOW Animation Integration */
  .cs_modern_funfact_card.wow {
    animation-fill-mode: both;
  }

  /* Staggered Animation Delays */
  .cs_modern_funfact_card[data-wow-delay="0.1s"] { animation-delay: 0.1s; }
  .cs_modern_funfact_card[data-wow-delay="0.2s"] { animation-delay: 0.2s; }
  .cs_modern_funfact_card[data-wow-delay="0.3s"] { animation-delay: 0.3s; }
  .cs_modern_funfact_card[data-wow-delay="0.4s"] { animation-delay: 0.4s; }

  /* Odometer Animation Enhancements */
  .funfact-counter.odometer {
    /* Ensure smooth counter animation */
    display: inline-block;
  }

  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
  }

  /* High Contrast Mode */
  @media (prefers-contrast: high) {
    .cs_modern_funfact_card {
      border-width: 2px;
      background: rgba(255, 255, 255, 0.3);
    }
    .cs_modern_funfact_icon {
      border-width: 3px;
    }
  }

  /* Print Styles */
  @media print {
    .cs_modern_funfact_card {
      box-shadow: none;
      background: white;
      border: 1px solid black;
    }
    .cs_modern_funfact_icon i {
      -webkit-text-fill-color: black;
      background: none;
      filter: none;
    }
  }

  /* Legacy Browser Fallbacks */
  .cs_modern_funfact_card {
    background: rgba(255, 255, 255, 0.9);
  }

  /* Ensure consistent card height across viewports */
  .cs_modern_funfact_card {
    display: flex;
    min-height: clamp(14rem, 28vh, 18rem);
  }

/* Mobile Section Dividers */
@media (max-width: 767px) {
  section:not(.cs_funfact_section), .cs_brand_section_style_1 {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
