@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

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

.heading_container h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
}

.heading_container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.heading_container.heading_center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.heading_container h2 span {
  color: var(--accent-color);
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

/*header section*/
.hero_area {
  padding: 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.hero_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero_area.sub_pages {
  height: auto;
  background: var(--white);
}

.hero_area.sub_pages::before {
  display: none;
}

#navbarSupportedContent {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  justify-content: center;
  padding: 15px 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

#navbarSupportedContent.innerpage_navbar {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 20px;
}

#navbarSupportedContent.innerpage_navbar .nav-item.active .nav-link {
  background: var(--gradient);
  color: var(--white) !important;
}

#navbarSupportedContent .navbar-nav .nav-link {
  padding: 12px 30px;
  color: var(--text-dark);
  text-align: center;
  text-transform: uppercase;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}

#navbarSupportedContent .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

#navbarSupportedContent .navbar-nav .nav-link:hover::before,
#navbarSupportedContent .nav-item.active .nav-link::before {
  left: 0;
}

#navbarSupportedContent .navbar-nav .nav-link:hover,
#navbarSupportedContent .nav-item.active .nav-link {
  color: var(--white) !important;
  transform: translateY(-2px);
}

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

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.navbar-brand {
  margin: 15px 0;
  padding: 0;
}

.navbar-brand span {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  letter-spacing: -0.5px;
}

.custom_nav-container .nav_search-btn {
  padding: 0;
  border: none;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  flex-direction: column;
  align-items: center;
}

.custom_nav-container .navbar-toggler {
  outline: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--gradient);
  margin: 6px 0;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 3px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(180deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.user_option {
  display: flex;
  align-items: center;
  margin-left: 25px;
  gap: 15px;
}

.user_option a {
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(102, 126, 234, 0.1);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user_option a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.user_option a span {
  margin-left: 0;
}

/*end header section*/
.slider_section .slider_container {
  color: var(--white);
  background: transparent;
  padding: 60px 25px;
  border-radius: 0;
  position: relative;
}

.slider_section .row {
  align-items: center;
  min-height: 80vh;
}

.slider_section .img-box {
  display: flex;
  justify-content: center;
  padding: 45px;
  position: relative;
}

.slider_section .img-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

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

.slider_section .img-box img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.slider_section .detail-box {
  padding-left: 45px;
  margin: 0;
}

.slider_section .detail-box h1 {
  font-weight: 800;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider_section .detail-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 15px 45px;
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 25px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.slider_section .detail-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.5s ease;
  z-index: -1;
}

.slider_section .detail-box a:hover::before {
  left: 0;
}

.slider_section .detail-box a:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.slider_section .carousel_btn-box {
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.slider_section .carousel_btn-box img {
  margin: 0 15px;
  filter: brightness(0) invert(1);
}

.slider_section .carousel_btn-box .carousel-control-prev,
.slider_section .carousel_btn-box .carousel-control-next {
  position: unset;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  opacity: 1;
  background-position: center;
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.slider_section .carousel_btn-box .carousel-control-prev:hover,
.slider_section .carousel_btn-box .carousel-control-next:hover {
  transform: scale(1.1);
}

.shop_section .heading_container {
  margin-bottom: 40px;
}

.shop_section .box {
  background: var(--white);
  position: relative;
  padding: 25px;
  margin-top: 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(102, 126, 234, 0.1);
  overflow: hidden;
}

.shop_section .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.shop_section .box:hover::before {
  transform: scaleX(1);
}

.shop_section .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.shop_section .box a {
  color: var(--text-dark);
}

.shop_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  height: 250px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.shop_section .box .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.shop_section .box:hover .img-box::before {
  opacity: 0.1;
}

.shop_section .box .img-box img {
  max-width: 100%;
  max-height: 150px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 2;
}

.shop_section .box:hover .img-box img {
  transform: scale(1.1) rotate(5deg);
}

.shop_section .box .detail-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop_section .box .detail-box h6 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.shop_section .box .detail-box h6 span {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.3rem;
}

.shop_section .box .new {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.shop_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.shop_section .btn-box a {
  display: inline-block;
  padding: 15px 50px;
  background: var(--gradient);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.shop_section .btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.shop_section .btn-box a:hover::before {
  left: 100%;
}

.shop_section .btn-box a:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.saving_section {
  padding-left: 45px;
  padding-right: 45px;
}

.saving_section .box {
  padding-top: 60px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.saving_section .box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 25px 25px;
  animation: float 25s linear infinite reverse;
}

.saving_section .row {
  align-items: center;
  position: relative;
  z-index: 2;
}

.saving_section .img-box {
  padding: 30px 0 0 40px;
}

.saving_section .img-box img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.saving_section .detail-box {
  padding: 0 40px 60px;
}

.saving_section .detail-box .heading_container h2 {
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.saving_section .detail-box .heading_container h2::after {
  background: var(--white);
}

.saving_section .detail-box p {
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.saving_section .detail-box .btn-box {
  display: flex;
  flex-wrap: wrap;
  margin: 35px -5px 0;
  gap: 10px;
}

.saving_section .detail-box .btn-box a {
  flex: 1;
  min-width: 165px;
  text-align: center;
  margin: 5px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.saving_section .detail-box .btn-box .btn1 {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.saving_section .detail-box .btn-box .btn1:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.saving_section .detail-box .btn-box .btn2 {
  background: var(--white);
  color: var(--primary-color);
}

.saving_section .detail-box .btn-box .btn2:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why_section .box {
  text-align: center;
  margin-top: 45px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.why_section .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.5s ease;
  z-index: 0;
}

.why_section .box:hover::before {
  left: 0;
}

.why_section .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.why_section .box .img-box {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.why_section .box .img-box svg {
  width: 80px;
  height: auto;
  fill: var(--primary-color);
  transition: all 0.3s ease;
}

.why_section .box:hover .img-box svg {
  fill: var(--white);
  transform: scale(1.1);
}

.why_section .box .detail-box {
  position: relative;
  z-index: 1;
}

.why_section .box .detail-box h5 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.why_section .box:hover .detail-box h5 {
  color: var(--white);
}

.why_section .box .detail-box p {
  transition: color 0.3s ease;
  color: var(--text-light);
}

.why_section .box:hover .detail-box p {
  color: rgba(255, 255, 255, 0.9);
}

.gift_section {
  padding-left: 45px;
  padding-right: 45px;
}

.gift_section .box {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  border-radius: 30px;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.gift_section .box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  animation: float 20s linear infinite;
}

.gift_section .row {
  align-items: center;
  position: relative;
  z-index: 2;
}

.gift_section .img-box {
  padding: 60px 0 60px 25px;
}

.gift_section .img-box img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.gift_section .detail-box {
  padding: 0 25px;
}

.gift_section .detail-box .heading_container h2 {
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gift_section .detail-box .heading_container h2::after {
  background: var(--white);
}

.gift_section .detail-box p {
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.gift_section .detail-box .btn-box {
  display: flex;
  flex-wrap: wrap;
  margin: 35px -5px 0;
  gap: 10px;
}

.gift_section .detail-box .btn-box a {
  flex: 1;
  min-width: 165px;
  text-align: center;
  margin: 5px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.gift_section .detail-box .btn-box .btn1 {
  background: var(--white);
  color: #ff9a9e;
}

.gift_section .detail-box .btn-box .btn1:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gift_section .detail-box .btn-box .btn2 {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.gift_section .detail-box .btn-box .btn2:hover {
  background: var(--white);
  color: #ff9a9e;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.contact_section .container-bg {
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--white);
}

.contact_section .heading_container {
  margin-bottom: 40px;
}

.contact_section .heading_container h2 {
  font-size: 2.5rem;
}

.contact_section .row {
  align-items: stretch;
}

.contact_section form {
  padding: 45px 30px;
  background: var(--white);
}

.contact_section input {
  width: 100%;
  border: 2px solid #e2e8f0;
  height: 60px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: var(--white);
  outline: none;
  color: var(--text-dark);
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact_section input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact_section input::placeholder {
  color: #a0aec0;
}

.contact_section input.message-box {
  height: 120px;
  padding-top: 15px;
  resize: vertical;
}

.contact_section button {
  display: inline-block;
  padding: 15px 45px;
  background: var(--gradient);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: block;
  margin: 35px auto 0 auto;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.contact_section button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact_section .map_container {
  height: 100%;
  min-height: 500px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  overflow: hidden;
}

.contact_section .map_container .map-responsive {
  height: 100%;
}

.client_section .heading_container {
  margin-bottom: 40px;
}

.client_section .box {
  margin: 15px;
  box-shadow: var(--shadow-lg);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.client_section .box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.client_section .box .client_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.client_section .box .client_info .client_name h5 {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
}

.client_section .box .client_info i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.7;
}

.client_section .box p {
  margin-top: 15px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
}

.client_section .box p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  opacity: 1;
  font-size: 1.2rem;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.client_section .carousel-control-prev {
  left: -25px;
}

.client_section .carousel-control-next {
  right: -25px;
}

/* info section */
.info_section {
  position: relative;
  background: var(--dark-color);
  color: var(--white);
  margin: 0;
  padding: 60px 0 0;
}

.info_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.info_section .social_container {
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 40px;
}

.info_section .social_container .social_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.info_section .social_container .social_box a {
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info_section .social_container .social_box a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.3);
}

.info_section .row > div {
  margin-top: 25px;
}

.info_section a {
  text-transform: none;
}

.info_section h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
}

.info_section h6::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.info_section p {
  color: #cbd5e0;
  line-height: 1.6;
}

.info_section .info_form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info_section .info_form form input {
  outline: none;
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #4a5568;
  background: #2d3748;
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info_section .info_form form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.info_section .info_form form input::placeholder {
  color: #a0aec0;
}

.info_section .info_form form button {
  padding: 12px 35px;
  outline: none;
  border: none;
  color: var(--white);
  background: var(--gradient);
  margin-top: 5px;
  text-transform: uppercase;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.info_section .info_form form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.info_section .info_link-box a {
  display: flex;
  align-items: center;
  margin: 15px 0;
  color: #cbd5e0;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.info_section .info_link-box a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.info_section .info_link-box a i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.info_section .info_link-box a span {
  color: #cbd5e0;
  transition: color 0.3s ease;
}

.info_section .info_link-box a:hover span {
  color: var(--white);
}

/* end info section */
/* footer section*/
.footer_section {
  margin-top: 0;
  font-weight: 500;
  background: var(--dark-color);
  border-top: 1px solid #4a5568;
  padding: 30px 0;
}

.footer_section p {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #4a5568;
  width: 100%;
  color: #cbd5e0;
}

.footer_section a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer_section a:hover {
  color: var(--accent-color);
}

/* end footer section*/

/* Responsive Design */
@media (max-width: 768px) {
  .slider_section .detail-box h1 {
    font-size: 2.5rem;
  }

  .slider_section .img-box {
    padding: 20px;
  }

  .heading_container h2 {
    font-size: 2rem;
  }

  .user_option {
    margin-left: 0;
    justify-content: center;
    margin-top: 15px;
  }

  #navbarSupportedContent .navbar-nav .nav-link {
    padding: 10px 20px;
    margin: 5px 0;
  }

  .slider_section .carousel_btn-box {
    bottom: 20px;
    padding: 8px 15px;
  }

  .contact_section .map_container {
    min-height: 300px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .client_section .carousel-control-prev {
    left: 10px;
  }

  .client_section .carousel-control-next {
    right: 10px;
  }
}

/* انیمیشن‌های اضافی */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* اسکرول بار سفارشی */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
