@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    image-rendering: auto;
}

ul {
    list-style: none;
}

header {
    animation-timeline: view();
    animation-range: cover 20%;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 80px;
    background-color: #d39a31;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo img {
    height: 80px;
    width: 80px;
}

.hidden {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    gap: 10px;
}

.nav-links ul li a {
    font-size: 1rem;
    padding: 0 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.nav-links ul li a:hover {
    background: orange;
    color: #000;
}

.nav-links ul li a i {
    margin-right: 5px;
}

.menu-toggle {
    font-size: 24px;
    color: #000;
}

.menu-toggle i{
    color: #fff;
}

.heading {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    max-width: 80%;
    line-height: 1.2;
    word-spacing: 1.2;
    color: #525247;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 22px;
    line-height: 1.2;
    word-spacing: 1.2;
}

.description {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin-bottom: 44px;
}

.description i {
    margin-right: 5px;
    font-size: 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 0 60px;
}

.cta-btn {
    font-size: 16px;
    transition: all 0.3 ease;
    padding: 12px 24px;
    background-color: orange;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.cta-btn i {
    margin-right: 8px;
}

.cta-btn:hover {
    background-color: #e68900;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.delivered {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.hero-img {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    transition: all 1s linear ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

.hero-img img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.delivered-items {
    display: flex;
    margin-top: 1rem;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 3rem;
}

.delivered-imgs {
    display: flex;
}

.delivered-imgs img {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    margin-right: -1.3rem;
    border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
    margin: 0;
}

.delivered {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ad6800;
    font-family: 'Lato', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.contentleft {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 95%;
    height: 490px;
    /* height: 100%; */
    transition: all 1s linear ease;
}

.contentleft img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.brands {
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    padding: 55px;
    margin: 0 auto;
}

.brands h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    color: orange;
    padding: 10px 30px;
    display: flex;
    justify-self: center;
    align-self: center;
}

.brand-logos {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 12rem;
    justify-items: stretch;
    animation: scroll 20s linear infinite;
}

.brand-logos img {
    height: 80px;
    width: 150px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-right: 40px;
}

@keyframes scroll {
    to {
        translate: calc(-10 * 12rem);
    }
}

.contentright h1 {
    font-size: 1.3rem;
    font-family: 'Poppins', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 15px;
    font-weight: 500;
}

.contentright h1 i {
    color: orange;
    margin-right: 8px;
}

.contentright p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.about-ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #333;
    font-family: 'Poppins', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.about-ul li:hover {
    color: #e68900;
    transition: all 0.3s ease;
    padding-left: 6px;
}

.about-ul li i {
    color: orange;
    margin-right: 8px;
}

.legit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 28px;
    width: 100%;
}

.property {
    text-align: center;
    padding: 8px 24px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.property:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.property i {
    font-size: 2rem;
    color: orange;
    margin-bottom: 10px;
}

.property h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.product-grid,
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.products {
    padding: 50px 80px;
}

.products h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: orange;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.productCard {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin: 8px;
}

.overay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.button {
    display: inline-block;
    background-color: orange;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e68900;
}

.button i {
    color: #fff;
}

.productCard .product-content,
.char .char-content {
    padding: 16px;

}

.productCard:hover {
    /* transform: translateY(-5px); */
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.img-overlay {
    height: 250px;
    width: 100%;
    position: relative;
}

.productCard:hover .overay {
    opacity: 1;
}

.product-content h3,
.char-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Poppins', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: orange;
}

.product-content h3 i,
.char-content h4 i {
    margin-right: 8px;
}

.productCard img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

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

.product-content p,
.char-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 17px;
    color: #555;
}

.product-content span {
    display: inline-block;
    font-size: 1rem;
    margin-right: 12px;
    color: #777;
    font-family: 'Lato', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 10px;
    background-color: antiquewhite;
    border-radius: 5px;
}

.product-content span i {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e68900;
    margin-right: 4px;

}

.services {
    padding: 50px 80px;
}

.services h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: orange;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.sub {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #525247;
    word-spacing: 2px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(43, 42, 42, 0.3);
}

.char {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    margin: 10px;
}

.char:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.char img {
    height: 220px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    margin-bottom: 15px;
}

.char span {
    display: block;
    font-size: .875rem;
    margin-right: 12px;
    font-family: 'Poppins', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 3px;
    border-radius: 5px;
    color: #555;
    font-weight: 500;
}

.char span i {
    font-size: 1rem;
    font-weight: 600;
    color: #e68900;
    margin-right: 4px;
}

.offer h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: orange;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 10px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.offer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.promo-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 40px;
    border: 1px solid #ffa500;
    border-style: dashed;
}

.promo-grid h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 10px 30px;
    color: orange;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
}

.promo-grid h2 i {
    margin-right: 8px;
}

.promo-grid .sub {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    word-spacing: 2px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(43, 42, 42, 0.3);
}

.promo-grid p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #555;
    max-width: 90%;
    margin: 0 auto 10px auto;
    font-family: 'Poppins', sans-serif;
    padding: 10px 30px;
}

.giveaway {
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    gap: 30px;
    text-align: center;
    place-content: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.promoends h4 {
    font-size: 18px;
    color: #555;
    font-family: 'Montserrat', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 900;
    margin-bottom: 5px;
}

.format {
    border: 1px solid orange;
    padding: 16px 18px;

}

.format h4 {
    font-weight: 900;
    font-size: 20px;
}

.promoends {
    display: flex;
    place-content: center;
    flex-direction: column;
}

.promo-grid .cta-btn {
    font-size: 16px;
    transition: all 0.3 ease;
    padding: 12px 24px;
    background-color: orange;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;

}

.promo-grid .cta-btn:hover {
    background-color: #e68900;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.testimonials {
    padding: 50px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: orange;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.testimonials h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #525247;
    word-spacing: 2px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(43, 42, 42, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-family: 'Poppins', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: orange;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 17px;
    color: #555;
    font-style: italic;
}

.stars i {
    color: #f5c518;
    margin-right: 4px;
}

.footer {
    background-color: #d39a31;
    color: #1a1717;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.footer a:hover {
    color: #fff;
}

.social-link i {
    font-size: 24px;
    margin-right: 20px;
}

.footer .social-link:hover {
    color: white;
}

.footer-about img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.footer-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Lato', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #2b2929;
}

.footer-grid h3::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background-color: rgb(68, 65, 59);
    margin-top: 6px;
    border-radius: 5px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #222;
    text-decoration: none;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
    margin-bottom: 10px;
}

.footer-grid a:hover {
    transition: all 0.3s ease;
    text-decoration: underline;
}

.footer-rights {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #332e2e;
    padding: 20px 0 0 0;
    border-top: 1px solid #3a3636;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 2px;
    max-width: 1150px;
    margin: 10px auto 0 auto;
}

.to-top {
    position: fixed;
    background: orange;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: #fdf2e9;
    right: 25px;
    bottom: 85px;
    pointer-events: none;
    transition: all .3s ease;
    opacity: 0;
}

.to-top.active {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-lin {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-lin:hover {
    background-color: #128c7e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.fade-down,
.fade-up,
.fade-in,
.slideLeft,
.slideRight,
.slide-top,
.slide-bottom,
.fadeSlideScaleUp,
.fadeSlideScaleDown {
    transition: all 1.5s ease;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #25d366;

    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.slideLeft {
    animation: slideLeft 1.5s ease forwards;
    opacity: 0;
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    /* animation: fadeIn 1.5s ease forwards; */
}

/* @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1;transform: translateY(0); }
} */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.5s ease forwards;
}

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


.fadeSlideScaleUp {
    animation: fadeSlideScaleUp 1.8s ease;
}

@keyframes fadeSlideScaleUp {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

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

.fadeSlideScaleDown {
    animation: fadeSlideScaleDown 1.8s ease;
}

@keyframes fadeSlideScaleDown {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

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

.slide-bottom {
    opacity: 0;

    animation: slideBottom 1.8s ease forwards;
}

@keyframes slideBottom {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1.8s ease-in-out forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(20px);
    }
}

.reveal {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.slideRight {
    animation: slideRight 1.8s ease forwards;
    opacity: 0;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Slide-In from Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}