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

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url("../Assest/bg.jpg");
    background-size: cover;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.right-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 222px;
    height: 100%;
    background-image: url(https://mlqqvsi21e7s.i.optimole.com/w:222/h:360/q:mauto/f:best/https://challengerooms.in/wp-content/uploads/2023/10/steel-optimized.png);
    background-repeat: repeat-y;
    background-size: contain;
    z-index: 4;
    opacity: 1;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .right-overlay {
        display: none;
        /* optional: hide on small screens */
    }
}

body::before {
    /* content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20vw; */
    /* 30% of screen width on right side */
    /* height: 100vh;
    background-image: url('https://mlqqvsi21e7s.i.optimole.com/w:222/h:360/q:mauto/f:best/https://challengerooms.in/wp-content/uploads/2023/10/steel-optimized.png'); */
    /* Right-side overlay image */
    /* background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none; */
}

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;
    }
}


/* header close */

.hero-section-group {
    width: 100%;
    margin: 150px 0px 0px 0px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section-group h1 {
    font-size: 3.3rem;
    color: #493926;
    padding-bottom: 10px;
}

.hero-section-group p {
    font-size: 1.4rem;
}

.hero-section-group button {
    border: none;
    background-color: #aa1b44;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 26px;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-section-group h1 {
        font-size: 1.8rem;
    }

    .hero-section-group p {
        font-size: 20px;
        padding: 20px;
        text-align: center;
    }

    .hero-section-group button{
        padding: 10px;
        font-size: 20px;
    }
}

/* group offers */

.group-offers-section {
    padding: 20px 0;
}

.group-offers-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

/* Ribbon Styling */
.offer-ribbon {
    position: absolute;
    top: 20px;
    left: -60px;
    transform: rotate(-45deg);
    background-color: #c10044;
    color: white;
    width: 200px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
    margin: 10px;
    z-index: 3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Container Styling */
.group-offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;

}

/* Card Styling */
.group-offer-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.group-offer-link:hover {
    transform: translateY(-5px);
}

.group-offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    display: grid;
    align-items: end;
    background: #000;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.group-offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
    opacity: 0.5;

}

.group-offer-card:hover .group-offer-image {
    transform: scale(1.1);
}

.group-offer-details {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); */
}

.group-offer-card:hover .group-offer-details {
    transform: scale(0.95);
}

.group-offer-title {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #EBD8B4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.group-offer-button {
    background: #f16226;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    min-width: 160px;
}

.group-offer-button:hover {
    background: #c94914;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .group-offers-container {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .group-offers-heading {
        font-size: 2rem;
    }

    .group-offer-title {
        font-size: 1.5rem;
    }

    .group-offer-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .offer-ribbon {
        font-size: 1rem;
        width: 150px;
        left: -50px;
    }
}

@media (max-width: 600px) {
    .group-offers-container {
        grid-template-columns: 1fr;
    }

    .group-offer-card {
        height: 350px;
    }

    .group-offer-details {
        padding: 15px;
    }
}


/* group offers */
/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    z-index: 10;
    padding: 60px 0 30px;
    position: relative;
}

.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;
    position: relative;
    z-index: 9;
    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 */