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

html,
body {
    overflow-x: hidden;
}

body {
    background-image: url("assets/Assest/bg.jpg");
    background-size: contain;
    color: black;
    margin: 0;
    padding: 0;
}


/* Header Styles */
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 */
.menu-toggle {
    width: 15%;
    max-width: 60px;
    font-size: 30px;
    cursor: pointer;
    color: #eb5b25;
    z-index: 1001;
}

/* Logo */
.logo img {
    height: 100px;
}

/* Header Button */
.header-btn {
    background-color: #eb5b25;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    text-align: center;
    top: 0;
    left: -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 */
.mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

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

/* Mobile Menu Items */
.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;
}

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

    .logo img {
        height: 40px;
    }
}


/* hero video section */

.video-section {
    position: relative;
    width: 100%;
    height: 77vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    width: 80%;
    padding: 20px;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.tagline {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Fallback image if video doesn't load */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Behind video but in front of default background */
    display: none;
    /* Hidden by default */
}

/* Show fallback if video fails to load */
.video-fallback.active {
    display: block;
}

/* Loading overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    transition: opacity 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .description {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 12px;
        font-size: 0.8rem;
    }

    .content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 28px;
    }

    .description {
        font-size: 1rem;
    }
}

/* hero video section */

/* counter section */
.counter-section {
    background-image: url("../Assest/counter-bg.avif");
    background-size: cover;
    padding: 20px 20px;
    text-align: center;
}

.counters-container {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.counter-item {
    padding: 20px;
    margin: 10px;
    flex: 1;
    min-width: 150px;
}

.counter-number {
    font-size: 4.5rem;
    font-weight: bold;
    color: #ebd8b4;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 20px !important;
    color: #eb5b25;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counter-number {
        font-size: 36px;
    }

    .counter-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .counters-container {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .counter-item {
        width: 48%;
        min-width: unset;
        box-sizing: border-box;
        padding: 15px 10px;
        margin: 1%;
        text-align: center;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-label {
        font-size: 14px;
    }
}

/* counter section */

/* heading */

.challenge-pragraph {
    text-align: center;
    margin: 30px;
    font-size: 1.4rem !important;
    padding: 30px 0px;
    color: black;
}

.challenge-pragraph span {
    font-size: 2rem;
    font-weight: bold;
    color: #493926;
}

@media (max-width: 768px) {
    .challenge-pragraph {
        text-align: left;
        font-size: 1rem;
    }
}

/* heading */

/* studio slider */
.slider-container {
    position: relative;
    width: 1300px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100vh;
    min-height: 600px;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-image: url(Assest/slider-content.webp);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

.slide-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #eb5b25;
    text-align: center;
    text-transform: uppercase;
}

.slide-subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    text-transform: uppercase;
}

.slide-content h5 {
    color: white;
    font-size: 14px;
    text-align: center;
}

.divider {
    border-top: 1px dashed #f7f7f7;
    height: 0;
    margin: 10px 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.challenge-men-icon img {
    height: 50px;
}

.stat-icon {
    font-size: 1.5rem;
    color: #ff6600;
}

.stat-value {
    color: red;
    color: white;
    text-align: center;
    font-size: 3.1rem;
    font-weight: bold;
    min-width: 50px;
    display: inline-block;
}

.stat-value2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Assest/bumb.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
    color: #493926;
    text-align: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    padding-top: 20px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    text-transform: uppercase;
}

.counter-bum {
    background-image: url('Assest/bumb.svg');
    background-size: auto;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px !important;
}

.features-title {
    font-size: 1.2rem !important;
    color: #eb5b25;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.feature-icon {
    color: #ff6600;
}

.highlight {
    font-weight: bold;
    color: #ff6600;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot.active {
    background-color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .slide-content {
        left: 0%;
        padding: 20px;
        width: 90%;
        flex-direction: column;
    }

    .studio-image {
        display: none;
    }

    .slide-heading {
        font-size: 2rem;
    }

    .slide-subheading {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .features-list {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 15px;
    }

    .slide-heading {
        font-size: 1.8rem;
    }

    .stats-container {
        justify-content: center;
        gap: 50px;
    }
}

/* studio slider */

/* how to play */
.how-to-play {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.2rem !important;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.step-card {
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.step-icon img {
    height: auto;
    max-width: 100%;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.step-description {
    color: #666;
    font-size: .9rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .step-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 1.2rem;
    }
}

/* how to play */

/* video  */
/* .footer-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
} */

/* .footer-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.challenge-footer-video {
    width: 100%;
    /* Full screen on desktop */
    position: relative;
    overflow: hidden;
}

.challenge-footer-video video {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .challenge-footer-video {
        display: none;
        /* Let video height adapt naturally */
    }

}

/* video  */

/* pricing section */
.custom-pricing-section {
    background-color: #1d1d1b;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.custom-pricing-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.custom-pricing-text {
    flex: 1;
    min-width: 280px;
}

.custom-pricing-heading {
    font-size: 2.5rem;
    color: #ff5c1f;
    margin-bottom: 20px;
}

.custom-pricing-text p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.custom-pricing-text strong {
    font-weight: bold;
    color: #fff;
}

.custom-pricing-tables {
    flex: 1.5;
    min-width: 300px;
}

.custom-price-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    color: #000;
}

.custom-price-header,
.custom-price-body {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.custom-price-header span {
    background-color: #ff5c1f;
    color: #000;
    font-weight: bold;
    flex: 1;
    padding: 20px 10px;
    font-size: 1.1rem;
    border-right: 1px solid #fff;
}

.custom-price-header span:last-child {
    border-right: none;
}

.custom-price-header small {
    font-size: 0.7rem;
    display: block;
    margin-top: 5px;
}

.custom-price-body span {
    flex: 1;
    padding: 20px 10px;
    font-size: 1rem;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.custom-price-body span:last-child {
    border-right: none;
}

.custom-price-notes {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
}

.custom-price-notes li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-pricing-container {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-price-header span,
    .custom-price-body span {
        font-size: 0.95rem;
        padding: 15px 5px;
    }

    .custom-pricing-heading {
        font-size: 2rem;
    }
}


/* pricing section */

/* booking and any question */
.booking-section-wrapper {
    padding: 40px 20px;
    background-color: #1d1d1b;
}

.booking-section-tabs {
    display: flex;
    margin-left: 190px;
    position: relative;
    z-index: 10;
    gap: 10px;
}

.booking-section-tab {
    padding: 30px 24px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background-color: #ef5c24;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.booking-section-tab.active {
    background-color: white;
    color: #1d1d1b;
}

.booking-section-tab-content-wrapper {
    max-width: 1100px;
    margin: auto;
}

.booking-section-container {
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 0 0 4px 4px;
    position: relative;
    top: -1px;
}

.booking-section-container.active {
    display: block;
}

.booking-section-heading {
    font-size: 48px;
    color: #3f2d17;
    margin-bottom: 20px;
}

.booking-section-description,
.booking-section-sub-description {
    font-size: 20px !important;
    color: #111;
    margin-bottom: 20px;
}

.booking-section-players {
    margin-top: 40px;
}

.booking-section-players h3 {
    color: #ef5c24;
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-section-players label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.booking-section-player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.booking-section-player-controls button {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 50%;
    border: 2px solid #ef5c24;
    background: none;
    color: #ef5c24;
    cursor: pointer;
}

.booking-section-player-controls span {
    font-size: 24px;
}

.booking-section-package-heading {
    margin-top: 50px;
    color: #ef5c24;
    font-size: 24px;
    margin-bottom: 20px;
}

.booking-section-packages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-section-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.booking-section-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.booking-section-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.booking-section-card p {
    font-size: 18px;
    color: #ef5c24;
}

/* FAQ */
.booking-section-faq {
    margin-top: 30px;
}

.booking-section-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.booking-section-faq-question {
    background: none;
    background-color: #eb5b25;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.booking-section-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    padding: 20px;
    color: white;
}

.booking-section-faq-question.open::after {
    content: '-';
}

.booking-section-faq-answer {
    display: none;
    margin-top: 8px;
    color: #444;
    font-size: 16px;
}

.booking-section-faq-answer.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section-packages {
        flex-direction: column;
        align-items: center;
    }

    .booking-section-tabs {
        margin-left: -30px;
        flex-direction: row;
        /* ✅ Force row direction even on mobile */
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .booking-section-tab {
        width: auto;
        padding: 10px 16px;
        font-size: 16px;
    }

    .booking-section-heading {
        font-size: 20px;
        text-align: center;
    }
}

/* booking and any question */

/* custom location with map */

.custom-location-wrapper {
    width: 100%;
    padding: 50px 30px;
    color: #fff;
    text-align: center;
    position: relative;
}

.custom-location-wrapper h2 {
    font-size: 2.5rem;
    color: #eb5b25;
    margin-bottom: 40px;
    display: inline-block;
    border-bottom: 3px solid #eb5b25;
    padding-bottom: 8px;
}

.custom-location-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.custom-map-box {
    flex: 1 1 65%;
    min-width: 300px;
    border: 3px solid #ffb347;
    padding: 5px;
    height: 100%;
}

.custom-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

.custom-contact-box {
    flex: 1 1 30%;
    min-width: 280px;
    background-color: #000;
    padding: 25px;
    border: 1px solid #ffb347;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-contact-item {
    border: 1px solid #ffb347;
    padding: 15px;
    transition: all 0.3s ease;
    background-color: #000;
}

.custom-contact-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    transition: color 0.3s ease;
}

.custom-contact-item span {
    color: #ccc;
    transition: color 0.3s ease;
    display: inline-block;
}

.custom-contact-item:hover {
    background-color: #ffb347;
}

.custom-contact-item:hover strong,
.custom-contact-item:hover span {
    color: #000;
}

.custom-send-button {
    background-color: #ffb347;
    color: #000;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px #ffb347;
    transition: box-shadow 0.3s ease;
}

.custom-send-button:hover {
    box-shadow: 0 0 20px #ffb347, 0 0 30px #ffa733;
}

@media (max-width: 768px) {
    .custom-location-wrapper {
        padding: 30px 20px;
    }

    .custom-location-wrapper h2 {
        font-size: 2rem;
    }

    .custom-location-section {
        flex-direction: column;
    }

    .custom-map-box iframe {
        height: 500px;
    }
}

/* Popup styles */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-popup-form {
    background: linear-gradient(to bottom right, #fff, #fef2e0);
    color: #000;
    padding: 40px 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.6);
    position: relative;
    text-align: center;
}

.custom-popup-form h3 {
    margin-top: 0;
    font-size: 2rem;
    color: #ff6600;
}

.custom-popup-form p {
    margin-bottom: 25px;
    color: #444;
}

.custom-popup-form input,
.custom-popup-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.custom-popup-form button.send {
    background: #ffb347;
    color: #000;
    padding: 12px 25px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #ffb347;
    transition: background 0.3s ease;
}

.custom-popup-form button.send:hover {
    background: #ffa733;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    background: transparent;
    border: none;
}


/* custom location with map */

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