/* Carousel slide image as full screen */
.abril-fatface-regular {
    font-family: "Abril Fatface", serif;
}


:root {
    --aos-duration: 1000ms;
    --aos-easing: ease;
    overflow-x: hidden;
}

@media (max-width: 576px) {
    :root {
        --aos-duration: 300ms;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }
}
@media (max-width: 767.98px) {
    .navbar {
        padding-top: 0.3rem !important;
        padding-bottom: 0.3rem !important;
    }

    .navbar-brand img {
        height: 40px; /* Smaller logo for mobile */
    }

    .main.container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

.tripledot {
    color: #f7a928;
    font-size: 40px;
    word-spacing: 20;
}

h1 {
    font-family: "Abril Fatface", serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 4rem); /* responsive from 2rem to 4rem */
    line-height: 1.2;
}

h2 {
    font-family: "Abril Fatface", serif;
    font-style: normal;
    font-weight: 300;
    font-size: clamp(1.5rem, 4vw, 3rem); /* responsive from 1.5rem to 3rem */
    line-height: 1.3;
}


p {
    font-family: 'poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
}

.hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    animation: slideUp 1s ease-in-out;
}
@media (max-width: 576px) {
    .hero-slide {
        height: 65vh;
    }
}
/* Static overlay content */
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Allows background to change without affecting content */
}

.carousel-item .cros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 11, 48, 0.7),
            rgba(0, 0, 0, 0.6));
    /* layered gradient for depth */
    z-index: 1;
    transition: background 0.3s ease-in-out;
}



.hero-content-wrapper .btn {
    pointer-events: all;
    /* Re-enable clicking for buttons */
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #f7a928;
}

/* 
.main-button {
    border-radius: 50px;
    padding: 8px 40px 8px 40px;
    color: white;
} */
.main-button2 {
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.main-button2::before,
.main-button2::after {
    content: '';
    position: absolute;
    border: 2px solid #f7a928;
    width: 0%;
    height: 0%;
    transition: all 0.5s ease;
    border-radius: 50px;
    z-index: -1;
}

.main-button2::before {
    top: 0;
    left: 0;
    border-top: 2px solid #f7a928;
    border-left: 2px solid #f7a928;
}

.main-button2::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #f7a928;
    border-right: 2px solid #f7a928;
}

.main-button2:hover::before,
.main-button2:hover::after {
    width: 100%;
    height: 100%;
}

.main-button2:hover {
    color: #000;
    background-color: #f7a928;
}

/* 
.main-button:hover {
    background-color: #ec9b1a;
    color: white;
} */

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 50px;
    right: 80px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Bottom-to-top animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-triangle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20vw solid transparent;
    border-right: 20vw solid transparent;
    border-bottom: 50px solid white;
    z-index: 5;
}

.hero-triangle2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20vw solid transparent;
    border-right: 20vw solid transparent;
    border-top: 50px solid white;
    z-index: 5;
}

.hero-sq {
    /* position: absolute; */
    top: 0;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    max-width: 1250px;
    margin: auto;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-top: 55px solid hsl(37, 72%, 49%);
    z-index: 5;

}

/* ✅ Media query for small screens */
@media (max-width: 576px) {
    .hero-triangle {
        border-bottom: 30px solid white;
        /* reduce height */
    }

    .hero-sq {
        border-top: 30px solid hsl(37, 72%, 49%);
        /* reduce height */
    }

    .hero-triangle2 {
        border-top: 30px solid white;
        /* reduce height */
    }
}

.main-heading {
    color: #d79123;
    font-size: 45px;

}

.main-heading3 {
    color: #d79123;
    font-size: 30px;

}

.enquiry-form {
    max-width: 700px;
    margin: 50px auto 0;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 4px 4px rgba(0, 0, 0, 0.15);
    border: 3px solid #0000000a;
}

.enquiry-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #e39b1f;
}

.form-control {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e39b1f;
}

.btn-send {
    background-color: #e39b1f;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-send:hover {
    background-color: #cc891c;
}

.img-fluid {
    transition: transform 0.4s ease-in-out;
}

.img-fluid:hover {
    transform: scale(1.03);
}


.img-wrapper {
    max-width: 90%;
    /* Adjust to 60%, 70%, etc. based on need */
}

@media (min-width: 992px) {
    .img-wrapper {
        max-width: 90%;
    }
}

.text-warning {
    letter-spacing: 0.2em;
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 2rem;
    }
}

.hero-section {
    background: url('./assets/img/2.jpg') no-repeat center center/cover;
    min-height: 90vh;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 5, 49, 0.7);
    /* dark transparent overlay */
    z-index: 1;
}

/* Content above overlay */
.hero-section .hero-content-wrapper {
    position: relative;
    z-index: 0;
    color: white;
}

.hero-banner {
    background: url('./assets/img/2.jpg') no-repeat center center/cover;
    min-height: 100vh;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 5, 49, 0.75);
    /* Adjust transparency if needed */
    z-index: 1;
}

.hero-banner .z-2 {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.8rem;
}

.text-light {
    color: #f8f9fa !important;
}

.hero-section2 {
    position: relative;
    background: url('./assets/img/1.jpg') no-repeat center center/cover;
    min-height: 100vh;
    overflow: hidden;
}

.hero-section2 .overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 30, 128, 0.6);
    z-index: 0;
}

.hero-section2 .z-1 {
    z-index: 1;
    position: relative;
}

.carousel-item img {
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.02);
}

.decorator {
    letter-spacing: 0.5em;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 1.5rem 1.5rem;
}

.hero-section3 {
    position: relative;
    background: url('./assets/img/10.jpg') no-repeat center center/cover;
    min-height: 90vh;
    background-attachment: fixed;
    overflow: hidden;
}

/* Overlay layer */
.hero-section3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 5, 49, 0.6);
    /* Strong dark blue overlay */
    z-index: 0;
}

/* Ensure content appears above overlay */
.hero-section3 .z-1 {
    position: relative;
    z-index: 1;
}

/* Optional: responsiveness improvements */
@media (max-width: 768px) {
    .hero-section3 {
        min-height: 65vh;
        background-attachment: scroll;
        /* Improve performance on mobile */
    }
}

.content-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
    /* Richer contrast */
    border-radius: 1.5rem;
    max-width: 700px;
    margin: auto;
}

.para {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Default styling (for larger screens) */
.hero-section5 {
    background: url('./assets/img/10.jpg') no-repeat center center/cover;
    min-height: 85vh;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Overlay */
.hero-section5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 9, 41, 0.66);
    z-index: 2;
}

/* Mobile view height adjustment */
@media (max-width: 576px) {
    .hero-section5 {
        min-height: 55vh;
        /* Adjust this value as needed */
        background-attachment: scroll;
        /* Optional: to prevent background issues on mobile */
    }
}


/* Ensure content appears above overlay */


.hero-section4 {
    position: relative;
    background: url('./assets/img/14.jpg') no-repeat center center/cover;
    min-height: 100vh;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 7, 36, 0.7);
    /* Dark overlay */
    z-index: 0;
}

.hero-section4 .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-section4 h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .hero-section4 {
        min-height: 60vh;
        /* Reduce height for mobile */
        background-attachment: scroll;
        /* Avoid performance issues on mobile */
        padding: 2rem 1rem;
        /* Add padding for spacing */
    }

    .hero-section4 h1 {
        font-size: 2rem;
    }


    .hero-section4 p,
    .hero-section4 .fs-2 {
        font-size: 1rem;
    }

    .main-button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .social-icons a {
        width: 40px !important;
        height: 40px !important;
    }

    .social-icons lord-icon {
        width: 40px !important;
        height: 40px !important;
    }
}
.main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.03rem; /* Reduced letter spacing */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
    gap: 0.5rem;
}

.main-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #d79123;
    border-radius: 50px;
    z-index: -2;
    transition: all 0.3s ease;
}

.main-button::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0%;
    background-color: #b97d1b;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease;
}

.main-button:hover::before {
    width: 100%;
}

.main-button:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .main-button {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        gap: 0.4rem;
    }

    .main-button lord-icon {
        width: 26px !important;
        height: 26px !important;
    }
}


.nav-link.active {
    font-weight: 700;
    color: #d79123 !important;
}

.nav-link:hover {
    font-weight: 700;
    color: #d79123 !important;
}

.nav-link {
    font-weight: 700;
    transition: border-color 0.3s ease;

}

.main-button lord-icon {
    transition: transform 0.3s ease;
}

.main-button:hover lord-icon {
    transform: scale(1.1) rotate(10deg);
}


.main-button:hover::before {
    width: 100%;
}

.main-button:hover {
    color: #fff;
}


.hero-section4 .social-icons a {
    color: white;
    transition: color 0.3s ease;
}


.navbar-nav .nav-link:hover {
    color: #d79123;
    /* Bootstrap warning color on hover */
    transition: color 0.3s;
}

.btn-warning {
    background-color: #d79123;
    border: none;
    color: white;
    transition: background-color 0.3s ease;
    padding: 8px 40px;
}

.btn-warning:hover {
    background-color: #e0ac00;
    color: white;

}


.slider img {
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
}


.para {
    max-width: 900px;
    text-align: justify;
    line-height: 1.3;
    font-size: 1.1rem;
}

.counter-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 15px;
    border: 2px solid #333;
    max-width: 220px;
}

.counter-number {
    font-size: 42px;
    color: #d79123;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.counting-text {
    font-size: 38px;
    font-weight: 700;
    color: #d79123;
    text-align: center;
    margin-top: 30px;
}

.order-box {
    background: url('./assets/img/15.jpg') no-repeat center center/cover;
    padding: 20px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 40px auto;
    max-width: 1100px;

}

.order-box img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}


.order-box .platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
}

.order-box .platforms span {
    font-size: 28px;
    font-weight: 700;
    color: #d79123;
}



.test .card .card-body {
    padding: 1rem 1rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem
}



.profile {
    margin-top: 26px;
    margin-left: 33px;
}

.profile-pic {
    width: 68px;
}

.cust-name {
    font-size: 18px;
}

.cust-profession {
    font-size: 10px;
}



.items {
    width: 90%;
    margin: 0px auto;
    margin-top: 100px
}

.slick-slide {
    margin: 10px
}




.test .card {
    border: 2px solid #000000;
    border-radius: 12px;
}


.form-control {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e39b1f;
}

.btn-send {
    background-color: #e39b1f;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-send:hover {
    background-color: #cc891c;
}

iframe {
    border: 0;
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .form-map {
        flex-direction: column;
    }
}