/** Shopify CDN: Minification failed

Line 42:0 All "@import" rules must come first

**/
/* ========================================
   NATPAT LP Awards - Custom Styles 
   ======================================== */

/* === FONTS === */
/* Urbane Rounded - Light */
@font-face {
    font-family: 'Urbane Round';
    src: url('/cdn/shop/files/urbanerounded-light.woff2?v=1717044157') format('woff2'),
        url('/cdn/shop/files/urbanerounded-light.woff?v=1717044157') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Urbane Rounded - Medium */
@font-face {
    font-family: 'Urbane Round';
    src: url('/cdn/shop/files/urbanerounded-medium-webfont.woff2?v=1717407652') format('woff2'),
        url('/cdn/shop/files/urbanerounded-medium-webfont.woff?v=1717407652') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Urbane Rounded - Bold */
@font-face {
    font-family: 'Urbane Round';
    src: url('/cdn/shop/files/urbanerounded-bold-webfont.woff2?v=1693812888') format('woff2'),
        url('/cdn/shop/files/urbanerounded-bold-webfont.woff?v=1693812888') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Body text font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === CSS VARIABLES === */
:root {
    --blue-primary: #1F4FC9;
    --blue-dark: #10104E;
    --cream: #E0EEFF;
    --pink: #FF23A6;
    --pink-light: #FE75C5;
    --red: #e63946;
    --green: #5FFF57;
    --yellow: #FFE415;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --text-dark: #333333;
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbane Round', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    font-size: 16px;
}

/* === BUTTONS === */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 35px;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
}

.btn-lg {
    padding: 15px 45px;
    font-size: 1.1rem;
}

.btn-pink {
    background-color: var(--pink);
    color: var(--white);
    border: solid 2px var(--pink-light);
    font-family: 'Urbane Round', sans-serif;
    transition: transform 0.3s ease !important;
}

.btn-pink:hover {
    background-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    transition: transform 0.3s ease !important;
}

.btn-red {
    background-color: var(--red);
    color: var(--white);
    transition: transform 0.3s ease !important;
}

.btn-red:hover {
    background-color: #d62839;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    transition: transform 0.3s ease !important;
}

.btn-green {
    background-color: var(--green);
    color: var(--black);
    padding: 8px 25px;
    font-size: 15px;
    width: max-content;
    transition: transform 0.3s ease !important;
}

.btn-green:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    transition: transform 0.3s ease !important;
}

.btn-white {
    background-color: var(--white);
    color: var(--blue-primary);
    transition: transform 0.3s ease !important;
}

.btn-white:hover {
    background-color: #f0f0f0;
    color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
   transition: transform 0.3s ease !important;
}

.btn-gradient {
    background: linear-gradient(90deg,rgba(162, 51, 142, 1) 0%, rgba(240, 32, 45, 1) 50%, rgba(252, 145, 61, 1) 100%);

    color: var(--white);
    transition: transform 0.3s ease !important;
}

.btn-gradient:hover {
     background: linear-gradient(85deg,rgba(162, 51, 142, 0.8) 0%, rgba(240, 32, 45, 0.8) 50%, rgba(252, 145, 61, 0.8) 100%);

    color: var(--white);
    transform: translateY(-2px);
    transition: transform 0.3s ease !important;
}

/* === SECTION 1: HERO === */
.hero-section {
    background: #1F4FC9;
    /* padding: 60px 0 0 0; */
    position: relative;
    overflow: hidden;
}

.floating-char {
    position: absolute;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
}

.wave-hero {
    position: relative;
    background-color: #E0EEFF;
}

.char-left {
    left: -50px;
    width: 100%;
}

.char-left-bottom {
    position: absolute;
    left: 0;
    top: -200px;
    width: 138px;
}

.char-right {
    right: -40px;
    top: 40px;
    width: 140px;
}

.crown-wrapper {
    margin-bottom: 15px;
    position: relative;
}

.crown-icon {
    /* width: 55px; */
    height: auto;
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 949px;
    left: 50%;
    transform: translateX(-50%);
}

.awards-section .crown-icon {
    max-width: 667px;
}

.hero-title,
.hero-subtitle {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 500;
}

.hero-title {
    color: var(--white);
}

.hero-subtitle {
    color: #F7C776;
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
    max-width: 666px;
    margin: 0 auto 30px;
}

.trophy-wrapper {
    margin-top: 35px;
    margin-bottom: -15px;
}

.trophy-img {
    max-width: 446px;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
    right: 0;
    position: absolute;
    top: -350px;
}

.wave-divider {
    bottom: 2px;
    width: 100%;
    line-height: 0;
}

.wave-img {
    width: 100%;
    display: block;
}

/* === SECTION 2: AWARDS === */
.awards-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.section-header {
    margin-bottom: 50px;
}

.section-icon {
    width: 70px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    color: var(--blue-primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--blue-dark);
    font-weight: 500;
}

.carousel-inner {
    background: #fff;
    padding: 30px;
}

.award-carousel {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.award-slide {
    position: relative;
}

.winner-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #FFDA3C;
    color: var(--blue-dark);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn {
    background-color: var(--white);
    color: var(--blue-primary);
    width: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0 5px 5px 0;
}

.carousel-control-next .carousel-nav-btn {
    border-radius: 5px 0 0 5px;
}

.carousel-nav-btn:hover {
    /* transform: scale(1.1); */
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.dot.active {
    background-color: var(--blue-primary);
    transform: scale(1.3);
}

.dot:hover {
    background-color: var(--blue-primary);
    opacity: 0.7;
}

/* === SECTION 3: INDUSTRY === */
.industry-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.industry-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
    font-family: 'Inter', sans-serif;
}

.industry-carousel {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.industry-carousel .carousel-inner {
    background: #fff;
    padding: 30px;
}

.industry-carousel .row {
    margin-left: -10px;
    margin-right: -10px;
}

.industry-carousel .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.recognition-slide {
    position: relative;
    margin-bottom: 0;
}

.recognition-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recognition-slide .card-label {
    padding: 15px 10px;
    text-align: center;
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 1rem;
}

.recognition-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.recognition-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-label {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 0.95rem;
}

/* === SECTION 4: MEDIA === */
.media-section {
    background-color: var(--blue-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -300px;
}
.media-section .container {
    position: relative;
    z-index: 3;
}
.media-arrow-bg {
    position: absolute;
    max-width: 1440px;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
}

.wave-bottom-feature{
    width: 100%;
    display: block;
}
.divider-wave-bottom-feature {
    /* margin-top: -80px; */
    background: #FFF8F0;
}

.badge-yellow {
    background-color: var(--yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title-white {
    font-size: 40px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 15px;
}
.media-section .section-title-white {
    color: var(--green);
}

.section-subtitle-white {
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.media-logos img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logos img:hover {
    opacity: 1;
}

.media-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.media-card-logo {
    height: 25px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.media-card-title {
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.media-card-text {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
}

.pill-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pill-btn.active {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.pill-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-mic {
    position: absolute;
    bottom: 50px;
    right: 80px;
    width: 60px;
    animation: float 3s ease-in-out infinite;
}
.floating-heart-1 {
    position: absolute;
    bottom: 120px;
    left: 100px;
    width: 50px;
    animation: float 4s ease-in-out infinite;
}
.floating-heart-2 {
    position: absolute;
    top: 120px;
    right: 100px;
    width: 50px;
    animation: float 5s ease-in-out infinite;
}

.media-section h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.links-btn {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: normal;
}

.links-btn li a{
    width: max-content;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #6792FF;
    display: block;
    transition: all 0.3s ease !important;
}
.links-btn li a:hover {
    opacity: 0.8;
    transform: translateY(-5px);
    transition: all 0.3s ease !important;
}
.links-btn li a {
    text-decoration: none;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}
.more-coverages li a{
background: #0077FF;
}
.tv-segments li a{
    background: #4932CF;
}
.founder-interview li a{
    background: #231C82;
}

/* === SECTION 5: MAP === */
.map-section {
    background-color: #FFF8F0;
    padding: 80px 0;
    position: relative;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    min-height: 500px;
}

.world-map {
    width: 100%;
    height: auto;
}
.map-content-float {
    position: absolute;
    top: -30px;
    width: 100%;
}
.map-stickers {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top: 0;
    max-width: 878px;
    margin-inline: auto;
}

.map-sticker {
    /* position: absolute; */
    position: relative;
    width: 182px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.map-sticker:hover {
    transform: scale(1.15) rotate(5deg);
    z-index: 10;
}

.sticker-1 {
    /* top: 15%;
    left: 18%; */
    transform: rotate(-8deg);
}

.sticker-2 {
    /* top: 45%;
    left: 25%; */
    transform: rotate(5deg);
    animation-delay: 0.5s;
}

.sticker-3 {
    /* top: 25%;
    right: 28%; */
    transform: rotate(-10deg);
    animation-delay: 1s;
}

.sticker-4 {
    /* top: 55%;
    right: 18%; */
    transform: rotate(8deg);
    animation-delay: 1.5s;
}

.map-char {
    position: absolute;
    width: 140px;
    animation: float 5s ease-in-out infinite;
}

.map-char.char-left {
    left: -60px;
    bottom: 40px;
}

.map-char.char-right {
    right: -60px;
    top: 0px;
    animation-delay: 1s;
}

.retailer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.retailer-logos img {
    height: 85px;
    transition: all 0.3s ease;
}

.retailer-logos img:hover {
    transform: scale(1.1);
    opacity: 1;
    transition: all 0.3s ease;
}

/* === SECTION 6: JOURNEY === */
.journey-section {
    background-color: var(--blue-primary);
    padding: 80px 0;
    position: relative;
    /* overflow: hidden; */
}
.journey-section .container {
    position: relative;
    z-index: 1;
}
.abstract-bg {
    position: absolute;
    top: 0;
}

.polaroid-container {
    position: relative;
    display: inline-block;
}

.polaroid-char {
    position: absolute;
    bottom: 50px;
    left: -100px;
    width: 196px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.polaroid {
    /* background-color: var(--white); */
    padding: 15px;
    padding-bottom: 50px;
    border-radius: 5px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid img {
    width: 100%;
    border-radius: 3px;
}

.polaroid-caption {
    text-align: center;
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: #555;
    margin-top: 15px;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 20px;
    position: relative;
    grid-template-rows: repeat(2, 1fr);
}

.milestone-box {
    background: #143997;
    border: 2px solid #4278FF;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    min-width: 130px;
    transition: all 0.3s ease;
        display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.milestone-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.milestone-box.highlight {
    border-color: var(--pink);
    background: rgba(255, 51, 102, 0.1);
}

.milestone-number {
    font-size: 30px;
    font-weight: 800;
    color: #FFDA3C;
    margin-bottom: 5px;
    font-family: "Urbane Round", sans-serif;
    line-height: normal;
}

.milestone-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    font-family: "Inter", sans-serif;
    line-height: normal;
}

.milestone-label.pink {
    color: var(--pink);
}
.milestone-dot {
        position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 115px);
    right: 0;
    max-width: unset;
}
.dotted-line {
    width: 40px;
    opacity: 0.5;
}

/* === SECTION 7: MOTORSPORT === */
.motorsport-section {
    background-color: #1B2669;
    padding: 0 0 80px 0;
}

.checkered-pattern {
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(31, 79, 201, 1) 40%, rgba(27, 38, 105, 1) 30%);
}

.checkered-pattern img {
    width: 100%;
    min-width: 1000px;
    height: auto;
    z-index: 1;
    position: relative;
}

.motorsport-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.motorsport-img:hover {
    transform: scale(1.05);
}

.partnership-logo {
    height: 77px;
}
.motorsport-section h5 {
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #FFE417;

}
.motorsport-section p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
}
/* === SECTION 8: CELEBRITY === */
.celebrity-section {
    background-color: #FFF8F0;
    padding: 80px 0;
}

.celebrity-section .container {
    position: relative;
}

.celebrity-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.celebrity-title {
    font-family: 'Urbane Round', sans-serif;

    /* font-family: 'Brush Script MT', cursive; */
    font-size: 40px;
    color: var(--red);
    display: inline-block;
}

.star-deco {
    position: absolute;
    /* width: 35px; */
    /* opacity: 0.6; */
}

.star-left {
    top: 0px;
    left: 0px;
    width: 139px;
}

.star-right {
    bottom: 0px;
    right: 0px;
    width: 108px;
}

.celebrity-card {
    max-width: 825px;
    margin: 50px auto;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 40px;
}

.celebrity-content {
    padding: 50px;
}

.heart-icon {
    width: 25px;
    margin-bottom: 15px;
}

.celebrity-name {
    font-size: 32px;
    font-weight: 700;
    color: #181C35;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.celebrity-quote {
    font-size: 18px;
    color: #181C35;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.7;
}

.celebrity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.trust-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: var(--blue-primary);
    margin: 60px 0 40px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-item {
    width: 150px;
    height: 150px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-item img {
    max-width: 100%;
    max-height: 100%;
}

.natpat-story-text {
    font-size: 20px;
    font-weight: 500;
}

/* === SECTION 9: FOOTER === */
.footer-section {
    background-color: var(--blue-primary);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}

.wave-top img {
    width: 100%;
    display: block;
}

.floating-heart {
    position: absolute;
    width: 35px;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.heart-1 {
    left: 10%;
    top: 30%;
}

.heart-2 {
    right: 15%;
    bottom: 30%;
    animation-delay: 1s;
}

.footer-title {
    font-size: 3rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.media-feature-wave {
    background: var(--blue-primary);
}
.media-feature-wave img {
    position: relative;
    z-index: 1;
}
.view-about-us,
.shop-now {
    max-width: 292px;
    width: 100%;
}
.view-about-us {
    border: 2px solid var(--white);
    color: var(--white);
    transition: all 0.3s ease;
    margin-left: 50px;
}
.view-about-us:hover {
    background-color: var(--white);
    color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

/* === ANIMATIONS === */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* === RESPONSIVE === */

@media (max-width: 1670px) {
    .media-section {
        margin-top: -200px;
    }
}

@media (max-width: 1199px) {

    .char-left,
    .char-right,
    .map-char {
        display: none;
    }
    .trophy-img {
        max-width: 300px;
        top: -250px;
    }
}

@media (max-width: 1110px) {
    .media-section {
        margin-top: -150px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title,
    .section-title-white {
        font-size: 1.7rem;
    }

    .celebrity-title {
        font-size: 2.5rem;
    }

    .footer-title {
        font-size: 2.2rem;
    }

    .map-sticker {
        width: 140px;
    }

    .dotted-line {
        display: none !important;
    }

    .milestones-grid {
        justify-content: center;
    }
    .trophy-img {
        max-width: 200px;
        top: -200px;
    }
    .crown-icon {
        top: 0;
        max-width: 555px;
    }
    .awards-section .crown-icon {
        max-width: 450px;
        top: -13px;
    }
    .map-container {
        min-height: unset;
    }
    .floating-heart-1 {
        left: 0;
    }
    .floating-heart-2 {
        right: 0;
    }
    .floating-mic {
        right: 0px;
    }
    .retailer-logos {
        gap: 10px;
        margin-top: 0;
    }
    .polaroid-container {
        margin-inline: auto;
        display: block;
    }
    .polaroid-char {
        left: 0;
    }
    .milestone-dot {
        width: 100%;
    }

  
    .milestones-grid {
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-template-columns: repeat(12, 1fr); 
    grid-template-rows: 1fr 1fr; 
    grid-template-areas: 
        "aa aa aa aa bb bb bb bb cc cc cc cc"
        ". . dd dd dd dd ee ee ee ee . ."; 
    }
    .milestones-grid .aa { grid-area: aa; }
    .milestones-grid .bb { grid-area: bb; }
    .milestones-grid .cc { grid-area: cc; }
    .milestones-grid .dd { grid-area: dd; }
    .milestones-grid .ee { grid-area: ee; }
    
    .polaroid {
        margin-inline: auto;
    }
    .star-left {
        width: 80px;
    }
    .star-right {
        bottom: -80px;
        width: 80px;
    }
    .celebrity-img {
        object-fit: contain;
    }
    .celebrity-title-wrapper {
        margin-bottom: 0px;
    }
 
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .trophy-img {
        max-width: 200px;
    }

    .section-title,
    .section-title-white {
        font-size: 1.5rem;
    }

    .celebrity-content {
        padding: 0 0 30px 0;
    }

    .celebrity-img {
        min-height: 300px;
    }

    .star-left,
    .star-right {
        display: none;
    }

    .map-sticker {
        width: 100px;
    }
/* 
    .sticker-1 {
        top: 10%;
        left: 10%;
    }

    .sticker-2 {
        top: 35%;
        left: 15%;
    }

    .sticker-3 {
        top: 20%;
        right: 15%;
    }

    .sticker-4 {
        top: 50%;
        right: 10%;
    } */

    .social-item {
        width: 120px;
        height: 120px;
    }

    .floating-mic {
        display: none;
    }
    .media-section {
        margin-top: -100px;
    }
    .milestone-box {
        padding: 15px;
    }
    .milestone-number {
        font-size: 24px;
    }
    .polaroid {
        max-width: 400px;
        padding-bottom: 0;
    }
    .polaroid-char{
        width: 150px;
        bottom: 20px;
    }
    .view-about-us {
        margin-left: 0;
        margin-top: 30px;
    }
    .trust-title {
        font-size: 20px;
    }
    .awards-section {
        padding: 40px 0;
    }
    .trophy-img {
        max-width: 150px;
        top: -130px;
    }
    .char-left-bottom {
        top: -140px;
        width: 120px;
    }
    .map-section,
    .celebrity-section,
    .footer-section,
    .media-section {
        padding: 40px 0;
    }


    .hero-section .btn{
        z-index: 2;
        position: relative;
    }
    .celebrity-card {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .checkered-pattern img {
        min-width: 600px;
    }

    .recognition-card img {
        height: 150px;
    }
    .industry-slider{
        max-width: 320px;
    }

     .media-section {
        margin-top: -50px;
    }
    .media-card {
        max-width: 320px;
        margin-inline: auto;
    }
    .retailer-logos {
            margin-top: 235px;
    }
  .retailer-logos img {
    max-width: 100px;
    height: 60px;
  }
  .map-stickers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
      .map-sticker {
        width: 140px;
        display: block;
        margin-inline: auto;
    }


    .awards-section .crown-icon {
       max-width: 95%;
        top: -5px;
        height: 40px; 
    }
    .awards-section .section-title {
        max-width: 90%;
        margin-inline: auto;
    }
    .hero-section .crown-icon {
        width: calc(100% + 15px);
    }
}

@media (max-width: 470px){
        .polaroid-char {
        width: 90px;
        bottom: 50px;
    }
    
}

@media (max-width: 426px) {
       .retailer-logos {
        margin-top: 300px;
    }
    .milestones-grid {
        column-gap: 5px;
    }

        .milestone-box {
        padding: 15px 10px;
    }
        .milestone-number {
        font-size: 19px;
    }
    .char-left-bottom {
        top: -65px;
    }
    .trophy-img {
        top: -85px;
    }
      
}
@media (max-width: 376px){
     .milestone-box {
        min-width: unset;
    }
        .retailer-logos img {
        max-width: 100%;
        height: 70px;
    }
        .map-sticker {
        width: 100px;
    }
      .awards-section .crown-icon {
        max-width: 270px;
        top: 10px;
        height: 30px;
    }
        .retailer-logos {
        margin-top: 230px;
    }
}
@media (max-width: 326px) {
    .retailer-logos {
        margin-top: 290px;
    }
}

.header-wrapper {
    display: none;
}
.section-header {
    margin-bottom: 0px;
}

footer {
    display: none;
}
div[data-widget-host="habitat-static-feed"] a{
    display: none !important;
}


/* Slick Slider Custom Styles for Awards Section */
.awards-slider {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    /* overflow: hidden; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 30px;
}

 .awards-slider .slick-slide {
    /* opacity: 0;
    transition: opacity 0.8s ease; */
    margin-inline: 10px;
} 

.awards-slider .slick-slide.slick-active {
    opacity: 1;
}

.award-slide {
    position: relative;
    text-align: center;
}

.award-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.award-slide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 15px 0 10px;
    font-family: 'Inter', sans-serif;

}

.award-slide p {
    font-size: 1rem;
    color: var(--blue-dark);
    font-weight: 500;
}

/* Awards Slider Arrows */
.awards-slider .slick-prev,
.awards-slider .slick-next {
    background-color: #ffffff;
    color: #1F4FC9;
    width: 65px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    cursor: pointer;
}

.awards-slider .slick-prev {
    left: 0px;
    border-radius: 0 5px 5px 0;
}
.awards-slider .slick-prev:hover img,
.awards-slider .slick-next:hover img{
    filter: brightness(0) invert(1);
}

.awards-slider .slick-prev img,
.industry-slider .slick-prev img {
    transform: rotate(180deg);
}

.awards-slider .slick-next {
    right: 0px;
    border-radius: 5px 0 0 5px;
}
.awards-slider .fa-chevron-left,
.awards-slider .fa-chevron-right {
    font-size: 20px;
}


.awards-slider .slick-prev:hover,
.awards-slider .slick-next:hover {
    background-color: #1F4FC9;
    color: #ffffff;
}

.awards-slider .slick-prev:before,
.awards-slider .slick-next:before {
    content: '';
}

/* Awards Slider Dots */
.awards-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    right: 0;
    left: 0;
}

.awards-slider .slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.awards-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.awards-slider .slick-dots li button:hover {
    background-color: #1F4FC9;
    opacity: 0.7;
}
.awards-slider .slick-dots li button::before {
    display: none;
}

.awards-slider .slick-dots li.slick-active button {
    background-color: #1F4FC9;
    transform: scale(1.3);
}

/* Slick Slider Custom Styles for Industry Section */
.industry-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.industry-slider .slick-slide {
        padding: 15px;
    margin-inline: 10px;
}

.industry-slider .slick-list {
    margin: 0 -15px;
        padding: 30px 0px;
}

.recognition-slide {
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recognition-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.recognition-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recognition-slide .card-label {
    padding: 5px;
    text-align: center;
    font-weight: 400;
    color: var(--blue-dark);
    font-size: 15px;
    letter-spacing: normal;
}

.recognition-slide .year-tag {
    position: absolute;
    right: 14px;
    z-index: 2;
    bottom: 8px;
    background: #1F4FC9;
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    line-height: normal;
}
.recognition-slide--image-box {
    position: relative;
}

/* Slick Arrows */
.industry-slider .slick-prev,
.industry-slider .slick-next {
    background: #1F4FC9;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.industry-slider .slick-prev {
    left: -20px;
    border-radius: 50%;
}

.industry-slider .slick-prev img,
.industry-slider .slick-next img{
    filter: brightness(0) invert(1);
    height: 20px;
}

.industry-slider .slick-prev:hover img,
.industry-slider .slick-next:hover img{
    filter: unset;
}

.industry-slider .slick-next {
    right: -20px;
    border-radius: 50%;
}

.industry-slider .slick-prev:hover,
.industry-slider .slick-next:hover {
    background-color: #fff;
    color: #1F4FC9;
}

.industry-slider .slick-prev:before,
.industry-slider .slick-next:before {
    content: '';
}

/* Slick Dots */
.industry-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    left: 0;
    right: 0;
}

.industry-slider .slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.industry-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.industry-slider .slick-dots li button:hover {
    background-color: #1F4FC9;
    opacity: 0.7;
}

.industry-slider .slick-dots li.slick-active button {
    background-color: #1F4FC9;
    transform: scale(1.3);
}

.industry-slider .slick-dots li button::before {
    display: none;
}

.natpat-crew {
    margin-top: 60px;
}


@media (max-width: 575px) {
    .industry-slider .slick-next {
        right: 0;
    }
    .industry-slider .slick-prev {
        left: 0;
    }
    .industry-slider .slick-slide {
        margin-inline: 20px;
    }

    .awards-slider .slick-prev, .awards-slider .slick-next {
        width: 40px;
        height: 50px;
    }

        .industry-slider .slick-prev, .industry-slider .slick-next {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }
    .industry-slider {
        padding: 0;
    }
    .award-slide h3 {
        font-size: 20px;
    line-height: normal;
    }
    .awards-slider {
        padding: 15px;
    }

    .winner-badge {
        top: 10px;
        left: 10px;
        padding: 3px 7px;
        font-size: 12px;
  
    }
    .recognition-slide .year-tag {
        right: 15px;
        padding: 3px 8px;
        font-size: 17px;
    }
    .award-slide p {
        line-height: normal;
    }
   
}