/********** Template CSS **********/
:root {
    --primary: #E88F2A;
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}

.font-secondary {
    /* font-family: 'Pacifico', cursive; */
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
    margin-top: 10px;
margin-bottom: 10px;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #6f9548;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;  /* Makes it responsive */
    height: 770px; /* Default height for larger screens */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-header {
        height: 600px; /* Adjust height for tablets */
    }
}

@media (max-width: 768px) {
    .hero-header {
        height: 500px; /* Adjust height for smaller devices */
    }
}

@media (max-width: 480px) {
    .hero-header {
        height: 200px; /* Adjust height for mobile screens */
        background-position: center; /* Ensures the background is well-positioned */
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: #6f9548;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: #6f9548;
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/about.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact::after {
    /* background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat; */
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/about.jpg) center center no-repeat;
    background-size: cover;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: #6f9548;
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}



/* logo_footer */
.logo {
    width: 150px; /* Default size */
    max-width: 100%; /* Ensures it doesn’t exceed container width */
}

@media (max-width: 768px) {
    .logo {
        width: 120px; /* Smaller size for tablets */
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px; /* Even smaller size for mobile phones */
    }
}
.logo_footer{
    width: 200px;
    
}


/* header order nw btn */
.am {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background-color: transparent;
    
}

/* Order Now Button Styling */
.order-btn {
    background: #6f9548;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 25px;
    margin-bottom: 20px;
}

.order-btn:hover {
    background: #71a377;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}


/* faq */

/* Main Container */
.faq-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.faq-image {
    flex: 1;
    padding: 20px;
}

.faq-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 10px;
}

/* FAQ Section */
.faq-content {
    flex: 1;
    padding: 20px;
}

.faq-content h2 {
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background: #6f9548;
    color: white;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    margin-top: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        text-align: center;
    }

    .faq-image, .faq-content {
        width: 100%;
        padding: 10px;
    }

    .faq-image img {
        max-width: 100%;
    }
}


/* shop start */


.product-wrapper {
    display: flex;
    max-width: 1100px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

/* Image Section */
.product-photo {
    flex: 1;
    text-align: center;
}

.main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}

/* Thumbnails */
.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.thumbnail {
    width: 80px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    border: 2px solid #28a745;
}

/* Product Details */
.product-info {
    flex: 1;
    padding: 10px;
}

.product-name {
    font-size: 24px;
    font-weight: bold;
    color: #2d2d2d;
}

.product-cost {
    font-size: 22px;
    color: #28a745;
    margin: 10px 0;
}

.product-stars {
    color: #ffc107;
    font-size: 14px;
}

/* Quantity Selector */
.quantity-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.quantity-box button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.quantity-box input {
    width: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

/* Buy Button */
.purchase-button {
    background: #2d2d2d;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

/* Tab Navigation */
.nav-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s;
    cursor: pointer;
}

.nav-links a.active {
    color: #28a745;
    border-bottom: 2px solid #28a745;
}

/* Combined Section */
.info-section {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.tab-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-wrapper {
        flex-direction: column;
        text-align: center;
        width: 400px;
        
    }

    .quantity-box {
        justify-content: center;
    }

    .purchase-button {
        width: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}

.product-info-box {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.product-info-box h3 {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.product-info-box p {
    font-size: 16px;
    color: #555;
}

.sneaker-care {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
}

.sneaker-care-title {
    font-size: 32px;
    font-weight: bold;
    color: #3e4a2d; /* Dark green */
    margin-bottom: 10px;
}

.sneaker-care-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.sneaker-care-divider::before,
.sneaker-care-divider::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #ccc;
    max-width: 120px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #3e4a2d;
    border-radius: 50%;
    margin: 0 8px;
}

.sneaker-care-text {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sneaker-care-title {
        font-size: 24px;
    }

    .sneaker-care-divider::before,
    .sneaker-care-divider::after {
        max-width: 80px;
    }

    .sneaker-care-text {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .sneaker-care-title {
        font-size: 20px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .sneaker-care-divider::before,
    .sneaker-care-divider::after {
        max-width: 60px;
    }

    .sneaker-care-text {
        font-size: 14px;
    }
}

.product-details {
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
.product-title {
    font-size: 28px;
    font-weight: bold;
    color: #3e4a2d;
    text-align: center;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}

.product-heading {
    font-size: 22px;
    font-weight: bold;
    color: #3e4a2d;
    margin-top: 25px;
    border-bottom: 2px solid #3e4a2d;
    padding-bottom: 5px;
}

/* Paragraphs */
.product-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Lists */
.product-list {
    list-style: none;
    padding-left: 0;
}

.product-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-list li strong {
    color: #222;
}

.product-list li::before {
    content: "✔";
    color: #3e4a2d;
    font-weight: bold;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details {
        padding: 20px;
        margin: 15px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-subtitle {
        font-size: 16px;
    }

    .product-description, .product-list li {
        font-size: 14px;
    }

    .product-heading {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 22px;
    }

    .product-subtitle {
        font-size: 15px;
    }

    .product-description, .product-list li {
        font-size: 13px;
    }

    .product-heading {
        font-size: 17px;
    }
}


/* shop end */

/* amazon */




.amazon-logo {
    max-width: 150px;
    height: auto;
    margin-top: 20px;
    
}

/* Mobile Responsive */
 @media (max-width: 768px) {
    .amazon-logo {
        max-width: 110px;
        margin-bottom: 0px;
        margin-left: 22px;
        /* height: 50px; */
        margin-top: 3px;
    }
}
.position-absolute {
width: 100px;
height: 100px;
}



.ban {
    width: 100%;  /* Full width on small screens */
    max-width: 530px; /* Limit width on larger screens */
    height: auto; /* Adjust height dynamically */
}

/* Adjust styles for smaller screens */
@media (max-width: 600px) {
    .ban {
        width: 90%; /* Slightly smaller width for better spacing */
        height: auto; /* Keep aspect ratio */
    }
}


/* vedio */
.video-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* facts icons */

/* Stats Section */
.stats-section {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

/* Stats Box */
.stats-box {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 15px;
    border-radius: 8px;
    width: 250px;
    transition: all 0.3s ease-in-out;
}

/* Icon Styling */
.stats-icon {
    background: #4caf50;
    padding: 15px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 10px;
}

.stats-icon i {
    font-size: 30px;
    color: white;
}

/* Stats Text */
.stats-box h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #77dd77;
}

.stats-box p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

/* Hover Effect */
.stats-box:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-box {
        width: 90%;
    }
}

/* vedio bnr */

.video-banner-section {
    position: relative;
    width: 100%;
    height: 120vh;
    max-height: 120vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3a4430;
  }

  
  .video-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none; /* prevents video from blocking clicks */
  }
  
  /* .video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  } */
  
 
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .video-banner-section {
      height: 70vh;
    }
  
    .video-banner-content h1 {
      font-size: 2rem;
    }
  
    .video-banner-content p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .video-banner-section {
      height: 27vh;
    }
  
    .video-banner-content h1 {
      font-size: 1.5rem;
    }
  
    .video-banner-content p {
      font-size: 0.9rem;
    }
  }