/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #0d9488;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #334155;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}


/* Navbar */

.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.navbar-brand {
    pointer-events: auto;
    position: fixed;
    left: 14px;
    top: 20px;
    height: 80px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    background: white;
    box-shadow: 3px 10px 60px rgba(0, 120, 110, 0.25), inset 1px 3px 10px rgba(0, 0, 0, 0.158);
    border: 1px solid rgba(177, 176, 176, 0.568);
}

/* Desktop Nav */
.desktop-nav {
    pointer-events: auto;
    position: fixed;
    right: 14px;
    top: 20px;
    border-radius: 20px;
    padding: 0 28px;
    height: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #b9faf4);
    box-shadow: 3px 10px 60px rgba(0, 120, 110, 0.25), inset 1px 3px 10px rgba(0, 0, 0, 0.158), inset -1px -3px 10px rgb(255, 255, 255);
    border: 1px solid rgba(177, 176, 176, 0.568);
}

.navbar-nav {
    display: flex;
    gap: 35px;
    flex-direction: row;
    padding: 20px 10px;
}

.nav-link {
    color: var(--secondary-color);
    padding: 8px 16px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none !important;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    z-index: -1;
    transition: height 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    height: 100%;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    pointer-events: auto;
    position: fixed;
    right: 10px;
    top: 20px;
    height: 80px;
    width: 100px;
    border-radius: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #b9faf4);
    box-shadow: 3px 10px 60px rgba(0, 120, 110, 0.25), inset 1px 3px 10px rgba(0, 0, 0, 0.158), inset -1px -3px 10px rgb(255, 255, 255);
    border: 1px solid rgba(177, 176, 176, 0.568);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: max-content;
    height: max-content;
    background: #ffffffbd;
    backdrop-filter: blur(10px);
    border-radius: 0px 0 0 10px;
    border: 1px solid rgba(177, 176, 176, 0.568);
    z-index: 9999;
    padding: 80px 40px 36px;
    transition: right .4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}


.mobile-menu ul li {
    opacity: 0;
    transform: translateX(20px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s; 
}

.mobile-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}


.mobile-menu.active ul li:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(2) { transition-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(3) { transition-delay: 0.4s; }
.mobile-menu.active ul li:nth-child(4) { transition-delay: 0.5s; }
.mobile-menu.active ul li:nth-child(5) { transition-delay: 0.6s; }
.mobile-menu.active ul li:nth-child(6) { transition-delay: 0.7s; }


@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    
}


/* Hero Section */

.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../images/hero-banner.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    min-height: 750px;
}


/* Text Slider */

.text-slider {
    height: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0) 0%, #f59e0b 8%, #fbbf24 50%, #f59e0b 92%, rgba(245, 158, 11, 0) 100%);
    display: flex;
    align-items: center;
}

.text-slider .wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: slide 18s linear infinite;
    font-style: oblique;
}

.text-slider .wrapper p {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1f2933;
    margin: 0;
}

.text-slider .wrapper span {
    font-size: 50px;
    color: #1f2933;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-slider:hover .wrapper {
    animation-play-state: paused;
}


/* Card Slider */

.card-slider .slider {
    position: relative;
    width: 280px;
    height: 220px;
}

.card-slider .card {
    position: absolute;
    width: 240px;
    height: 220px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
    visibility: hidden;
    transition: all.4s ease;
    pointer-events: none;
    will-change: transform, opacity;
}

.card-slider .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card-slider .card.center {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 3;
    pointer-events: auto;
}

.card-slider .card.left {
    transform: translate(-100%, -50%) scale(.65);
    opacity: .7;
    visibility: visible;
    z-index: 2;
}

.card-slider .card.right {
    transform: translate(0%, -50%) scale(.65);
    opacity: .7;
    visibility: visible;
    z-index: 2;
}


/* Service Card */

.service-card-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

.service-card {
    position: relative;
    height: 300px;
    padding: 2rem;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgb(212, 211, 211);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.288);
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    transition: all 0.45s cubic-bezier(.25, .8, .25, 1);
}

.service-card-wrapper:hover .service-card {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: opacity 0.35s ease;
}

.img-hide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 5;
    pointer-events: none;
}

.img-hide img {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0;
    transform: translateY(300px) scale(0.55);
    clip-path: inset(300px 0 0 0);
    will-change: transform, opacity, clip-path;
}

.service-card-wrapper:hover .img-hide img {
    animation: come 1.6s cubic-bezier(.25, .8, .25, 1) forwards;
}

@keyframes come {

    0% {
        opacity: 1;
        transform: translateY(300px) scale(0.55);
        clip-path: inset(300px 0 0 0);
    }

    10% {
        opacity: 1;
        transform: translateY(125px) scale(0.55);
        clip-path: inset(120px 0 0 0);
    }

    40% {
        opacity: 1;
        transform: translateY(145px) scale(0.8);
        clip-path: inset(100px 0 0 0);
    }


    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.service-card-wrapper:hover .service-card h3,
.service-card-wrapper:hover .service-card p,
.service-card-wrapper:hover .service-icon {
    opacity: 0.45;
    transition: opacity 0.35s ease;
}


/* Why Chose Us */

.why-choose-section {
    position: relative;
    overflow: hidden;
}

.anime-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.anime-bg-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}


.anime {
    max-width: 400px;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 2;
}

.anime img {
    position: absolute;
    width: calc(50% - 8px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    border: 4px solid #fff;
}

.img1 {
    top: 0;
    left: 0;
    animation-name: move1 !important;
}

.img2 {
    top: 0;
    right: 0;
    animation-name: move2 !important;
}

.img3 {
    bottom: 0;
    left: 0;
    animation-name: move3 !important;
}

.img4 {
    bottom: 0;
    right: 0;
    animation-name: move4 !important;
}

@keyframes move1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(calc(100% + 16px), 0);
    }

    66% {
        transform: translate(0, calc(100% + 16px));
    }
}

@keyframes move2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(0, calc(100% + 16px));
    }

    66% {
        transform: translate(calc(-100% - 16px), 0);
    }
}

@keyframes move3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(0, calc(-100% - 16px));
    }

    66% {
        transform: translate(calc(100% + 16px), 0);
    }
}

@keyframes move4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(calc(-100% - 16px), 0);
    }

    66% {
        transform: translate(0, calc(-100% - 16px));
    }
}


.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-grid .full-width {
    grid-column: span 2;
    background: #fff;
    padding: 20px 20px 7px;
    border-bottom: 4px solid transparent;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(141, 141, 141, 0.5);
    transition: all .3s ease;
}

.feature-grid .full-width:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.288),
        inset 0 0 0 1px rgba(141, 141, 141, 0.5);
    border-bottom: 4px solid var(--primary-color);
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(141, 141, 141, 0.5);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.288),
        inset 0 0 0 1px rgba(141, 141, 141, 0.5);
    border-bottom: 4px solid var(--primary-color);
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    background: rgb(207, 231, 252);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr; /* single column */
    }

    .feature-grid .full-width {
        grid-column: span 1; /* reset span */
    }
}




/* Gallery */

.gallery {
    display: grid;
    gap: 15px;
    padding: 20px;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery:hover .gallery-item {
    opacity: 0.7;
    transform: scale(0.98);
}

.gallery .gallery-item:hover {
    opacity: 1;
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 3px 10px 20px rgba(0, 0, 0, 0.37);
}

.gallery:hover .gallery-item:not(:hover) .content {
    opacity: 0.7;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
    opacity: 1;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.content h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(45px);
    background: linear-gradient(135deg, #00ffe8, #ffa500);
    -webkit-background-clip: text;
    width: fit-content;
    background-clip: text;
    color: transparent;
    transition: transform 0.4s ease;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.action-row p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(360deg);
    transition: all 0.4s ease;
}

.gallery-item:hover .content h2 {
    transform: translateY(10px);
}

.gallery-item:hover .action-row {
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

.gallery-item:hover .btn-arrow {
    transform: rotate(0);
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 280px 280px;
        grid-template-areas:
            "img1 img2 img3"
            "img1 img4 img4";
    }

    .img1 {
        grid-area: img1;
    }

    .img2 {
        grid-area: img2;
    }

    .img3 {
        grid-area: img3;
    }

    .img4 {
        grid-area: img4;
    }
}


/* CTA */

.cta {
    position: relative;
    background: linear-gradient(165deg, #2ef5eb31, #ffffff00);
    border-top: 3px solid #2ef5eb31;
    overflow: hidden;
}

.cta-eyebrow {
    letter-spacing: 0.25em;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cta-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-title span {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-metrics {
    background: #ffffff;
    border: 1px solid rgba(11, 242, 250, 0.418);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 0 70px #2ef5eb62;
    display: grid;
    gap: 24px;
    animation: floatCTA 7s ease-in-out infinite;
}

.metric h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.metric p {
    font-size: 14px;
    color: var(--text-color);
}

@keyframes floatCTA {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

.cta-btn {
    font-size: 16px;
    padding: 15px 30px;
    overflow: hidden !important;
    background-color: transparent;
    border: 1px solid #0D9488;
    color: #0D9488;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.cta-btn::after {
    position: absolute;
    content: '';
    transform: skew(40deg);
    height: 200px;
    width: 100%;
    background-color: #0D9488;
    top: -50px;
    left: -150px;
    z-index: -1;
    transition: all 1s ease;
}

.cta-btn:hover::after {
    left: 170px;
}


/* About Page */

.about-img-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
    display: inline-block;
}

.about-img {
    position: relative;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: block;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 5px solid #EDB016;
    border-left: 5px solid #EDB016;
    border-radius: 12px 0 0 0;
    z-index: 5;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid #0D9488;
    border-right: 5px solid #0D9488;
    border-radius: 0 0 12px 0;
    z-index: 5;
}


/* Value Cards */
.value-card {
    background: #fff;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(13, 148, 137, 0.15),
        inset 0 0 0 1px rgba(141, 141, 141, 0.5);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(13, 148, 137, 0.35),
        inset 0 0 0 1px rgba(141, 141, 141, 0.5);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgb(207, 231, 252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 30px auto;
    transition: 0.3s;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}


/* Blog Page */

.blog-card {
    border: none;
    border-radius: 15px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(141, 141, 141, 0.5) !important;
    border-bottom: 4px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 20px rgba(13, 148, 137, 0.25) ,inset 0 0 0 1px rgba(141, 141, 141, 0.5) !important;
    border-bottom: 4px solid var(--primary-color);
}

.blog-card .hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.blog-card .hover:hover{
    color: var(--primary-color) !important;
}

.blog-thumb-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.07);
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.3s;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.read-more-btn i {
    transition: 0.3s;
    margin-left: 5px;
}

.read-more-btn:hover i {
    margin-left: 10px;
}


/* Contact Form */

.form-floating label,
.form-select option:first-child {
    color: #00000087 !important;
}

.form-control,
.form-select {
    padding: 15px;
    border: 1px solid #9b9b9b94;
    background-color: #f8fafc;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Animation */
.scene-card {
    background: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pulse-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #198754;
    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #198754;
    animation: pulse-ring 1.5s infinite;
    opacity: 0.6;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}


.glass-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.animation-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.delivery-truck {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 4rem;
    color: #fff;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.truck-logo {
    position: absolute;
    top: 29px;
    left: 4px;
    font-size: 7px;
    color: #002b47;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wind-lines span {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    height: 2px;
    border-radius: 2px;
    animation: wind 1s infinite linear;
}

.wind-lines span:nth-child(1) {
    width: 40px;
    top: 10px;
    left: -50px;
    animation-delay: 0s;
}

.wind-lines span:nth-child(2) {
    width: 25px;
    top: 25px;
    left: -40px;
    animation-delay: 0.2s;
}

.wind-lines span:nth-child(3) {
    width: 35px;
    top: 40px;
    left: -60px;
    animation-delay: 0.5s;
}

@keyframes wind {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(30px);
        opacity: 0;
    }
}

.road-line {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 200%;
    height: 4px;
    background-image: linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%);
    background-size: 60px 100%;
    animation: road-move 2s linear infinite;
}

@keyframes road-move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-60px);
    }
}

.cloud {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 3rem;
    animation: cloud-float 20s linear infinite;
}

.cloud-1 {
    top: 20px;
    left: -100px;
    animation-duration: 20s;
}

.cloud-2 {
    top: 60px;
    left: -120px;
    font-size: 2rem;
    animation-duration: 18s;
    animation-delay: 5s;
}

@keyframes cloud-float {
    0% {
        left: -120px;
    }

    100% {
        left: 110%;
    }
}

.scenery i {
    position: absolute;
    bottom: 88px;
    color: rgba(0, 0, 0, 0.25);
    animation: scenery-pass 8s linear infinite;
}

.tree-1 {
    font-size: 2rem;
    animation-delay: -2s !important;
}

.tree-2 {
    font-size: 2.5rem;
    animation-delay: 0s !important;
}

.city-1 {
    font-size: 4rem;
    animation-delay: .5s !important;
}

@keyframes scenery-pass {
    from {
        left: 120%;
    }

    to {
        left: -30%;
    }
}


.ro {
    perspective: 1000px;
}

.rounded-circle {
    transition: all 1s ease;
    transform-style: preserve-3d;
}

.ro:hover .rounded-circle {
    transform: rotateY(360deg);
}


/* Button */

/* MAIN BUTTON */
.hero-section .wrapper {
    perspective: 1200px;
    display: inline-block;
}


.main-btn {
    position: relative;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    background: #0D9488;
    color: #ffffff;
    cursor: pointer;
    border: none;
    transform-style: preserve-3d;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(13, 148, 137, 0.35);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    text-decoration: none;
}

.main-btn:hover {
    transform: translateY(-2px);
}

.main-btn::after {
    content: "GO";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: inherit;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    transform-origin: top center;
    transform: rotateX(-100deg);
    backface-visibility: hidden;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.35);
}

.main-btn:hover::after {
    animation: flapSwing 1.5s cubic-bezier(.25, .8, .25, 1) forwards;
}

@keyframes flapSwing {
    0% {
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(40deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}



/* All Pages Header */

.page-header {
    width: 100%;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../images/banner.avif);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    clip-path: ellipse(130% 100% at 50% 0%);
    position: relative;
    z-index: 20;
}

.page-header h1 {
    font-size: clamp(32px, 13vw, 70px);
    font-weight: 800;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-header p {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    font-size: 18px;
}


/* Footer */

footer {
    background: #110D19;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    color: white !important;
}

footer a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-title span,
.footer-bottom span,
.footer-bottom a {
    color: #EE4E2D;
    font-weight: 800;
}

.footer-underline {
    height: 3px;
    background: linear-gradient(90deg, #EE4E2D, #ff0000);
    margin: 10px 0 18px;
    border-radius: 20px;
    animation: underline-grow 2s linear infinite alternate;
}

@keyframes underline-grow {
    from {
        width: 20px;
    }

    to {
        width: 80px;
    }
}

.footer-links,
.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #a3cff7;
    padding-left: 6px;
}

.footer-contact i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 33px;
    width: 33px;
    border-radius: 50%;
    background-color: #EE4E2D;
    flex-shrink: 0;
    margin-right: 12px;
    animation: shadow 2s linear infinite alternate;
}

@keyframes shadow {
    from {
        box-shadow: none;
    }

    to {
        box-shadow: 0 0 0 6px #FCB551;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.footer-bottom a {
    border-bottom: 1px solid white;
    transition: 0.3s ease;
}

/*Map*/
.map-musical-wrapper {
    position: relative;
    padding: 10px 8px 6px;
    border-radius: 20px;
    background: rgba(255, 253, 253, 0.068);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(90, 89, 89);
}

.map-musical-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    border: none;
}



/* Share Btn */

.share {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.share-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    background: #0D9488;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 25px rgba(13, 148, 136, 0.6);
}

.share-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(13, 148, 136, 0.6);
}

.share-links {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    text-decoration: none;
    display: flex;
    gap: 12px;
    z-index: 1;
    transition: transform .4s cubic-bezier(0.25, 1.3, 0.5, 1);
}

.share-link {
    width: 45px;
    height: 45px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(0px);
    opacity: 0;
    transition: all .3s ease;
}

.share-link:hover:nth-child(1) {
    background: #1152D3;
}

.share-link:hover:nth-child(2) {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.share-link:hover:nth-child(3) {
    background: #FF0000;
}

.share-link:hover:nth-child(4) {
    background: #199430;
}

.share.open .share-links {
    transform: translate(-50%, -50%) scale(1);
}

.share.open .share-btn {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.9);
}

.share.open .share-link {
    opacity: 1;
    transform: translateX(-130px);
} 


/*.whatsapp-float {*/
/*    position: fixed;*/
/*    width: 55px;*/
/*    height: 55px;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*    background-color: #25d366;*/
/*    color: #FFF;*/
/*    border-radius: 50%;*/
/*    text-align: center;*/
/*    font-size: 28px;*/
/*    z-index: 10000;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    animation: pulse-green 2s infinite;*/
/*    transition: .4s ease;*/
/*}*/

/*.whatsapp-float:hover {*/
/*    background-color: #198754;*/
/*}*/

/*@keyframes pulse-green {*/
/*    0% {*/
/*        transform: scale(0.95);*/
/*        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);*/
/*    }*/
/*    70% {*/
/*        transform: scale(1);*/
/*        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);*/
/*    }*/
/*    100% {*/
/*        transform: scale(0.95);*/
/*        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);*/
/*    }*/
/*}*/




/* Top Btn */

.gravity-parcel {
    position: fixed;
    bottom: 100px;
    right: 15px;
    width: 60px;
    height: 60px;
    z-index: 1050;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gravity-parcel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.parcel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.parcel-body {
    width: 50px;
    height: 40px;
    background: #0D9488;
    border-radius: 0 0 4px 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(13, 148, 136, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-initial {
    color: rgb(255, 255, 255);
    font-weight: 800;
    font-size: 1.2rem;
    user-select: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.parcel-lid {
    position: absolute;
    bottom: 38px;
    width: 54px;
    height: 12px;
    background: #0cada0;
    border-radius: 4px;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.lid-tape {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100%;
    background: #ffd700;
    opacity: 0.8;
}

.glowing-arrow {
    position: absolute;
    bottom: 20px;
    color: #ffd700;
    font-size: 24px;
    z-index: 1;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}


.gravity-parcel:hover .parcel-lid {
    transform: translateY(-35px) rotate(-10deg);
    background: #0e615a;
}

.gravity-parcel:hover .glowing-arrow {
    opacity: 1;
    bottom: 45px;
    transform: scale(1.2);
}

.gravity-parcel:hover .parcel-body {
    box-shadow: 0 0 35px rgba(13, 148, 136, 0.6);
    border-color: rgba(255, 215, 0, 0.3);
}

.gravity-parcel:hover .brand-initial {
    transform: translateY(-10px);
    opacity: 0;
}



/* Service Page */

.accordion-wrapper {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 10px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    flex: 1;
    margin: 0;
    position: relative;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 43, 71, 0.438);
    transition: all 0.5s;
}

.panel:hover {
    flex: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.panel:hover::before {
    background: none;
}

.panel-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 1;
    transition: all 0.5s ease;
}

.panel h3 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.panel-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.panel:hover .panel-details {
    opacity: 1;
    transform: translateY(0);
}

.panel:hover h3 {
    transform: translateY(-10px);
    color: #FFD700;
}

.mini-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Product Cards */
.product-section {
    padding: 80px 0;
}

.section-header {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    color: #334155;
    font-weight: 800;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #0D9488;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.glass-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #69e0d6;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0D9488;
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glass-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
    position: relative;
}

.price-tag {
    position: absolute;
    top: -20px;
    right: 10px;
    background: #0D9488;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.card-title {
    font-weight: 700;
    color: #334155;
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.feature-list li {
    margin-bottom: 5px;
}

.feature-list i {
    color: #0D9488;
    margin-right: 8px;
}

.rent-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid #334155;
    background: #33415536;
    color: #334155;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rent-btn:hover {
    background: #334155;
    color: #fff;
}

@media (max-width: 768px) {
    .accordion-wrapper {
        flex-direction: column;
        height: 600px;
    }

    .panel {
        width: 100%;
    }

    .panel:hover {
        flex: 2;
    }

    .accordion-wrapper {
        margin-top: 20px;
    }
}


/* Privacy Policy */

.policy-card {
    padding: 40px;
}

.policy-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #0D9488;
    padding-left: 15px;
}

.policy-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.alert-custom {
    background-color: #f0fdfa;
    border: 1px solid #0D9488;
    color: #0f5132;
    border-radius: 12px;
    padding: 20px;
}

.alert-custom i {
    color: #0D9488;
    font-size: 1.2rem;
    margin-right: 10px;
}





/*Loader */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #ffffff 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-wrapper.show {
    opacity: 1;
    visibility: visible;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.showcase-stage {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.showcase-stage img{
    height: auto;
    width: 100px;
    position: absolute;
    top: -150px;
}

.spotlight-beam {
    position: absolute;
    top: -50px;
    width: 120px;
    height: 200px;
    background: linear-gradient(to bottom, rgba(13, 148, 136, 0.5) 0%, rgba(13, 148, 136, 0.2) 60%, rgba(13, 148, 136, 0) 100%);
    clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    animation: light-flicker 5s infinite step-end;
}

.floor-shadow {
    position: absolute;
    bottom: -30px;
    width: 100px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transform: rotateX(60deg);
    z-index: 1;
    filter: blur(6px);
    animation: shadow-breath 5s infinite step-end;
}

.showcase-carousel {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: hidden; 
}

.stage-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateX(100px) scale(0.8); 
}

.stage-item i {
    font-size: 60px;
    background: -webkit-linear-gradient(#0D9488, #0f766e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stage-item .item-label {
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}


.item-1 {
    animation: slide-show 3s linear infinite; 
    animation-delay: 0s; 
}

.item-2 { 
    animation: slide-show 3s linear infinite; 
    animation-delay: 1s; 
}

.item-3 { 
    animation: slide-show 3s linear infinite; 
    animation-delay: 2s; 
}

.loading-text {
    position: absolute;
    bottom: 30px;
    font-family: sans-serif;
    font-size: 15px;
    color: #939393;
    letter-spacing: 1px;
}

.loading-text span{
    font-size: 25px;
}

.dot-1 { animation: dots 1.5s infinite; animation-delay: 0.1s; }
.dot-2 { animation: dots 1.5s infinite; animation-delay: 0.3s; }
.dot-3 { animation: dots 1.5s infinite; animation-delay: 0.5s; }


@keyframes slide-show {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.8); 
    }
    10% {
        opacity: 1;
        transform: translateX(0) scale(1); 
    }
    30% {
        opacity: 1;
        transform: translateX(0) scale(1); 
    }
    40% {
        opacity: 0;
        transform: translateX(-80px) scale(0.8); 
    }
    100% {
        opacity: 0;
        transform: translateX(-80px) scale(0.8);
    }
}

@keyframes light-flicker {
    0%, 100% { opacity: 0.8; } 
    4% { opacity: 0.1; }       
    6% { opacity: 0.8; }       
    8% { opacity: 0.2; }       
    10% { opacity: 0.9; }      
    11% { opacity: 0.1; }      
    12% { opacity: 0.8; }      
    40% { opacity: 0.8; }      
    42% { opacity: 0.4; }      
    44% { opacity: 1; }        
    46% { opacity: 0.8; }      
    72% { opacity: 0.2; }     
    74% { opacity: 0.8; }
}

@keyframes shadow-breath {
    0%, 100% { opacity: 1;}
    4% { opacity: 0.1;  }
    6% { opacity: 1; }
    8% { opacity: 0.3; } 
    10% { opacity: 1; }
    11% { opacity: 0.1; }
    12% { opacity: 1;  }
    40% { opacity: 1; }
    42% { opacity: 0.5; }
    44% { opacity: 1; }
    46% { opacity: 1; }
    72% { opacity: 0.3; }
    74% { opacity: 1; }
}

@keyframes dots {
    0% { opacity: 0; }
    100% { opacity: 1; }
}



/*Ad Section*/

.ad-sec {
    padding: 60px 0;
}

.ad-banner a {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
    padding: 0 !important; 
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ad-banner img {
    width: 100%;
    height: 400px !important; 
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.ad-banner a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

.ad-banner a::after {
    content: 'View Offer  \f061'; 
    font-family: "Poppins", "Font Awesome 6 Free", sans-serif;
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #000000;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    
    animation: btnPulse 2s infinite;
}

.ad-banner a:hover {
    transform: translateY(-5px); 
}
.ad-banner a:hover img {
    transform: scale(1.05); 
}
.ad-banner a:hover::after {
    background-color: #EDAF1D; 
    color: white;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        transform: translateX(-50%) scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: translateX(-50%) scale(1);
    }
}

@media (max-width: 768px) {
    .ad-banner {
        margin-bottom: 30px;
    }
    .ad-banner img {
        height: 300px !important;
    }
}


