/* Footer */
.footer {
    background-color: #19181d;
    color: white;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}
.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px 0;
}

.footer-widget {
    display: flex;
    flex-direction: column;
}

/* Logo Section */
.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Widget Titles */
.footer-widget-title h3 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-family: Blinker, sans-serif;
    margin: 0 0 20px 0;
}

/* Navigation */
.footer-widget-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-menu li {
    margin-bottom: 10px;
}

.footer-widget-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-widget-menu a:hover {
    color: #ff6600;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-footer {
    display: flex;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 20px;
    align-items: baseline;
}

.contact-icon-footer {
    font-size: 16px;
    min-width: 20px;
}

/* Newsletter */
.newsletter-section {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px;
    background-color: #333333;
    border: none;
    border-radius: 4px;
    color: #cccccc;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #999999;
}

.subscribe-btn {
    padding: 12px 20px;
    background-color: white;
    border: none;
    border-radius: 4px;
    color: #ff6600;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #f0f0f0;
}

/* Follow Us */
.follow-us-section {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff6600;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333333;
    padding: 20px 0;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: #cccccc;
}

.copyright a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ff6600;
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-icon {
    font-size: 20px;
    color: #cccccc;
}
.d-none{
    display: none!important;
}
/* Wrap Main Container */
.wrap-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.flex-33{
    flex: 33.3%;
}
.logo{
    justify-content: center;
}
.g-150 {
    gap: 150px;
}
.g-100 {
    gap: 100px;
}
.align-center {
    align-items: center;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.p-100 {
    padding: 100px 0;
}

.section-heading {
    font-size: 50px;
    font-weight: 700;
    font-family: Blinker, sans-sarif;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
}
.section-title {
    color: #ff6600;
    font-weight: 700;
    font-family: Blinker, sans-sarif;
    text-transform: uppercase;
    line-height: normal;
    font-size: 20px;
}
.btn {
    padding: 16px 32px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Blinker", sans-serif;
    font-size: 20px;
    text-decoration: none;
    line-height: normal;
    display: inline-block;
    cursor: pointer;
}
.btn-transparent {
    background: transparent;
    color: #fff;
    border: 1px solid #fff!important;
}
.btn-transparent:hover {
    background: #ff6600;
    border: 1px solid #ff6600;
}
.btn-light {
    background: #fff;
    color: #ff6600;
    border: 1px solid #fff;
}
.btn-light:hover {
    background: transparent;
    color: #fff;
}
.btn-black {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}
.btn-black:hover {
    background: transparent;
    color: #000;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gap-10 {
    display: flex;
    gap: 10px;
    justify-content: center;
}
/* Typography Classes */
.main-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sub-heading {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.simple-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.main-hero-section {
    height: 80vh;
    position: relative;
    background-size: cover !important;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-repeat: no-repeat !important;
}

/* Main Header Specific Styles - Unique Classes */
.main-hero-section .main-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    padding: 2rem 240px;
    z-index: 100;
}

.main-hero-section .main-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.main-hero-section .main-logo-icon {
    display: flex;
    align-items: center;
}

.main-hero-section .main-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
}

.main-hero-section .main-utility-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-hero-section .main-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.3s;
    color: white;
}

.main-hero-section .main-icon:hover {
    opacity: 0.8;
}

.main-hero-section .main-cart-icon {
    position: relative;
}

.main-hero-section .main-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Cart Badge Styles for all header components */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 18px;
}

.cart-icon-main,
.cart-icon {
    position: relative;
}

.cart-icon-main a,
.cart-icon a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Main Sidebar Menu */
.main-hero-section .main-sidebar-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 5vw;
    min-width: 60px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 300;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.main-hero-section .main-menu-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    margin-bottom: 0.5rem;
}

.main-hero-section .main-hamburger {
    width: 32px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-hero-section .main-hamburger-line {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Hero Content */
.main-hero-section .main-hero-content {
    text-align: center;
}

.main-hero-section .main-welcome-banner {
    background-image: url(/images/welcome-banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    color: #000;
    max-width: 260px;
    margin: 0 auto;
    height: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Blinker", sans-serif;
}

.main-hero-title {
    font-size: 90px;
    font-weight: 700;
    line-height: normal;
    margin: 20px 0;
    text-transform: uppercase;
    font-family: "Blinker", sans-serif;
}

.main-hero-section .main-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.woo-icons {
    display: flex;
    gap: 10px;
    justify-content: end;
}
/* About Page */
.about-container .flex {
    gap: 150px;
}
.about-images {
    position: relative;
}
.about-images .main-image {
    width: 100%;
    height: 600px;
}
.about-images .small-image {
    width: 300px;
    height: 350px;
    position: absolute;
    right: -50px;
    bottom: -100px;
}
.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flex-65 {
    flex-basis: 65%;
}
.flex-45 {
    flex-basis: 45%;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hunting Equipment Section */
.equipment-section {
    padding: 100px 0;
}
.equipment-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

/* Hunting Community Section */
.community-section {
    padding: 100px 0;
    background: #f8f8f8;
    margin-top: 100px;
}
.community-image {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    object-fit: cover;
}

/* Upcoming & Past Events Section */
.events-image {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    object-fit: cover;
}

/* Campaigns & Donations Section */
.campaigns-section {
    background: #f8f8f8;
}
.campaigns-image {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    object-fit: cover;
}

/* Competition Events Section */
.competition-image {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    object-fit: cover;
}
/* Contact Page */

.modern-contact-form {
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 25px 20px;
    border: none;
    background-color: #ececec;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: background-color 0.3s ease;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
    color: #999;
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-section {
    background-color: #f8f9fa;
    padding-top: 50px;
}

.contact-details-section {
    width: 100%;
}
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 123, 255, 0.1);
    height: 280px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff6600);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px #ead8cc;
    border-color: #ff6600;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    min-height: 70px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.contact-icon i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.contact-content h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.map-section {
    margin-top: 60px;
}

/* Shop Products Section Styles */
.shop-products-section {
    padding: 100px 0;
    background: #fff;
}

.shop-header {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 8px;
}
.product-overlay {
    padding: 0 20px;
    padding-bottom: 20px;
}
.product-rating {
    font-size: 14px;
    color: #ffd700;
}

.shop-footer {
    text-align: center;
    margin-top: 40px;
}
/* Events Page Styles */
.event-row {
    display: flex;
    gap: 20px;
    position: relative;
    flex-wrap: nowrap;
}
.event-row .event-item {
    flex: 1;
    position: relative;
    min-width: 0;
    max-width: calc(33.333% - 14px);
}
.event-image-wrapper {
    position: relative;
    overflow: hidden;
}

.event-image-wrapper img {
    transition: transform 0.3s ease;
}
.event-date-page {
    position: absolute;
    right: 20px;
    background: #19181d;
    top: 20px;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
}
.event-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.event-item:hover .event-btn {
    display: block;
}
.event-item:hover .event-image-wrapper img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.event-image-wrapper::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0) 0%, #ff6600 100%);
    width: 100%;
    height: 100%;
    display: none;
}
.event-item:hover .event-image-wrapper::before {
    display: block;
}

/* Events Page Specific Styles */
.events-page {
    background: #fff;
}

.events-page .events-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-page .events-lists {
    margin-top: 40px;
}

.events-page .event-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.events-page .event-item {
    flex: 1;
    min-width: 300px;
}

.events-page .event-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.events-page .event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.events-page .event-item:hover .event-image-wrapper img {
    transform: scale(1.05);
}

.events-page .event-title {
    font-size: 28px;
    font-family: Blinker, sans-sarif;
    text-transform: capitalize;
    margin: 20px 0;
    line-height: 1;
    /* color: #fff; */
}
.past-events{
    padding-top: 0;
}
.event-row {
    margin-bottom: 50px;
}
.events-page .event-description {
    font-size: 18px;
    color: #939393;
}
.load-more {
    text-align: center;
}
.events-page .event-date-page {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #19181d;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 2;
}

.events-page .event-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.events-page .event-item:hover .event-btn {
    opacity: 1;
}

.events-page .event-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 102, 0, 0) 0%,
        rgba(255, 102, 0, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.events-page .event-item:hover .event-image-wrapper::before {
    opacity: 1;
}
/* Home page */
.product-section {
    background-image: url(/images/prd-bg.png);
    height: 750px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.product-header-content {
    text-align: center;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}
.shop-title {
    background-image: url(/images/shop-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    color: #000;
    max-width: 260px;
    margin: 0 auto;
    height: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Blinker", sans-serif;
    width: 100%;
}
.product-header-title.section-heading {
    color: #fff;
}
.product-grid-home {
    display: flex;
    display: flex;
    background: #fff;
    margin-top: -350px;
    justify-content: space-between;
}
.product-grid-home img {
    width: 100%;
}
.product-card-home {
    padding: 20px;
}
.product-card-home:hover {
    border: 1px solid #000;
}
.white {
    color: #fff;
}
.donate-home {
    display: flex;
    max-height: 750px;
}
.flex-50 {
    flex: 50%;
}
.donate-title {
    background-image: url(/images/shop-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    color: #000;
    max-width: 260px;
    margin: 0;
    height: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Blinker", sans-serif;
    width: 100%;
}
.donate-content-home {
    width: 50%;
    background: #19181d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    gap: 20px;
    padding-left: 150px;
    padding-right: 240px;
}
.donate-image-home {
    width: 50%;
    position: relative;
    overflow: hidden;
}
.donate-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upcoming-images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.two-card-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-content-title {
    color: #fff;
    font-family: Blinker, sans-sarif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}
.hunting-details {
    position: absolute;
    bottom: 80px;
    left: 50px;
    right: 0;
    z-index: 1;
}
.upcoming-image-card {
    position: relative;
}
.upcoming-image-card:nth-child(1){
    
    width: 50%;
}
.card-content-title::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 200px;
    height: 5px;
    background: #ff6600;
}
.upcoming-image-card.two-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.card-content-hunting {
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2;
}
.upcoming-image-card:hover .card-content-hunting {
    display: block;
}
.upcoming-image-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0) 0%, #ff6600 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.upcoming-image-card:hover::before {
    opacity: 1;
}
.upcoming-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upcoming-header {
    text-align: center;
    padding-bottom: 20px;
}
.hunting-stats-slide {
    display: flex;
    gap: 20px;
}
.hunting-image-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    height: 450px !important;
}
.card-stats-content-title {
    color: #fff;
    font-family: Blinker, sans-sarif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}
.hunting-stats-details {
    position: absolute;
    bottom: 80px;
    left: 50px;
    right: 0;
    z-index: 1;
}
.hunting-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hunting-image-card .card-stats-content-title h4 {
    position: relative;
}
.hunting-image-card .card-stats-content-title h4::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 200px;
    height: 5px;
    background: #ff6600;
}
.hunting-image-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0) 0%, #ff6600 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.hunting-image-card:hover::before {
    opacity: 1;
}
.card-content-hunting-stats {
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-top: 30px;
}
.hunting-image-card:hover .card-content-hunting-stats {
    display: block;
}
.read-more {
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Blinker", sans-serif;
    font-size: 20px;
    text-decoration: none;
    line-height: normal;
    color: #fff;
}
.hunting-stats {
    background-color: #ececec;
    margin-bottom: 100px;
}
.hunting-stats-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.tab-side {
    display: flex;
    gap: 20px;
    font-size: 28px;
    font-family: Blinker, sans-sarif;
    font-weight: bold;
}
/* Enhanced Video Section Styles */
.video-section{
    padding-top: 100px;
}
.video-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom:50px ;
}


/* Smooth Video Carousel */
.video-carousel-container {
    width: 100%;
    padding: 0;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item {
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

/* Position Classes - Only 3 visible images */
.video-item.position-0 {
    width: 55vw;
    max-width: 715px;
    height: 45vh;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    z-index: 1;
    opacity: 0.6;
}

.video-item.position-1 {
    width: 70vw;
    max-width: 900px;
    height: 55vh;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1);
    z-index: 3;
    opacity: 1;
}

.video-item.position-2 {
    width: 55vw;
    max-width: 715px;
    height: 45vh;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    z-index: 1;
    opacity: 0.6;
}

.video-item.position--1 {
    display: none;
}

.video-item.position-3 {
    display: none;
}

.video-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(255, 102, 0, 0.8) 0%,
        rgba(255, 102, 0, 0.6) 20%,
        rgba(255, 102, 0, 0.3) 40%,
        rgba(255, 102, 0, 0.1) 60%,
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
}

.video-item.position-1 .video-gradient-overlay {
    opacity: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
}

.video-item.position-1 .video-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
}

.video-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 0 2rem;
    margin-top: 50px;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot.active {
    background: #ff6600;
    transform: scale(1.3);
}
.hunting-stats-row{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.hunting-stats-row .hunting-image-card{
    margin: 0;
}
.hunting-header{
    text-align: center;
    margin-bottom: 50px;
}
.btn-center{
    text-align: center;
    margin-top: 50px;
}
.team-section{
    background-color: #ececec;
}

.contact-image  img{
    width: 100%;
}
.campaign-cards-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.campaign-cards{
    padding-top: 50px;
}

.campaign-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.campaign-image{
    width: 100%;
    height: 350px;
}
.campaign-cards img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-details{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
    padding: 20px;
}

.campaign-date {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
    line-height: 1.3;
}

.campaign-buttons {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px 20px;
}

.campaign-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Load More Button Styles */
.load-more-container {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.load-more-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.loading-spinner {
    margin-left: 8px;
}

.loading-spinner i {
    font-size: 14px;
}