
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --black:#242424; 
--cyan:#1E87CA;
--yellow : #FCCC04;
--purple : #b65419;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
   /* background-color: #f6eed9;  */
  overscroll-behavior: none;
}
body img {
  width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: var(--purple);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--purple);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--purple);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--purple);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* --------------------------------
#TOP BIS-MILLAH
-------------------------------------*/
#top-start {
  padding: 50px 0;
  margin: 20px 0;
  width: 30%;
}
#top-start img{
   width: 55%;
   filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--purple);
  height: 50px;
  font-size: 15px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar.contact-info i a,
#topbar.contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 100px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: var(--purple);
}

#header .logo img {
  max-height: 65px;
}

.scrolled-offset {
  margin-top: 70px;
}

@media (max-width: 500px) {
  
  #header .logo img {
    max-height: 50px;
  }
  #topbar {
    display: none !important;
  }
 
  
 

  
  /* #topbar .contact-info i a {
    padding-left: 0;
  } */
}
@media (max-width: 380px) {
  #header .logo img {
    max-height: 50px;
  }
 
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 400;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--purple);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--purple);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--purple);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
@media (min-width: 768px) {
  #top-start {
    width: 23%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--purple);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 20px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--purple);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--purple);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/bg.webp") top left;
  background-size: cover;
  position: relative;
  text-align: center;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #222222e0;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--purple);
}

#hero h2 {
  color: #555555;
  margin: 20px 250px 30px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--purple);
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: var(--purple);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: var(--purple);
}

#hero .btn-watch-video:hover i {
  color: #1E87CA;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 770px) {
  #hero {
    height: 90vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    margin-right: 50px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

/* =====================hero section ========================= */

/* =====================hero section ends ========================= */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: var(--purple);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: var(--purple);
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}
@media (max-width: 770px) {
  .section-title p {
    margin: 15px 45px;
  }
}
@media (max-width: 500px) {
  .section-title h3 {
    font-size: 25px;
  }
  .section-title p {
    margin: 15px 25px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 770px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/* ===============heading start============================ */
 .about-heading-section {
            /* background-color: #fff6dc;  */
        }

        .about-heading {
            gap: 10px;
        }

        .about-title {
            font-size: 42px;
            font-weight: 600;
            /* letter-spacing: 1px; */
            color: var(--purple);
            text-transform: uppercase;

        }

        .leaf-img {
            max-width: 90px;
            height: auto;
        }

        /* Tablet */
        @media (max-width: 768px) {
            .about-title {
                font-size: 32px;
            }

            .leaf-img {
                max-width: 65px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .about-title {
                font-size: 1.35rem;
                letter-spacing: 1px;
            }

            .leaf-img {
                max-width: 50px;
            }
        }
/* ===============heading end============================ */


/* ==================about======================== */
.about-us-main , .why-main ,.product-main {
  background: linear-gradient(90deg, #ef65101f, #ffffff, #ef65101f);
}
.group-company h3{
  color: var(--purple);
}
.company-box{
  background-color: #f4b012d9;
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 2px 5px #ab96577b;
  border-bottom: 3px solid #fff;
}
.company-box img {
  width: 200px;
  height: 100px;
  border-radius: 20px;
}

.company-box h4 {
  margin-bottom: 5px;
}



/* ==================about======================== */



/* ============product section start====================== */
.product-container {
  background-color: #b87953;
}
.product-box {
  background-color: #fff;
  padding: 20px;
  /* border: 2px solid var(--purple); */
  border-radius: 10px;
  box-shadow: 2px 5px 1px var(--purple);
}
.product-img img {
  border-radius: 10px;
}
.product-details {
  padding: 20px 0;
}
.product-details h4 {
   color: var(--purple);
   font-size: 1.7rem;
   margin-top: 1rem;
}

/* ===========button css====================== */
/* From Uiverse.io by alexmaracinaru */ 
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: var(--purple);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
}

/* .cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b6551974;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
} */

.cta span {
  position: relative;
  font-weight: 500;
  color: #fff;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--purple);
  stroke: #fff;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--purple);
  color: #fff !important;
}
.cta:hover.cta span {
  color: #fff !important;
}

.cta:hover svg {
  transform: translateX(0);
  stroke: #fff;
}

.cta:active {
  transform: scale(0.95);
}

/* ===========button css====================== */
/* ============product section start====================== */

/* ========why section start============== */
.why-details {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 5px;
  border: 1px solid var(--purple);
}
.why-details h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--purple);
}
.why-details p {
  margin-bottom: 0;
}
/* ========why section ends============== */


/* ===========gallery section start=================== */
.gallery-main {
  background-color: #fff;
}
.gallery img {
 border-radius: 10px;
}
/* ===========gallery section ends=================== */

/* ==========contact us section ==================== */
.contact-main {
  background-color:   #fff8d9;
  margin: 0 !important;
}
.about-card {
    /* background-color: #f4b012d9; */
    background-color: white;
    border: 1px solid var(--purple);
    color: var(--white);
    padding: 80px 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 2px 10px 1px #b65419;
}

.round-icon {
    position: absolute;
    top: 0;   
   left: 50%;  
   transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 10px;
    border: 2px solid var(--purple);
    /* border-style: dashed; */
    border-radius: 50%;
    width: 110px;
    height: 110px;
}
.about-card p {
    width: 100%;
    color: var(--white);
    font-size: 15px;
}
.contact-card  a {
 color: var(--white);
 cursor: pointer !important;
 font-size: 1rem;
 word-break: break-word !important; 
}

/* ========contact form======================= */
 .contact-cards {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--purpl);
            /* max-width: 1000px; */
            width: 100%;
            box-shadow: 2px 10px 1px #b65419;
        }

        .form-label {
            font-size: 14px;
            color: #b65419;
            font-weight: 600;
        }

        .form-control,
        .form-select {
            border: none;
            border-bottom: 1px solid  var(--purple);
            border-radius: 0;
            background: transparent;
            padding-left: 0;
            font-size: 15px;
        }

        .form-control:focus,
        .form-select:focus {
            box-shadow: none;
            border-color: var(--purple);
        }

        textarea.form-control {
            resize: none;
        }

        .submit-btn {
            width: 200px;
            background: var(--purple);
            color: #fff;
            border-radius: 30px;
            padding: 10px 30px;
            border: none;
            font-weight: 500;
            transition: 0.3s ease;
            border: 2px solid transparent;
        }

        .submit-btn:hover {
            background: #fff;
            color: var(--purple);
            border: 2px solid var(--purple);
        }

        @media (max-width: 767px) {
            .contact-cards {
                padding: 25px;
            }
        }
/* ==========contact us section ==================== */

/* ============footer=============== */
footer {
    /* background-color: var(--purple); */
    background-image: url("/img/footer-bgg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
    /* margin-top: 50px; */
}
ul li {
  list-style: none;
}
.contact-container {
    background-color: var(--white);
    border-radius: 20px;
}

#menu-img {
  width: 35px;
  height: 35px;
}
.contact-container a {
    color: #0b171a;
    word-break: break-word;
}
.contact-container a:hover {
  color: var(--purple);
}
.contact-container h4 {
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-links ul {
    padding-left: 0 !important;
}
.contact-links ul li {
    line-height: 40px;
}
.contact-links ul li a {
  transition: 0.3s all ease-in-out;
  /* font-weight: 550; */
}
.contact-links ul li a:hover {
   color: var(--purple);
   display: inline-block;
   transform: translateX(5px);
   font-weight: 500;
}

.contact-container img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: 0.5s all ease-in-out
}
.contact-container img:hover {
  transform: translateY(7px);
  cursor: pointer;
}
.contact-box {
    margin-top: 25px;
}
.follow-link {
  color: var(--black);
}
.contact-container .contact-info {
    margin-left: 25px;
}



/* ===================RESPONSIVE DESIGN START================== */
@media(max-width:768px){
  .company-box {
    margin-top: 1.5rem;
  }
  .p-box {
    margin-top: 1.5rem;
  }
  .c-box {
    margin-top: 5.5rem;
  }
  .contact-cards {
    width: 90%;
  }
  footer {
    padding: 30px 15px;
  }
  .contact-container{
    padding: 1.5rem;
  }
  
  .contact-box {
    flex-direction: column;
    align-items: start !important;
    margin-bottom: 1rem;
  }
  .contact-box .contact-info  {
    color: var(--black) !important;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .contact-links , .follow-link {
    margin-top: 1.7rem;
  
  }

}
@media(max-width:500px){

}
/* ===================RESPONSIVE DESIGN ENDS================== */