﻿/* Reset & Base */
*,
:before,
:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:cairo;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

h2 {
  line-height: 1.1;
  margin: 0;
  font-size:large;
}

/* Container */
.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero Slider */
.hero-slider {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.9));
  z-index: 1;
}

/* Slide Text */
.hero-style {
  height: 850px;
  transition: all 0.4s ease;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 60px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: capitalize;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-style .slide-text p {
  font-size: 32px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.theme-btn,
.theme-btn-s2 {
  background-color: #b57ab2;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 32px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
}

.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a2e;
}

.theme-btn:hover,
.theme-btn-s2:hover {
  background-color: #b57ab2;
  color: #ffffff;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.slide-btns a:first-child {
  margin-right: 10px;
}

/* Swiper Arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: transparent;
  text-align: center;
  line-height: 53px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: #f0f0f0;
  display: inline-block;
}

.hero-slider .swiper-button-prev:before {
  content: "\f060";
}

.hero-slider .swiper-button-next:before {
  content: "\f061";
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
   background-color:#b57ab2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color:#b57ab2;}
