@font-face {
    font-family: 'Anton';
    src: url('/css/font/anton-regular-webfont.woff2') format('woff2'),
        url('/css/font/anton-regular-webfont.woff') format('woff');
}

h1 {
    font-family: 'Anton';
}

video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

h2 {
    font-family: 'Anton';
}

/*Social Media*/
.social-right {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 100;
}

.social-right ul {
    padding: 0;
    list-style: none;
}

.social-right ul li {
    position: relative;
    right: -100px;
    display: block;
    /*margin: 5px 0;*/
    background: rgba(0, 0, 0, 0);
    width: 150px;
    text-align: left;
    padding: 8px;
    border-radius: 10px 0 0 10px;
    transition: all 0.5s ease;
}

.social-right ul li:hover {
    right: 0;
}

.social-right ul li a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.social-right ul li img {
    width: 32px;
    height: 32px;
    border-radius: 10%;
    transition: all 0.5s ease;
}

.social-right ul li.linkedin:hover {
    background: #00000000;
}

.social-right ul li.instagram:hover {
    background: #00000000;
}

.social-right ul li.facebook:hover {
    background: #00000000;
}

.social-right ul li span {
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    z-index: 1;
    background: rgb(0, 0, 0);
    border: 0px solid transparent;
    background-clip: padding-box;
    animation: borderGlow 3s linear infinite;
}

.social-right ul li span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg,
            transparent, #0A66C2, #0077B5, transparent);
    background-size: 200% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: moveGlow 2s linear infinite;
}

.social-right ul li.instagram span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg,
            transparent, #fa7e1e, #d62976, #962fbf, transparent);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: moveGlow 2s linear infinite;
}

@keyframes moveGlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.social-right ul li.linkedin span {
    animation: linkedinGlow 3s linear infinite;
}

@keyframes linkedinGlow {

    0%,
    100% {
        box-shadow: 0 0 5px #0A66C2, 0 0 10px #0077B5;
        border-color: #0A66C2;
    }

    50% {
        box-shadow: 0 0 15px #0A66C2, 0 0 25px #0077B5;
        border-color: #0077B5;
    }
}

.social-right ul li.instagram span {
    animation: instagramGlow 3s linear infinite;
}

@keyframes instagramGlow {

    0%,
    100% {
        box-shadow: 0 0 5px #E1306C, 0 0 10px #F77737;
        border-color: #E1306C;
    }

    50% {
        box-shadow: 0 0 15px #E1306C, 0 0 25px #F77737;
        border-color: #F77737;
    }
}

.social-right ul li.facebook span {
    animation: facebookGlow 3s linear infinite;
}

@keyframes facebookGlow {

    0%,
    100% {
        box-shadow: 0 0 5px #1877F2, 0 0 10px #0F5BB5;
        border-color: #1877F2;
    }

    50% {
        box-shadow: 0 0 15px #1877F2, 0 0 25px #0F5BB5;
        border-color: #0F5BB5;
    }
}

.social-right ul li.whatsapp:hover {
    background: #00000000;
}

.social-right ul li.whatsapp span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg,
            transparent, #25D366, #128C7E, #075E54, transparent);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: moveGlow 2s linear infinite;
}

@keyframes moveGlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.social-right ul li.whatsapp span {
    animation: whatsappGlow 3s linear infinite;
}

@keyframes whatsappGlow {

    0%,
    100% {
        box-shadow: 0 0 5px #25D366, 0 0 10px #128C7E;
        border-color: #25D366;
    }

    50% {
        box-shadow: 0 0 15px #25D366, 0 0 25px #128C7E;
        border-color: #128C7E;
    }
}


@media screen and (max-width: 992px) {
    .social-right {
        display: none;
    }
}

@media (min-width: 992px) {
    .glow-border-lg a {
        position: relative;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 8px;
        overflow: hidden;
        color: #fff;
        transition: color 0.3s ease;
        z-index: 1;
    }

    .glow-border-lg a::before,
    .glow-border-lg a::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 1px;
        background: linear-gradient(90deg, #ffbc00);
        transition: all 0.4s ease;
    }

    .glow-border-lg a::before {
        top: 0;
        left: 0;
    }

    .glow-border-lg a::after {
        bottom: 0;
        right: 0;
    }

    .glow-border-lg a span::before,
    .glow-border-lg a span::after {
        content: "";
        position: absolute;
        height: 0%;
        width: 2px;
        background: linear-gradient(180deg #ffffff);
        transition: all 0.4s ease;
    }

    .glow-border-lg a span::before {
        top: 0;
        left: 0;
    }

    .glow-border-lg a span::after {
        bottom: 0;
        right: 0;
    }

    .glow-border-lg a:hover::before,
    .glow-border-lg a:hover::after {
        width: 100%;
    }

    .glow-border-lg a:hover span::before,
    .glow-border-lg a:hover span::after {
        height: 100%;
    }

    .glow-border-lg a:hover {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(74, 141, 255, 0.8);
    }

    .glow-border-lg a span {
        position: relative;
        display: inline-block;
    }
}

.bubble {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: drift var(--duration) ease-in-out infinite;
    ;
    width: var(--size);
    height: var(--size);
    top: var(--top);
    left: var(--left);
    background: radial-gradient(circle at center, #b83686, #9b5de5);
    box-shadow: 0 0 25px rgba(255, 110, 199, 0.5), 0 0 35px rgba(155, 93, 229, 0.3);
    filter: blur(2px);
    opacity: 0.1;
}

.bubble2 {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: drift var(--duration) ease-in-out infinite;
    ;
    width: var(--size);
    height: var(--size);
    top: var(--top);
    left: var(--left);
    background: radial-gradient(circle at center, #7d109ee6, #5de3e5b5);
    box-shadow: 0 0 25px rgba(255, 110, 199, 0.5), 0 0 35px rgba(155, 93, 229, 0.3);
    filter: blur(5px);
    opacity: 0.1;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(var(--x-move), var(--y-move)) scale(1.05);
        opacity: 0.35;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {

    .bubble,
    .bubble2 {
        width: calc(var(--size) * 0.5);
        height: calc(var(--size) * 0.5);
    }
}

@media (max-width: 768px) {
    .bubble:nth-child(odd) {
        display: none;
    }
}

@media (max-width: 768px) {
    .bubble {
        --left: 10%;
        --top: 5%;
    }

    .bubble2 {
        --left: 70%;
        --top: 50%;
    }
}


.raindrop {
    position: absolute;
    width: 5px;
    height: var(--length);
    top: var(--top);
    left: var(--left);
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
    border-radius: 50px;
    filter: blur(2px);
    opacity: 0.25;
    transform: rotate(45deg);
    animation: driftDiagonal var(--duration) ease-in-out infinite;
}

/* Diagonal sliding motion */
@keyframes driftDiagonal {
    0% {
        transform: translate(0, 0) rotate(45deg);
        opacity: 0.25;
    }

    50% {
        transform: translate(30px, 30px) rotate(45deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0) rotate(45deg);
        opacity: 0.25;
    }
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(3px);
    /* adjust the blur intensity */
}

.typewriter-container {
    min-width: 200px;
    min-height: 1em;
    white-space: nowrap;
}

.partner-layer {
    position: absolute;
    inset: 0;
    background: rgba(255, 213, 124, 0.326);
}


.section-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(9 0 21) 0%,
            rgba(101, 0, 62, 0.423) 50%,
            rgba(9 0 21) 100%);
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.footer_overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 56%);
}

.footer {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.footer-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    clip-path: polygon(10% 0, 90% 0, 85% 100%, 15% 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 130px 15% 2px;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: #fff;
}

.footer-section.quick-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links-address {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.5rem;
}

.links-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.links-list li a:hover {
    color: #fce10f;
}

@media (max-width: 768px) {
    .links-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .links-list {
        grid-template-columns: 1fr;
    }
}

.footer-address h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-address p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0.2rem 0;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 12% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 0% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 85%, 15% 85%);
    }
}

@media (max-width: 480px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 80%, 15% 80%);
    }
}

/* Custom animations */
.partner-card {
    box-shadow: 0 2px 3px rgb(0 0 0 / 84%);
}

.buttonColor {
    background-color: #efcf48;
    ;
}

/* Left Animation */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right Animation */
@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 1s ease-out forwards;
}

.slide-in-down {
    animation: slideInDown 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
}

.animate-on-scroll.animated {
    animation: fadeInUp 1s ease-out forwards;
}

/* Image placeholder styles */
.image-placeholder {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 84%);
    /* soft shadow */
}

.joinimage-placeholder {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.vectimage-placeholder {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu styles */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation active state */
.nav-link:hover {
    color: #ce3bf6;
    transition: color 0.3s ease;
}

/* ===== Unique Double Bracket Border for Event Card ===== */
.double-bracket-box {
    position: relative;
    border: 3px solid #000;
    /* Outer border */
    border-radius: 10px;
    /* Matches card rounding */
    box-sizing: border-box;
}

/* Inner border */
.double-bracket-box::before {
    content: "";
    position: absolute;
    top: 8px;
    /* Gap between borders */
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #999;
    /* Inner border color */
    border-radius: 8px;
    pointer-events: none;
    z-index: 5;
}

/*Upcoming Events card*/
@media (max-width: 1023px) {

    .wow,
    .animate__animated {
        visibility: visible !important;
        animation: none !important;
    }

    .group:hover .group-hover\\:opacity-100 {
        opacity: 0 !important;
    }

    .group .absolute.inset-0 {
        opacity: 0 !important;
        transition: none !important;
    }
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgb(0 0 0 / 84%);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    transition: transform 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(#000000, rgba(0, 0, 0));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.event-card:hover .event-overlay {
    transform: translateY(0);
}

/* logo marquee to right*/
.logo-marquee-left {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    background: white;
}

.logo-track-left {
    display: inline-flex;
    align-items: center;
    gap: 90px;
    /* space between logos */
    white-space: nowrap;
    animation: logo-scroll-left 10s linear infinite;
}

.logo-track-left img {
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes logo-scroll-left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/*hero marquee*/
.marquee-wrapper {
    white-space: nowrap;
    position: relative
}

.marquee1 {
    display: inline-block;
    padding-left: 100%;
    animation: marquee1 40s linear infinite;
    will-change: transform
}

.marquee1 span {
    display: inline-block;
    margin: 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 600
}

@keyframes marquee1 {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

.location-marquee {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0
}

.marquee-content {
    display: inline-flex;
    gap: 60px;
    white-space: nowrap;
    animation: right-scroll 20s linear infinite;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333
}

@keyframes right-scroll {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

@media (max-width: 1023px) {

    .slide-in-left,
    .slide-in-right,
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

}

.testimonial-card {
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.hidden-card {
    display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '' !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 24px !important;
    height: 24px !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative !important;
    margin-top: 32px;
}

.swiper-slide.swiper-slide-active {
    --tw-border-opacity: 1 !important;
    border-color: rgb(79 70 229 / var(--tw-border-opacity)) !important;
}

.swiper-slide.swiper-slide-active>.swiper-slide-active\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}

.swiper-slide.swiper-slide-active>.flex .grid .swiper-slide-active\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}

#slider-button-left,
#slider-button-right {
    display: none !important;
}

.review-card {
    height: 100%;
}

.review-card .rating-stars {
    position: absolute;
    top: 15px;
    right: 20px;
}

.review-card .rating-stars span i {
    transition: transform 0.3s ease;
    color:#f0c208;
}

.review-card:hover .rating-stars span i {
    transform: scale(1.15);
}

.review-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);          
    -webkit-backdrop-filter: blur(10px); 
    max-width: 600px;
    width: 100%;
    letter-spacing: 1px;
}

.review-card i{
    color: #01ffeb;
}

.review-card h5{
    color: #01ffeb;
}


.review-card p{
    color: #ffffff;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 46%), rgb(255 255 255 / 10%), rgb(0 0 0 / 46%));
    opacity: 1;
    z-index: -1;
}

@media (min-width: 992px) {
    .review-card::before {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: bottom;
        transition: transform 0.6s ease, opacity 0.4s ease;
    }

    .review-card:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right,
            rgb(0 0 0 / 96%) 0%,
            rgbrgb(255 255 255 / 0%) 40%,
            rgbrgb(255 255 255 / 0%) 70%,
            rgb(0 0 0 / 96%) 100%);
    z-index: 5;
    pointer-events: none;
}


.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 32%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
}

.overlay-text {
    color: #5df3fe;
    font-size: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.button-54 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    border: 3px solid;
    padding: 0.25em 0.5em;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-54:active {
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}

@media (min-width: 768px) {
    .button-54 {
        padding: 0.25em 0.75em;
    }
}

.sponsor-heading {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 6rem);
    text-shadow:
        -3px 4px 5px rgb(67 67 67 / 60%), 12px 5px 16px rgb(0 0 0)
}

.breadcrumb-3d {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.breadcrumb-3d a,
.breadcrumb-3d span {
    text-shadow:
        2px 2px 0 #1b526a,
        4px 4px 10px rgba(0, 0, 0, 0.5);
}

.breadcrumb-3d a {
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.breadcrumb-3d a:hover {
    color: #ffd54a;
    text-shadow:
        3px 3px 0 #36697f,
        6px 6px 12px rgba(0, 0, 0, 0.6);
}

.custom-bullets li {
  position: relative;
  padding-left: 18px;
}

.custom-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #F5D300; /* yellow */
  font-size: 20px;
  line-height: 1;
}

.letter-spacing{
    letter-spacing: 3px;
}

.benefits-section, .benefits-section1 {
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.benefits-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 0 auto;
}

.benefit-card{
    background: #ffffff91;
    border-radius: 14px;
    padding: 15px 20px;
    text-align: center;
    color: #000000bf;
    transition: all 0.35s ease;
    border: 1px solid rgb(0 0 0 / 17%);
}

.spbenefit-card{
    position: relative;
    background: linear-gradient(135deg, #1e3a5f66, #ffffff22, #6fb4ff33);
    border-radius: 14px;
    padding: 15px 20px;
    text-align: center;
    color: #000000;
    transition: all 0.35s ease;
    border: 1px solid rgb(0 0 0 / 17%);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.benefit-card1 {
    position: relative;
    border-radius: 14px;
    padding: 50px 40px;
    text-align: center;
    letter-spacing: 3px;
    color: #000000;
    transition: all 0.35s ease;
    border: 1px solid rgb(132 137 137 / 36%);
    background: linear-gradient(135deg, #bffaee7a, #ffffffe7, #faf2bf00);
    box-shadow: 0 6px 6px rgb(0 0 0 / 42%);
}

.benefit-card1::before , .spbenefit-card::before{
    content: "";
    position: absolute;
    top: -10px;
    left: -2px;
    width: 80px; 
    height: 80px;
    border-top: 10px solid #e3a000; 
    border-left: 2px solid #f99967;
    border-radius: 20px 0 0 0;
}

.benefit-card1::after, .spbenefit-card::after{
    content: "";
    position: absolute;
    bottom: -1px;
    right: -4px;
    width: 60px;
    height: 40px;
    border-bottom: 12px solid #000;
    border-right: 4px solid #000;
    border-radius: 0 0 16px 0;
}


.benefit-card .icon, .spbenefit-card .icon {
    font-size: 32px;
    margin-bottom: 5px;
    color: #000;
}

.icon i{
    color: #000000;
}

.benefit-card h3, .spbenefit-card h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 5px;
    color: #654a00;
}
 
.benefit-card1 h3 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 5px;
    color: #000000;
}

.benefit-card p, .spbenefit-card p{
    letter-spacing: 2px;
}

.benefit-card:hover{
    background: linear-gradient(135deg, #fae1bfdb, #ffffff92, #bfe6fa70);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .benefits-grid, .benefits-grid1, .spbenefit-card{
        grid-template-columns: repeat(3, 2fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid, .benefits-grid1, .spbenefit-card {
        grid-template-columns: 2fr;
    }
}

.benefit-image-small {
    width: 200px; 
    height: auto;   
    object-fit: cover;
}

.abdf img{
    position: relative;
    background: transparent;
    text-align: center;
}

.abdf.image-card {
    display: flex;
    justify-content: center; 
    align-items: center;   
}

.form-shadow{
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 
            0 12px 28px rgba(0, 0, 0, 0.12);

}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(0 0 0 / 44%));
    pointer-events: none;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 45px;
    color: #514f4f;
}

.contact-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 30px 30px;
    transition: 0.3s ease;
    background: linear-gradient(135deg, #bffaee7a, #ffffffe7, #faf2bf00);
    border: 1px solid rgb(180 180 180 / 12%);
    text-align: center;
    box-shadow: 0 6px 6px rgb(0 0 0 / 42%);
    border-radius:20px;
}

.contact-icon {
    font-size: 30px;
    color: #FF9800; 
    min-width: 30px;
}

.contact-item h4 {
    margin: 0;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .contact-section {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-item {
        flex: 1;
    }
}

.contact-item::before,
.contact-item::after {
    content: "";
    position: absolute;
    background: #000000;
    transition: .4s ease;
}

.contact-item::before {
    width: 0;
    height: 4px;
    top: 0;
    left: 0;
}
.contact-item::after {
    width: 3px;
    height: 0;
    bottom: 0;
    right: 0;
}

.contact-item:hover::before {
    width: 100%;
}
.contact-item:hover::after {
    height: 100%;
}

.contact-item:hover{
    border-radius: 0px;
}

.why-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #514f4f;
}

.why {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    transition: 0.3s ease;
    border: 1px solid rgb(132 137 137 / 36%);
    text-align: center;
    box-shadow: 0 6px 6px rgb(0 0 0 / 42%);
    background: linear-gradient(135deg, #bffaee7a, #ffffffe7, #faf2bf00);
    border-radius: 30px 0 30px 0; 
}

.why h4 {
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.why p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .why-section {
        flex-direction: row;
        justify-content: space-between;
    }

    .why {
        flex: 1;
    }
}
.why {
    position: relative;
    overflow: hidden;
}

.why::before,
.why::after {
    content: "";
    position: absolute;
    background: #62ffe5;
    transition: .4s ease;
}

.why::before {
    width: 0;
    height: 4px;
    top: 0;
    left: 0;
}
.why::after {
    width: 3px;
    height: 0;
    bottom: 0;
    right: 0;
}

.why:hover{
    border-radius: 0px;
}

.why:hover::before {
    width: 100%;
}
.why:hover::after {
    height: 100%;
}


.relative-section {
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.relative-content {
  position: relative;
  z-index: 2;
}


.services-section {
    display: flex;
    flex-direction: column;
    gap: 45px;
    color: #514f4f;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 30px 30px;
    transition: 0.3s ease;
    border: 1px solid rgb(180 180 180 / 12%);
    text-align: center;
    box-shadow: 0 2px 6px rgb(255 240 240 / 14%);
    background: linear-gradient(135deg, #93daff47, #ffffff00, #93daff47);
}

.service h4 {
    margin: 0;
    font-size: 16px;
}

.service p {
    margin: 0;
    font-size: 20px;
    opacity: 0.9;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .services-section {
        flex-direction: row;
        justify-content: space-between;
    }

    .service {
        flex: 1;
    }
}
.service {
    position: relative;
    overflow: hidden;
}

.service::before,
.service::after {
    content: "";
    position: absolute;
    background: #7cffe9;
    transition: .4s ease;
}

.service::before {
    width: 0;
    height: 2px;
    top: 0;
    left: 0;
}
.service::after {
    width: 2px;
    height: 0;
    bottom: 0;
    right: 0;
}

.service:hover::before {
    width: 100%;
}
.service:hover::after {
    height: 100%;
}

.simage-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom-left-radius: 35px;
    border-top-right-radius: 35px;
}


.benefits-grid2 {
   display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.benefit-card2{
    background: linear-gradient(135deg, #1e3a5f66, #ffffff22, #6fb4ff33);
    border-radius: 5px;
    padding: 15px 20px;
    text-align: center;
    color: #000000bf;
    transition: all 0.35s ease;
    border: 1px solid rgb(241 252 30 / 16%);
}

.benefit-card2 .sicon {
    font-size: 32px;
    margin-bottom: 5px;
}

.sicon i{
    color: #ffd750;
}

.benefit-card2 h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffdc85b3;
}

.benefit-card2 p{
    letter-spacing: 2px;
}

.benefit-card2:hover{
    background: linear-gradient(135deg, #bfe6fa58, #ffffff12, #bfe6fa58);
    box-shadow: 0 12px 25px rgb(255 255 255 / 33%);
}

@media (max-width: 1024px) {
    .benefits-grid, .benefits-grid1, .spbenefit-card, .benefits-grid2{
        grid-template-columns: repeat(3, 2fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid, .benefits-grid1, .spbenefit-card, .benefits-grid2{
        grid-template-columns: 2fr;
    }
}

.form-bg{
    background: linear-gradient(135deg, #bfe6fa47, #ffffff00, #bfe6fa3b);
}

.font-Anton{
    font-family: 'Anton', sans-serif;
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 50;
}

.snowflake-circle {
    position: absolute;
    top: -10px;
    border-radius: 50%;
    background: white;
    opacity: 0.9;
    filter:
        blur(1.5px)
        drop-shadow(0 0 8px rgba(255,255,255,0.9))
        drop-shadow(0 0 15px rgba(180,220,255,0.7))
        drop-shadow(0 0 25px rgba(150,200,255,0.4));
    animation: fall linear infinite;
}

.snowflake-image {
    position: absolute;
    top: -10px;
    background-image: url("snow.webp");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    width: var(--size);
    height: var(--size);
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.5))
        drop-shadow(0 0 14px rgba(159,250,255,0.5))
        drop-shadow(0 0 22px rgba(200,230,255,0.4));
    animation: fall linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-10vh) translateX(0); }
    100% { transform: translateY(110vh) translateX(var(--drift)); }
}


.santa-sleigh {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 260px;
    z-index: 25;
    pointer-events: none;
    animation: santaFly 22s linear infinite;
}

.santa-sleigh img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 12px rgba(255, 220, 160, 0.9));
    transform: scaleX(-1);
}

@keyframes santaFly {
    0% {
        transform: translateX(-300px);
    }
    100% {
        transform: translateX(120vw);
    }
}

