/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 2.5rem;
    /*========== Colors ==========*/
    --hue: 30; /* ضبط اللون الأساسي نحو البرتقالي الداكن */

    --first-color: hsl(var(--hue), 70%, 40%); /* برتقالي غامق */
    --first-color-alt: hsl(var(--hue), 70%, 35%); /* برتقالي داكن قليلاً */
    --first-color-light: hsl(var(--hue), 70%, 60%); /* برتقالي فاتح */
    --first-color-lighten: hsl(var(--hue), 70%, 85%); /* برتقالي فاتح جداً */
    --title-color: #000000; /* أسود للعناوين */
    --text-color: #121212; /* أسود للنصوص */
    --text-color-light: #333333; /* أسود فاتح للنصوص الثانوية */
    --body-color: #ffffff; /* خلفية بيضاء */
    --container-color: #f0f0f0; /* خلفية بيضاء فاتحة */
    /*========== My color ==========*/
    --bs-blue: #121212; /* استبدال الأزرق بالأسود */
    --bs-indigo: #000000; /* لون أسود */
    --bs-purple: #6a008a; /* بدون تغيير */
    --bs-pink: #E91E63; /* بدون تغيير */
    --bs-red: #d35400; /* برتقالي محمر */
    --bs-orange: #f39c12; /* برتقالي فاتح قليلاً */
    --bs-yellow: #f1c40f; /* بدون تغيير */
    --bs-green: #27ae60; /* بدون تغيير */
    --bs-teal: #58d8a3; /* بدون تغيير */
    --bs-cyan: #57c7d4; /* بدون تغيير */
    --bs-white: #ffffff; /* أبيض */
    --bs-gray: #121212; /* أسود */
    --bs-gray-light: #333333; /* أسود فاتح */
    --bs-gray-lighter: #4d4d4d; /* أسود خفيف */
    --bs-gray-lightest: #666666; /* أسود خفيف جداً */
    --bs-gray-dark: #0d0d0d; /* أسود داكن جداً */
    --bs-black: #000000; /* أسود */
    --bs-gray-100: #f8f9fa; /* أبيض مائل للرمادي */
    --bs-gray-200: #e9ecef; /* رمادي فاتح */
    --bs-gray-300: #dee2e6; /* رمادي */
    --bs-gray-400: #ced4da; /* رمادي متوسط */
    --bs-gray-500: #adb5bd; /* رمادي غامق قليلاً */
    --bs-gray-600: #6c757d; /* رمادي غامق */
    --bs-gray-700: #495057; /* رمادي داكن */
    --bs-gray-800: #343a40; /* رمادي غامق جداً */
    --bs-gray-900: #212529; /* رمادي داكن جدًا */
    --bs-primary: #d35400; /* برتقالي داكن كـ لون أساسي */
    --bs-secondary: #4d4d4d; /* أسود خفيف كـ لون ثانوي */
    --bs-success: #27ae60; /* بدون تغيير */
    --bs-info: #333333; /* أسود فاتح كـ لون معلومات */
    --bs-warning: #f39c12; /* برتقالي فاتح */
    --bs-danger: #c0392b; /* أحمر داكن */
    --bs-light: #ffffff; /* أبيض */
    --bs-dark: #000000; /* أسود */
    /* بدون تغيير باقي المتغيرات */
    --bs-primary-rgb: 211, 84, 0;
    --bs-secondary-rgb: 77, 77, 77;
    --bs-success-rgb: 39, 174, 96;
    --bs-info-rgb: 51, 51, 51;
    --bs-warning-rgb: 243, 156, 18;
    --bs-danger-rgb: 192, 57, 43;
    --bs-light-rgb: 255, 255, 255;
    --bs-dark-rgb: 0, 0, 0;
    /* الألوان المخصصة */
    --dark-orange: #7d3c03;
    --Light-orange: #fcbb82;
    --main-orange: #fa7809;
    --dark-blue: #000000;
    --Lighter-blue: #4d4d4d;
    --main-blue: #121212;
    --Light-blue: #333333;
    --green: #2B7A0B; 
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Amiri', serif;
    /* --body-font: 'Poppins', sans-serif; */
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}
/*========== Fonts ==========*/
@font-face {
    font-family: 'Amiri';
    font-weight: 400;
    src: url("../fonts/Amiri/Amiri-Regular.ttf");
}

@font-face {
    font-family: 'Amiri';
    font-weight: 400;
    font-style:italic;
    src: url("../fonts/Amiri/Amiri-Italic.ttf");
}

@font-face {
    font-family: 'Amiri';
    font-weight: 700;
    src: url("../fonts/Amiri/Amiri-Bold.ttf");
}

@font-face {
    font-family: 'Amiri';
    font-weight: 700;
    font-style: italic;
    src: url("../fonts/Amiri/Amiri-BoldItalic.ttf");
}

@font-face {
    font-family: 'DM_Serif';
    font-weight:400;
    src: url("../fonts/DM_Serif/DMSerifDisplay-Regular.ttf");
}

@font-face {
    font-family: 'DM_Serif';
    font-weight: 400;
    font-style: italic;
    src: url("../fonts/DM_Serif/DMSerifDisplay-Italic.ttf");
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

body,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body{
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s; /*For animation dark mode*/
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}
/*========== toggle btn ==========*/
.nav__btns{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  margin-left: 1.5rem;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center{
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

.section__title-center{
  text-align: center;
}

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/
.header{
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-fixed);
  transition: .4s; /*For animation dark mode*/
}

/*=============== NAV ===============*/
.nav{
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle,
.nav__close{
  color: var(--title-color);
}

.nav__logo{
  font-family: 'Dancing Script', cursive;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: .3s;
}

.nav__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover{
  color: var(--first-color);
}
.nav__logo .logo-text{
  text-transform: lowercase;
    margin-left: -0.75rem;
    margin-top: -0.25rem;
    font-size: 2rem;
}
.nav__logo .logo{
  width: 2.5rem;
  height: 2.5rem;
}
.nav__toggle{
  display: inline-flex;
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .nav__menu{
    position: fixed;
    background-color: var(--container-color);
    width: 80%;
    height: 100%;
    top: 0;
    left: -100%;
    box-shadow: 2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    padding: 4rem 3rem 0 0;
    border-radius: 0 1rem 1rem 0;
    transition: .3s;
    z-index: var(--z-fixed);
  }
}

.nav__close{
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}
.nav__close:hover {
    color: darkred;
}
    .nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link{
  color: var(--main-blue);
  font-weight: var(--font-medium);
  transition: .3s;
  font-size:1.25rem;
}

.nav__link:hover{
  color: var(--first-color);
}

/* Show menu */
.show-menu{
  left: 0;
}

/* Change background header */
.scroll-header{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 15%, .1);
  background-color: var(--main-blue);
  color: var(--bs-white);
  height:4rem;
}

.scroll-header .nav__logo, 
.scroll-header .nav__toggle,
.scroll-header .nav__link{
  color: var(--bs-white);
}
.nav__menu.show-menu .nav__link{
  color: var(--main-blue);
}
/* Active link */
.active-link{
  position: relative;
  color: var(--main-blue);
}

.active-link::after{
  content: '';
  position: absolute;
  bottom: -.5rem;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-blue);
}
.scroll-header .active-link::after{
  background-color: var(--bs-white);
}

/*=============== HOME ===============*/
.home{
  padding: 3.5rem 0 2rem;
}
/*=============== BUTTONS ===============*/
.btn-main,
.btn-danger {
    display: inline-block;
    color: #FFF;
    padding: .25rem 1rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    transition: .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
    border-color: transparent;
}
    .btn-main:after,
    .btn-danger:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--main-blue);
        border-radius: .5rem;
        z-index: -2;
    }
    .btn-main:after{
        background-color: var(--main-blue);
    }
    .btn-danger:after {
        background-color: #dc3545;
    }
    .btn-main:before,
    .btn-danger:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: var(--dark-blue);
        transition: all 0.3s;
        border-radius: .5rem;
        z-index: -1;
    }
    .btn-main:before {
        background-color: var(--dark-blue);
    }
    .btn-danger:before {
        background-color: #bb2d3b;
    }
    .btn-main:hover,
    .btn-danger:hover {
        color: #fff;
        background-color: transparent;
        border-color: transparent;
    }
        .btn-main:hover:before,
        .btn-danger:hover:before {
            width: 100%;
        }

.scroll-header .btn-main{
  background-color: var(--main-orange);
}
.scroll-header .btn-main:after {
  background-color: var(--main-orange);
}
.scroll-header .btn-main:before {
  background-color: var(--dark-orange);
}
/*=============== SCROLL UP ===============*/
.show-scroll{
  bottom: 3rem;
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-right: var(--mb-1);
    margin-left: var(--mb-1);
  }

}

/* For medium devices */
@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__menu{
    margin-right: auto;
  }

  .home__container,
  .contact__container { 
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home{
    padding: 10rem 0 5rem;
  }
}

/* For large devices */
@media screen and (min-width: 992px){
  .container{
    margin-right: auto;
    margin-left: auto;
  }
  .section{
    padding: 8rem 0 1rem;
  }
  .home{
    padding: 13rem 0 5rem;
  }
}

@media screen and (min-width: 1200px){
  .scrollup{
    left: 3rem;
  }
}
.website-text a{
   text-decoration: none;
    color: var(--bs-gray-600);
}
.bg-blue{
background-color: var(--dark-blue);
}
.section-header {
  margin: 2.5rem 0 4.5rem 0;
}

.section-header {
  text-align: center;
  font-size: 1.25rem;
}

.section-header h1,
.form-header h1 {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--dark-blue);
}

.section-header h1::after,
.form-header h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: 50%;
  height: 0.25rem;
  background-color: var(--main-orange);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
}
/* Start Home */
.home-section{
  position: relative;
}
.home {
  z-index: 99;
  position: absolute;
	top:0;
	left: 0;
  height: calc(100vh - 3rem);
  padding: 5rem 8rem;
  width: 100%;
}

.home-slider .container {
  height: 100%;
}

.home-slider {
  height: 100%;
  position: relative;
}

.home-slide {
  display:flex;
  flex-direction: row;
  justify-content:space-around;
  height: 0;
  margin-top: 1rem;
  position: absolute;
  overflow: hidden;
  visibility: hidden;
}

.home-slide.active {
  visibility: visible;
  height: 100%;
  width:100%;
}
.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink:50;
}
.home-sub-title {
    font-size: 2rem;
    margin: 0.75rem 0 2.25rem;
    transition-delay: 0.2s;
    align-self: center;
    color: var(--main-blue);
}
.col-slide .home-sub-title {
    font-size: 4rem;
}
.home-details {
    font-size: 1.25rem;
    transition-delay: 0.4s;
}
.home-img {
    display: flex;
    justify-content: center;
    align-items: center;
}


.slide-control {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--bs-gray-600);
  align-items: center;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-control:hover {
  color: var(--main-blue);
}

.slide-next {
  right: -15rem;
}

.slide-prev {
  left: -15rem;
}

.home:hover .slide-next {
  display: flex;
  right: -5rem;
}

.home:hover .slide-prev {
  display: flex;
  left: -5rem;
}

/* Slider Animation */
.slide-animation,
.top-down,
.down-top,
.right-left,
.left-right {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.home-slide.active .slide-animation,
.home-slide.active .top-down,
.home-slide.active .down-top,
.home-slide.active .right-left,
.home-slide.active .left-right {
  opacity: 1;
  visibility: visible;
}

.slide-animation,
.top-down {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}

.down-top {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}

.home-slide.active .slide-animation,
.home-slide.active .top-down,
.home-slide.active .down-top {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.right-left {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  width : 50%
}

.left-right {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    width: 50%
}

.home-slide.active .right-left,
.home-slide.active .left-right {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.col-slide{
    flex-direction:column;
}
/* Media Query  */
@media only screen and (max-width: 1200px) {
    .home-details {
        font-size: 1.125rem;
    }
}
@media only screen and (max-width: 992px) {
    .home-sub-title {
        font-size: 1.5rem;
    }

    .home-details {
        font-size: .9rem;
    }
}
@media only screen and (max-width: 768px) {
    .slide-control {
        display: none;
    }
    .home:hover .slide-next {
        display: none;
    }

    .home:hover .slide-prev {
        display: none;
    }
        .home {
        padding: 0rem;
        left: 14%
    }

    .home-slide {
        flex-direction: column;
        padding-top: 3rem;
        padding-right: 3rem;
    }

    .home-sub-title {
        margin-bottom: 1rem;
    }

    .home-details {
        margin-bottom: 0rem;
    }

    .home-img  img {
        max-width: 37%;
        height: auto;
    }
    .arrow-down {
        width: 2rem;
        height: 0.5rem;
    }
}
@media only screen and (max-width: 600px) {
    .home {
        left: 6%
    }
}

/* Background effect */
.home-section {
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: -1px;
	margin: auto;
}
.box {
	position: absolute;
	width: 100%;
	overflow: hidden;
	height: 100%;
	bottom: -1px;
	background: linear-gradient(to bottom, var(--Light-orange), var(--main-orange));
	z-index: 5;
}

.single-box {
	position: absolute;
	left: 0;
	width: 200%;
	height: 100%;
	background-repeat: repeat no-repeat;
	background-position: 0 bottom;
	transform-origin: center bottom;
	background-size: 50% 80px;
	animation: animate 18s linear infinite;
}
@keyframes animate {
	0% {
		transform: translateX(0) translateZ(0) scaleY(1);
	}
	50% {
		transform: translateX(-25%) translateZ(0) scaleY(0.55)
	}
	100% {
		transform: translateX(-50%) translateZ(0) scaleY(1)
	}
}
/* End Home */
/* Start Services */
.services-section{
  margin-top:calc(100vh + 5rem) ;
  margin-bottom: 5rem;
}
.services-content{
    background: #fff;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
       height: 100%;
       border: 2px solid transparent;
}
.services-content:hover{
 box-shadow: 0 0 25px rgba(0,0,0,0.1);
 border: 2px solid var(--main-blue);
 background-color: var(--bs-gray-400);
}
.services-content .services-content-header{
    color: #fff;
    background-color: var(--main-blue);
    padding: 20px 20px 25px;
    margin: 0 0 8px;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    position: relative;
}
.services-content .services-content-header:before,
.services-content .services-content-header:after{
    content: '';
    background-color: var(--main-blue);
    height: 100%;
    width: 50%;
    border-radius: 0 0 50% 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.services-content .services-content-header:after{
    left: auto;
    right: 0;
}

.services-content .services-text .text{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 40px;
    display: block;
}

.services-content .services-content-list{
    padding: 0;
    margin: 0 0 40px;
    list-style: none;
}
.services-content .services-content-list li{
    color: #7b7b7b;
    font-size: .9rem;
    line-height: 25px;
    text-transform: uppercase;
    margin: 0 0 7px;
    text-align: right;
    padding: 0 1rem;
}
.services-content .services-content-list li:last-child{
   margin: 0; 
  }
.services-content .services-content-footer{
    background-color: var(--main-blue);
    padding: 20px 10px 8px;
    border-radius: 50% 50% 0 0/100% 100% 0 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}
.services-content .services-content-list li i{
    color: var(--main-blue);
}
.services-content:hover .services-content-list li {
    color: var(--main-blue);
}

.services-content.orange .services-content-header,
.services-content.orange .services-content-header::before,
.services-content.orange .services-content-header::after,
.services-content.orange .services-content-footer{
    background-color: var(--main-orange);
}
.services-content.orange  .services-content-list li i{
    color: var(--main-orange);
}
.services-content.orange:hover{
    border-color: var(--main-orange);
}
.services-content.red .services-content-header,
.services-content.red .services-content-header::before,
.services-content.red .services-content-header::after,
.services-content.red .services-content-footer{
    background-color: #800000;
}
.services-content.red  .services-content-list li i{
    color: #800000;
}
.services-content.red:hover{
    border-color: #800000;
}
.services-content.cyan .services-content-header,
.services-content.cyan .services-content-header::before,
.services-content.cyan .services-content-header::after,
.services-content.cyan .services-content-footer{
    background-color: #3399ff;
}
.services-content.cyan  .services-content-list li i{
    color: #3399ff;
} 
.services-content.cyan:hover{
    border-color: #3399ff;
}
@media only screen and (max-width: 990px){
    .services-content{ margin: 0 0 40px; }
}

/* Start About us */

 .about-us-section svg{
  position: absolute;
}
.about-us-section .svg-bottom{
  bottom: -40px;
}
.about-us-section .svg-top{
      top: -44px;
    transform: rotate(180deg);
} 
.about-us-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
   background-color: var(--main-blue);
   /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3CradialGradient id='a' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23143F6B'/%3E%3Cstop offset='1' stop-color='%23081A2B'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='750' x2='1550' y2='750'%3E%3Cstop offset='0' stop-color='%230e2d4b'/%3E%3Cstop offset='1' stop-color='%23081A2B'/%3E%3C/linearGradient%3E%3Cpath id='s' fill='url(%23b)' d='M1549.2 51.6c-5.4 99.1-20.2 197.6-44.2 293.6c-24.1 96-57.4 189.4-99.3 278.6c-41.9 89.2-92.4 174.1-150.3 253.3c-58 79.2-123.4 152.6-195.1 219c-71.7 66.4-149.6 125.8-232.2 177.2c-82.7 51.4-170.1 94.7-260.7 129.1c-90.6 34.4-184.4 60-279.5 76.3C192.6 1495 96.1 1502 0 1500c96.1-2.1 191.8-13.3 285.4-33.6c93.6-20.2 185-49.5 272.5-87.2c87.6-37.7 171.3-83.8 249.6-137.3c78.4-53.5 151.5-114.5 217.9-181.7c66.5-67.2 126.4-140.7 178.6-218.9c52.3-78.3 96.9-161.4 133-247.9c36.1-86.5 63.8-176.2 82.6-267.6c18.8-91.4 28.6-184.4 29.6-277.4c0.3-27.6 23.2-48.7 50.8-48.4s49.5 21.8 49.2 49.5c0 0.7 0 1.3-0.1 2L1549.2 51.6z'/%3E%3Cg id='g'%3E%3Cuse href='%23s' transform='scale(0.12) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.2) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.25) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(0.3) rotate(-20)'/%3E%3Cuse href='%23s' transform='scale(0.4) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(0.5) rotate(20)'/%3E%3Cuse href='%23s' transform='scale(0.6) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.7) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.835) rotate(-40)'/%3E%3Cuse href='%23s' transform='scale(0.9) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(1.05) rotate(25)'/%3E%3Cuse href='%23s' transform='scale(1.2) rotate(8)'/%3E%3Cuse href='%23s' transform='scale(1.333) rotate(-60)'/%3E%3Cuse href='%23s' transform='scale(1.45) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(1.6) rotate(10)'/%3E%3C/g%3E%3C/defs%3E%3Cg transform='translate(1480 0)'%3E%3Cg transform='translate(0 1500)'%3E%3Ccircle fill='url(%23a)' r='3000'/%3E%3Cg opacity='0.5'%3E%3Ccircle fill='url(%23a)' r='2000'/%3E%3Ccircle fill='url(%23a)' r='1800'/%3E%3Ccircle fill='url(%23a)' r='1700'/%3E%3Ccircle fill='url(%23a)' r='1651'/%3E%3Ccircle fill='url(%23a)' r='1450'/%3E%3Ccircle fill='url(%23a)' r='1250'/%3E%3Ccircle fill='url(%23a)' r='1175'/%3E%3Ccircle fill='url(%23a)' r='900'/%3E%3Ccircle fill='url(%23a)' r='750'/%3E%3Ccircle fill='url(%23a)' r='500'/%3E%3Ccircle fill='url(%23a)' r='380'/%3E%3Ccircle fill='url(%23a)' r='250'/%3E%3C/g%3E%3Cg transform='rotate(-201.6 0 0)'%3E%3Cuse href='%23g' transform='rotate(10)'/%3E%3Cuse href='%23g' transform='rotate(120)'/%3E%3Cuse href='%23g' transform='rotate(240)'/%3E%3C/g%3E%3Ccircle fill-opacity='0.11' fill='url(%23a)' r='3000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
  background-attachment: fixed;
  background-size: cover;   

  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem; 
}

.about-us-section {
  color: var(--bs-white);

}
.about-us-title{
  margin: 2rem;
  color: var(--Light-orange);
}
.about-us-section .about-us-img-box {
  padding: 50px;
  overflow: hidden;
} 

.about-us-img-box img {
  width: 100%;
}

.about-us-section .about-us-details-box {
  /*margin-top: 2rem;*/
  text-align: right;
}

@media (max-width: 768px) { 
  .about-us-section .about-us-details-box {
     width: 100%; 
  }
.about-us-section .about-us-img-box {
   width: 100%; 
  }
 }

.about-us-container {
  display: flex;
}
.list {
    list-style: none;
    /*width: 600px;
    max-width: 90%;*/
}

.item {
    display: block;
    clear: both;
    padding-bottom: 1rem;
    line-height: 1.375;
    position: relative;
}

.item:before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    float: right;
    background: var(--main-orange) linear-gradient(to bottom left, var(--main-orange) 25%, var(--bs-white));
    text-shadow: 0 0 2px var(--main-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    shape-outside: ellipse();
    z-index: 1;
    margin: 0 10px;
    border-radius:0% 100% 100% 100%;
    transform: rotate(90deg);
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    -o-transform:rotate(90deg);
}
/* End About Us */
/* Start Why us */
.serviceBox{
    color: var(--main-blue);
    background-color: #fff;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 0 25px 30px;
    position: relative;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: ""; 
    background: #fff;
    border-radius: 15px 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: -1;
}
.serviceBox:after{
    background-color: var(--main-blue);
    height: 50%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}
.serviceBox .service-icon{
    color:#fff;
    background: var(--main-blue);
    font-size: 45px;
    width: 75%;
    margin: 0 auto 35px;
    border-radius:0 0 50px 50px;
    position: relative;
}

.serviceBox .service-icon img{
      width: 5rem;
}
.serviceBox .service-icon:before,
.serviceBox .service-icon:after{
    content: "";
    background: linear-gradient(to top left, var(--main-blue) 49%, transparent 50%);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: -10px;
}
.serviceBox .service-icon:after{
    background: linear-gradient(to top right, var(--main-blue) 49%, transparent 50%);
    left: auto;
    right: -10px;
}
.serviceBox .title{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--main-blue);
}
.serviceBox .description{
    color: #555;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 25px;
    height: 100%;
}
.serviceBox.yellow{ --main-blue: #FFB90D; }
.serviceBox.green{ --main-blue: #60B361; }
.serviceBox.blue{ --main-blue: #016FCE; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 40px; }
}
/* End Why us */
/* Start Footer */
.footer-section {
  background: var(--dark-blue);
  position: relative;
}
.footer-content{
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.footer-content:hover{
 box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 6px 0px;
}
.footer-content:hover .contact-us i{
 color: var(--bs-white);
}
.contact-us{
    display: flex;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-evenly;
    flex-direction: column;
}
.contact-us i {
  color: var(--main-orange);
  font-size: 30px;
  margin: 10px 0;
}
.contact-us-text {
    display: flex;
    flex-direction: column;
}
.contact-us-text span {
  color: var(--bs-gray-600);
  font-size: 15px;
}
.btn-social{
      line-height: .5;
      padding: 0.375rem 0.375rem;
}
.bg-footer{
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}
/* SVG */
 .cloud {
    z-index: 1;
    bottom: -5px;
    position: relative;
}
 .cloud path {
    fill: var(--dark-blue);
    position: absolute;
    overflow: hidden;
    stroke: var(--dark-blue);
}
/* End Footer */
/* Start Pop Up window */
.pop-up{
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  top:0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  direction: ltr;
}
.hide{
    width: 0;
    height: 0;
}
.show{
  width: 100%;
  height: 100%;
}
.login-section {
    padding: 7em 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.login-wrap {
    position: relative;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    margin-top: 1rem;
}

    .login-wrap .login-icon {
        width: 80px;
        height: 80px;
        background: var(--main-blue);
        border-radius: 50%;
        font-size: 30px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

.form-group {
    margin-bottom: 1rem;
}

.login-icon {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.login-wrap .close {
    color: var(--main-blue);
    margin-top: -2rem;
    margin-right: -2rem;
}

@media screen and (max-width: 670px) {
    .login-wrap .close {
        color: var(--main-blue);
        margin-top: 0;
        margin-right: 0;
    }
}
.display_none{
    display: none;
}
/*Start Message Box Style*/
.modal .modal-header {
    background-color: #000000;
    color: #fff;
    padding: 0rem 1rem;
}

.modal .btn-close {
    background: #fff;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    border-radius: 50%;
    padding: 0;
}
    .modal .btn-close span {
        color: var(--main-blue);
        line-height: 1;
        font-size: 2rem;
    }
.modal .modal-body {
    text-align: center;
    margin: 2rem 0;
}

.modal .modal-footer {
    border: none;
}
/*End Message Box Style*/
/*Start Down Arrow Style*/
.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.arrow-down {
    position: absolute;
    width: 3rem;
    height: .8rem;
    bottom:0;
    opacity: 0;
    transform: scale(1);
    -webkit-animation: move-down3s ease-out infinite;
    animation: move-down 3s ease-out infinite;
}

    .arrow-down:first-child {
        -webkit-animation: move-down 3s ease-out 1s infinite;
        animation: move-down 3s ease-out 1s infinite;
    }

    .arrow-down:nth-child(2) {
        -webkit-animation: move-down 3s ease-out 2s infinite;
        animation: move-down 3s ease-out 2s infinite;
    }

    .arrow-down:before,
    .arrow-down:after {
        content: "";
        position: absolute;
        top: 0;
        height: 100%;
        width: 50%;
        background: var(--dark-blue);
    }

    .arrow-down:before {
        left: 0;
        transform: skewY(30deg);
    }

    .arrow-down:after {
        right: 0;
        width: 50%;
        transform: skewY(-30deg);
    }

@-webkit-keyframes move-down {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(1rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(4rem);
    }

    100% {
        opacity: 0;
        transform: translateY(7rem) scale(0.5);
    }
}

@keyframes move-down {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}
@media only screen and (max-width: 768px) {
    .arrow-down {
        left:40%;
        width: 2rem;
        height: 0.5rem;
    }
}
/*End Down Arrow Style*/
/*Start New text Effect*/
.text-effect {
    font-family: 'Calligraffitti', cursive;
    font-weight: 700;
    font-size: 13rem;
    position: absolute;
    text-shadow: -15px 5px 20px #ced0d3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    letter-spacing: 0.02em;
    text-align: center;
    color: #F9f1cc;
    text-shadow: 5px 5px 0px #FFB650, 10px 10px 0px #FFD662, 15px 15px 0px #fa7809, 20px 20px 0px #7d3c03, 25px 25px 0px #143F6B, 30px 30px 0px #93bfeb;
}

/*End New text Effect*/
/*Start button*/

.btn-login {
 
    transform: skewX(-10deg);
    height: 45px;
    width: 160px;
    color:#fff;
    border-radius: 20px 5px 20px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font: 15px sans-serif;
    font-weight: 300;
    -webkit-animation: breath2 2s 0.5s infinite alternate;
    animation: breath2 2s 0.5s infinite alternate;
    transition: all 0.2s ease;
    cursor: pointer;
}

/*End button*/
.area {
    background: #4e54c8;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    height: 100vh;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
/*Start Top Button*/
.top-container {
    position: relative;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    bottom: 1rem;
    right: 1rem;
    z-index: 99999;
    transition: all 0.4s;
}

.sidebar-icon-only .page-body-wrapper .back-to-top {
    right: 5rem;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.back-to-top i {
    color: var(--main-orange);
    font-size: 2rem;
}

@media screen and (max-width: 992px) {
    .back-to-top {
        z-index: 9;
        right: 1rem;
    }
}
/*End Top Button*/


.box {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background: linear-gradient(to bottom, var(--Light-orange), #524b45);
    z-index: 5;
}

.text-effect {
    font-family: 'Calligraffitti', cursive;
    font-weight: 700;
    font-size: 8rem;
    position: absolute;
    text-align: center;
    color: #F9f1cc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 2px #FFB650, 6px 6px 2px #FFD662, 9px 9px 2px #fa7809, 12px 12px 2px #000000;
}

