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

body {
    background-image: url("../Assest/bg.jpg");
    background-size: contain;
    color: black;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    transition: background 0.3s;
}

header.scrolled {
    /* background-color: rgba(0, 0, 0, 0.8); */
}

.menu-toggle {
    width: 15%;
    font-size: 30px;
    cursor: pointer;
    color: #eb5b25;
    z-index: 1001;
    /* right: 0px; */
}

.logo img {
    height: 100px;
}

.header-btn {
    background-color: #eb5b25;
    color: white;
    padding: 8px;
    border: none;
    position: relative;
    /* display: none; */
    /* z-index: 1000; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
}

.header-btn:hover {
    background: white;
    color: black;
}

.mobile-menu {
    position: fixed;
    text-align: center;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #111;
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mobile-menu-logo img {
    height: 120px;
}

.mobile-menu-items {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #ebd8b4;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #eb5b25;
}

.mobile-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-btn {
        font-size: 10px;
    }

    .logo img {
        height: 40px;
    }
}

/* headero closed */

.gift-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 400px;
}

.gift-hero h1 {
    font-size: 5rem;
    text-decoration: none;
    line-height: 1.2em;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    text-shadow: 4px 5px 0 rgb(0 0 0 / .3);
    color: #eb5b25;
}

.gift-hero p {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 2.5rem;
}

@media (max-width: 768px) {
    .gift-hero h1 {
        font-size: 36px;
        margin-top: 70px;
    }

    .gift-hero p {
        font-size: 30px;
        margin: 20px;
        text-align: center;
    }

}

/* gift timeline */
.timing-main-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timing-boxes {
    background-image: url('Assest/timing-bg.avif');
    background-repeat: no-repeat;
    /* width: 82%; */
    background-size: cover;
}

.info-boxes {

    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    padding: 15px 0;
    gap: 20px;
}

.box {
    background-color: #121212;
    border-radius: 10px;
    padding: 10px;
    flex: 1 1 300px;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon {
    font-size: 50px;
    color: #fbe5c4;
    width: 68px;
    text-align: center;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

.content h3 {
    margin: 0 0 5px;
    color: #ff4a00;
    font-size: 22px;
}

.content p {
    color: white;
    font-size: 12px;
}

.content span {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.arrow {
    font-size: 20px;
    color: #ff4a00;
}

@media (max-width: 768px) {
    .info-boxes {
        flex-direction: column;
        align-items: center;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .box {
        flex: 1 1 100px;
        width: 100%;
    }

    .content p {
        font-size: 12px;
    }

    .content span {
        color: white;
        font-size: 12px;
        font-weight: bold;
    }
}

/* gift timeline */


/* buy now button */

.buy-now-main {
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.buy-nutton {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px 30px;
}

.buy-nutton h1 {
    width: 600px;
    font-size: 3rem;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 8.9px;
    word-spacing: 20px;
    text-shadow: 3px 4px 2px rgb(0 0 0 / 0.3);
    color: #EB5B25;
    background-image: url('Assest/buy now.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5px 30px;
    text-align: center;
    border-radius: 8px;
    box-sizing: border-box;
}

/* ✅ Responsive styles */
@media (max-width: 992px) {
    .buy-nutton h1 {
        width: 100%;
        font-size: 2.2rem;
        padding: 20px 40px;
        letter-spacing: 4px;
        word-spacing: 15px;
    }

    .buy-nutton {
        margin: 10px 20px;
    }
}

@media (max-width: 600px) {
    .buy-nutton h1 {
        font-size: 1.5rem;
        padding: 15px 20px;
        letter-spacing: 2px;
        word-spacing: 8px;
        background-size: cover;
        width: 100%;
    }

    .buy-nutton {
        margin: 10px;
        flex-wrap: wrap;
    }
}


/* buy now button */

/* gift box form */

.gift-section-container {
    max-width: 600px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: Arial, sans-serif;
}

.gift-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.4s ease;
    transform-origin: center;
}

.gift-image-wrapper.shrink {
    transform: scale(0.95);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.gift-image-wrapper img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    display: block;
}

.gift-overlay-top,
.gift-overlay-bottom {
    position: absolute;
    color: black;
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 6px 12px;
    border-radius: 5px;
    text-align: center;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

.gift-overlay-top {
    top: 10px;
    font-size: 24px;
    font-weight: 600 !important;
}

.gift-overlay-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 38px;
    font-weight: bold !important;
    color: black;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
}

.gift-overlay-bottom {
    bottom: 15px;
}

.gift-overlay-bottom h4 {
    margin: 0 0 55px;
    font-size: 22px;
    width: 100%;
    white-space: normal;
    word-break: break-word;
}

.gift-overlay-bottom p {
    margin: 0;
    font-size: 18px;
}

.gift-form-top,
.gift-form-bottom {
    display: none;
}

.gift-form-top.active,
.gift-form-bottom.active {
    display: block;
}

.gift-form-bottom {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    border-radius: 12px;
    margin: 10px;
}

.gift-form-top {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    border-radius: 12px;
   margin: 10px;
}

.row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.row>div {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-group {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    margin: 10px 0;
}

.btn-group button {
    flex: 1;
    padding: 10px;
    background: #eee;
    border: none;
    cursor: pointer;
}

.btn-group button.active {
    background: #ccc;
}

.add-more {
    background: #f2f2f2;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.summary {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.payment-btn {
    background: #b7cfac;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    border: none;
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
    .gift-overlay-center{
        font-size: 24px;
    }
    .gift-overlay-top{
       top: 90px;
    }
    .gift-overlay-bottom h4{
        font-size: 16px;
    }
}

/* gift box form */


/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    margin-top: 50px;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Logo Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 200px;
    /* margin-bottom: 20px; */
}

.footer-description {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Rajdhani';
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background-color: #eb5b25;
    color: #ffffff;
    font-size: 24px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: #000;
    transform: translateY (-3px);
}

/* Links Sections */
.footer-section h3 {
    color: #ebd8b4;
    font-size: 24px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600;
}

/* .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff6b6b;
} */

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-family: 'Rajdhani';
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #eb5b25;
    padding-left: 5px;
}

.footer-links li:not(a) {
    color: #ffffff;
    font-size: 16px;
}

/* Contact Info */
.contact-info {
    color: #bbb;
    padding: 8px;
}

.contact-info i {
    font-size: 20px;
}


.contact-info span {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Rajdhani';
}

/* Copyright */
.copyright {
    background-color: #aa1b44;
    height: 135px;
    display: flex;
    font-family: 'Rajdhani';
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #444;
    color: white;
    padding: 10px;
    font-size: 18px;
}

.copyright a {
    color: #ff6b6b;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        padding-left: 0;
        color: #ff6b6b;
    }
}

/* FLOT ICON */

.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 12px;
    left: 16px;
    background-color: #eb5a25;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.float1 {
    position: fixed;
    bottom: 34px;
    left: 96px;
    background-color: #222222;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 1rem;
    line-height: 1.4em;
}

.my-float {
    margin-top: 16px;
}

/* footer closed */