/* ===================================
    Table of Content
====================================== */
/*  - Fonts
    - Scrollbar
    - General   
    - Loader
    - Navbar
    - Side Menu
    - Banner
    - About-us-section
    - portfolio Section
    - Portfolio-2
    - Comment Section
    - Footer
*/

/* ===================================
    CSS Reset & Base Styles
====================================== */
* {
  box-sizing: border-box;
}

/* ===================================
    Scrollbar
====================================== */
::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-track {
  width: 5px;
  background-color: #ffffff;
}
::-webkit-scrollbar-thumb {
  background-color: #202020;
  width: 0;
  border-left: 7px solid #ffffff;
  border-right: 6px solid #ffffff;
}

/* ===================================
    General
====================================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f9f9f9;
  color: #333333;
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.1rem;
  color: #696969;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.6;
  margin: 1rem 0;
}

span {
  font-weight: 400;
  font-size: 1rem;
  font-family: inherit;
}

a {
  text-decoration: none;
  font-family: inherit;
  font-weight: 400;
  color: #3498db;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #2980b9;
  text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  color: #333333;
  line-height: 1.4;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  color: #202020;
}

h2 {
  font-size: 2rem;
  color: #202020;
}

h3 {
  font-size: 1.75rem;
  color: #202020;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #202020;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #202020;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #202020;
}

strong, b {
  font-weight: 700;
  color: #4c4c4c;
}

/* Helper Classes */
.padding-top {
  padding-top: 70px;
}

.ustyazi {
  font-size: 48px;
  color: #202020;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

.ustyazi span {
  font-weight: 400;
  font-size: 48px;
}

/* About-us başlığı alt çizgi */
.about-us .ustyazi {
  display: inline-block;
}

.about-us .ustyazi::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff674d;
  margin: 10px auto 0;
}

/* ===================================
    Buttons
====================================== */
.btn {
  z-index: 2;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 0;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  line-height: inherit;
  display: inline-block;
  border: 2px solid transparent;
  text-transform: capitalize;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn.button {
  background-color: #6f42c1;
  border: 2px solid #6f42c1;
  color: #ffffff;
  font-family: inherit;
  font-weight: 400;
  padding: 10px 30px;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.trans-btn {
  background-color: transparent;
  border-color: #202020;
  color: #202020;
}

.btn.trans-2-btn {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.white-btn {
  background-color: #ffffff;
  color: #202020;
}

/* Button Hover Effects */
.btn.btn-hvr:hover,
.btn.btn-hvr:focus {
  color: #ffffff;
  border-color: #202020;
  background: transparent;
}

.btn.btn-white-hvr:hover,
.btn.btn-white-hvr:focus {
  color: #202020;
  opacity: 1;
  background: #ffffff;
}

/* Button Hover Animation */
.btn-hvr-setting {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.btn-hvr-setting-inner {
  position: relative;
  display: block;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn-hvr-effect {
  position: absolute;
  top: -5px;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
  background-color: #18191d;
}

.btn-hvr-effect:nth-child(1) {
  left: 0;
  transition-delay: 0s;
}

.btn-hvr-effect:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.btn-hvr-effect:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.btn-hvr-effect:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.btn:hover .btn-hvr-effect,
.btn:active .btn-hvr-effect,
.btn:focus .btn-hvr-effect {
  transform: translateZ(0) scale(1.7);
}

/* ===================================
    Image Effects
====================================== */
.overlay-image {
  position: relative;
  overflow: hidden;
}

.overlay-image img {
  transition: all 0.7s;
  display: block;
  width: 100%;
  height: auto;
}

.overlay-image:hover img {
  transform: scale(1.1);
}

.overlay-image:hover {
  cursor: pointer;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0.8));
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 0.7s ease;
}

.overlay-image:hover .overlay {
  transform: scale(1);
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 1rem;
}

.small-text a {
  color: #202020;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.small-text p {
  font-size: 11px;
  margin-bottom: 0;
}

.text p {
  color: #ffffff;
  font-size: 15px;
  padding-top: 10px;
}

/* Image Hover Effect */
.hover-effect::before,
.hover-effect::after {
  content: "";
  background-color: #202020;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  transition-duration: 1.3s;
}

.hover-effect::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.hover-effect::after {
  top: 0;
  opacity: 0.7;
  left: 0;
}

.hover-effect:hover::after,
.hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

/* ===================================
    Loader
====================================== */
.loader-area {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #202020;
  z-index: 999999;
}

.spinning-area {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top: 10px solid #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  padding: 50px;
  box-shadow: 0 0 180px #000000;
  animation: spin 2s ease infinite;
}

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

/* ===================================
    Navbar
====================================== */
.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 64px;
  width: 100%;
  transition: all 0.1s ease;
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
}

.header-appear .navbar-top-default {
  height: 40px;
  position: fixed;
  z-index: 999;
  background-color: #ffffff;
  animation-duration: 1s;
  animation-fill-mode: both;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.navbar-top-default .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-top-default .navbar-brand {
  margin-right: 1rem;
  align-self: center;
}

.navbar-top-default .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-top-default .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 0 18px;
  font-size: 16px;
  color: #202020;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
  transition: text-decoration-color 0.3s ease;
}

.navbar-top-default .navbar-nav .nav-link:hover,
.navbar-top-default .navbar-nav .current-menu-item .nav-link {
  text-decoration-color: #7bbf8d;
}

/* Remove old pseudo-element underline */
.navbar-top-default .navbar-nav .nav-link::after {
  display: none;
}

.navbar-top-default img {
  padding-left: 0;
}

.logo-dark,
.logo-default {
  width: auto;
  height: 40px;
}

.nav-radius .navbar-nav .nav-link {
  margin: 0 0.1rem;
  padding: 8px 18px;
  transition: 0.5s ease;
}

/* Search */
.search {
  vertical-align: sub;
}

.open_search {
  cursor: pointer;
  color: #313131;
  display: inline-block;
  padding: 10px;
  margin-right: 80px;
  font-size: 18px;
  position: relative;
}

.search_block {
  opacity: 0;
  display: none;
  text-align: center;
  height: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1024;
  margin-top: -41px;
  margin-left: -350px;
  transform: translate(-50%, -50%);
}

.search_block.visible {
  opacity: 1;
  display: inline-block;
  height: auto;
}

.search_block.visible .search_box {
  opacity: 1;
  top: 0;
  transform: scale(1);
}

.search_block .overlayer {
  background-color: #313131;
  position: fixed;
  opacity: 0.9;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: url(../images/overlay-close.png), auto;
}

.search_box {
  background-color: #313131;
  opacity: 0;
  display: inline-block;
  padding: 10px;
  position: relative;
  text-align: center;
  top: -120px;
  transform: scale(1.05);
  transition: all 0.4s ease 0s;
  z-index: 10;
}

.search_box .search_input {
  border: 3px solid #313131;
  border-bottom: 1px solid;
  box-sizing: border-box;
  display: inline-block;
  height: 80px;
  line-height: 2;
  min-width: 700px;
  outline: none;
  padding: 10px 10px 10px 0;
  width: 700px;
  transition: all 0.45s ease 0s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #313131;
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
}

.search_input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.search_icon {
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  left: 93%;
  line-height: 38px;
  padding: 8px;
  position: absolute;
  top: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search_icon:hover,
.search_icon:focus {
  color: #ffffff;
}

/* Side Menu Button */
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  left: 40px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all 0.3s linear;
  background: transparent;
  border: none;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background-color: #000000;
  display: block;
  margin: 0 auto;
  transition: 0.5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/* Social Icons */
.navbar .social-icons {
  position: absolute;
  right: 20px;
}

.navbar .social-icons ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

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

.navbar .social-icons ul li a {
  border-radius: 50%;
  color: #313131;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
  transition: 0.8s ease;
}

.navbar .social-icons ul li a:hover {
  background-color: #313131;
  color: #ffffff;
}

/* ===================================
    Side Menu
====================================== */
.side-menu {
  width: 28%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(32, 32, 32, 0.9);
  z-index: 2032;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.side-menu.side-menu-active {
  transform: translate3d(0, 0, 0);
}

.side-menu .side-nav {
  margin-bottom: 30px;
  margin-top: 30px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: 0.1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: 0.5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: 0.6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: 0.7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: 0.8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: 0.9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #ffffff;
  padding: 2px 0 3px 0;
  font-size: 35px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 18px;
  width: 0;
  bottom: 12px;
  height: 3px;
  background-color: #7bbf8d;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

.side-nav .navbar-nav .nav-link.active {
  background-color: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
  transform: translate3d(0, 0, 0);
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/* Side overlay */
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.image {
  position: absolute;
  top: 30px;
  right: 50px;
}

/* Side close button */
.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 31px;
  left: 50px;
  cursor: pointer;
  border: 1px solid #ffffff;
  background: transparent;
}

.header-appear ~ .side-menu .btn-close {
  top: 50px;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: '';
  height: 28px;
  width: 2px;
  background-color: #ffffff;
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .navbar-nav {
  margin-bottom: 30px;
  display: block;
}

/* Side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #ffffff;
  font-size: 15px;
}

.side-menu-footer .banner-icons ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.side-menu-footer .banner-icons ul li {
  display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
  color: #ffffff;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #202020;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
  transition: all 0.8s ease;
}

.side-menu-footer .banner-icons ul li a:hover {
  background-color: #ffffff;
}

.side-menu-footer .banner-icons ul li a:hover i {
  color: #202020;
}

@keyframes animationFade {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===================================
    Banner
====================================== */
.banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ===================================
   About
====================================== */
.about-us {
  padding: 140px 0 50px 0;
  background-color: #f9f9f9;
}

.pages-us {
  padding: 100px 0;
}

.about-us .card {
  border: none;
  border-radius: 10px;
  transition: all 0.6s ease;
  box-shadow: 1px 1px 31px #e6e6e6;
  height: 100%;
}

.about-us .card .feature-icon {
  display: inline-block;
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translateX(-50%);
}

.about-us .card .feature-icon i {
  display: block;
  font-size: 100px;
  color: #202020;
  transition: 0.6s ease;
}

.about-us .card:hover {
  background-color: #202020;
  cursor: pointer;
}

.about-us .card:hover p {
  color: #ffffff;
}

.about-us .card:hover .feature-icon i {
  transform: translateY(60px);
  font-size: 50px;
  color: #ffffff;
}

.about-us .card-body {
  padding: 85px 49px 50px;
}

.about-us .card-body p {
  font-size: 24px;
  color: #202020;
  text-align: center;
}

.about-us h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #202020;
  font-family: inherit;
}

/* ===================================
   Blog-Section
====================================== */
.blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog .text-area .heading-line {
  left: 75px;
  width: 45px;
  position: absolute;
  margin-bottom: 70px;
  border-bottom: 3px solid #ffffff;
}

.blog .text-area,
.blog .text-area-2 {
  padding: 0 60px;
}

.blog .sub-heading {
  color: #202020;
  font-size: 16px;
  font-weight: 400;
}

.blog h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #202020;
}

.blog p {
  font-size: 16px;
  font-weight: 400;
}

.blog .btn {
  margin-top: 30px;
}

/* ===================================
    Portfolio
====================================== */
.portfolio {
  padding-top: 120px;
}

.portfolio p {
  margin-bottom: 50px;
}

.portfolio img {
  width: 100%;
  height: auto;
}

/* ===================================
    Portfolio-2
====================================== */
.portfolio-2 {
  padding: 120px 0;
}

.portfolio-2 p {
  margin-bottom: 50px;
}

.portfolio-2 img {
  width: 100%;
  height: auto;
}

/* ===================================
    Comment-section
====================================== */
.comment-section {
  padding: 120px 0;
  background-color: #f9f9f9;
}

.feature {
  text-align: center;
}

.comment-section .card {
  border: none;
  border-radius: 10px;
  transition: 0.6s ease;
  box-shadow: 1px 1px 31px #e6e6e6;
  height: 100%;
}

.comment-section .card .feature-icon {
  top: -39px;
  left: 50%;
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}

.comment-section .card .feature-icon i {
  display: block;
  font-size: 100px;
  color: #202020;
  transition: 0.6s ease;
}

.comment-section .card:hover {
  background-color: #202020;
  cursor: pointer;
}

.comment-section .card:hover p {
  color: #ffffff;
}

.comment-section .card:hover .feature-icon i {
  transform: translateY(60px);
  font-size: 50px;
  color: #ffffff;
}

.comment-section .card-body {
  padding: 85px 49px 50px;
}

.comment-section .card-body p {
  font-size: 24px;
  color: #202020;
}

/* ===================================
   Get Started Popup
====================================== */
.quote-content {
  text-align: center;
  max-width: 900px;
  padding: 50px 150px;
  overflow: visible;
  background-color: #202020;
}

.quote-content .contact-form .form-control {
  border-radius: 0;
  padding: 0;
}

.quote-content #quote_submit_btn {
  margin-bottom: -120px;
}

.quote-content .form-check {
  padding: 50px 0 8px 0;
  text-align: center;
  margin-bottom: -15px;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #797979;
  padding: 10px 0;
  background-color: transparent;
  font-weight: 400;
  border-radius: 0;
  box-shadow: none;
  height: 32px;
  color: #797979;
  font-size: 14px;
  position: relative;
  transition: border 0.9s ease;
}

.form-control:focus {
  color: #000000;
  border-color: #797979;
  outline: 0;
  box-shadow: 0 0 0 0.2rem transparent;
}

.quote-content .fancybox-close-small {
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.quote-content .fancybox-close-small:after {
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-top: -1px;
  font: initial;
  font-size: 35px;
  color: #202020;
}

.fancybox-close-small:focus:after {
  outline: none;
}

.quote-content .fancybox-close-small:hover:after,
.quote-content .fancybox-close-small:focus:after {
  background-color: transparent;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.hidden {
  display: none;
}

.contact-form .button {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.contact-form .button:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 8px;
  right: -20px;
  transition: 0.5s;
  font-size: 20px;
}

.contact-form .button:hover {
  padding-right: 24px;
  padding-left: 8px;
}

.contact-form .button:hover:after {
  opacity: 1;
  right: 10px;
}

/* ===================================
    Footer
====================================== */
footer {
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
  margin-top: 4rem;
  padding: 10px 0;
}

footer .footer-social-icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social-icons ul li {
  display: inline-block;
  margin: 0 8px;
}

.footer-social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #666666;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social-icons ul li a:hover {
  background-color: #6f42c1;
  color: #ffffff;
  transform: translateY(-3px);
}

footer p {
  margin-bottom: 0;
  color: #666666;
  font-size: 1rem;
  text-align: left;
}

/* Footer Menu */
.footer-menu.d-flex.justify-content-center {
  display: flex;
  justify-content: flex-end;
}

.footer-menu.d-flex.justify-content-center .navbar-nav {
  flex-direction: row;
  justify-content: flex-end;
}

.footer-menu.d-flex.justify-content-center .navbar-nav li:not(:last-child)::after {
  content: '|';
  margin: 0 10px;
  color: #dddddd;
}

.footer-menu.d-flex.justify-content-center .navbar-nav li {
  display: inline-block;
  position: relative;
}

.footer-menu.d-flex.justify-content-center .navbar-nav li a {
  color: #666666;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-menu.d-flex.justify-content-center .navbar-nav li a:hover {
  color: #6f42c1;
  text-decoration: none;
}

/* ===================================
    Stand Alone Pages
====================================== */
.standalone1-banner,
.standalone2-banner {
  height: 90vh;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  background-position: center;
}

.standalone1-banner {
  background: linear-gradient(rgba(32, 32, 32, 0.4), rgba(32, 32, 32, 0.4)), url('../images/standalone-1-banner.jpg');
}

.standalone2-banner {
  background: linear-gradient(rgba(32, 32, 32, 0.4), rgba(32, 32, 32, 0.4)), url('../images/standalone-2-banner.jpg');
}

.banner-text {
  position: absolute;
  padding-top: 12rem;
  padding-left: 0;
  padding-right: 0;
}

.banner-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.page-breadcrumb li a {
  color: #202020;
  font-weight: 400;
  text-decoration: none;
}

.page-breadcrumb li i {
  color: #ffffff;
  margin: 0 5px;
}

/* Main Page */
.main-page {
  padding: 120px 0;
}

.main-page .standalone-heading {
  padding-bottom: 100px;
}

.main-page .sub-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 10px;
}

.main-page .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 20px;
}

.main-page .row-image {
  position: relative;
}

.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.standalone-area .standalone-row {
  margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child {
  margin-bottom: 0;
}

.main-page .standalone-row .row-text {
  padding-left: 30px;
  text-align: center;
}

.standalone-row:nth-child(2) .row-text {
  padding-left: 0;
  padding-right: 30px;
}

/* ===================================
    Product Boxes
====================================== */
.products-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2.4rem;
  color: #333333;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.section-title p {
  font-size: 1rem;
  color: #666666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

.product-item {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.product-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 5px 0;
  opacity: 0.5;
}

.product-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding: 0 3px;
}

.product-box-title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

.price-container {
  text-align: right;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.product-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0 3px;
  margin: 3px 0 5px;
  font-weight: 500;
  color: #333333;
}

.order-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 10px;
  margin-top: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.order-button:hover {
  background-color: #e9e9e9;
}

.order-button i {
  font-size: 1rem;
  color: #666666;
  margin-right: 8px;
}

.order-button span {
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
}

/* Hide old style classes */
.product-vendor,
.product-action,
.product-price,
.buy-icon,
.buy-button {
  display: none;
}

/* ===================================
    Lists
====================================== */
ul, ol {
  margin: 1rem 0;
  padding-left: 2rem;
  line-height: 1.6;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

/* Nested Lists */
ul ul, ol ol, ul ol, ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

ul ul {
  list-style-type: circle;
}

ul ul ul {
  list-style-type: square;
}

/* Definition Lists */
dl {
  margin: 1rem 0;
}

dt {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

dd {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ===================================
    WordPress Specific Classes
====================================== */
.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
  border-radius: 5px;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
  border-radius: 5px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.alignnone {
  margin: 0.5rem 0;
}

/* WordPress Text Alignment */
.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

/* WordPress Image Captions */
.wp-caption {
  max-width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 4px;
  text-align: center;
}

.wp-caption img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: #666666;
  margin: 0.5rem 0 0 0;
  padding: 0 0.5rem 0.25rem;
  font-style: italic;
}

/* ===================================
    Slider Section
====================================== */
.slider-section {
  margin-bottom: 40px;
  overflow: hidden;
}

.slider-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-image:hover img {
  transform: scale(1.05);
}

.slider-image:hover .slider-overlay {
  opacity: 1;
}

/* ===================================
    Content Images
====================================== */
.content-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.content-image:hover img {
  transform: scale(1.03);
}

/* Full width image */
.content-image-full {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 30px;
  clear: both;
}

.content-image-full img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.content-image-full:hover img {
  transform: scale(1.01);
}

/* Float clearing */
.clearfix {
  clear: both;
  width: 100%;
  display: block;
  height: 1px;
}

/* Left aligned image */
.content-image.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 15px;
  max-width: 350px;
}

/* Right aligned image */
.content-image.float-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 15px;
  max-width: 350px;
}

/* Center image */
.content-image.text-center {
  margin: 0 auto 30px;
  max-width: 450px;
  float: none;
  display: block;
}

/* ===================================
    Phone Widgets
====================================== */
.header-phone-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
  padding-left: 15px;
}

.header-phone-number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background-color: #dddddd;
}

.header-phone-number .phone-link,
.side-menu-contact .phone-link,
.phone-link {
  display: inline-flex;
  align-items: center;
  color: #202020;
  font-size: 1rem;
  text-decoration: none;
  gap: 6px;
}

.header-phone-number .phone-link i,
.side-menu-contact .phone-link i,
.phone-link i {
  color: #202020;
  font-size: 1.2rem;
}

.header-phone-number .phone-link:hover,
.side-menu-contact .phone-link:hover,
.phone-link:hover {
  color: #6f42c1;
}

/* New phone widget style */
.header-phone-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
}

.phone-box {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-box i {
  color: #202020;
  font-size: 1.2rem;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-label {
  color: #696969;
  font-size: 0.8rem;
  line-height: 1.2;
}

.phone-number {
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

/* ===================================
    Hero Section
====================================== */
.hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding-right: 30px;
}

.brand-title {
  font-size: 18px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

.brand-title .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #333333;
}

.main-title {
  font-size: 48px;
  color: #ff674d;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.description {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-dark.rounded-pill {
  background-color: #333333;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-dark.rounded-pill:hover {
  background-color: #444444;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image .product-image {
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
  position: relative;
}

.hero-image .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.bg-shape {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 123%;
  height: 134%;
  background-color: #ffe4e0;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

/* ===================================
    Footer Section
====================================== */
.footer-section {
  background-color: #ffe4e0;
  color: #333333;
  padding: 70px 0 0;
  position: relative;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-description {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-section h4 {
  color: #333333;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #333333;
}

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

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

.footer-links ul li a {
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #333333;
  padding-left: 5px;
}

.footer-contact .contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact .contact-info i {
  margin-right: 10px;
  color: inherit;
  transform: scaleX(-1);
}

.footer-contact .contact-info a {
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact .contact-info a:hover {
  color: #333333;
}

.footer-social .social-links {
  display: flex;
  gap: 15px;
}

.footer-social .social-links a {
  width: 35px;
  height: 35px;
  background-color: rgba(51, 51, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
  background-color: #333333;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: rgba(51, 51, 51, 0.1);
  padding: 20px 0;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  margin: 0;
  color: #333333;
}

/* ===================================
    Testimonials Section
====================================== */
.testimonials-section,
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffe4e0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonials-section h2,
.testimonial-section h2 {
  color: #333333;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.testimonials-section h2::after,
.testimonial-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ffe4e0 0%, #333333 100%);
  border-radius: 2px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: 15px 0;
  text-align: center;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: #ffe4e0;
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-image::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #ffe4e0;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-text p {
  color: #555555;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

.testimonial-stars {
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffd700;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.testimonial-stars i.fa-star-o {
  color: #dddddd;
}

.testimonial-author,
.testimonial-content {
  text-align: center;
  position: relative;
  padding-top: 20px;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #ffe4e0;
}

.testimonial-author h4,
.testimonial-name {
  color: #333333;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-position {
  font-size: 14px;
  color: #888888;
  margin: 5px 0 0 0;
}

/* ===================================
    Contact Page
====================================== */
.contact-page-wrapper {
  padding-bottom: 2rem;
}

.contact-header {
  background-color: #f8f9fa;
  padding: 66px 0 40px;
}

.contact-header .page-title {
  color: #202020;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.contact-header .page-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #6f42c1;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-info-box,
.contact-form-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.info-item .info h5 {
  margin: 0 0 5px 0;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.info-item .info p {
  margin: 0;
  color: #666666;
}

.info-item .info a {
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-item .info a:hover {
  color: #6f42c1;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  margin-bottom: 8px;
  color: #555555;
  font-weight: 500;
  font-size: 14px;
}

.contact-form .form-control {
  border: 1px solid #dddddd;
  border-radius: 4px;
  height: auto;
  padding: 10px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.contact-form .form-control:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
  outline: none;
}

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

.contact-form .btn {
  background-color: #6f42c1;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.contact-form .btn:hover {
  background-color: #5a3799;
  transform: translateY(-2px);
}

.map-wrapper {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.contact-content {
  background-color: #ffffff;
  padding: 40px 0;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
  color: #333333;
  margin-bottom: 20px;
}

.content-wrapper p {
  color: #666666;
  line-height: 1.7;
}

/* ===================================
    FAQ Section
====================================== */
.faq-section {
  margin: 40px 0;
  padding: 20px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333333;
  position: relative;
  padding-bottom: 10px;
}

.faq-container h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #3f51b5;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  margin: 0;
  background-color: #f5f5f5;
  cursor: pointer;
  position: relative;
  color: #333333;
  transition: all 0.3s ease;
}

.faq-item h4:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: #666666;
}

.faq-item.active h4 {
  background-color: #3f51b5;
  color: #ffffff;
}

.faq-item.active h4:after {
  content: '-';
  color: #ffffff;
}

.faq-item [itemprop="acceptedAnswer"] {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active [itemprop="acceptedAnswer"] {
  padding: 20px;
  max-height: 1000px;
}

.faq-item [itemprop="acceptedAnswer"] p {
  margin-bottom: 10px;
  color: #333333;
}

.faq-item [itemprop="acceptedAnswer"] p:last-child {
  margin-bottom: 0;
}

/* ===================================
    WhatsApp Chat
====================================== */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat .fa-whatsapp {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

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

/* ===================================
    Media Queries
====================================== */
@media (max-width: 1920px) {
  .navbar {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  /* Side Menu */
  .side-menu {
    width: 50%;
  }
  
  /* About us */
  .about-us .card-body p {
    font-size: 18px;
  }
  
  /* Comment Section */
  .comment-section .card-body p {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .ustyazi {
    font-size: 2rem;
  }
  
  .main-page .heading {
    font-size: 2.2rem;
  }
  
  .main-page .standalone-heading {
    font-size: 1.8rem;
  }
  
  .small-text {
    font-size: 40px;
  }
  
  /* Navbar */
  .sidemenu_btn {
    left: 0;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #f8f9fa;
  }
  
  .navbar-top-default img {
    padding-left: 40px;
  }
  
  /* Side Menu */
  .side-menu {
    width: 50%;
  }
  
  .side-nav .navbar-nav .nav-link {
    font-size: 30px;
  }
  
  /* Banner */
  .banner .banner-image {
    margin-bottom: 0;
  }
  
  /* About us */
  .about-us .card {
    margin-bottom: 40px;
  }
  
  /* Blog */
  .blog .sub-heading {
    font-size: 18px;
  }
  
  .blog .text-area,
  .blog .text-area-2 {
    text-align: center;
  }
  
  .blog p {
    text-align: center;
    font-size: 18px;
  }
  
  .overlay-image {
    margin-bottom: 20px;
  }
  
  /* Stand Alone page */
  .main-page h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  .main-page p {
    font-size: 16px;
  }
  
  .main-page .standalone-heading {
    padding-bottom: 70px;
  }
  
  .main-page .standalone-row .row-text {
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .standalone-row:nth-child(2) .row-text {
    padding-right: 0;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-image .product-image {
    max-width: 350px;
  }
  
  /* Content Images */
  .content-image.float-left,
  .content-image.float-right,
  .content-image.text-center {
    max-width: 400px;
    margin-bottom: 20px;
  }
  
  .about-us,
  .pages-us {
    padding: 40px 0;
  }
  
  /* Testimonials */
  .testimonials-section,
  .testimonial-section {
    padding: 80px 0;
  }
  
  .testimonials-section h2,
  .testimonial-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .ustyazi {
    font-size: 1.8rem;
  }
  
  .main-page .heading {
    font-size: 2rem;
  }
  
  .main-page .standalone-heading {
    font-size: 1.6rem;
  }
  
  .text {
    font-size: 25px;
  }
  
  .small-text {
    font-size: 19px;
  }
  
  .wow {
    visibility: visible;
    animation: none;
  }
  
  /* Navbar */
  .navbar .social-icons {
    display: none;
  }
  
  .sidemenu_btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  
  .navbar-top-default img {
    padding-left: 5px;
  }
  
  .navbar-top-default .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  
  .navbar-top-default {
    position: relative;
    padding: 10px 0;
  }
  
  .navbar-top-default .container {
    position: static;
  }
  
  .header-appear .navbar-top-default {
    height: 90px;
  }
  
  /* Header Phone Widget */
  .header-phone-widget {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  
  .header-phone-widget .phone-info {
    display: none;
  }
  
  .header-phone-widget .phone-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202020;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 6px;
  }
  
  .header-phone-widget .phone-box i {
    font-size: 16px;
  }
  
  /* Side Menu */
  .side-menu {
    width: 100%;
  }
  
  .side-nav .navbar-nav .nav-link {
    font-size: 25px;
  }
  
  .side-menu-footer p {
    font-size: 14px;
  }
  
  /* Blog */
  .blog h4 {
    font-size: 38px;
  }
  
  .blog p {
    font-size: 16px;
    margin-top: 30px;
  }
  
  .blog .text-area-2,
  .blog .text-area {
    padding: 30px;
  }
  
  /* Contact Form */
  .quote-content {
    padding: 52px 30px;
  }
  
  /* Stand Alone page */
  .banner-text h2 {
    font-size: 50px;
  }
  
  .main-page .heading {
    font-size: 50px;
  }
  
  .main-page .standalone-heading {
    padding-bottom: 70px;
  }
  
  .main-page .standalone-row .row-text {
    padding-left: 0;
  }
  
  .standalone-row:nth-child(2) .row-text {
    padding-right: 0;
  }
  
  /* Footer */
  footer {
    padding: 20px 0;
  }
  
  footer p {
    text-align: left;
    margin-bottom: 15px;
  }
  
  .footer-social-icons ul {
    text-align: center;
  }
  
  .footer-social-icons ul li {
    margin: 0 5px;
  }
  
  .footer-social-icons ul li a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .footer-menu.d-flex.justify-content-center {
    justify-content: center;
  }
  
  .footer-menu.d-flex.justify-content-center .navbar-nav {
    justify-content: center;
    margin-top: 10px;
  }
  
  .footer-menu.d-flex.justify-content-center .navbar-nav li:not(:last-child)::after {
    margin: 0 5px;
  }
  
  .footer-menu.d-flex.justify-content-center .navbar-nav li a {
    font-size: 0.9rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-image .product-image {
    max-width: 300px;
  }
  
  .hero-image .product-image img {
    max-height: 400px;
  }
  
  .bg-shape {
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
  }
  
  /* Content Images */
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    margin: 0 auto 20px;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .content-image.text-center {
    max-width: 100%;
  }
  
  .about-us,
  .pages-us {
    padding: 30px 0;
  }
  
  /* Product Items */
  .product-image {
    margin-bottom: 8px;
  }
  
  .product-title {
    font-size: 1rem;
    height: auto;
    margin-bottom: 8px;
  }
  
  .price {
    font-size: 1rem;
  }
  
  .product-box-title {
    font-size: 1rem;
  }
  
  .order-button {
    padding: 6px 10px;
  }
  
  .order-button span {
    font-size: 1rem;
  }
  
  .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .mb-4 {
    margin-bottom: 15px;
  }
  
  .product-item {
    padding: 4px;
  }
  
  .product-info-row {
    margin-bottom: 6px;
  }
  
  /* Slider */
  .slider-image {
    height: 250px;
    margin-bottom: 0;
  }
  
  .slider-section .row .col-12:not(:last-child) .slider-image {
    margin-bottom: 2px;
  }
  
  /* Contact */
  .contact-info-box,
  .contact-form-box {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .contact-header .page-title {
    padding: 0;
  }
  
  .info-item .icon {
    margin-right: 20px;
    margin-bottom: 14px;
  }
  
  .map-wrapper {
    padding-top: 75%; /* 4:3 Aspect Ratio for small screens */
  }
  
  /* Testimonials */
  .testimonials-section,
  .testimonial-section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    margin-bottom: 30px;
  }
  
  /* WhatsApp Chat */
  .whatsapp-chat {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-chat .fa-whatsapp {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 575px) {
  .product-image {
    margin-bottom: 6px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .ustyazi {
    font-size: 2.6rem;
    margin-top: 40px;
  }
  
  .main-page .heading {
    font-size: 1.8rem;
  }
  
  .main-page .standalone-heading {
    font-size: 1.5rem;
  }
  
  .product-title {
    font-size: 0.9rem;
    height: auto;
    padding: 4px 2px;
    margin-top: 0;
    font-weight: 500;
  }
  
  .price {
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .product-box-title {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .order-button {
    padding: 5px 8px;
    margin-top: 5px;
  }
  
  .order-button span {
    font-size: 0.9rem;
  }
  
  .order-button i {
    font-size: 0.9rem;
  }
  
  .col-6 {
    padding-left: 3px;
    padding-right: 3px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .mb-4 {
    margin-bottom: 8px;
  }
  
  .product-item {
    padding: 4px;
  }
  
  .product-info-row {
    margin-bottom: 4px;
  }
  
  .products-section {
    padding: 15px 0;
  }
  
  .section-title {
    margin-bottom: 15px;
  }
  
  .section-title h2 {
    margin-bottom: 10px;
  }
  
  /* Slider */
  .slider-image {
    height: 200px;
  }
}

@media (max-width: 360px) {
  h2 {
    font-size: 25px;
  }
  
  /* Side Menu */
  .side-menu-footer p {
    font-size: 12px;
  }
  
  /* Contact form */
  .quote-content {
    padding: 0 30px;
  }
  
  .quote-content #quote_submit_btn {
    margin-bottom: -15px;
  }
  
  .fancybox-slide > * {
    margin: 0;
  }
}

@media (max-width: 320px) {
  .small-text {
    font-size: 17px;
  }
  
  /* Side Menu */
  .side-menu-footer p {
    font-size: 10px;
  }
  
  .side-nav .navbar-nav .nav-link {
    font-size: 19px;
  }
  
  .side-menu-footer .banner-icons ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/* ===================================
    Print Styles
====================================== */
@media print {
  .no-print {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
    background: #ffffff;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
}