@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════
   ROOT & BASE
═══════════════════════════════ */
:root {
    --brand: #024c6f;
    --dark: #000;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Source Sans Pro", sans-serif;
    color: var(--body);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: var(--dark);
}

img {
    width: 100%;
}

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-brand {
    color: var(--brand) !important;
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background-color: #0081bc;
    border-color: #0081bc;
    color: #fff;
}

/* ═══════════════════════════════
   TOP NAV
═══════════════════════════════ */
.top-nav {
    background-color: var(--brand);
    color: #fff;
    padding: 5px 0;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

/* ═══════════════════════════════
   SOCIAL ICONS
═══════════════════════════════ */
.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--brand);
}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
    box-shadow: var(--shadow);
    position: relative !important;
    background: #fff !important;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.navbar-brand .dot {
    color: var(--brand);
}

/* Nav item: icon on top, label below */
 /* ═══════════════════════════════
       NAVBAR PROFESSIONAL STYLING
    ═══════════════════════════════ */
    .navbar {
        position: relative !important;
        background: #fff !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-brand {
        font-size: 24px;
        font-weight: 700;
        color: #024c6f;
        display: flex;
        align-items: center;
    }

    .navbar .navbar-nav {
        gap: 8px;
    }

    .navbar .navbar-nav .nav-item {
        position: relative;
    }

    .navbar .navbar-nav .nav-link {
        color: #516171;
        font-size: 18px;
        font-weight: 600;
        padding: 8px 16px !important;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        border-radius: 4px;
        text-transform: capitalize;
        letter-spacing: 0.3px;
    }

    .navbar .navbar-nav .nav-link img {
        height: 24px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #024c6f;
        background: rgba(2, 76, 111, 0.06);
    }

    .navbar .navbar-nav .nav-link:hover img {
        transform: translateY(-2px);
    }

    /* ═══════════════════════════════
       MEGA MENU
    ═══════════════════════════════ */
    .navbar .navbar-nav .mega-item {
        position: static;
    }

    .mega-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: auto;
        min-width: 900px;
        background: #fff;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        z-index: 9999;
        border-top: 4px solid #024c6f;
        margin-top: -20px;
        border-radius: 0 0 8px 8px;
        animation: megaSlideDown 0.25s ease;
    }

    @keyframes megaSlideDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mega-inner {
        display: flex;
        padding: 28px 32px;
        gap: 0;
        width: 100%;
    }

    .mega-item:hover .mega-menu {
        display: block;
    }

    .mega-col {
        flex: 1;
        padding: 0 24px;
        border-right: 1px solid #f0f0f0;
        min-width: 160px;
    }

    .mega-col:first-child {
        padding-left: 0;
    }

    .mega-col:last-child {
        border-right: none;
        padding-right: 0;
    }

    .mega-heading {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #024c6f;
        margin-bottom: 16px;
        opacity: 0.85;
    }

    .mega-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-col ul li {
        margin-bottom: 0;
    }

    .mega-col ul li a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #516171;
        text-decoration: none;
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 4px;
        transition: all 0.2s ease;
        line-height: 1.4;
        font-weight: 500;
    }

    .mega-col ul li a:hover {
        color: #024c6f;
        background: #f8f9fa;
        padding-left: 14px;
    }

    .mega-col ul li a.mega-highlight {
        color: #024c6f;
        font-weight: 700;
    }

    /* ═══════════════════════════════
       MOBILE RESPONSIVE
    ═══════════════════════════════ */
    @media (max-width: 991px) {
        .navbar {
            padding: 10px 0;
        }

        .mega-menu {
            position: static !important;
            box-shadow: none !important;
            border-top: none !important;
            border-left: 4px solid #024c6f;
            margin-left: 16px;
            margin-top: 0;
            border-radius: 0;
            animation: none;
        }

        .mega-item:hover .mega-menu {
            display: none;
        }

        .mega-item.open .mega-menu {
            display: block;
        }

        .mega-inner {
            flex-direction: column;
            padding: 12px 16px;
            gap: 0;
        }

        .mega-col {
            border-right: none;
            border-bottom: 1px solid #f0f0f0;
            padding: 0 0 12px 0;
            margin-bottom: 12px;
        }

        .mega-col:last-child {
            border-bottom: none;
        }

        .navbar .navbar-nav .nav-link {
            font-size: 14px;
            padding: 12px 0 !important;
        }

        .navbar-collapse {
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
        }
    }

/* ═══════════════════════════════
   HERO SLIDER
═══════════════════════════════ */
.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
    height: calc(100vh - 80px) !important;
}

.slide {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
}

/* Grain overlay */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

/* Bottom fade */
.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    pointer-events: none;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide .col-12 {
    position: relative;
}

/* Line accent */
.slide .col-12::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--brand);
    margin: 0 auto 20px;
    animation: lineGrow 0.8s ease forwards;
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }
}

.slide h6.text-uppercase {
    font-size: 12px !important;
    letter-spacing: 5px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 16px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slide .display-3 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

/* Slide buttons */
.slide .btn {
    padding: 14px 36px !important;
    font-weight: 700;
    font-size: 14px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.slide .btn-brand {
    background: var(--brand);
    border: 2px solid var(--brand);
    color: #fff;
}

.slide .btn-brand:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slide .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: #fff !important;
}

.slide .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

/* Owl Nav */
.owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
    pointer-events: all;
    position: absolute;
    width: 54px !important;
    height: 54px !important;
    display: grid !important;
    place-items: center;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    font-size: 0 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.hero-slider .owl-prev::after {
    content: '←';
    font-size: 18px;
    color: #fff;
}

.hero-slider .owl-next::after {
    content: '→';
    font-size: 18px;
    color: #fff;
}

.hero-slider .owl-prev {
    left: 30px;
}

.hero-slider .owl-next {
    right: 30px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    transform: scale(1.08);
}

/* Owl Dots */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 28px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-slider .owl-dot span {
    width: 30px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.4) !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
}

.hero-slider .owl-dot.active span {
    background: var(--brand) !important;
    width: 50px !important;
}

/* Slide animations */
.owl-item.active .slide h6 {
    animation: fadeUp 0.7s ease 0.2s both;
}

.owl-item.active .slide .display-3 {
    animation: fadeUp 0.7s ease 0.4s both;
}

.owl-item.active .slide .btn {
    animation: fadeUp 0.7s ease 0.6s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owl-animated-out {
    z-index: 1;
}

.owl-animated-in {
    z-index: 2;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation: fadeOut 0.8s ease forwards;
}

/* ═══════════════════════════════
   MOBILE ICON MENU (slider)
═══════════════════════════════ */
.slide-icon-menu {
    display: none;
}

@media (max-width: 991px) {
    .slide-icon-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px);
        z-index: 10;
        padding: 10px 0;
    }

    .slide-icon-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .slide-icon-menu ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        padding: 6px 14px;
        border-radius: 6px;
        transition: background 0.25s ease;
    }

    .slide-icon-menu ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .slide-icon-menu ul li a img {
        height: 30px;
        width: auto;
        object-fit: contain;
        filter: brightness(0) invert(1);
        transition: transform 0.25s ease;
    }

    .slide-icon-menu ul li a:hover img {
        transform: translateY(-3px);
    }

    .slide-icon-menu ul li a span {
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    /* Mega menu mobile */
    .mega-menu {
        position: static !important;
        box-shadow: none !important;
        border-top: none !important;
        border-left: 3px solid var(--brand);
        margin-left: 12px;
        animation: none;
    }

    .mega-item:hover .mega-menu {
        display: none;
    }

    .mega-item.open .mega-menu {
        display: block;
    }

    .mega-inner {
        flex-direction: column;
        padding: 10px 12px;
        gap: 10px;
    }

    .mega-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 0 10px 0;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    /* Nav items mobile row */
    .navbar .navbar-nav .nav-item {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar .navbar-nav .nav-item img {
        height: 24px;
        margin-bottom: 0;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 15px !important;
    }
}

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */





#milestone {
    background: linear-gradient(rgba(255, 77, 41, 0.85), rgba(255, 77, 41, 0.85)), url(../img/bg_banner1.jpg);
    background-size: cover;
    background-position: center;
}

#milestone h1,
#milestone p {
    color: #fff;
}

/* Services */
.service {
    padding: 32px;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
}

/* ═══════════════════════════════
   HUNT CARD
═══════════════════════════════ */
.hunt-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hunt-card:hover {
    transform: translateY(-4px);
}

.hunt-card-img {
    position: relative;
    overflow: hidden;
}

.hunt-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hunt-card:hover .hunt-card-img img {
    transform: scale(1.04);
}

.hunt-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.hunt-card-body {
    padding: 16px;
    flex: 1;
    text-align: left;
}


.hunt-meta {
    font-size: 13px;
    color: var(--brand);
    margin-bottom: 6px;
    font-weight: 500;
    text-align: left;
}

.hunt-meta a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.hunt-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.35;
}

.hunt-outfitter {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.hunt-price {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.hunt-price del {
    color: #aaa;
    margin-right: 6px;
}

.hunt-price span {
    color: var(--brand);
    font-weight: 700;
    font-size: 16px;
}

.hunt-discount {
    color: #e63946;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
}

.intro-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
}

.intro-divider span {
    display: block;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.intro-divider span:nth-child(1) { width: 60px; }
.intro-divider span:nth-child(2) { width: 40px; }
.intro-divider span:nth-child(3) { width: 20px; }

/* See More button */
.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: var(--brand);
    color: #fff;
}

.btn-see-more i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-see-more:hover i {
    transform: translateX(4px);
}















/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
    background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)), url(../img/bg_banner1.jpg), #082032;
    background-size: cover;
    background-position: center;
}

.footer-section {
    background: #000;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-title {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact,
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--brand);
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--brand);
    padding-left: 5px;
}

.footer-section .social-icons a {
    color: #ccc;
    font-size: 20px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-section .social-icons a:hover {
    color: var(--brand);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}




.conditions-section {
    margin: 20px 0;
}

.conditions-section a {
    color: #fff;
    margin: 0 10px;
}

/* ═══════════════════════════════
   FORMS
═══════════════════════════════ */
input.form-control {
    border-color: transparent;
    height: 44px;
}



.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}











/* ═══════════════════════════════
   WHY CHOOSE US SECTION
═══════════════════════════════ */
.why-choose-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #024c6f;
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #024c6f 0%, #0081bc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.why-choose-icon i {
    color: #fff;
    font-size: 28px;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
}

.why-choose-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 14px;
    color: #516171;
    line-height: 1.6;
    margin-bottom: 0;
}




















/* ═══════════════════════════════
   GALLERY SECTION
═══════════════════════════════ */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

/* Desktop Grid Layout */
@media (min-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 220px);
        gap: 16px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 1199px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .gallery-item-tall {
        grid-column: span 1;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item-large,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 76, 111, 0.8) 0%, rgba(2, 76, 111, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: #fff;
    text-align: left;
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.gallery-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}









.partner-item {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


/* ═══════════════════════════════
   HUNT CARD ACTIONS
═══════════════════════════════ */
.hunt-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.btn-view-details,
.btn-contact-us {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-view-details {
    background: #024c6f;
    color: #fff;
    clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
}

.btn-view-details:hover {
    background: #0081bc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 76, 111, 0.2);
}

.btn-contact-us {
    background: transparent;
    color: #024c6f;
    border: 2px solid #024c6f;
    clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
}

.btn-contact-us:hover {
    background: #024c6f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 76, 111, 0.2);
}


 /* ═══════════════════════════════
       TESTIMONIALS SECTION
    ═══════════════════════════════ */
    .testimonials-section {
        padding: 30px 0;
        background: linear-gradient(135deg, rgba(2, 76, 111, 0.03) 0%, rgba(2, 76, 111, 0.01) 100%);
    }

    .intro {
        margin-bottom: 0px;
        text-align: center;
    }

    .intro h6 {
        color: var(--brand);
        font-weight: 400;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .intro h1 {
        margin-bottom: 15px;
        font-size: 36px;
        font-weight: 700;
        color: #000;
    }

    .intro p {
        max-width: 600px;
        margin: 0 auto;
        color: #516171;
        line-height: 1.7;
    }

    .intro-divider {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin: 20px auto;
    }

    .intro-divider span {
        display: block;
        height: 2px;
        background: var(--brand);
        border-radius: 2px;
    }

    .intro-divider span:nth-child(1) { width: 60px; }
    .intro-divider span:nth-child(2) { width: 40px; }
    .intro-divider span:nth-child(3) { width: 20px; }

    /* ═══════════════════════════════
       TESTIMONIALS CAROUSEL
    ═══════════════════════════════ */
    .testimonials-carousel {
        margin-top: 10px;
    }

    .testimonials-carousel .owl-item {
        padding: 0 15px;
    }

    /* ═══════════════════════════════
       TESTIMONIAL CARD
    ═══════════════════════════════ */
    .testimonial-card {
        background: #fff;
        padding: 32px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e8e8e8;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        min-height: 380px;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 60px;
        color: var(--brand);
        opacity: 0.15;
        font-weight: 900;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.12);
        border-color: var(--brand);
    }

    .testimonial-header {
        display: flex;
        gap: 16px;
        margin-bottom: 20px;
        align-items: center;
    }

    .testimonial-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        border: 3px solid var(--brand);
        background: linear-gradient(135deg, var(--brand) 0%, #0081bc 100%);
    }

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-info {
        flex: 1;
    }

    .testimonial-name {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin-bottom: 4px;
    }

    .testimonial-title {
        font-size: 13px;
        color: var(--brand);
        font-weight: 600;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .testimonial-rating {
        display: flex;
        gap: 4px;
        margin-bottom: 16px;
    }

    .testimonial-rating i {
        color: #ffc107;
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
        color: #516171;
        line-height: 1.7;
        margin-bottom: 16px;
        flex: 1;
        font-style: italic;
    }

    .testimonial-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #999;
        padding-top: 16px;
        border-top: 1px solid #f0f0f0;
    }

    .testimonial-meta i {
        color: var(--brand);
        font-size: 14px;
    }

    /* OWL Carousel Custom Styling */
    .testimonials-carousel .owl-nav {
        margin-top: 30px;
        text-align: center;
    }

    .testimonials-carousel .owl-prev,
    .testimonials-carousel .owl-next {
        background: var(--brand) !important;
        border: 2px solid var(--brand) !important;
        color: #fff !important;
        width: 48px !important;
        height: 48px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 4px !important;
        font-size: 0 !important;
        transition: all 0.3s ease !important;
        margin: 0 6px !important;
    }

    .testimonials-carousel .owl-prev::before,
    .testimonials-carousel .owl-next::before {
        content: '';
        font-size: 20px;
        color: #fff;
    }



    .testimonials-carousel .owl-prev:hover,
    .testimonials-carousel .owl-next:hover {
        background: #0081bc !important;
        border-color: #0081bc !important;
        transform: translateY(-2px);
    }

    .testimonials-carousel .owl-dots {
        margin-top: 30px;
        text-align: center;
    }

    .testimonials-carousel .owl-dot span {
        background: rgba(2, 76, 111, 0.3) !important;
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        margin: 0 6px !important;
        transition: all 0.3s ease !important;
    }

    .testimonials-carousel .owl-dot.active span {
        background: var(--brand) !important;
        width: 30px !important;
        border-radius: 6px !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .testimonials-section {
            padding: 30px 0;
        }

        .intro h1 {
            font-size: 28px;
        }

        .testimonial-card {
            padding: 24px;
            min-height: auto;
        }

        .testimonial-text {
            font-size: 13px;
        }
    }
