/* ================================================== */

/* Solaria
/* created by designesia

@charset "utf-8";

Table of content:

* body
* header
  * subheader
* navigation
* content
* section
* footer
* sidebar
* contact
* elements
  * border
  * breadcrumb
  * button and link
  * columns
  * counter
  * divider
  * dropcap
  * heading
  * list
  * map
  * page heading
  * pagination
  * preloader
  * progress bar
  * social icons
  * spacer
  * tabs
  * testimonial
* plugins
* media query
*/

/* ================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

/* ================================================== */

/* import fonts icon */

/* ================================================== */

@import url("font-awesome.css");
@import url("fontawesome.css");
@import url("brands.css");
@import url("solid.css");
@import url("style_1.css");
@import url("style_2.css");
@import url("icofont.min.css");

* {
  /* body font */
  --body-font: "Manrope", Helvetica, Arial, sans-serif;
  --body-font-size: 16px;
  --body-font-color: #606060;
  --body-font-color-dark: rgba(255, 255, 255, 0.8);
  --body-font-weight: 400;
  /* heading font */
  --heading-font: "Inter Tight", Helvetica, Arial, sans-serif;
  --heading-font-weight: 500;
  --heading-font-color: #000000;
  --heading-text-transform: none;
  /* h1 */
  --h1-font-size: 60px;
  --h1-font-weight: var(--heading-font-weight);
  --h1-letter-spacing: -0.02em;
  --h1-line-height: 1.15em;
  --h1-margin-bottom: 20px;
  /* h2 */
  --h2-font: var(--heading-font);
  --h2-font-size: 48px;
  --h2-font-weight: var(--heading-font-weight);
  --h2-letter-spacing: -0.015em;
  --h2-line-height: 1.2em;
  --h2-margin-bottom: 30px;
  /* h3 */
  --h3-font-size: 26px;
  --h3-font-weight: 600;
  --h3-letter-spacing: 0;
  --h3-line-height: 1.5em;
  --h3-margin-bottom: 10px;
  /* h4 */
  --h4-font-size: 20px;
  --h4-font-weight: 600;
  --h4-letter-spacing: 0;
  --h4-line-height: 1.6em;
  --h4-margin-bottom: 10px;
  /* h5 */
  --h5-font-size: 18px;
  --h5-font-weight: 600;
  --h5-letter-spacing: 0;
  --h5-line-height: 1.6em;
  --h5-margin-bottom: 10px;
  /* h6 */
  --h6-font-size: 16px;
  --h6-font-weight: 600;
  --h6-letter-spacing: 0;
  --h6-line-height: 1.6em;
  --h6-margin-bottom: 10px;
  /* mainmenu */
  --mainmenu-font: var(--body-font);
  --mainmenu-font-size: 16px;
  --mainmenu-font-weight: 600;
  --mainmenu-letter-spacing: 0;
  --mainmenu-text-transform: none;
  /* header logo */
  --logo-width: 160px;
  /* misc */
  --border-default: solid 1px rgba(30, 30, 30, 1);
  --bg-color-even: #e8e8e8;
  --bg-color-odd: #f4f4f4;
  --bg-light: #f8f9fa;
  --bg-dark-1: #1b1663;
  --bg-dark-2: #120d4f;
  --bg-dark-3: #1e1e1e;
  --bg-dark-1-rgb: 27, 22, 99;
  --bg-grey: #eeeeee;
  --bg-gradient-1: 0deg, rgba(var(--primary-color-rgb), 0.1) 0%,
    rgba(var(--primary-color-rgb), 0.2) 100%;
  --swiper-theme-color: var(--primary-color);
  --rounded-1: 15px;
  --border-color: #bbbbbb;
  --container-max-width: 1240px;
  /* button */
  --btn-color: var(--heading-font-color);
  --btn-font-family: var(--body-font);
  --btn-font-size: 15px;
  --btn-font-weight: bold;
  --btn-letter-spacing: 0;
  --btn-padding: 6px 20px;
  --btn-rounded: 8px;
  --btn-text-decoration: none;
  --btn-text-transform: none;
}

/* base background color */
.bg-color {
  background: var(--primary-color);
}
.bg-light {
  background: var(--bg-light) !important;
}
.bg-dark {
  background-color: var(--bg-dark-1) !important;
}
/* base color */
.id-color {
  color: var(--primary-color);
}
.rounded-1 {
  border-radius: var(--rounded-1) !important;
  -moz-border-radius: var(--rounded-1) !important;
  border-radius: var(--rounded-1) !important;
}

/* ================================================== */

/* body */

/* ================================================== */

html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  color: var(--body-font-color);
  padding: 0;
  line-height: 1.9em;
  word-spacing: 0px;
}

a,
a:hover {
  color: var(--body-font-color);
  text-decoration: none;
  outline: none;
}

.text-light a,
.text-light a:hover {
  color: var(--body-font-color-dark);
  text-decoration: none;
  outline: none;
}

/* ================================================== */

/*  header  */

/* ================================================== */

header {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1001;
  background: var(--bg-dark-1);
  margin: 0;
}

header.transparent {
  background: none;
}

header div#logo {
  color: white;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header .logo {
  font-family: var(--body-font);
  color: #fff;
  font-size: 40px;
  font-weight: 300;
}

header.smaller #mainmenu ul ul {
  top: 0px;
}

header.smaller {
  position: fixed;
  top: 0px;
  background: rgba(var(--bg-dark-1-rgb), 0.65);
  backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
}

header .logo-mobile {
  display: none;
}

div#logo img {
  max-width: var(--logo-width);
}

.logo-footer {
  max-width: var(--logo-width);
}

/* left col header */

/* middle col header */
/* subheader */

/* ================================================== */

/* navigation */

/* ================================================== */

#mainmenu {
  font-size: 13px;
  margin: 0 auto;
  padding: 0;
  float: none;
  counter-reset: my-awesome-counter;
}

#mainmenu ul {
  margin: 0px 0px;
  padding: 0px;
  height: 30px;
  background: #ffffff;
  color: var(--body-font-color);
}

#mainmenu ul:not(.mega) {
  border: solid 1px #dddddd;
}

#mainmenu li {
  margin: 0px 0px;
  padding: 0px 0px;
  float: left;
  display: inline;
  list-style: none;
  position: relative;
}

#mainmenu > li {
  margin-right: 30px;
}

#mainmenu > li:last-child {
  margin-right: 0;
}

#mainmenu > li {
  counter-increment: my-awesome-counter;
}

#mainmenu li a.new:before {
  content: "NEW";
  font-size: 12px;
  padding: 1px 4px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-right: 5px;
  color: #ffffff;
  background: var(--primary-color);
}
/*
#mainmenu>li::before {
  content: counter(my-awesome-counter) ' —';
  right: 8px;
  top: 5px;
  color:var(--primary-color);
  margin-right: 5px;
  font-weight: 500;
  font-family: var(--heading-font);
}
*/

header.smaller #mainmenu > li::before {
  transform: scale(0);
}

#mainmenu > li > a {
  padding-right: 6px;
  font-size: var(--mainmenu-font-size);
  font-weight: var(--mainmenu-font-weight);
  text-transform: var(--mainmenu-text-transform);
  letter-spacing: var(--mainmenu-letter-spacing);
}

#mainmenu a {
  position: relative;
  display: inline-block;
  padding-top: 25px;
  padding-bottom: 25px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  outline: none;
}

#mainmenu p {
  line-height: 1.8em;
  margin-bottom: 0;
}

#mainmenu a span:not(.badge) {
  position: relative;
  width: 0%;
  color: #ffffff;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 14px;
  border-bottom: solid 2px #ffffff;
}

#mainmenu li:hover a span:not(.badge) {
  width: 100%;
}

#mainmenu li li a span:not(.badge) {
  float: right;
  margin-top: 5px;
}

#mainmenu li li {
  font-family: var(--body-font);
  font-size: 14px;
}

#mainmenu li li:last-child {
  border-bottom: none;
}

#mainmenu li li a {
  padding: 5px 15px;
  border-top: none;
  color: #606060;
  width: 100%;
  border-left: none;
  text-align: left;
  font-weight: normal;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 0;
}

#mainmenu li li a:hover {
  color: #000000 !important;
  background: var(--primary-color);
}

#mainmenu li:last-child > a {
  border-bottom: none;
}

#mainmenu li li a:hover {
  color: #111;
}

#mainmenu li li a:after {
  content: none;
}

#mainmenu li li a:hover,
#mainmenu ul li:hover > a {
  color: #fff;
}

#mainmenu li ul {
  width: 190px;
  height: auto;
  position: absolute;
  left: 0px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#mainmenu ul li b {
  background: #333;
  color: #ffffff;
  padding: 0 3px;
  padding-bottom: 3px;
  font-size: 10px;
  margin-right: 3px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

#mainmenu li li {
  font-size: 14px;
  display: block;
  float: none;
  text-transform: none;
}

#mainmenu li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}

#mainmenu li ul ul:not(.ul-list) {
  top: 0px;
  margin-left: 188px;
}

/* menu toggle for mobile */

#extra-wrap {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  overflow: hidden;
  background: rgba(var(--bg-dark-1-rgb), 0.75);
  backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#extra-wrap.open {
  right: 0;
}

#extra-content {
  padding: 50px;
  color: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -17px;
  overflow-y: scroll;
}

#btn-close {
  top: 50px;
  right: 50px;
  position: absolute;
  z-index: 1001;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

#btn-close span {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: rotate(45deg);
}

#btn-close span:nth-child(2) {
  transform: rotate(-45deg);
}

/* ================================================== */

/* content */

/* ================================================== */

#content {
  width: 100%;
  background: #ffffff;
  padding: 90px 0 90px 0;
  z-index: 100;
}

/* ================================================== */

/* section */

/* ================================================== */

section {
  padding: 100px 0 100px 0;
}

/* ================================================== */

/* footer */

/* ================================================== */

footer {
  position: relative;
  overflow: hidden;
  color: var(--body-font-color-dark);
  background: var(--bg-dark-2);
  padding: 100px 0 0 0;
}

footer p {
  line-height: 1.8em;
}

footer h5 {
  color: #fff;
  font-size: 18px;
  text-transform: none;
}

footer a {
  color: var(--body-font-color-dark);
  text-decoration: none !important;
}

footer a:hover {
  color: var(--primary-color);
}

/* topbar start here */

/* topbar left content */

.menu_side_area .btn-line {
  display: inline-block;
}

/* topbar widget */

/* topbar end here */

/* ================================================== */

/* blog */

/* ================================================== */

/* blog list */

/* de-bloglist-type-1 */

/* de-post-type-1 */

/* blog comment */

/* blog comment form */

/* ================================================== */

/* ratings */

/* ================================================== */

/* ================================================== */

/* contact form */

/* ================================================== */

.success {
  display: none;
  margin-top: 30px;
  clear: both;
  padding-top: 20px;
  padding: 20px;
  background: #96c346;
  border: solid 1px #96c346;
}

.form-control {
  padding: 10px;
  margin-bottom: 20px;
  border: solid 1px rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.025);
  border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.text-light .form-control {
  color: #ffffff;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.025);
}

.text-light ::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

.text-light::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #ffffff;
}

/* ================================================== */

/* elements */

/* ================================================== */

/* border */

/* ------------------------------ */

/* breadcrumb */

/* ------------------------------ */

/* button and link */

/* ------------------------------ */

a {
  text-decoration: none;
}

a.btn,
.btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

a.btn:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
}

a.btn-main,
a.btn-main:active,
a.btn-main:focus,
a.btn-main:visited,
.btn-main,
input[type="button"].btn-main,
a.btn-line {
  background: var(--primary-color);
  color: var(--btn-color);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  padding: var(--btn-padding);
  text-decoration: var(--btn-text-decoration);
  text-transform: var(--btn-text-transform);
  border-radius: var(--btn-rounded);
  -moz-border-radius: var(--btn-rounded);
  border-radius: var(--btn-rounded);
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  outline: 0;
}

a.btn-main.fx-slide {
  overflow: hidden;
}

a.btn-main.fx-slide span {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}

a.btn-main.fx-slide:hover span {
  transform: translate(0, 40px);
  opacity: 0;
}

a.btn-main.fx-slide:hover:before {
  opacity: 1;
  transform: translate(0, 0);
}

a.btn-main.fx-slide:before {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translate(0, -100%);
  transition: all 0.3s ease-in-out;
}

a.btn-line,
a.btn-line:hover {
  background: none;
  color: #35404e;
  border: solid 1px rgba(255, 255, 255, 0.5);
}

.text-light a.btn-line {
  color: #ffffff;
  border: solid 1px rgba(255, 255, 255, 0.5);
}

a.btn-line:hover {
  color: #ffffff;
}

header:not(.header-light) a.btn-line {
  color: #ffffff;
}

/* divider */

/* ------------------------------ */

.spacer-single {
  width: 100%;
  height: 30px;
  display: block;
  clear: both;
}

.spacer-double {
  width: 100%;
  height: 60px;
  display: block;
  clear: both;
}

.spacer-half {
  width: 100%;
  height: 15px;
  display: block;
  clear: both;
}

.spacer-30-line {
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  margin-bottom: 30px;
}

.text-light .spacer-30-line {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  margin-bottom: 30px;
}

/* dropcap */

/* ------------------------------ */

/* form */

/* ------------------------------ */

/* heading */

/* ------------------------------ */

h1,
h2,
h4,
h3,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-font-color);
  text-transform: var(--heading-text-transform);
}

footer h1,
footer h2,
footer h4,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}

h2.text-light,
footer h4,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  margin-bottom: var(--h1-margin-bottom);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  margin-bottom: var(--h2-margin-bottom);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  margin-bottom: var(--h3-margin-bottom);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  letter-spacing: var(--h5-letter-spacing);
  line-height: var(--h5-line-height);
  margin-bottom: var(--h5-margin-bottom);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  letter-spacing: var(--h6-letter-spacing);
  line-height: var(--h6-line-height);
  margin-bottom: var(--h6-margin-bottom);
}

h1.title {
  font-size: 64px;
  letter-spacing: 10px;
}

h1.title strong {
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
}

h5.new:before {
  content: "NEW";
  font-size: 12px;
  padding: 1px 6px 2px 6px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-right: 5px;
  color: #ffffff;
  background: var(--primary-color);
}

.text-light,
.text-light p {
  color: var(--body-font-color-dark);
}

.text-dark,
.text-dark p {
  color: var(--body-font-color);
}

.text-white {
  color: #fff;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
  color: #fff;
}

.text-dark h1,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark h5,
.text-dark h6 {
  color: var(--heading-font-color);
}

.text-white h1,
.text-white h2,
.text-white h4,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: #fff;
}

/* list */

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

.ul-check li {
  margin: 5px 0 5px 0;
}

.ul-check li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  margin-right: 15px;
  color: var(--primary-color);
}

/* pagination */

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    transform: scale(0);
  }

  40% {
    transform: scale(1);
    transform: scale(1);
  }
}

/* ================================================== */

/* preloader */

/* ================================================== */

#de-loader {
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Animated Sun Rays */
.sun-rays {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSunRays 10s linear infinite;
}

.ray {
  position: absolute;
  width: 4px;
  height: 100px;
  background: linear-gradient(to bottom,
    rgba(243, 156, 18, 0) 0%,
    rgba(243, 156, 18, 0.8) 50%,
    rgba(243, 156, 18, 0) 100%);
  top: 50%;
  left: 50%;
  transform-origin: center bottom;
  border-radius: 2px;
}

.ray-1 { transform: translate(-50%, -100%) rotate(0deg); }
.ray-2 { transform: translate(-50%, -100%) rotate(45deg); }
.ray-3 { transform: translate(-50%, -100%) rotate(90deg); }
.ray-4 { transform: translate(-50%, -100%) rotate(135deg); }
.ray-5 { transform: translate(-50%, -100%) rotate(180deg); }
.ray-6 { transform: translate(-50%, -100%) rotate(225deg); }
.ray-7 { transform: translate(-50%, -100%) rotate(270deg); }
.ray-8 { transform: translate(-50%, -100%) rotate(315deg); }

@keyframes rotateSunRays {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Logo Container */
.logo-container {
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.preloader-logo {
  width: 180px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(243, 156, 18, 0.5));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
    rgba(243, 156, 18, 0.3) 0%,
    rgba(243, 156, 18, 0.1) 40%,
    transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Solar Panel Grid */
.solar-grid {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  opacity: 0.3;
}

.solar-panel {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border: 2px solid rgba(243, 156, 18, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.solar-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(243, 156, 18, 0.4) 50%,
    transparent 100%);
  animation: solarShine 3s ease-in-out infinite;
}

.panel-1::before { animation-delay: 0s; }
.panel-2::before { animation-delay: 0.2s; }
.panel-3::before { animation-delay: 0.4s; }
.panel-4::before { animation-delay: 0.6s; }
.panel-5::before { animation-delay: 0.8s; }
.panel-6::before { animation-delay: 1s; }
.panel-7::before { animation-delay: 1.2s; }
.panel-8::before { animation-delay: 1.4s; }
.panel-9::before { animation-delay: 1.6s; }

@keyframes solarShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Loading Content */
.loading-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

.loading-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.loading-progress {
  width: 300px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
  border-radius: 2px;
  width: 0%;
  animation: progressFill 3s ease-out forwards;
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.progress-percentage {
  color: #f39c12;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* Floating Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #f39c12;
  border-radius: 50%;
  opacity: 0;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation: floatUp 4s ease-in-out infinite;
}

.particle-2 {
  top: 30%;
  left: 80%;
  animation: floatUp 4s ease-in-out infinite 1s;
}

.particle-3 {
  top: 60%;
  left: 20%;
  animation: floatUp 4s ease-in-out infinite 2s;
}

.particle-4 {
  top: 70%;
  left: 70%;
  animation: floatUp 4s ease-in-out infinite 3s;
}

.particle-5 {
  top: 40%;
  left: 50%;
  animation: floatUp 4s ease-in-out infinite 1.5s;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateY(-100px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(0);
  }
}

/* Preloader Exit Animation */
#de-loader.fade-out {
  animation: fadeOut 0.8s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sun-rays {
    width: 200px;
    height: 200px;
  }
  
  .ray {
    height: 60px;
  }
  
  .preloader-logo {
    width: 120px;
  }
  
  .logo-glow {
    width: 140px;
    height: 140px;
  }
  
  .solar-grid {
    width: 300px;
    height: 300px;
  }
  
  .loading-text {
    font-size: 14px;
  }
  
  .loading-progress {
    width: 250px;
  }
  
  .progress-percentage {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .sun-rays {
    width: 150px;
    height: 150px;
  }
  
  .ray {
    height: 40px;
    width: 2px;
  }
  
  .preloader-logo {
    width: 100px;
  }
  
  .logo-glow {
    width: 120px;
    height: 120px;
  }
  
  .solar-grid {
    width: 200px;
    height: 200px;
    gap: 5px;
  }
  
  .loading-text {
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .loading-progress {
    width: 200px;
  }
  
  .progress-bar {
    height: 3px;
  }
  
  .progress-percentage {
    font-size: 12px;
  }
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* progress bar */

/* ================================================== */

/* social-icons */

/* ================================================== */

.social-icons {
  display: inline-block;
}

.social-icons i {
  text-shadow: none;
  padding: 10px 5px;
  width: 36px;
  height: 36px;
  text-align: center;
  font-size: 16px;
  margin: 0 3px 0 3px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.social-icons.s2 i {
  background: rgba(255, 255, 255, 0.1);
}

.social-icons i:hover {
  background: #fff;
  border-color: #eceff3;
  color: #333;
}

/* ================================================== */

/* accordion

/* ================================================== */

.accordion-section-title {
  color: #35404e;
  width: 100%;
  padding: 15px 0;
  cursor: poInter;
  font-family: var(--body-font);
  width: 100%;
  display: inline-block;
  font-size: 17px;
  transition: all linear 0.5s;
  text-decoration: none;
  font-weight: 600;
  overflow: none;
  border-bottom: solid 1px #dddddd;
}

.text-light .accordion-section-title {
  color: #ffffff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4) !important;
}

.accordion-section-title:before {
  font-family: "FontAwesome";
  content: "\f107";
  float: right;
  color: var(--bg-dark-1);
  text-align: center;
  padding: 0 8px 0 8px;
  font-size: 15px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 30px;
}

.text-light .accordion-section-title:before {
  color: #ffffff;
}

.accordion-section-title:hover {
  text-decoration: none;
}

.accordion-section-content {
  padding-top: 15px;
  padding-bottom: 5px;
  display: none;
  margin-bottom: 10px;
}

.accordion.s2 .accordion-section-title {
  border: none;
  border-bottom: solid 1px #ddd;
}

/* bs */

/* new added */

/* tab de_light */

/* tab de_light */

/* tab de_light */

/* testimonial
    /* ================================================== */

/*
.de_testi blockquote:before {
  font-family: FontAwesome;
  content: "\f10d";
  padding-bottom: 10px;
  font-size: 20px;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  font-style: normal;
  background: #000;
  position: absolute;
  left: 15px;
  font-weight: normal;
}
*/

/* new timeline */

/* close new timeline */

/* css attributes */

.overflow-hidden {
  overflow: hidden;
}

/* ================================================== */

/* anim */

/* ================================================== */

header,
.hover,
.hover *,
a.btn-line:after,
.social-icons a i,
#back-to-top.hide,
.btn-main,
#mainmenu *,
#mainmenu a span,
.accordion .content,
#mainmenu > li::before,
#extra-wrap {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

#mainmenu li,
#mainmenu li ul {
  -o-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  transition: 0.2s ease;
  transition: 0.2s ease;
  outline: none;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.scaleIn {
  animation-name: scaleIn;
  animation-name: scaleIn;
}

@keyframes scaleInFade {
  from {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes scaleInFade {
  from {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes scaleOutFade {
  from {
    opacity: 0;
    transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}

@keyframes scaleOutFade {
  from {
    opacity: 0;
    transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}

@keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }

  100% {
    opacity: 1;
    width: 100px;
  }
}

@keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }

  100% {
    opacity: 1;
    width: 100px;
  }
}

/* ================================================== */

/* video */

/* ================================================== */

/* youtube, vimeo */

/* ================================================== */

/* map */

/* ================================================== */

/* --------------- map --------------- */

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

/* ================================================== */

/* overide bootstrap */

/* ================================================== */

.btn-primary {
  text-shadow: none;
  border: none;
}

.btn.btn-primary:hover {
  background: #555;
}

p {
  margin-top: 0;
}

p.lead {
  font-size: 17px;
  line-height: 32px;
  margin-top: 0;
  font-weight: 500;
  letter-spacing: -0.2px;
}

p.small {
  line-height: 1.8em;
}

/* Vertical line */

/* ================================================== */

/* widget */

/* ================================================== */

/* marquee */

.d-flex {
  display: flex;
  white-space: nowrap;
}

/* marquee */

.border-gray {
  border: solid 1px #ddd;
}

.bg-blur {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -o-backdrop-filter: blur(20px);
  -moz-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

/* marquee plugin close */

/* select2 begin */

/* select2 end */

.grid-divider > [class*="col-"]:nth-child(n + 2):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  height: auto;
}

.text-light .grid-divider > [class*="col-"]:nth-child(n + 2):after {
  border-left-color: rgba(255, 255, 255, 0.5);
}

/* ================================================== */

/* declass */

/* ================================================== */

/* background */
.bg-white {
  background: #ffffff;
}

/* width (percent) */
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100%;
}

/* width (px) */
.w-30px {
  width: 30px;
}
.w-80px {
  width: 80px;
}
.w-100px {
  width: 100px;
}
.w-150px {
  width: 150px;
}
.w-200px {
  width: 200px;
}

/* height (percent) */
.h-100 {
  height: 100%;
}

/* height (px) */
.h-80px {
  height: 80px;
}
.h-100px {
  height: 100px;
}

/* top (percent) */

/* top (px) */

/* bottom (percent) */

/* bottom (px) */

/* top negative (px) */

/* bottom negative (px) */

/* left pos (percent) */

/* left pos (px) */

/* right  pos (percent) */

/* right  pos (px) */

/* margin-left (percent) */

/* margin-left (px) */

/* margin top (px) */

/* margin top negative (px) */

/* margin bottom (px) */
.mb-30 {
  margin-bottom: 30px;
}

/* margin bottom negative (px) */
.mb-min-50 {
  margin-bottom: -50px;
}

/* margin left negative (px) */

/* margin top negative (px) */

/* font-size (px) */
.fs-16 {
  font-size: 16px;
}
.fs-30 {
  font-size: 30px;
}
.fs-32 {
  font-size: 32px;
}
.fs-40 {
  font-size: 40px;
}
.fs-60 {
  font-size: 60px;
}
.fs-72 {
  font-size: 72px;
}

/* font-weight */
.fw-600 {
  font-weight: 600;
}
.fw-bold {
  font-weight: bold;
}

/* margin left (px) */

/* padding (px) */
.p-30 {
  padding: 30px;
}
.p-40 {
  padding: 40px;
}

/* padding bottom (px) */

/* padding top (px) */

/* padding left (px) */

/* border white */

/* border bottom white with transparency */

/* border bottom grey */

/* border bottom dark */

/* border bottom dark */

/* hover effects */
.hover-op-0 {
  opacity: 1;
}
.hover:hover .hover-op-0 {
  opacity: 0;
}

.hover-op-05 {
  opacity: 0;
}
.hover:hover .hover-op-05 {
  opacity: 0.9;
}

/* Text color transitions for hover effect */
.hover-text-white {
  color: #ffffff !important;
  transition: color 0.3s ease;
}
.hover:hover .hover-text-white {
  color: #666666 !important;
}
.hover:hover .hover-scale-1-1 {
  transform: scale(1.1);
}
.hover:hover .hover-text-light * {
  color: #ffffff;
}

.inline-block {
  display: inline-block;
}

/* opacity */
.op-3 {
  opacity: 0.3;
}

/* line height em */
.lh-1-5 {
  line-height: 1.5em;
}

/* min height (px) */

/* background dark */

/* overlay-black */

/* overlay-black */

/* overlay-white */

/* positions */
.absolute,
.abs {
  position: absolute;
}
.relative,
.position-relative {
  position: relative;
}

/* z-index */
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}

.rtl-show {
  display: none;
}

/* declass end */

/* custom tabs */

/* custom tabs end */

/* de-dot */

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

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

/* de-vertical-nav begin */

/* de-vertical-nav end */

/* timeline begin */

@keyframes pulsing {
  from {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0);
  }
  to {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

/* de-timeline end */

/* timeline-s2 begin */

@keyframes pulsing {
  from {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0);
  }
  to {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

/* de-timeline end */

/* swiperjs */

.swiper {
  background: var(--bg-dark-1);
}

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

/* swiper end */

/* swiper #2 begin */

/* swiper #2 end */

.de-flex #mainmenu {
  margin: 0;
}

.subtitle {
  position: relative;
  font-weight: 600;
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-family: var(--body-font);
  color: var(--heading-font-color);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.text-light .subtitle {
  color: #ffffff;
}

.text-light .subtitle:not(.id-color) {
  color: #ffffff;
}

@keyframes blinkingText {
  0% {
    background: var(--primary-color);
  }
  50% {
    background: rgba(var(--primary-color-rgb), 0);
  }
  100% {
    background: var(--primary-color);
  }
}

/* de-number begin */
/* de-number close */

.de-flex {
  display: flex;
  justify-content: space-between;
}

.de-flex > .de-flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Cookie Consent Begin*/

/*Cookie Consent End*/

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(120, 169, 56, 0.2);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(120, 169, 56, 0);
  }
}

.border {
  border-color: #efefef !important;
}

.text-light .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

strong {
  font-weight: bold;
}

.text-light strong {
  color: #fff;
}

.bg-white {
  background: #ffffff;
}

.border-bottom {
  border-bottom: solid 1px #e5e5e5;
}

.text-light .border-bottom {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3) !important;
}

.no-bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

p {
  margin-bottom: 20px;
}

.no-bottom {
  padding-bottom: 0 !important;
}

.no-top {
  padding-top: 0 !important;
}

.form-control:focus {
  box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* new owl */

/* new owl close */

.wow {
  visibility: hidden;
}

#back-to-top {
  background: var(--primary-color);
  position: fixed;
  bottom: -40px;
  right: 20px;
  z-index: 1020;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
  cursor: poInter;
  padding-top: 3px;
  border: 0;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  outline: none;
  opacity: 0;
  border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

#back-to-top:hover {
  transform: scale(1.1);
}

#back-to-top.hide {
  bottom: -40px;
}

#back-to-top:before {
  font-family: "FontAwesome";
  font-size: 18px;
  content: "\f106";
  color: #000000;
  position: relative;
}

/* mouse scroll icon begin */

.scroll {
  display: block;
  width: 3px;
  height: 3px;
  margin: 6px auto;
  border-radius: 4px;
  background: #fff;
  animation: finger 1s infinite;
  animation: finger 1s infinite;
}

@keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
    transform: translateY(20px);
  }
}

/* mouse scroll icon close */

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* owl */

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.menu_side_area {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

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

.ul-check li {
  position: relative;
  display: block;
  margin-top: 0;
  padding: 0px;
  padding-left: 30px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 1.6em;
}

.ul-check li h4 {
  font-size: 18px;
  font-weight: 500;
}

.ul-check.s2 li h4 {
  font-weight: 600;
}

.ul-check.s2 li {
  margin-bottom: 30px;
}

.ul-check li:before {
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
  content: "\f00c";
  margin-right: 12px;
  width: 20px;
  line-height: 1;
  padding: 4px 0;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

/* shadow */

.shadow-soft {
  box-shadow: 0 10px 30px rgb(0 19 87 / 6%);
  -moz-box-shadow: 0 10px 30px rgb(0 19 87 / 6%);
  box-shadow: 0 10px 30px rgb(0 19 87 / 6%);
}

/* image effect */

@keyframes move-up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes move-up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* price list */

/* dropdown */
/* ------------------------------ */

/* --------------------------------------------------
* plugin
* --------------------------------------------------*/

/* ================================================== */

/* isotope */

/* ================================================== */

/**** disabling Isotope CSS3 transitions ****/

a,
img {
  outline: 0;
}

/* overwrite bootstrap */

@keyframes grow {
  to {
    transform: translateX(-50%) scale(0);
  }
}

@keyframes grow {
  to {
    transform: translateX(-50%) scale(0);
  }
}

/* -------------------------Line Preloader--------------------- */

@keyframes anim4 {
  to {
    transform: rotate(360deg);
  }
}

/* demo */

/* ================================================== */

/* media query */

/* ================================================== */

@media (min-width: 1000px) {
  .container {
    max-width: var(--container-max-width);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1304px;
  }
}

/* bootstrap cols 5 */
/* bootstrap cols 5 end */

@media (min-width: 980px) and (max-width: 1199px) {
  #mainmenu li a:after {
    margin-left: 15px;
  }

  .container {
    min-width: 95%;
  }
}

/* -------------------------------------------------- 
    design for 768px
    /* ================================================== */

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

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

  .sm-pt10 {
    padding-top: 10px;
  }

  .header-col-mid #mainmenu {
    position: absolute;
    top: 82px;
    width: 100%;
    padding: 0 0 0 0;
  }

  #mainmenu > li::before {
    display: none;
  }

  #mainmenu > li {
    padding-left: 20px;
  }

  header {
    display: none;
  }

  header,
  header.fixed {
    display: block;
    position: inherit;
    margin: 0;
    padding: 0;
    margin-top: 0;
    height: auto;
    background: var(--bg-dark-1);
  }

  #logo {
    vertical-align: middle;
    height: auto;
  }

  #mainmenu {
    position: fixed;
    height: 100%;
    z-index: 200;
    width: 200px;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 100px !important;
    overflow-y: auto;
    top: 100px;
  }

  #mainmenu ul {
    box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  #mainmenu a.menu-item {
    text-align: left;
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #mainmenu li li a.menu-item,
  #mainmenu li li li a.menu-item {
    padding-left: 0;
  }

  #mainmenu a.menu-item:hover {
    background: #111;
  }

  #mainmenu a.menu-item:hover {
    background: #111;
  }

  #mainmenu li ul {
    display: block;
    position: inherit;
    margin: 0;
    width: 100%;
  }

  #mainmenu li {
    border-bottom: solid 1px var(--bg-dark-3);
    margin: 0;
    width: 100%;
    display: block;
  }

  #mainmenu li a.menu-item:after {
    display: none;
  }

  #mainmenu li:last-child {
    margin-bottom: 30px;
  }

  #mainmenu li ul {
    border-top: solid 1px #eee;
    top: auto;
    width: auto;
    height: auto;
    position: inherit;
    visibility: visible;
    opacity: 1;
  }

  #mainmenu li ul a.menu-item {
    width: 100%;
    background: none;
    border: none;
  }

  #mainmenu li ul li {
    border: none;
    padding-left: 40px;
  }

  #mainmenu li ul li a.menu-item {
    display: block;
  }

  #mainmenu li ul li:last-child {
    border-bottom: none;
    margin: 0;
  }

  #mainmenu li ul li:last-child a.menu-item {
    border-bottom: none;
  }

  #mainmenu li a {
    color: #eceff3;
  }

  #mainmenu li li a.menu-item:hover {
    color: #fff;
  }

  #mainmenu ul:not(.mega) {
    border: none;
  }

  #back-to-top {
    display: none;
  }

  header #mainmenu li ul li:first-child {
    border-top: solid 1px var(--bg-dark-3);
  }

  /* header light */

  .sm-hide {
    display: none;
  }

  #mainmenu a.menu-item span {
    display: none;
  }

  section {
    padding: 60px 0;
  }

  /* title tablet */

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  /* padding top (px) */

  /* padding top (px) */

  /* margin top (px) */

  /* margin top (px) */
  .mb-sm-30 {
    margin-bottom: 30px;
  }

  #content {
    margin-top: 50px;
  }
}

/* -------------------------------------------------- 
    custom for 320px & 480px 
    /* -------------------------------------------------- */

@media only screen and (max-width: 767px) {
  header .logo-main {
    display: none;
  }

  header .logo-mobile {
    display: block;
  }

  header .btn-main {
    display: none;
  }

  .menu_side_area {
    margin-left: 20px;
    width: 100%;
    position: relative;
    right: 0;
    text-align: right;
    z-index: 0;
    display: block;
  }

  header .container {
    min-width: 100%;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  header a.btn-main {
    display: none !important;
  }

  section {
    padding: 40px 0;
  }

  /* title phone */

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  /* padding top (px) */

  /* padding top (px) */

  /* margin top (px) */

  /* margin top (px) */
}

/* -------------------------------------------------- 
    design for 480px
    /* -------------------------------------------------- */

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* -------------------------------------------------- 
    design for 320px
    /* -------------------------------------------------- */

@media only screen and (max-width: 480px) {
  h4.s2 span {
    display: block;
    margin: 0;
    padding: 0;
  }

  header a.btn-main i {
    display: inline-block;
  }
}

/* section control */
@media only screen and (min-device-width: 768) and (max-device-width: 1024) and (orientation: portrait) {
  section {
    background-size: auto 100%;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

@media only screen and (max-width: 992px) {
  section {
    background-size: auto 100%;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

/* new added */

/* Mobile Menu Toggle Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background-color: #f8b500;
}

/* Mobile menu active state (hamburger to X animation) */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide main navigation on mobile by default */
  #mainmenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 80px 20px 20px;
    z-index: 999;
    overflow-y: auto;
  }

  #mainmenu.mobile-active {
    display: flex;
  }

  #mainmenu ul {
    background: transparent;
    height: auto;
    border: none;
    width: 100%;
  }

  #mainmenu li {
    float: none;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  #mainmenu li:last-child {
    border-bottom: none;
  }

  #mainmenu a {
    padding: 20px 0;
    text-align: center;
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #mainmenu li ul {
    display: block;
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 10px;
  }

  #mainmenu li ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  #mainmenu li ul li a {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

  #mainmenu li ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Contact Popup Modal Styles */
.contact-popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-popup-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.contact-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.contact-popup-content {
  position: relative;
  margin: auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.contact-popup-modal.active .contact-popup-content {
  transform: scale(1);
}

.contact-popup-header {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  padding: 20px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.contact-popup-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-popup-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.2rem;
}

.contact-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.contact-popup-body {
  padding: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #f39c12;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.contact-form .btn-submit:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.contact-form .btn-submit:active {
  transform: translateY(0);
}

/* Mobile responsive styles for contact popup */
@media (max-width: 768px) {
  .contact-popup-content {
    width: 95%;
    margin: 20px auto;
    max-height: 85vh;
  }
  
  .contact-popup-header {
    padding: 15px 20px;
  }
  
  .contact-popup-header h3 {
    font-size: 1.3rem;
  }
  
  .contact-popup-close {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .contact-popup-body {
    padding: 20px;
  }
  
  .contact-form .form-control {
    padding: 12px 16px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .contact-form .btn-submit {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-popup-content {
    width: 98%;
    margin: 10px auto;
    border-radius: 15px;
  }
  
  .contact-popup-header {
    padding: 12px 15px;
    border-radius: 15px 15px 0 0;
  }
  
  .contact-popup-header h3 {
    font-size: 1.2rem;
  }
  
  .contact-popup-body {
    padding: 15px;
  }
  
  .contact-form .form-group {
    margin-bottom: 15px;
  }
  
  .contact-form .form-control {
    padding: 10px 14px;
  }
  
  .contact-form .btn-submit {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Hide mobile-only contact link on desktop */
.mobile-only {
  display: none !important;
}

@media (max-width: 991px) {
  .mobile-only {
    display: block !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
  }
}
