@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary: #ffa500;
  --secondary: #ffa500;
  --background: #2f1e00;
  --border: #E5E5E5;
  --theme: #1053f3;
  --black: #1C1C25;
  --black-2: #4f5259;
  --white: #FFFFFF;
  --white-2: #A7ACB5;
  --action: #1053f3;
}

/* typography css */
/* inter  */
/* general sans  */
@font-face {
  font-family: "GeneralSans-Semibold";
  src: url("../fonts/GeneralSans-Semibold.otf");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-Medium";
  src: url("../fonts/GeneralSans-Medium.otf");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-Italic";
  src: url("../fonts/GeneralSans-Italic.otf");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
:root {
  --font_inter: "Inter", sans-serif;
  --font_generalsanssemibold: "GeneralSans-Semibold";
  --font_generalsansmedium: "GeneralSans-Medium";
  --font_generalsansitalic: "GeneralSans-Italic";
  --font_awesome: "Font Awesome 6 pro";
}

* {
  margin: 0;
  padding: 0;
}

.site_logo{

  background: #fff;
  padding: 2px;
  border-radius: 3px;
  width: 140px;
}
body {
  font-family: var(--font_inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--primary);
  line-height: 1.22;
  font-family: var(--font_generalsanssemibold);
  font-weight: 600;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}
a:hover {
  color: var(--primary);
}

button {
  background-color: transparent;
  border: 0;
}

p {
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}

main {
  display: inline-block;
  width: 100%;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 5px;
}

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

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container{
  max-width: 94%;
}
.section_header{
  position: relative;
  margin-bottom: 35px;
}
.subtitle{
  display: flex;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
  color: var(--primary);
}
.subtitle img{
    height: 14px;
    width: 24px;
    object-fit: cover;
    filter: hue-rotate(147deg) brightness(4);
}
.text-center .subtitle{
  justify-content: center;
}
.section_title{
  font-size: 42px;
  font-weight: 700;
  color: var(--background);
  line-height: 1.1;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
.midium_title{

  font-size: 32px;
  font-weight: 700;
  color: var(--background);
  line-height: 1.1;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
.section_title span{
  color: var(--primary);
}
.swiper{
  position: relative;
}
.text-center .section_title{
  text-align: center;
}
.swiper-pagination-clickable{
  text-align: center;
  margin-top: 30px;
}

.navigation_btns{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 3;
  left: 0;
  height: 0;
  padding-inline: 15px;
}
.navigation_btns .btn{
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;

}
.navigation_btns .btn:hover{
  background-color: var(--secondary);
  border-color: var(--primary);
}
.btn-theme{
  position: relative;
    background-color: #fff3dd;
    border: 1px solid var(--secondary);
  transition: 0.5s;
  padding: 9px 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
  font-weight: 600;
}
.btn-theme:hover{
  color: #fff;
  background-color: var(--primary);
  border-color: #000;
}

.btn-theme.two{
  background-color: var(--primary);
  border-color: var(--primary);
  color: #Fff;
}
.btn-theme.two:hover{
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.view_btn a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.view_btn a i{
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 25px;
  border-radius: 2px
}
.view_btn a span{
  color: var(--primary);
  font-size: 16px;
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 3px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.view_btn a:hover{
  transform:  scale(1.1);
}
.view_btn a:hover i{
  color: #000;
}

.btn_corners{
  position: relative;
  background-color: #fff;
  border: 1px solid var(--background);
  transition: 0.5s;
  padding: 9px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
  font-weight: 600;
}
.btn_corners:hover{
  background-color: var(--primary);
  color: #fff;
}



.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background: var(--background);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--secondary);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--secondary);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--secondary);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--secondary);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: #fff;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--secondary);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
  word-break: break-word;
}

.mobile-nav__contact li a:hover {
  color: var(--secondary);
}

.mobile-nav__contact li>i {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}


.header_top {
    background-color: var(--primary);
    color: #fff !important;
    font-size: 13px;
}

.header_top .top-phone,
.header_top .top-email {
    margin-right: 20px;
}

.header_top a,
.header_top p {
    color: #fff;
    font-size: 16px;
    display: inline-block;
}

.header_top .socials {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    float: right;
}

.socials li {
    display: inline-block;
}

.socials li a {
    text-align: center;
    line-height: 26px;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    transition: 0.2s;
    border-radius: 4px;
    transition: background 0.5s;
    -webkit-transition: background 0.5s;
}

.socials li a:hover{
  color: #000;
}

.socials a,
.socials a i,
.socials a:hover,
.socials a:focus {
    color: #ffffff;
}

.header_top .text-lg-start i {
    margin-right: 5px;
}



.header-2-main{
  background: #fff;
  position: relative;
  transition: 0.5s;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.fixed__top .header-2-main{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header-2-main-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 11vh;
}
.header-2-main-inner .main-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.header-2-main-inner .main-menu > ul li{
  display: inline-block;
  position: relative;
  margin-inline: 5px;
}
.header-2-main-inner .main-menu > ul li a{
  color: #222;
  font-weight: 600;
  padding: 25px 15px;
  font-size: 16px;
  display: inline-block;
}
.header-2-main-inner .main-menu > ul li a:hover{
  color: var(--secondary);
}
.header-2-main-inner .main-menu > ul li.active a{
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-2-main-inner .main-menu > ul .header_btn{
  margin-left: 25px;
}

.home_section{
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home_section:after{
  background-image: linear-gradient(0deg, #00072C 0%, rgba(26,67,191,0) 68.80825109649122%);
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
}

.home_section .video_background{
  position: relative;
  z-index: -1;
  height: 89vh;
}
.home_section .video_background video{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slider_content{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  padding-left: 40px;
  left: 4%;
}
.slider_content:before{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 167px;
  background: #ffffff3b;
  content: '';
}

.slider_content .main_title{
  font-size: 90px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.slider_content .content{
  color: #FFFFFF;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 40px;
}

.slider_content .slider_view_btn a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.slider_content .slider_view_btn a i{
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 25px;
  border-radius: 2px
}
.slider_content .slider_view_btn a span{
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 3px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.slider_content .slider_view_btn a:hover{
  transform:  scale(1.1);
}
.slider_content .slider_view_btn a:hover i{
  color: #000;
}
.svg_icon{
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.svg_icon svg{
  width: 400px;
  height: 409px;
}


.about_left{
  position: sticky;
  top: 100px;
  padding-right: 30px;
}
.about_left p{
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
}
.about_img img{
  border-radius: 15px;
  width: 100%;
}
/*Products*/
.product_box{
  position: relative;
}
.product_img{
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  background-position: center;
   background-image: radial-gradient(circle at 40% 50%, #ffbc40 25%, #7c4f00 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
.product_box img{
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: 0.8s;
}
.product_box .title{
  position: absolute;
  left: 0;
  bottom: 0;
  padding-inline: 12px;
  padding-bottom: 18px;
  opacity: 0;
  visibility: hidden; 
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}
.product_box:hover .title{
  opacity: 1;
  visibility: visible;
}
.product_box:hover img{
  transform: scale(1.1);
}
.service_box{
  position: relative;
  overflow: hidden;
  border-radius: 10px;

}
.product_box.styletwo{
  border: 1px solid var(--background);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
}
.product_box.styletwo .product_img{
  border-radius: 0;
}
.product_content{
  border-top: 0;
}
.product_content .inner{
  padding: 20px;
}

.product_content .h5{
  font-size: 20px;
  font-weight: 700;
}
.product_content p{
  line-height: 1.2;
  margin-bottom: 0;
}
.product_content .btn-theme{
  width: 100%;
  background-color: var(--background);
  border: 0;
  border-radius: 0;
}
.product_content .btn-theme:hover{
  background-color: var(--secondary);
}
.service_box img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.8s;
}
.service_box .title{
  position: absolute;
  left: 0;
  top: 0;
  padding-inline: 8px;
  padding-bottom: 0;
  opacity: 0;
  visibility: hidden; 
  color: #fff;
  background-color: rgba(26, 67, 191, 0.3);
  font-weight: 600;
  transition: 0.4s;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
}
.service_box:hover .title{
  opacity: 1;
  visibility: visible;
}
.service_box:hover img{
  transform: scale(1.1);
  filter: brightness(0.7);
}
.why_bg{
  background-color: #efefef80;
  border-radius: 15px;
  padding: 35px 30px;
}

.why_bg .why_content{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.why_box{
  display: flex;
  align-items: center;
  margin-bottom: 25px;

}
.why_box .why_icon{
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-right: 10px;
  font-size: 37px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why_content .title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 2px;
}
.why_content .pera{
  color: #000;
  font-size: 15px;
  line-height: 1.2;
}
.cta_Section{
  position: relative;
  height: 400px;
  z-index: 1;
  background-image: url(../images/cta_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.cta_Section:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
.cta_box{
    position: absolute;
    padding-top: 60px;
    width: 100%;
    left: 0;
    padding-inline: 20px;
}
.cta_title{
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 1.1;
}
footer{
  position: relative;
  background-color: #fff;
  padding-top: 35px;
  border-top: 2px solid var(--secondary);
}
footer h4{
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 20px;
  color: #222;
}
footer  ul.social-link {
    padding: 0;
}

footer ul.social-link li {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    display: inline-block;
}

footer ul.social-link li a {
    background-color: transparent;
    color: #000;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    transition: all 0.3s ease-in-out;
}
footer ul.social-link li a i{
  margin: 0;
}

footer .footer_about{
  padding-right: 100px;
}
footer .footer_about p{
    margin-top: 30px;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}
footer .footer_title{
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 5px;
  position: relative;
}
footer .footer_title:before{
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 3px;
  content: '';
  background-color: var(--primary);
  left: 0;
}
footer ul{
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
footer ul li{
    color: #000;
    font-size: 17px;
    margin-bottom: 14px;
    display: block;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-weight: 600;
}
footer ul li a{
  color: inherit;
}
footer ul li  i{
  margin-right: 8px;
}
footer ul li:hover a{
  color: var(--secondary);
}



.copywrite-area{
  margin-top: 30px;
  border-top: 1px solid #000;
  padding-block: 12px;
  background-color: var(--primary);
}
.copy__flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .copy__flex .copy_links ul{
  display: flex;
  align-items: center;
  gap: 20px;
} 
footer .copy__flex .copy_links ul li{
  margin-bottom: 0;
  font-size: 14px;

}
footer .copywrite-area .copy__flex .copy_links ul li a{
  color: #000;
}
footer .copy__flex .copywrite{
  color: #FFFFFF;
  font-size: 14px;

}
footer .copy__flex .copywrite a{
  color: var(--background);
}
.mobile-nav__toggler{
  background-color: var(--primary);
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.about-us {
  border-bottom: 2px solid var(--primary);
}

/* Accordion Styling */
.mission_vission_section .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  overflow: hidden;
  background-color: #f1f1f1;
}

.mission_vission_section .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a0a0a;
  border: none;
  box-shadow: none !important;
  padding: 1rem 1.25rem;
}

.mission_vission_section .accordion-button:not(.collapsed) {
  color: #002855;
  background-color: transparent;
  border: 0;
}

.mission_vission_section .accordion-body {
    position: relative;
    background: transparent;
    padding: 10px 140px 80px 20px;
    font-size: 1rem;
    color: #333;
    border-top: 1px solid #eee;
}

/* Icon positioned bottom right */
.mission_vission_section .accordion-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 79px;
    color: var(--secondary);
    opacity: 1;
}
.contact_part .contact_box{
    margin-bottom: 15px;
    text-align: center;
    background: #fff4e0;
    padding: 20px;
    border-radius: 20px;
    word-break: break-word;
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact_part .contact_box i{
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
}
.contact_part .contact_box a{
  font-size: 17px;
  color: var(--background);
  font-weight: 600;
  line-height: 1.4;
}
.contact_part .contact_box .headering{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact_part .contact_box.email a{
  text-decoration: underline;
  line-height: 1;
  word-break: break-word;
}
.contact_part .contact_box.address a{
  max-width: 300px;
}

.contact__form{
  position: relative;
    padding: 20px;
    background: #fff4e0;
    border: 1px solid var(--primary);
    border-radius: 15px;
}
.contact__form .form-group{
  margin-bottom: 15px;
}
.contact__form .form-group label{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.2;
}
.contact__form .form-group .form-control{
  height: 44px;
  background-color: #fff;
  border-radius: 5px 5px 2px 2px;
  border: 0;
  border-bottom: 1px solid #000;
  color: #000;
}
.contact__form .form-group textarea.form-control{
  height: 120px;
}
.contact__form .form-group .form-control::placeholder{
  transition: 0.5;
}
.contact__form .form-group .form-control:hover{
  border-color: var(--primary);
}
.contact__form .form-group .form-control:focus{
  border-color: var(--primary);
  box-shadow: none;
}
.contact__form .form-group .form-control:hover::placeholder{
  opacity: 0;
}
.contact__form .form-group .form-control:focus::placeholder{
  opacity: 0;
}
.product_bread{
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 50px;
  background-image: url(../images/product_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.product_bread:before{
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
  width: 100%;
  height: 100%;
}
.product_bread .section_header{
  padding-left: 40px;
  margin-bottom: 0;
  position: relative;
}
.product_bread .section_header:before{
  width: 2px;
  background-color: var(--primary);
  height: 130px;
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
}
.product_bread .subtitle{
    filter: brightness(100);
}
.product_bread .section_title{
  color: #fff;
  font-size: 65px;
}

.catalogue_img img{
  border-radius: 20px;
  width: 100%;
}
.catalogue_box{
  margin-block: 55px;
  padding-left: 50px;
}
.catalogue_box .h4{
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #000;
}
.catalogue_box p{
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
}
.catalogue_video video{
  max-width: 100%;
  border-radius: 15px;
  width: 100%;
}
.page_bread{
  background-image: url(../images/banner_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
  text-align: center;
  background-position: center;
  position: relative;
  z-index: 1;
}
.page_bread:before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  opacity: 0.7;
  content: '';
  z-index: -1;
}

.page_bread .h1{

    font-size: 38px;
    font-weight: 600;
    color: #fff;
}

.page_bread ul{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 20px;
    justify-content: center;
  }

.page_bread ul li{
  display: block;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.page_bread ul li a{
  color: var(--secondary);
}
.pages_section{
  position: relative;
  z-index: 1;
}

.pages_section p{
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 13px;
}
.pages_section .title{
  font-size: 22px;
  color: var(--background);
  font-weight: 600;
  margin-bottom: 12px;
}
.pages_section .product_box .title{
  color: #fff;
}

.pages_section .minititle{
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 13px;
  color: #000;
}

.pages_section .includes_list{
  margin-bottom: 15px;
}
.pages_section .includes_list b{
  color: var(--primary);
  margin-bottom: 8px;
}
.pages_section .includes_list p{
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 400;
}

.pages_section .inner__row p{
  line-height: 1.4;
}
.pages_section .main__content:first-child{
  margin-bottom: 22px;
}
.pages_section .main__content{
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
.sidebar_part{
    background: #ddd;
    padding: 20px;
    border-radius: 10px;
}
ul.sidebar_list{

}
ul.sidebar_list li{
  display: block;
}
ul.sidebar_list li a{
    display: block;
    padding-block: 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    border-bottom: 2px solid #000;
    border-radius: 0px;
    transition: 0.3s;
    padding-inline: 5px;
}
ul.sidebar_list li a:hover,
ul.sidebar_list li.active a{
  background-color: #fff;
  color: var(--primary);
}
.header_phone_call{
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.header_phone_call .icon{
  position: relative;
  margin-right: 5px;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.header_phone_call .contact{
    color: #222;
    line-height: 1;
}
.header_phone_call .contact strong{
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 3px;
    display: block;
}
.header_phone_call .contact div{
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
}


.float_btn {
  position: fixed;
  right: 20px;
  bottom: 10px;
  width: max-content;
  height: auto;
  padding: 6px 17px;
  border-radius: 40px;
  color: #fff;
  z-index: 99;
  font-size: 13px;
  display: flex;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  gap: 2px;
}
.float_btn i {
  color: #000;
}


.float_btn.float_call {
    color: #000;
    right: 15px;
    background-color: #ffffff;
    border: 1px solid #000;
    top: 50%;
    bottom: auto;
    transform: translate(50%, -50%) rotate(-90deg);
    direction: rtl;
    border-radius: 10px 10px 0 0px;
    padding: 9px 24px 8px;
}
.float_btn.float_call span{
  line-height: 1;
}
#popup-form .modal-content {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#popup-form .modal-header {
  border: none;
  padding: 10px 20px;
  background: var(--background);
  color: var(--white);
}

#popup-form .modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}

#popup-form .btn-close {
    opacity: 1;
    filter: brightness(0);
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 3;
}

#popup-form .btn-close:hover {
  opacity: 1;
}

#popup-form .modal-body {
  padding: 25px;
  background: var(--white);
}

#popup-form .form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  padding: 12px 14px;
  color: var(--black);
  background-color: #fff;
  transition: all 0.3s ease;
}

#popup-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0px 0px 8px rgba(255, 165, 0, 0.4);
  outline: none;
}

#popup-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

#popup-form .mb-3 {
  margin-bottom: 18px;
}

#popup-form form {
  margin-top: 10px;
}

#popup-form .modal.fade .modal-dialog {
  transform: translateY(-20px);
  transition: all 0.3s ease-out;
}

#popup-form .modal.show .modal-dialog {
  transform: translateY(0);
}
























@media(max-width: 768px){
  body{
    overflow-x: hidden;
  }
  .container{
    max-width: 100%;
  }
  .header-2-nav{
    display: none;
  }
  .header_btn{
    display: none;
  }
  .home_section .video_background{
    height: 400px;
    background-color: #000;
  }
  .svg_icon svg{
    width: 100px;
    height: 100px;
  }
  .slider_content{
    padding-left: 20px;
  }
  .slider_content{
    width: 92%;
  }
  .slider_content .main_title{
    font-size: 35px;
    font-weight: 700;
  }
  .slider_content .main_title br{
    display: block;
  }
  .slider_content .content{
    font-size: 14px;
  }
  .home_section .video_background video{
    opacity: 0.8;
  }
  .section_title{
    font-size: 30px;
  }
  .section_header{
    margin-bottom: 26px;
  }
  .about_left p{
    font-size: 18px;
  }
  .about_left .view_btn{
    margin-bottom: 20px;
  } 
  .why_bg{
    padding: 20px;
  }
  .why_box{
    flex-direction: column;
    text-align: center;
  }
  .why_content .title{
    margin-bottom: 11px;
  }
  .why_box .why_icon{
    margin: 0;
    margin-bottom: 10px;
  }
  .why_bg .why_content{
    text-align: center;
  }
  .cta_Section{
    height: 300px;
  }
  .cta_title{
    font-size: 23px;
    margin-bottom: 30px;
  }
  footer .footer_about{
    padding-right: 0;
    margin-bottom: 30px;
  }
  footer .footer_list.navigation{
    margin-bottom: 25px;
  }
  footer .footer_contact.footer_list{
    margin-bottom: 30px;
  }
  footer .footer_title{
    margin-bottom: 13px;
  }
.copy__flex{
  flex-direction: column;
  text-align: center;
}
footer .copy__flex .copy_links ul{
  margin-bottom: 15px;
}
footer .copy__flex .copywrite{
  line-height: 1.1;
}
.mission_vission_section .accordion-body{
  padding: 10px 15px;
}
.mission_vission_section .accordion-icon{
  position: static;
}
.about_left{
  padding: 0;
}
.contact_part .contact_box a{
  font-size: 17px;
  line-height: 1;
}
.product_bread{
  padding-top: 50px;
}
.product_bread .section_header{
  padding-left: 20px;
}
.catalogue_img img{
    border-radius: 10px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.catalogue_box {
    margin-block: 30px;
    padding-left: 0;
}
.catalogue_box .h4{
  font-size: 27px;
}
.product_bread .section_title{
  font-size: 30px;
}
.page_bread{
  padding: 40px 0;
}
.page_bread .h1{
  font-size: 23px;
  line-height: 1.2;
}
.row.inner__row{
  gap: 15px;
}
.sidebar_part{
  margin-top: 25px;
}
.header_phone_call{
  margin-inline: auto;
}
.site_logo{
  width: 130px;
}
.header_phone_call .contact div{
  font-size: 15px;
}
.header_phone_call .icon{
  font-size: 17px;
  width: 30px;
  min-width: 30px;
  height: 30px;
}

header .container{
  padding-inline: 8px;
}
.header-2-main-inner{
  height: 9vh;
}
}
@media(min-width: 992px){
  .sidebar_part{
    position: sticky;
    top: 13vh;
  }
}
.header_phone_call{
  display: none !important;
}