@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); 
/* Reset and Base Styles */ 

@font-face {
  font-family: "Nulshock Bd";
  src: url('../fonts/Nulshock-Bd.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{ max-width: 100%;}

ul {
  margin: 0;
  padding: 0
}

li {
  list-style: none
}

:root {
    --banner-heading: "Nulshock Bd";
   --primary-font: "Poppins", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
  --primary-color: #d14011;
  --secondary-color: #f4aa47;
  --primary-text: #1c1c1c;
  --secondary-text: #5c5c5c;
  --white-color: #fff;
  --primary-border: #626262;
  --secondary-border: #946b1d;
  --box-shadow2: 0px 3px 5px 0px rgba(0, 0, 0, 0.30);
  --transition: all .5s ease-in-out;
  --transition2: all .8s ease-in-out;
}

.main {
    position: relative;
    overflow: hidden;
}

.common-btn .btns {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(to top right, #d14011, #f4aa47);
    background-size: 100% 130%;  
    transition: background-size 0.5s ease;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 4px 15px rgb(172 16 16 / 20%);
    text-transform: capitalize;
}

.container_fluid {
    max-width: 1600px!important;
}

.padding-block-140 {
    padding-block:  140px;
}

.padding-block-180 {
    padding: 180px 0px 140px;
}

.bg-colors {
    background: #d1401112;
}

.border-line {
    position: relative;
}

.common-heading {
    position: relative;
    z-index: 1;
    display: inline-block;
} 

.common-heading h2 {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    display: inline-block;
    position: relative;
    padding: 0px 60px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 37px;
}

.common-heading h2::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 40px;
    background: url(../images/sub-img03.png);
    z-index: 22;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-repeat: no-repeat;
    bottom: -40px;
} 

.common-heading h3 {
    font-size: 56px;
    color: var(--primary-text);
    font-family: var(--primary-font);
    font-weight: 800;
    text-transform: uppercase;

}

.common-heading  p {
    font-size: 18px;
    color: var(--secondary-text);
    font-family: var(--secondary-font);
    font-weight: 600;
    line-height: 30px;
    padding-top: 40px;
}


/*===========================================================================
    HEADER SECTION START
 ============================================================================*/

.header {
    background: transparent;
    position: absolute;
    z-index: 3;
    width: 100%;
    border-bottom: 1px solid #d1401121;
    backdrop-filter: blur(2px);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: auto;
    transition: transform 0.3s;
    width: 200px;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-bottom: 0px;
}

.nav-list li a {
    text-decoration: none;
    color: #d14011;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--secondary-font);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d14011;
    transition: width 0.3s;
}

.nav-list li a:hover {
    color: var(--white-color);
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Mega Menu */
.mega-menu {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    min-width: 1000px;
    display: none;
    z-index: 1000;
    border-radius: 8px;
    margin-top: .5rem;
}

.mega-menu:hover .mega-menu-content {
    display: block;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.mega-menu-column h3 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mega-menu-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #b61010;
}

.mega-menu-column ul {
    list-style: none;
    padding-left: 0;
}

.mega-menu-column ul li {
    margin-bottom: 0.8rem;
}

.mega-menu-column ul li a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-menu-column ul li a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.mega-menu-column ul li a:hover {
    color: #672727;
    padding-left: 5px;
}

.mega-menu-column ul li a:hover i {
    opacity: 1;
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    padding: 2rem 1.2rem;
    border-radius: 4px;
    display: none;
    z-index: 1001;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin-bottom: 0.5rem;
}

.submenu li a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 0.3rem 0;
}

.submenu li a:hover {
    color: #007bff;
    padding-left: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    display: none;
    z-index: 1000;
    border-radius: 8px;
    margin-top: .2rem;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu li a {
    display: flex;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    justify-content: space-between;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* CTA Button */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(to top right, #d14011, #f4aa47);
    background-size: 100% 130%;  
    transition: background-size 0.5s ease;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 4px 15px rgb(172 16 16 / 20%);
    border: none;
    text-transform: capitalize;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgb(172 16 16 / 30%);
    color: #fff;
}

/* Mobile Menu Toggle */
/*.mobile-menu-toggle {
    display: none;
}*/

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #d14011;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hover effect for hamburger */
.hamburger:hover span {
    background: #d11212;
}

.hamburger:hover span:nth-child(1) {
    transform: translateY(-2px);
}

.hamburger:hover span:nth-child(3) {
    transform: translateY(2px);
}

.hamburger.active:hover span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active:hover span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 1001;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: linear-gradient(to top right, #d14011, #f4aa47);
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
    transition: color 0.3s;
}

.close-sidebar:hover {
    color: var(--white-color);
}

.sidebar-nav ul {
    list-style: none;
    padding: 1rem;
}

.sidebar-nav ul li {
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.sidebar-nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    display: flex;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-family: var(--secondary-font);
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-nav ul li a:hover {
    background: #b711111f;
    color: #b11111;
}

.sidebar-submenu {
    display: none;
    padding-left: 1rem;
    overflow: hidden;
    transition: var(--transition2);

}

.sidebar-dropdown.active .sidebar-submenu {
    display: block;
    transition: var(--transition);
}

.sidebar-submenu-level-2 {
    display: none;
    padding-left: 1rem;
    transition: var(--transition);
}

.sidebar-submenu-item.active .sidebar-submenu-level-2 {
    display: block;
    transition: var(--transition2);
}

/* Popup Form Styles */
.popup-container {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center; 
    align-items: center; 
}

.popup-container.active {
    display: flex; 
}

.popup-content {
    background-color: #fefefe;
    margin: auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 700px; 
    max-width: 90%; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative; 
    border-radius: 8px;
}

.popup-content h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.popup-content form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.popup-content form input[type="text"],
.popup-content form input[type="email"],
.popup-content form textarea {
    width: calc(100% - 22px); /* Adjust for padding and border */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-content form textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 100px;
}

.popup-content form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Example button color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.popup-content form button[type="submit"]:hover {
    background-color: #0056b3; /* Darker color on hover */
}
 
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.sidebar-nav {
    height: 87vh;
    overflow-x: hidden;
    transition: var(--transition2);
}


/*===========================================================================
    HEADER SECTION END
 ============================================================================*/ 



 /*===========================================================================
    BANNER SECTION START
 ============================================================================*/ 
 
.banner-slider .slick-slider, .slick-list, .slick-track {
    height: 100%;
}

.banner-slider .slick-slider {
     overflow: hidden;
}

.slick-slider button {
     cursor: pointer;
}

.banner-slider .slick-slider .slick-track .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
} 
 
.slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
    bottom: 180px;
    left: 0;
    width: auto;
}

.slick-dots li {
    width: auto;
    margin: 0 5px;
}

.slick-dots li button {
    padding: 0;
    border: none;
}

.slick-thumb {
    width: 60px;
    height: auto;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.3s ease;
    background: linear-gradient(to top right, #d14011, #f4aa47);
    background-size: 100% 130%;  
    transition: background-size 0.5s ease;
    padding: 2px;
}

.slick-dots li.slick-active .slick-thumb {
    opacity: 1;
    transform: scale(1.1);
}
 
.banner-sec {
    position: relative;
    z-index: 1;
    background: #FFFF;
    background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(198, 198, 198, 1) 100%);
} 

.banner-inner {
    position: relative;
    z-index:  3;
    padding: 200px 0px 160px;
}

.b-inner-image {
    position: relative;
    top: -100px;
    left: -35px;
    z-index: -2;
}

.banner-content .sub-heading {
    font-size:  30px;
    color: #1a1a1a;
    font-family: var( --primary-font);
    font-weight: 600;
}

.banner-content .sub-headings {
    font-size: 40px;
    color: #d14011;
    font-family: var( --secondary-font);
    font-weight: 700;
}

.banner-content .main-heading {
    font-size: 130px;
    color: #ba1111;
    font-family: var( --banner-heading);
    background: #1A1A1A;
    background: linear-gradient(to right, #1A1A1A 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content .body-text,
.descriptions p {
    font-size: 18px;
    color: #5c5c5c;
    line-height: 30px;
    font-family: var(--secondary-font);
    font-weight: 500;
}

.descriptions {
    position: absolute;
    text-align: right;
    bottom: 135px;
}

.descriptions h2 {
    font-size: 24px;
    font-family: var(--secondary-font);
    font-weight: 700;
}

  /* Ripple Effect */
.slick-slide {
    position: relative;
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slick-active {
    opacity: 1;
}

.banner-slider .slick-slide img {
    width: 100%;
    height: auto;
    transition: transform 1s ease, filter 1s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slick-slide:hover img {
    transform: rotateY(180deg) scale(1.05);
}

.slick-slide.slick-active img {
    transform: scale(1.1) rotateY(0deg);
}

.slick-slide.slick-active img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleEffect 1.5s ease-in-out forwards;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
                opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}



/*===========================================================================
    BANNER SECTION END
 ============================================================================*/ 


 /*===========================================================================
    ABOUT SECTION START
 ============================================================================*/ 
 
.about-sec {
    position: relative;
}

.about-inner,
.about-img,
.about-img2 {
    position: relative;
}

.body-text h2 {
    font-size: 36px;
    color: #1c1c1c;
    font-family: var(--primary-font);
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;

}

.body-text h3 {
    font-size: 30px;
    color: var(--test-text);
    font-family: var(--secondary-font);
    font-weight: 600;
}

.body-text p {
    font-size: 18px;
    color: var(--secondary-text);
    font-family: var(--secondary-font);
    line-height: 30px;
    margin-top: 30px;
}

.shape-icon {
    position: relative;
}

.shape-icon .shape1 {
    position: absolute;
    left: -100px;
    bottom: 0;
    transform: translatey(0px);
     animation: float 6s ease-in-out infinite;
}

.shape-icon .shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translatey(0px);
     animation: float 6s ease-in-out infinite;
}

.shape-icon .shape3 {
    position: absolute;
    right: 0;
    top: 0;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
    z-index: -1;

}

.shape-icon .shape4 {
    position: absolute;
    left: -100px;
    top: 0;
    transform: translatey(0px);
     animation: float 5s ease-in-out infinite;
}

.shape-icon .shape5 {
    position: absolute;
    left: 60px;
    top: 60px;
    transform: translatey(0px);
    animation: float 5s ease-in-out infinite;
}



@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}


.about-img img,
.about-img2 img {
    width: 100%;
    max-width: 100%;

} 

.about-img2 {
    margin-top: 30px;
}

.ab-img02 {
    max-height: 220px;
}




.about-img2 .ab-img03 {
    position: absolute;
    left: 0;
    border-radius: 0px 0px 0px 20px;
}


 
 /*===========================================================================
    ABOUT SECTION END
 ============================================================================*/ 


/*===========================================================================
    THREE SECTION START
 ============================================================================*/ 



.products-slider, .products-sec {
    position: relative;
}

.produtct-inner {
    position: relative;
    background: #fb7449;
    padding: 60px 35px;
    border-radius: 10px;
    margin-right: 20px;
}

.products-bg {
    background: var(--secondary-color);
}

.produtct-inner .produtct-text  h2 {
    font-size: 26px;
    font-family: var(--primary-font);
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
}

.produtct-inner .produtct-text  p {
    font-size: 16px;
    color: var(--white-color);
    font-family: var(--secondary-font);
    line-height: 30px;
    font-weight: 600;
}

.produtct-inner .produtct-btn .ctbtn {
    background: var(--white-color);
    padding: 12px 60px 12px 25px;
    font-size: 16px;
    font-family: var(--secondary-text);
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-text);
    border-radius: 5px;
    position: relative;
}

.produtct-inner .produtct-btn .btn-icon {
    background: var(--primary-color);
    padding: 11px 12px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 5px 5px 0px;
    color: var(--white-color);
}

.produtct-inner .produtct-btn .btn-icon::before {
    position: absolute;
    content: "";
    border-right: 20px solid #ffffff;
    border-bottom: 20px solid #00000000;
    rotate: 45deg;
    left: -16px;
    top: 13px;
}

.produtct-inner .produtct-img {
    position: absolute;
    right: -30px;
    top: -60px;
}

.produtct-inner .produtct-img  img{
    width: 330px!important;
    filter: drop-shadow(5px 2px 5px rgba(0, 0, 0, 0.5));
    transform: translatey(20px);
    animation: float 6s ease-in-out infinite;
        height: auto;

}

.produtct-inner .produtct-img .c-img {
    width: 300px!important;
    filter: drop-shadow(5px 2px 5px rgba(0, 0, 0, 0.5));
}

.products-slider .slick-slider,
.products-slider .slick-list {
    overflow: visible!important;
}


@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

.products-slider .slick-prev, 
.products-slider .slick-next {
    color: #000000 !important;
    border: none;
    outline: none;
    background: #00000000;
}

.products-slider .slick-prev:before, 
.products-slider .slick-next:before {
    opacity: 1;
    color: #ffffff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #d14011;
    padding: 12px;
    border-radius: 5px;
}

.products-slider .slick-prev {
    left: -20px;
    z-index: 2;
    opacity: 0;
    transition: .8s ease all;
}

.products-slider .slick-next {
    right: 10px;
    z-index: 2;
    opacity: 0;
    transition: .8s ease all;
}

.products-slider:hover .slick-prev {
    opacity: 1;
    left: 10px;
    transition: .5s ease all;
}

.products-slider:hover .slick-next {
    opacity: 1;
    right: 55px;
    transition: .5s ease all;
}

.products-slider .slick-dots {
    margin-top: 0px;
    bottom: -30px;
    left: 0;
    width: auto;
    right: 0;
}

.slick-next:before {
    content: "\F138";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
}

.slick-prev:before {
    content: "\F12F";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
}

.slick-slide img {
    width: 100%;
    height: auto;
    transition: transform 1s ease, filter 1s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/*===========================================================================
    THREE SECTION END
 ============================================================================*/ 


/*===========================================================================
    CATAGORIES SECTION START
 ============================================================================*/ 

.catagories-sec {
    position: relative;
    overflow: hidden;
}

.dotted-shape {
    position: absolute;
    top: -34px;
    left: 0;
    opacity:  0.10!important;
}

.catagories-slider .slick-slide img {
    position: relative;
}

.catagories-slider .slick-slide {
    margin: 10px; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catagories-slider .slick-slide a{ text-decoration: none;}

.catagories-sec .slick-slider {
    overflow: visible!important;
}

.cat-slider-items {
    padding: 20px 25px;
    border-radius: 15px;
    background: #d1401112;
}

.cat-slider-img {
    position: relative;
    z-index: 1;
}

.cat-slider-img .hot-deals {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50px;
    height: 30px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.cat-slider-img .hot-deals p {
    font-size: 16px;
    color: var(--white-color);
    font-family: var(--secondary-font);
    font-weight: 600;
    margin-bottom: 0;
}

.cat-slider-content {
    padding-top: 25px;
}

.cat-slider-content  h2 {
    font-size: 24px;
    color: var(--primary-text);
    font-family: var(--primary-font);
    font-weight: 600;
    text-transform: uppercase;
}

.cat-slider-content p {
    font-size: 16px;
    color: var(--primary-text);
    font-family: var(--secondary-font);
    font-weight: 500;
    margin-bottom: 0;

}

.cat-slider-content .catago-price {
    font-size: 18px;
    color: var(--primary-text);
    font-weight: 700;
    font-family: var(--secondary-font);
}

.catagories-sec .slick-prev, 
.catagories-sec .slick-next {
    color: #000000 !important;
    border: none;
    outline: none;
    background: #00000000;
}

.catagories-slider .slick-prev:before, 
.catagories-slider .slick-next:before {
    opacity: 1;
    color: #ffffff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #d14011;
    padding: 12px;
    border-radius: 5px;
}

.catagories-slider .slick-prev {
    left: -20px;
    z-index: 2;
    opacity: 0;
    transition: .8s ease all;
}

.catagories-slider .slick-next {
    right: 10px;
    z-index: 2;
    opacity: 0;
    transition: .8s ease all;
}

.catagories-slider:hover .slick-prev {
    opacity: 1;
    left: 10px;
    transition: .5s ease all;
}

.catagories-slider:hover .slick-next {
    opacity: 1;
    right: 35px;
    transition: .5s ease all;
}

.catagories-slider .slick-dots {
    margin-top: 0px;
    bottom: -30px;
    left: 0;
    width: auto;
    right: 0;
}





/*===========================================================================
    CATAGORIES SECTION END
 ============================================================================*/ 
 
 /*===========================================================================
    HOW IT WORK SECTION START
 ============================================================================*/ 

.work-sec {
    position: relative;
    background: #1e1e1e;

}

.work-inner {
    position: relative;
    margin-top: 60px;
}

.center-box {
    margin-top:  110px;
}

.main-headings {
    position: relative;
}

.main-headings h2 {
    font-size: 45px;
    color: white;
    font-family: "Oswald", sans-serif;
    letter-spacing: 4px;
    position: relative;
    padding-block: 10px;
    margin-bottom: 20px;
}

.main-headings h2::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 4px;
    background: linear-gradient(45deg, #c41111, #601010);
    bottom: 0;

}

.main-headings h3 {
    font-size: 30px;
    color: white;
   font-family: "Poppins", sans-serif;
   letter-spacing: 2px;

}

.work-sec .work-inner .card {
    position: relative;
    padding: 70px 20px;

}

.work-sec .work-inner .card .card-img {
    position: absolute;
    background: linear-gradient(45deg, #c41111, #601010);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: -50px;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.work-sec .work-inner .card .card-img:hover {
    top: -60px;
     transition: .5s ease-in-out;

}

.work-sec .work-inner .card .card-img img {
    width: 60px;
}

.card-text {
    text-align: center;
    margin-top: 10px;
}

.card-text h2 {
        font-size: 22px;
        font-family: "Oswald", sans-serif;
}

.card-text p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.step-box {
    position: absolute;
    bottom: -25px;
    background: linear-gradient(45deg, #c41111, #601010);
    width: 120px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.step-box::before {
    position: absolute;
    content: "";
    left: -34px;
    bottom: 0px;
    border-left: 34px solid #2a52dd00;
    border-top: 24px solid #c41111;
}

.step-box::after {
    position: absolute;
    content: "";
    right: -34px;
    bottom: 24px;
    z-index: 1;
    border-right: 34px solid #2a52dd00;
    border-bottom: 26px solid #c41111;
}

.step-box p {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

 /*===========================================================================
    HOW IT WORK SECTION END
 ============================================================================*/ 

 /*===========================================================================
    SERVICES SECTION START
 ============================================================================*/ 

 .services-sec {
    position: relative;

 }

.service-inner {
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 10px 0px #5c5c5c63;
    position: relative;
    border-radius: 30px;
    background: ;
    /*border-radius: 15px;*/
}

/*.service-inner:hover {
    padding: 80px 30px;
}*/

.s-icon-img {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.ser-imgtext {
    position: relative;
    z-index: 2;
}

.s-icon-img::before {
    position: absolute;
    content: '';
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #c41111, #601010);
    z-index: 1;
    border-radius: 50px;
}

.s-icon-img img {
    width: 60px;
    position: relative;
    z-index: 2;
    filter: invert(1);
}

.s-text {
    position: relative;
}

 .ser-imgtext h2 {
    font-size: 26px;
    font-family: "Oswald" sans-serif;
 }

 .service-inner p {
    font-size: 16px;
    color: #5c5c5c;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 30px;
 }

  .service-inner:hover .ser-imgtext h2,
  .service-inner:hover p,
  .service-inner:hover a {
    color: white;
  }

 .service-inner a {
    font-size: 16px;
    color: #c41111;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: .5s;
    cursor: pointer;
    position: relative;
 }

  .service-inner:hover a {
    transition: .5s;
    margin-left: 10px;
  }

.s-hover-img {
    position: absolute;
    right: -30px;
    bottom: -10px;
    z-index: 1;
    opacity: 0;
    width: 260px;
    height: auto;
    border-radius: 15px;
    transform: scale(1, 0.2);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.s-hover-img img {
    width: 260px;
    height: auto;
    border-radius: 15px;
}

.service-inner:hover .s-hover-img {
    opacity: 1;
    transform: scale(1, 1);
    rotate: -15deg;
    border-radius: 15px;
}


.service-hover-background {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    overflow: hidden;
    /*border-radius: 15px;*/
    background-size: cover !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transform: scale(0.2, 1);
    background-repeat: no-repeat !important;
}

.service-inner:hover .service-hover-background {
    opacity: 1;
    transform: scale(1, 1);
} 

 /*===========================================================================
    SERVICES SECTION END
 ============================================================================*/ 


 /*===========================================================================
   HOW IT WORK SECTION START
 ============================================================================*/ 


.how-work-sec {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.how-work-sec {
    position: relative;
    overflow: hidden;
}

.how-work-inner {
    position: relative;
    z-index: 3;
}

 .works-prog {
    position: relative;
    transition: .5s ease all;
}

.works-prog {
    text-align: center;
    background: var(--white-color);
    padding: 40px 20px;
    position: relative;
    box-shadow: var(--box-shadow2);
    border-radius: 20px;
    transition: .5s ease all;
}


.how-work-inner::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border: 10px solid var(--white-color);
    background: var(--primary-color);
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50px;
    z-index: 1;
}

.how-work-inner::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    border: 1px solid #d1401130;
    background: var(--white-color);
    top: -374px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50px;
    z-index: -555;
}

.works-prog:hover {
    animation-name: swing;
    animation: swing ease-in-out 1s infinite alternate;
    /*transform-origin: center -20px;*/
    transition: .5s ease all;
}

@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}

.work-img {
    position: relative;
    z-index: 1;
}

.work-img img {
    width: 120px;
    height: auto;
}

.work-content h2 {
    font-size: 20px;
    color: var(--primary-text);
    font-family: var(--primary-font);
    margin-top: 20px;
    margin-bottom: 15px;
}

.work-content p {
    font-size: 18px;
    color: var(--primary-text);
    font-family: var(--secondary-font);
    line-height: 30px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 20px;
}

 /*===========================================================================
   HOW IT WORK SECTION END
 ============================================================================*/ 

 
 /*===========================================================================
   HOW IT WORK SECTION END
 ============================================================================*/ 

 .why-choose {
    position: relative;
    z-index: 2;
    padding: 140px 0px 128px;
}

.choose-inner-img {
    position: absolute;
    left: 0;
    top: 0;
}

.position-choose {
    position: relative;
    width: 100%;
    left: 110px;
}

.choose-inner-img img {
    max-width: 50vw;
    height: 105vh;
}

.choose-img-inner {
    position: relative;
    margin-block: 30px;
    display: flex;
}

.choose-icon {
    position: absolute;
    left: 75px;
    z-index: 2;
}

.choose-icon::before {
    position: absolute;
    content: "";
    width: 75px;
    height: 75px;
    background: var(--secondary-color);
    z-index: -1;
    left: -7px;
    top: -7px;
    border-radius: 50px;
    transition: var(--transition);
}

.choose-icon img {
    width: 60px;
    transition: var(--transition);
}

.choose-text {
    padding: 0px 0px 0px 100px;
    position: relative;
    left: 70px;
    z-index: -1;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.choose-text h2 {
    font-size: 24px;
    color: var(--white-color);
    font-family: var(10pt);
    font-weight: 600;
    text-transform: uppercase;
}


.choose-text p {
    font-size: 16px;
    font-family: var(--secondary-font);
    line-height: 30px;
}


        .choose-img-hover img {
            position: absolute;
            height: 130px;
            width: 240px;
            object-fit: cover;
            top: 0;
            right: 0;
            opacity: 0;
            transition: 0.5s ease all;
        }

        .choose-img-inner:hover .choose-img-hover img {
            opacity: 1;
            transition: 0.8s ease all;
            rotate: 25deg;
        }

.choose-img-inner:hover  .choose-icon::before {
    background: var(--primary-color);
    transition: var(--transition2);
}

.choose-img-inner:hover .choose-icon img {
    rotate: 360deg;
    transition: var(--transition2);
}

 /*===========================================================================
   HOW IT WORK SECTION END
 ============================================================================*/ 



/*===========================================================================
   DELIVERY SECTION START
 ============================================================================*/ 

 .delivery-items-text h2 {
    font-size: 50px;
    font-family: var(--primary-font);
    font-weight: 800;
    color: var(--primary-text);
 }

 .deli-text {
    font-size: 22px;
    font-family: var(--secondary-font);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: capitalize;
 }

 .text-color-delivery {
    color: var(--primary-color);
 }

 .delivery-items-text p {
    font-size: 18px;
    color: var(--secondary-text);
    font-family: var(--secondary-font);
    font-weight: 600;
    line-height: 30px;
    margin-top: 40px;
 }

 .order-content p {
    font-size: 16px;
    color: var(--primary-text);
    font-family: var(--secondary-font);
    font-weight: 600;
    text-transform: capitalize;
 }

  .order-content span {
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 800;
    color: var(--primary-color);
  }

  .delivery-items-img img{
    animation: float 6s ease-in-out infinite;
  } 

/*===========================================================================
   DELIVERY SECTION END
 ============================================================================*/ 





/*===========================================================================
   BLOGS SECTION START
 ============================================================================*/ 

        .blog-items {
            border-radius: 20px;
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
            background: var(--white-color);
        }
        
        .blog-items:hover::after {
            opacity: 1;
            transition: var(--transition2);
            border-radius: 20px;
        }

       .blog-items::after {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            z-index: -1;
            content: "";
            /*filter: blur(10px);*/
            box-shadow:var(--box-shadow2);
            opacity: 0;
            transition: var(--transition);
            border-radius: 20px;
        }
        
        .blog-img {
            height: 320px;
            overflow: hidden;
            border-radius: 20px;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-items:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 1.5rem;
            background: var(--white-color);
        }

        .blog-content h3 {
            font-size: 26px;
            color: var(--secondary-text);
        }

        .blog-content p {
            font-size: 18px;
            color: var(--secondary-text);
            font-family: var(--secondary-font);
            line-height: 30px;
        }
        
        .blog-date {
            background-color: var(--primary-color);
            color: var(--white-color);
            font-weight: 600;
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            font-size: 16px;
            display: inline-block;
            margin-bottom: 1rem;
            position: absolute;
            top: 20px;
        }

/*===========================================================================
   BLOGS SECTION END
 ============================================================================*/ 


/*===========================================================================
   BLOGS  PAGE START
 ============================================================================*/

.blog-pages-image img {
    width: 100%;
    border-radius: 20px;
}

.blog-pages-items {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    background: var(--bs-gray-100);
    border-radius: 20px;
    margin-top: 30px;
}

.blog-pages-content {
    padding-right: 20px;
}

.page-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/*.page-btn .pagination .page-item:nth-child(01)  {
    background: var(--secondary-font);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--secondary-font);
    border-radius: 7px 0px 0px 7px;
}

.page-btn .pagination .page-item:nth-child(05) {
    background: linear-gradient(to bottom right, #d14011, #f4aa47);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--secondary-font);
    border-radius: 0px 7px 7px 0px;
}*/

.page-btn .pagination .page-item .page-link{
    background: var(--secondary-text);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--secondary-font);
}

/*.page-link {
    background: transparent;
    color: var(--white-color);
    font-size: 20px;
    transition: var(--transition);

}*/

.page-link:hover {
  background: linear-gradient(to top right, #d14011, #f4aa47);
  color: var(--white-color);
  transition: var(--transition2);
}

.page-link:focus {
    color: var(--white-color);
    background: linear-gradient(to top right, #d14011, #f4aa47);
    outline: 0;
    box-shadow: none;
}

.de-post-icon {
    font-size: 18px;
    font-weight: 900;
}

/*.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--primary-text);
    background: var(--secondary-text);
    border-color: var(--secondary-text);
}*/


/*===========================================================================
   BLOGS  PAGE END
 ============================================================================*/ 

/*===========================================================================
   BLOGS DETAILS PAGE START
 ============================================================================*/ 

 .common-banner-items h2 {
    font-size: 36px;
    color: var(--white-color);
    font-family: var(--secondary-font);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;

 }

 .common-banner-items p {
    font-size: 18px;
    color: var(--white-color);
    font-family: var(--secondary-font);
    line-height: 30px;
    display: block;
    max-width: 800px;
 }

 .breadcrumb-items .breadcrumb-item,  
 .breadcrumb-items .breadcrumb-item a {
    font-size: 20px;
    font-family: var(--secondary-font);
    color: var(--white-color);
    transition: var(--transition);
    text-transform: capitalize;
 }

  .breadcrumb-items .breadcrumb-item a:hover {
    color: var(--primary-color);
    transition: var(--transition2);
  }

  .detail-page-img img {
    width: 100%;
      height: auto;

  }

  .detail-page-text h2 {
    font-size: 26px;
    font-family: var(--secondary-font);
    font-weight: 700;
  }
 
  .detail-page-text p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--secondary-text);
  }

  .details-highlights-text {
   border-left: 4px solid var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    position: relative;
  }

   .details-highlights-text::before {
    position: absolute;
    content: "\F6B0";
    font-family: bootstrap-icons !important;
    font-weight: 900;
    right: 30px;
    font-size: 70px;
    opacity: .4;
    rotate: 180deg;
    color: var(--primary-color);
}

.details-highlights-text p {
    font-size: 20px;
    font-family: var(--secondary-text);
    margin-bottom: 0;
}

.details-image img {
    width: 100%;
    border-radius: 10px;
} 

.details-sidebar, .details-search, .details-post {
  position: relative;
}

.search-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.search-title {
    color: var(--primary-text);
    font-family: var(--body-font);
    font-size: 22px;
    margin-block: 15px;
    position: relative;
} 

.details-post .cat-item:hover  a::before {
  opacity: 1;
  transition: var(--transition);
  right: 20px;
  rotate: -45deg;
}

.widget-area .form-control:focus {
     box-shadow: none;
     border-color: #ced4da;
}

.searchbtn {
    padding: .375rem .95rem;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    border-radius: 5px;
    color: var(--white-color);
}

.widget-area.input-group .form-control {
    padding: 15px 10px;
    background: transparent;
    border: 1px solid #ced4da;
    border-radius: .375rem;
}


.details-search, .details-post, .post-tags, .recent-post {
    padding: 40px 20px;
    background: #fcf2ee;
    margin-bottom: 30px;
    backdrop-filter: blur(3px);
    border-radius: 10px;
}

.post-tags ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}


.post-tags ul .tag-item {
      background: #d1401112;
      padding: 8px 12px;
      border-radius: 6px;
      text-align: center;
      transition: var(--transition);
}

.post-tags ul .tag-item:active {
    background: var(--primary-color);
}

.post-tags ul .tag-item:hover {
    background: linear-gradient(to top right, #d14011, #f4aa47);
    transition: var(--transition2);
}

.post-tags ul .tag-item:hover a {
    color: var(--white-color);
}

.post-tags ul .tag-item a {
    color: var(--primary-text);
    font-family: var(--secondary-text);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;

}

.details-post ul,
.search-widget {
  margin-top: 30px;
}

.details-post ul .cat-item {
    margin-bottom: 15px;
}

.details-post ul .cat-item  a {
    width: 100%;
    color: var(--primary-text);
    font-weight: 500;
    padding: 20px 24px;
    border-radius: 5px;
    position: relative;
    display: flex;
    font-family: var(--secondary-font);
    font-weight: 600;
    background-color: rgba(22, 35, 43, 0.05);
    justify-content: space-between;
    z-index: 2;
    text-decoration: none;
}


.details-post ul .cat-item a:after {
    top: 0;
    left: 0;
    width: 5px;
    content: "";
    height: 100%;
    position: absolute;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--primary-color);
    z-index: -1;
}


.details-post ul .cat-item:hover a,
.details-post ul .cat-item:hover a:after {
  width: 100%;
  border-radius: 5px;
  color: var(--primary-text);
}

.details-post ul .cat-item:hover a:after {
    opacity: .5;
}

.recents-post-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.recents-post-items .recent-post-img {
    margin-top: 20px;
}

.recents-post-items .recent-post-img a img {
    max-width: 130px;
    border-radius: 10px;
}

.recent-post-text .recent-post-date {
    font-size: 16px;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-weight: 600;

}

.recent-post-text a, .recent-post-text h3 {
    font-size: 20px;
    color: var(--primary-text);
    font-family: var(--secondary-font);
    font-weight: 600;
    margin: 0;
    text-decoration: none;
}



/*===========================================================================
   BLOGS DETAILS PAGE END
 ============================================================================*/ 


 /*===========================================================================
   PORTFOLIO AND GALLERY PAGE START
 ============================================================================*/ 

 .gallery-page {
    position: relative;
    overflow: hidden;
 }

.gallery-items {
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: var(--transition);
}

.gallery-item-img {
    position: relative;
    border-radius: 10px;
}

.gallery-item-img img {
    width: 100%;
    border-radius: 10px;

}

/*.gallery-item-img::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: -400px;
    left: 0;
    background: var(--primary-text);
    opacity: 0;
    z-index: 1;
    transition: var(--transition2);
}

.gallery-item-img:hover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-text);
    opacity: .5;
    z-index: 1;
    transition: var(--transition2);
}*/




 .gallery-item-text {
    position: absolute;
    bottom: -200px;
    padding: 0px 30px;
    z-index: 3;
    opacity: 0;
    transition: var(--transition);
 }

 .gallery-items:hover  .gallery-item-text  {
    opacity: 1;
    bottom: 30px;
    transition: var(--transition2);

 }

  .gallery-item-text h2 {
    font-size: 22px;
    color: var(--white-color);
    display: inline-block;
    background: var(--primary-color);
    padding: 6px 10px;
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 5px;
    border-radius: 10px;
  }

   .gallery-item-text p {
    font-size: 16px;
    color: var(--white-color);
    display: inline-block;
    background: var(--secondary-color);
    padding: 6px 10px;
    font-family: var(--secondary-font);
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0;
    border-radius: 10px;
   }


 /*===========================================================================
   PORTFOLIO AND GALLERY PAGE END
 ============================================================================*/ 



/*===========================================================================
   CONTACT US PAGE START
 ============================================================================*/ 

.contact-form-items {
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 40px 0px;
}

 .input-group {
    margin-bottom: 30px;
}


.form-control {
    padding: 1rem 1rem;
    border-radius: 50px;
    background: #d1401112;
    border: 1px solid transparent;

}

.form-control:focus {
    box-shadow: none;
    background-color: #d1401112;
    border: 1px solid transparent;
}

.contact-info_block-inner {
    position: relative;
    margin-top: 30px;
    height: 100%;
}

.border-right {
    border-right: 1px solid var(--bs-gray-300);
}


.contact-info_block-icon {
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 45px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.contact-three_info-outer h3,
.contact-form-items h3 {
    font-size: 50px;
    color: var(--primary-text);
    font-family: var(--primary-font);
    font-weight: 800;
    text-transform: uppercase;
}

.contact-info_text,
.contact-form-items p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 30px;
    display: inline-block;
    max-width: 700px;
}

.contact-info_block-inner h4 {
    font-size: 20px;
    color: var(--primary-text);
    font-family: var(--primary-font);
    font-weight: 800;
    text-transform: uppercase;

}

.contact-info_block-inner p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 30px;
    display: inline-block;
    max-width: 700px;
}

.contact-info_block-inner ul li a {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--primary-text);
}

.contact-page-map .frame-round {
    border-radius: 20px;
}

/*===========================================================================
   CONTACT US PAGE END
 ============================================================================*/ 

.padding-left-60 {
    padding-left: 60px;
}

.order-box {
    display: flex;
    gap: 1.5rem;
}











/*===========================================================================
   FOOTER SECTION START
 ============================================================================*/ 
 
       .footer {
            background-color: #080707;
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer-title {
            position: relative;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .footer-contact-item {
            display: flex;
            margin-bottom: 1rem;
        }
        
        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 240, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        
        .footer-contact-item:hover .footer-contact-icon {
            background-color: var(--primary-color);
        }
        
        .footer-contact-icon i {
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .footer-contact-item:hover .footer-contact-icon i {
            color: var(--darker-color);
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 60px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: linear-gradient(to top right, #d14011, #f4aa47);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            color: var(--darker);
            transform: translateY(-5px);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--darker);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }


/*===========================================================================
   FOOTER SECTION END
 ============================================================================*/ 

 
#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--white-color);
  background: linear-gradient(to top right, #d14011, #f4aa47);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--primary-bg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

#scroll-top i {
  transform: rotate(-35deg);
  transition: var(--transition)
}

#scroll-top:hover i {
  transform: rotate(0)
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px
}




.content_section{ padding: 80px 0px;}
.content_section .content_b,.content_section .image_b{ margin: 15px 0px;}

.front_he .nav-list li a:hover {
    color: #000;
}


.gallery .image_b{ display: block; margin-bottom: 20px;}
.gallery .image_b img{ width: 100%; height: 340px; object-fit: cover;}

.page-numbers{ display: flex; justify-content: center; margin-top: 20px;}
.page-numbers li{ margin: 4px 4px;}
.page-numbers li .page-numbers{ padding: 8px 14px; border: 1px solid #4b4b4b; line-height: 25px; background: #eee; text-decoration: auto; color: #555;}
.page-numbers li .page-numbers.current,.page-numbers li .page-numbers:hover{ color: var(--primary-color); border-color: var(--primary-color);}

.mobile-menu-toggle{ display: none;}
 