/*=========================================
    TOP HEADER
==========================================*/

.top-header {
  background: linear-gradient(90deg, #0b5d32, #118a48);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
}

.top-header small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}

.top-header i {
  color: #ffd54f;
  font-size: 15px;
}

.top-header a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  padding: 2px 4px;
}

.top-header a:hover {
  color: #ffd54f;
}

.top-header .row {
  align-items: center;
}

/* Left */

.top-header .col-lg-4:first-child {
  display: flex;
  align-items: center;
}

/* Center */

.top-header .col-lg-4:nth-child(2) {
  display: flex;
  justify-content: center;
}

/* Right */

.top-header .col-lg-4:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.top-header .col-lg-4:last-child a {
  position: relative;
}

.top-header .col-lg-4:last-child a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -2px;

  width: 0;

  height: 2px;

  background: #ffd54f;

  transition: 0.3s;
}

.top-header .col-lg-4:last-child a:hover::after {
  width: 100%;
}

/*=========================================
        RESPONSIVE
==========================================*/

@media (max-width: 991px) {
  .top-header {
    text-align: center;
  }

  .top-header .col-lg-4 {
    margin-bottom: 8px;
  }

  .top-header .col-lg-4:first-child {
    justify-content: center;
  }

  .top-header .col-lg-4:nth-child(2) {
    justify-content: center;
  }

  .top-header .col-lg-4:last-child {
    justify-content: center;

    gap: 15px;
  }
}

@media (max-width: 767px) {
  .top-header {
    padding: 10px 0;
  }

  .top-header small {
    justify-content: center;

    flex-wrap: wrap;

    font-size: 13px;
  }

  .top-header .col-lg-4 {
    margin-bottom: 10px;
  }

  .top-header .col-lg-4:last-child {
    flex-wrap: wrap;

    gap: 10px;
  }

  .top-header a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .top-header {
    font-size: 12px;
  }

  .top-header small {
    font-size: 12px;

    line-height: 20px;
  }

  .top-header .col-lg-4 {
    margin-bottom: 8px;
  }

  .top-header i {
    font-size: 13px;
  }

  .top-header .col-lg-4:last-child {
    flex-direction: column;

    gap: 6px;
  }
}

/*=========================
MAIN HEADER
=========================*/

.main-header {
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  top: 0;
  z-index: 9999;
}

/* Logo */

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: 0.3s;
}

.logo-img:hover {
  transform: scale(1.05);
}


/* Icons */

.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.header-icons a {
  color: #222;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.header-icons i {
  font-size: 28px;
  color: #6cb500;
}

.header-icons span {
  font-size: 14px;
  font-weight: 600;
}

.header-icons a:hover {
  color: #6cb500;
  transform: translateY(-3px);
}

.badge {
  position: absolute;
  top: -6px;
  right: -10px;
}
/*=============================
SEARCH BAR
==============================*/

.search-wrapper{

display:flex;

align-items:center;

border:2px solid #64b500;

border-radius:8px;

overflow:visible;

background:#fff;

position:relative;
z-index: 2000;

}
.search-wrapper .dropdown{
    position:relative;
}


/* Category Button */

.category-btn{

width:220px;

height:56px;

background:#f8f9fa;

border:none;

border-right:1px solid #ddd;

font-weight:600;

border-radius:0;

}

.category-btn:hover{

background:#64b500;

color:#fff;

}

/* Search */

.search-input{

height:56px;

border:none;

box-shadow:none;

}

.search-btn{

width:70px;

border-radius:0;

}

/*=============================
MEGA MENU
==============================*/

.dropdown{

position:relative;

}

.mega-menu{

width:950px;

padding:30px;

margin-top:10px;

border:none;

border-radius:12px;

box-shadow:0 15px 45px rgba(0,0,0,.18);

background:#fff;

left:0;
position: absolute;
z-index: 9999;

}

.mega-menu h5{

font-size:18px;

font-weight:700;

margin-bottom:18px;

color:#64b500;

border-bottom:2px solid #eee;

padding-bottom:10px;

}

.mega-menu a{

display:flex;

align-items:center;

text-decoration:none;

padding:10px 0;

color:#444;

transition:.3s;

font-size:15px;

}

.mega-menu a:hover{

padding-left:10px;

color:#64b500;

}

.mega-menu img{

width:36px;

height:36px;

object-fit:contain;

margin-right:12px;

}

/*=============================
BANNER
==============================*/

.offer-banner{

position:relative;

overflow:hidden;

border-radius:12px;

}

.offer-banner img{

width:100%;

border-radius:12px;

transition:.4s;

}

.offer-banner:hover img{

transform:scale(1.05);

}

.banner-text{

position:absolute;

top:20px;

left:20px;

color:#fff;

}

.banner-text h4{

margin:0;

font-size:20px;

}

.banner-text h1{

font-size:48px;

font-weight:700;

margin:0;

}

.banner-text p{

font-size:18px;

margin-top:5px;

}

/*=============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.search-wrapper{

display:block;

}

.category-btn{

width:100%;

border-right:none;

border-bottom:1px solid #ddd;

}

.search-input{

width:100%;

}

.search-btn{

width:100%;

height:55px;

}

.mega-menu{

width:100%;

padding:20px;

}

.offer-banner{

margin-top:20px;

}

}


/*=========================================
        RESPONSIVE
==========================================*/
@media (max-width: 991px) {
  .logo-img {
    height: 70px;
  }

  .header-icons {
    gap: 18px;
  }

  .header-icons span {
    display: none;
  }

  .header-icons i {
    font-size: 24px;
  }

  .search-box {
    margin-top: 15px;
  }

  .mega-menu {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 60px;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons i {
    font-size: 22px;
  }
}

/* ==================================================
                NAVBAR
==================================================*/

/*=========================
NAVBAR
==========================*/

.custom-navbar{

    background:#0b8a3e;

    padding:0;

    box-shadow:0 5px 20px rgba(0,0,0,.12);
    z-index: 100;

}

.custom-navbar .nav-link{

    color:#fff;

    font-weight:600;

    padding:18px 22px;

    transition:.3s;

}

.custom-navbar .nav-link:hover{

    color:#ffd54f;

}

.custom-navbar .dropdown{

    position:static;

}

/*=========================
MEGA MENU
==========================*/

.mega-menu{

    width:100%;

    left:0 !important;

    right:0;

    top:100% !important;

    border:none;

    border-radius:0;

    margin-top:0;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    background:#fff;

}

.mega-menu h6{

    color:#0b8a3e;

    font-weight:700;

    margin-bottom:15px;

    border-bottom:2px solid #eee;

    padding-bottom:8px;

}

.mega-menu a{

    display:block;

    color:#444;

    text-decoration:none;

    padding:8px 0;

    transition:.3s;

}

.mega-menu a:hover{

    color:#0b8a3e;

    padding-left:10px;

}

.mega-menu img{

    width:100%;

    border-radius:10px;

}

/*=========================
DROPDOWN
==========================*/

.dropdown-toggle::after{

    margin-left:8px;

}

.dropdown-menu{

    animation:fadeIn .25s;

}

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(10px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.mega-menu{

    width:100%;

    position:relative !important;

    box-shadow:none;

}

.custom-navbar .nav-link{

    padding:14px;

}

}
/*=========================================
                HERO SECTION
==========================================*/

.hero {
  position: relative;
  overflow: hidden;
}

.hero .carousel-item {
  position: relative;
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 6s ease;
}

.carousel-item.active .hero-img {
  transform: scale(1.08);
}

/*=========================================
            HERO CONTENT
==========================================*/

.carousel-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  right: auto;
  bottom: auto;
  transform: translateY(-50%);
  text-align: left;
  max-width: 620px;
}

.carousel-caption h5 {
  color: #ffd54f;

  font-size: 20px;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-weight: 600;

  margin-bottom: 15px;
}

.carousel-caption h1 {
  color: #fff;

  font-size: 58px;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 20px;
}

.carousel-caption span {
  color: #0be46a;
}

.carousel-caption p {
  color: #f5f5f5;

  font-size: 18px;

  margin-bottom: 30px;

  line-height: 30px;
}

/*=========================================
              BUTTON
==========================================*/

.carousel-caption .btn {
  padding: 14px 40px;

  border-radius: 50px;

  font-size: 17px;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.carousel-caption .btn-success {
  background: #00a651;

  border: none;
}

.carousel-caption .btn-success:hover {
  background: #00853f;

  transform: translateY(-3px);
}

.carousel-caption .btn-warning {
  color: #222;

  font-weight: 700;
}

/*=========================================
            SLIDER CONTROLS
==========================================*/

.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  opacity: 1;
  margin: 0 25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #00a651;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 22px;
  height: 22px;
}

/*=========================================
            INDICATORS
==========================================*/

.carousel-indicators button {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  margin: 0 6px;
}

.carousel-indicators .active {
  background: #00a651;
}

/*=========================================
          FEATURE SECTION
==========================================*/

.features {
  background: #111;

  padding: 70px 0;
}

.features .feature-box {
  background: #1b1b1b;

  border-radius: 15px;

  padding: 35px 20px;

  transition: 0.35s;

  height: 100%;

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.features .feature-box:hover {
  transform: translateY(-10px);

  background: #00a651;
}

.features i {
  font-size: 48px;

  color: #00c853;

  margin-bottom: 20px;

  transition: 0.35s;
}

.features .feature-box:hover i {
  color: #fff;
}

.features h6 {
  color: #fff;

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 0;
}

/*=========================================
        YOUR EXISTING FEATURE SECTION
==========================================*/

.bg-black {
  background: #111 !important;
}

.bg-black .col-md-3 {
  padding: 35px 15px;

  transition: 0.35s;
}

.bg-black .col-md-3:hover {
  background: #181818;
}

.bg-black i {
  font-size: 48px;

  color: #00c853 !important;

  margin-bottom: 18px;
}

.bg-black h6 {
  color: #fff;

  font-size: 18px;

  font-weight: 600;
}

/*=========================================
            RESPONSIVE
==========================================*/

@media (max-width: 1200px) {
  .hero-img {
    height: 560px;
  }

  .carousel-caption h1 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .hero-img {
    height: 500px;
  }

  .carousel-caption {
    left: 6%;

    max-width: 500px;
  }

  .carousel-caption h1 {
    font-size: 40px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-img {
    height: 420px;
  }

  .carousel-caption {
    left: 30px;

    right: 30px;

    max-width: 100%;
  }

  .carousel-caption h5 {
    font-size: 14px;

    letter-spacing: 1px;
  }

  .carousel-caption h1 {
    font-size: 30px;
  }

  .carousel-caption p {
    font-size: 15px;

    line-height: 24px;
  }

  .carousel-caption .btn {
    padding: 12px 28px;

    font-size: 15px;
  }

  .bg-black .col-md-3 {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-img {
    height: 340px;
  }

  .carousel-caption {
    left: 20px;

    right: 20px;
  }

  .carousel-caption h1 {
    font-size: 24px;
  }

  .carousel-caption h5 {
    font-size: 12px;
  }

  .carousel-caption p {
    display: none;
  }

  .carousel-caption .btn {
    padding: 10px 22px;

    font-size: 14px;
  }

  .bg-black i {
    font-size: 36px;
  }

  .bg-black h6 {
    font-size: 15px;
  }
}
/*==================================================
            SHOP BY CATEGORIES
==================================================*/

.category-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.category-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.category-section .section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.category-section .section-title p {
  color: #777;
  font-size: 16px;
}

/*==================================================
                CATEGORY CARD
==================================================*/

.category-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px 20px;

  text-align: center;

  transition: 0.35s ease;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  height: 100%;

  border: 2px solid transparent;

  overflow: hidden;

  position: relative;
}

.category-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: #00a651;

  transform: scaleX(0);

  transition: 0.35s;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px);

  border-color: #00a651;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card a {
  text-decoration: none;

  display: block;

  color: #222;
}

/*==================================================
                IMAGE
==================================================*/

.category-card img {
  width: 120px;

  height: 120px;

  object-fit: contain;

  background: #f8f9fa;

  padding: 15px;

  border-radius: 50%;

  transition: 0.4s;

  margin-bottom: 20px;
}

.category-card:hover img {
  transform: scale(1.08) rotate(5deg);
}

/*==================================================
                TITLE
==================================================*/

.category-card h6 {
  font-size: 18px;

  font-weight: 700;

  margin: 0;

  color: #222;

  transition: 0.3s;
}

.category-card:hover h6 {
  color: #00a651;
}

/*==================================================
            OPTIONAL PRODUCT COUNT
==================================================*/

.category-card small {
  display: block;

  margin-top: 8px;

  color: #777;

  font-size: 13px;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .category-card img {
    width: 100px;

    height: 100px;
  }
}

@media (max-width: 992px) {
  .category-card {
    padding: 25px 15px;
  }

  .category-card img {
    width: 90px;

    height: 90px;
  }

  .category-card h6 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .category-card {
    border-radius: 15px;
  }

  .category-card img {
    width: 80px;

    height: 80px;

    padding: 12px;
  }

  .category-card h6 {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .category-card {
    padding: 18px 10px;
  }

  .category-card img {
    width: 70px;

    height: 70px;
  }

  .category-card h6 {
    font-size: 14px;
  }
}
/*==================================================
            BEST SELLING PRODUCTS
==================================================*/

.product-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.product-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
}

.product-section .btn-success {
  background: #0b8a3e;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
}

.product-section .btn-success:hover {
  background: #087234;
  transform: translateY(-2px);
}

/*==================================================
                PRODUCT CARD
==================================================*/

.product-card {
  position: relative;

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  height: 100%;

  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/*==================================================
                IMAGE
==================================================*/

.product-card img {
  width: 100%;

  height: 250px;

  object-fit: contain;

  padding: 20px;

  transition: 0.4s;

  background: #fff;
}

.product-card:hover img {
  transform: scale(1.08);
}

/*==================================================
            DISCOUNT BADGE
==================================================*/

.discount {
  position: absolute;

  top: 15px;

  left: 15px;

  background: linear-gradient(45deg, #ff3d00, #ff9800);

  color: #fff;

  padding: 6px 12px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 700;

  z-index: 2;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*==================================================
            PRODUCT BODY
==================================================*/

.product-body {
  padding: 22px;
}

.product-body h5 {
  font-size: 18px;

  font-weight: 700;

  color: #222;

  margin-bottom: 10px;

  height: 48px;

  overflow: hidden;
}

.brand {
  color: #777;

  font-size: 14px;

  margin-bottom: 12px;
}

/*==================================================
                RATING
==================================================*/

.rating {
  margin-bottom: 15px;
}

.rating i {
  color: #ffc107;

  font-size: 14px;
}

/*==================================================
                PRICE
==================================================*/

.price {
  color: #0b8a3e;

  font-size: 24px;

  font-weight: 700;

  margin-bottom: 18px;
}

.price del {
  color: #999;

  font-size: 16px;

  margin-left: 10px;

  font-weight: 400;
}

/*==================================================
            ADD TO CART BUTTON
==================================================*/

.product-card .btn {
  border-radius: 50px;

  font-weight: 600;

  padding: 12px;

  transition: 0.35s;
}

.product-card .btn-success {
  background: #0b8a3e;

  border: none;
}

.product-card .btn-success:hover {
  background: #087234;
}

/*==================================================
        OPTIONAL QUICK ACTION ICONS
==================================================*/

.product-actions {
  position: absolute;

  top: 20px;

  right: -50px;

  display: flex;

  flex-direction: column;

  gap: 10px;

  transition: 0.35s;
}

.product-card:hover .product-actions {
  right: 15px;
}

.product-actions a {
  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: #fff;

  color: #222;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);

  transition: 0.3s;
}

.product-actions a:hover {
  background: #0b8a3e;

  color: #fff;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .product-card img {
    height: 220px;
  }
}

@media (max-width: 992px) {
  .product-body {
    padding: 18px;
  }

  .product-body h5 {
    font-size: 16px;
  }

  .price {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .product-card img {
    height: 190px;
  }

  .product-body {
    padding: 15px;
  }

  .product-body h5 {
    font-size: 15px;

    height: auto;
  }

  .price {
    font-size: 20px;
  }

  .product-card .btn {
    padding: 10px;

    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-card {
    border-radius: 15px;
  }

  .product-card img {
    height: 170px;

    padding: 15px;
  }

  .discount {
    font-size: 11px;

    padding: 5px 10px;
  }

  .product-body h5 {
    font-size: 14px;
  }

  .brand {
    font-size: 13px;
  }

  .price {
    font-size: 18px;
  }

  .price del {
    font-size: 14px;
  }
}
/*==================================================
                OFFER SECTION
==================================================*/

.offer-section {
  background: #101010 !important;
  padding: 80px 0;
}

.offer-section span {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 15px;
}

.offer-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
}

/*==========================
        OFFER CARD
===========================*/

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: 0.4s;
  cursor: pointer;
}

.offer-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.offer-card:hover img {
  transform: scale(1.08);
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  color: #fff;
}

.offer-content h6 {
  font-size: 15px;
  color: #ffd54f;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.offer-content h1 {
  font-size: 60px;
  font-weight: 800;
  color: #00e676;
  line-height: 1;
}

.offer-content h5 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}

.offer-content p {
  color: #ddd;
  margin-bottom: 20px;
}

.offer-content .btn {
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: 0.35s;
}

.offer-content .btn:hover {
  transform: translateY(-3px);
}

/*==================================================
            DEAL OF THE DAY
==================================================*/

.deal-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.deal-section h6 {
  color: #00a651;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.deal-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0;
}

.deal-section p {
  color: #666;
  font-size: 17px;
}

/*==========================
        COUNTDOWN
===========================*/

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown div {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.35s;
}

.countdown div:hover {
  background: #00a651;
  transform: translateY(-8px);
}

.countdown span {
  font-size: 36px;
  font-weight: 700;
  color: #00a651;
  transition: 0.35s;
}

.countdown div:hover span {
  color: #fff;
}

.countdown small {
  color: #777;
  font-weight: 600;
}

.countdown div:hover small {
  color: #fff;
}

/*==================================================
            SERVICES
==================================================*/

.service-section {
  background: #fff;
  padding: 70px 0;
}

.service-section .col-lg-2 {
  transition: 0.35s;
  padding: 30px 15px;
  border-radius: 15px;
}

.service-section .col-lg-2:hover {
  background: #f8f9fa;
  transform: translateY(-10px);
}

.service-section i {
  font-size: 48px;
  color: #00a651;
  margin-bottom: 18px;
  display: block;
  transition: 0.35s;
}

.service-section .col-lg-2:hover i {
  transform: scale(1.1);
}

.service-section h6 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .offer-card img {
    height: 380px;
  }

  .offer-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .offer-card {
    margin-bottom: 30px;
  }

  .offer-card img {
    height: 340px;
  }

  .offer-content h1 {
    font-size: 46px;
  }

  .offer-content h5 {
    font-size: 20px;
  }

  .deal-section {
    text-align: center;
  }

  .countdown {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .offer-section h2 {
    font-size: 30px;
  }

  .offer-card img {
    height: 300px;
  }

  .offer-content {
    left: 20px;
    bottom: 20px;
  }

  .offer-content h1 {
    font-size: 38px;
  }

  .offer-content h5 {
    font-size: 18px;
  }

  .deal-section h2 {
    font-size: 30px;
  }

  .countdown div {
    width: 85px;
    height: 85px;
  }

  .countdown span {
    font-size: 28px;
  }

  .service-section .col-6 {
    margin-bottom: 25px;
  }

  .service-section i {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .offer-card img {
    height: 260px;
  }

  .offer-content h6 {
    font-size: 12px;
  }

  .offer-content h1 {
    font-size: 32px;
  }

  .offer-content h5 {
    font-size: 16px;
  }

  .offer-content p {
    font-size: 13px;
  }

  .offer-content .btn {
    padding: 8px 22px;
    font-size: 14px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown div {
    width: 70px;
    height: 70px;
  }

  .countdown span {
    font-size: 22px;
  }

  .countdown small {
    font-size: 11px;
  }

  .service-section h6 {
    font-size: 14px;
  }

  .service-section i {
    font-size: 34px;
  }
}
/*==================================================
                TOP BRANDS SECTION
==================================================*/

.brand-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.brand-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.brand-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0b8a3e;
  border-radius: 20px;
}

.brand-section p {
  color: #777;
  font-size: 16px;
}

/*==================================================
                BRAND CARD
==================================================*/

.brand-card {
  background: #fff;

  border-radius: 18px;

  height: 140px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  border: 1px solid #eee;

  transition: 0.35s;

  cursor: pointer;

  overflow: hidden;

  position: relative;
}

.brand-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background: #0b8a3e;

  transform: scaleX(0);

  transition: 0.35s;
}

.brand-card:hover::before {
  transform: scaleX(1);
}

.brand-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);

  border-color: #0b8a3e;
}

/*==================================================
                BRAND IMAGE
==================================================*/

.brand-card img {
  max-width: 130px;

  max-height: 65px;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: 0.8;

  transition: 0.4s;
}

.brand-card:hover img {
  filter: grayscale(0);

  opacity: 1;

  transform: scale(1.08);
}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .brand-card {
    height: 130px;
  }

  .brand-card img {
    max-width: 110px;
  }
}

@media (max-width: 992px) {
  .brand-section {
    padding: 70px 0;
  }

  .brand-section h2 {
    font-size: 34px;
  }

  .brand-card {
    height: 120px;

    padding: 18px;
  }

  .brand-card img {
    max-width: 100px;

    max-height: 55px;
  }
}

@media (max-width: 768px) {
  .brand-section h2 {
    font-size: 30px;
  }

  .brand-card {
    height: 110px;

    border-radius: 15px;
  }

  .brand-card img {
    max-width: 90px;

    max-height: 50px;
  }
}

@media (max-width: 576px) {
  .brand-section {
    padding: 50px 0;
  }

  .brand-section h2 {
    font-size: 26px;
  }

  .brand-card {
    height: 95px;

    padding: 15px;
  }

  .brand-card img {
    max-width: 75px;

    max-height: 40px;
  }
}
/*==================================================
                TESTIMONIAL SECTION
==================================================*/

.testimonial-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonial-card {
  background: #fff;

  border-radius: 20px;

  padding: 35px 30px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  position: relative;

  height: 100%;

  overflow: hidden;
}

.testimonial-card::before {
  content: "❝";

  position: absolute;

  top: 20px;

  left: 25px;

  font-size: 70px;

  color: #0b8a3e;

  opacity: 0.08;

  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img.user {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  object-fit: cover;

  border: 5px solid #0b8a3e;

  margin-bottom: 20px;
}

.testimonial-card h5 {
  font-weight: 700;

  color: #222;

  margin-bottom: 8px;
}

.stars {
  color: #ffc107;

  font-size: 18px;

  letter-spacing: 3px;

  margin-bottom: 15px;
}

.testimonial-card p {
  color: #666;

  line-height: 28px;

  margin-bottom: 0;
}

/*==================================================
                INSTAGRAM GALLERY
==================================================*/

.gallery {
  width: 100%;

  height: 220px;

  object-fit: cover;

  border-radius: 15px;

  transition: 0.4s;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery:hover {
  transform: scale(1.06);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.gallery-section h2 {
  font-weight: 700;
}

.gallery-section p {
  color: #777;
}

/*==================================================
                NEWSLETTER
==================================================*/

.newsletter {
  background: linear-gradient(135deg, #0b8a3e, #046b2f);

  padding: 70px 0;

  color: #fff;
}

.newsletter h2 {
  font-size: 40px;

  font-weight: 700;

  margin-bottom: 10px;
}

.newsletter p {
  color: #eee;

  margin-bottom: 0;
}

.newsletter .input-group {
  background: #fff;

  border-radius: 60px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.newsletter .form-control {
  border: none;

  height: 60px;

  padding-left: 25px;

  font-size: 16px;
}

.newsletter .form-control:focus {
  box-shadow: none;
}

.newsletter .btn {
  border: none;

  background: #ffc107;

  color: #222;

  font-weight: 700;

  padding: 0 35px;

  transition: 0.35s;
}

.newsletter .btn:hover {
  background: #ffb300;
}

/*==================================================
            SECTION HEADINGS
==================================================*/

section h2 {
  font-weight: 700;
}

section span.text-success {
  letter-spacing: 2px;

  text-transform: uppercase;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .gallery {
    height: 190px;
  }

  .newsletter h2 {
    font-size: 34px;
  }
}

@media (max-width: 992px) {
  .newsletter {
    text-align: center;
  }

  .newsletter .row {
    row-gap: 30px;
  }

  .gallery {
    height: 170px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-card img.user {
    width: 75px;

    height: 75px;
  }

  .gallery {
    height: 150px;
  }

  .newsletter {
    padding: 60px 0;
  }

  .newsletter h2 {
    font-size: 28px;
  }

  .newsletter .form-control {
    height: 52px;
  }

  .newsletter .btn {
    padding: 0 25px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 18px;
  }

  .testimonial-card p {
    font-size: 14px;

    line-height: 24px;
  }

  .gallery {
    height: 120px;

    border-radius: 10px;
  }

  .newsletter {
    padding: 45px 0;
  }

  .newsletter h2 {
    font-size: 24px;
  }

  .newsletter p {
    font-size: 14px;
  }

  .newsletter .input-group {
    border-radius: 15px;
  }

  .newsletter .form-control {
    height: 48px;

    font-size: 14px;
  }

  .newsletter .btn {
    font-size: 14px;
  }
}
/*==================================================
                GOOGLE MAP
==================================================*/

.map-section iframe,
section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
  filter: grayscale(15%);
}

/*==================================================
                FOOTER
==================================================*/

.footer {
  background: #0b0b0b;
  color: #cfcfcf;
  padding: 80px 0 20px;
}

.footer img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer p {
  color: #bdbdbd;
  line-height: 28px;
  font-size: 15px;
}

.footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer h5::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 50px;

  height: 3px;

  background: #00a651;

  border-radius: 30px;
}

/*==================================================
            FOOTER LINKS
==================================================*/

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #bdbdbd;
  text-decoration: none;
  transition: 0.35s;
  display: inline-block;
}

.footer ul li a:hover {
  color: #00c853;
  transform: translateX(8px);
}

.footer ul li {
  color: #bdbdbd;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #00c853;
  cursor: pointer;
}

/*==================================================
                CONTACT
==================================================*/

.footer p i {
  color: #00c853;
  margin-right: 10px;
  font-size: 18px;
}

/*==================================================
            SOCIAL ICONS
==================================================*/

.social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #1c1c1c;
  color: #fff;
  transition: 0.35s;
  font-size: 20px;
}

.social a:hover {
  background: #00a651;
  color: #fff;
  transform: translateY(-6px);
}

/*==================================================
                COPYRIGHT
==================================================*/

.footer hr {
  margin: 50px 0 20px;
  border-color: rgba(255, 255, 255, 0.08);
}

.footer .text-center {
  color: #999;
  font-size: 15px;
}

/*==================================================
            SCROLL TO TOP
==================================================*/

#topBtn {
  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 55px;

  height: 55px;

  background: #00a651;

  color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 22px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  transition: 0.35s;

  z-index: 999;
}

#topBtn:hover {
  background: #087234;

  transform: translateY(-8px);
}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width: 992px) {
  .footer {
    text-align: center;
  }

  .footer h5::after {
    left: 50%;

    transform: translateX(-50%);
  }

  .footer img {
    margin: auto auto 20px;
  }

  .social {
    justify-content: center;
  }

  .footer .row > div {
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }

  .footer h5 {
    margin-top: 15px;
  }

  .footer p {
    font-size: 14px;

    line-height: 26px;
  }

  .social a {
    width: 42px;

    height: 42px;

    font-size: 18px;
  }

  #topBtn {
    width: 48px;

    height: 48px;

    font-size: 18px;

    right: 20px;

    bottom: 20px;
  }

  section iframe {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 50px 0 15px;
  }

  .footer img {
    max-width: 150px;
  }

  .footer h5 {
    font-size: 20px;
  }

  .footer p,
  .footer ul li {
    font-size: 14px;
  }

  .social {
    gap: 10px;
  }

  .social a {
    width: 40px;

    height: 40px;

    font-size: 17px;
  }

  .footer hr {
    margin: 35px 0 20px;
  }

  .footer .text-center {
    font-size: 13px;
  }

  section iframe {
    height: 220px;
  }
}
