@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* =========================== */
/*NavBar Section Starts*/
/* =========================== */
.navbar {
    z-index: 100;
}

header {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.loader_div {
    display: none;
}

.nav-bg img {
    margin-left: 20px;
}

.navbar-light .navbar-nav .nav-link {
    color: black;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    background: linear-gradient(132.74deg, #F56005 -0.08%, #FFA238 98.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

header .nav-item {
    margin: 0 8px;
    font-size: 15px;
    color: #000000;
}

.navbar-toggler-icon {
    display: none;
}

/* Custom hamburger button */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 80%;
    background: #333;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 0px;
}

.navbar-toggler span:nth-child(2),
.navbar-toggler span:nth-child(3) {
    top: 10px;
}

.navbar-toggler span:nth-child(4) {
    top: 20px;
}

/* Transform to X when open */
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.navbar-toggler[aria-expanded="true"] span {
    background: linear-gradient(132.74deg, #F56005 -0.08%, #FFA238 98.2%);
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff;
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
    }
}

/*Responsive NavBar Section Starts*/

@media only screen and (max-width: 1024px) {
    header .nav-item {
        margin: 0px 15px;
        font-size: 15px;
    }

    .nav-bg img {
        margin-left: 10px;
    }

    .nav-link {
        padding: 0rem 0rem !important;
    }
}

@media only screen and (max-width: 767px) {
    .nav-bg img {
        width: 118px;
        height: 30px;
    }
}

@media only screen and (max-width: 441px) {
    header .nav-logo {
        width: 70px;
        height: 25px;
    }
}

/* =========================== */
/* Products Dropdown Styles    */
/* =========================== */

/* Toggle link */
.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-arrow {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: #555;
}

.nav-dropdown.show .nav-dropdown-arrow,
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu card */
.nav-dropdown-menu {
    border: none !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13) !important;
    padding: 10px !important;
    min-width: 260px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-top: 10px !important;
    animation: dropdownFadeIn 0.2s ease forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* Section label inside dropdown */
.nav-dropdown-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #aaa;
    padding: 4px 12px 8px;
    list-style: none;
}

/* Each dropdown item */
.nav-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    text-decoration: none;
    transition: background 0.15s ease;
    color: #222 !important;
    -webkit-text-fill-color: #222 !important;
    /* override gradient fill from .nav-link */
}

.nav-dropdown-item:hover {
    background: #FFF5EE;
}

.nav-dropdown-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 6px 4px;
    list-style: none;
}

@media (max-width: 991px) {
    .nav-dropdown-menu {
        box-shadow: none !important;
        background: #f9f9f9 !important;
        border-radius: 12px !important;
        margin-top: 4px !important;
        margin-bottom: 6px !important;
        padding: 6px 4px !important;
        animation: none;
    }

    .nav-dropdown-item {
        padding: 10px 10px !important;
    }

    .nav-dropdown-text strong {
        font-size: 13.5px;
    }

}

/* =========================== */
/*NavBar Section End*/
/* =========================== */

/* =========================== */
/* Footer Section  */
/* =========================== */

.footer {
    font-family: 'Poppins', sans-serif;
    background-color: #161b25;
    height: 100%;
    padding-top: 4.4270833333vw;
    padding: 50px 20px 35px 20px;
}

.footer-list {
    padding-top: 10px;
}

.footer-item p {
    color: #ccc;
}

.footer-item {
    list-style: none;
    padding-bottom: 25px;
    color: #8e929d;
}

.footer-item a {
    text-decoration: none;
    color: #8e929d;
    font-size: 13px;
}

.footer-item a:hover {
    color: #007bff !important;
}

.ftr-address {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.footer-line {
    color: #8e929d !important;
    margin-left: 10px;
    margin-right: 10px;
    border: 0.5px solid rgb(255, 255, 255, 0.2) !important;
}

.footer-content {
    color: #8e929d;
    padding-top: 4.4270833333vw;
    padding-bottom: 4.4270833333vw;
}

.footer-content a {
    text-decoration: none;
    color: #8e929d;
    font-size: 13px;
}

.contact a {
    display: inline-block;
}

.marquee-footer {
    height: 175px;
    position: relative;
    overflow: hidden;
    padding-top: 46px;
}

.marquee-footer h3 {
    font-size: 150px;
    color: #8e929d;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 75px;
    text-align: center;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: marquee 10s linear infinite;
    -webkit-animation: marquee 10s linear infinite;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer-bottom {
    color: #8e929d;
    text-align: left;
    font-size: 13px;
    padding-top: 10px;
}

.footer-bottom a {
    text-decoration: none;
    color: #8e929d;
}

.footer-bottom a:hover {
    color: #ff8450;
}

.copyrights {
    padding-bottom: 5px;
}

.address {
    position: relative;
    color: #8e929d;
    margin-bottom: 33px;
    cursor: pointer;
}

.hover-div {
    text-align: left;
    padding-top: 26px;
}

.hover-div p {
    font-size: 13px;
}

.social-media {
    display: flex;
    justify-content: right;
}

.social-media img:hover {
    color: #fff;
    background-color: #007bff;
    border-radius: 50%;
}

.social-icon {
    width: 65% !important;
}

.all-rights {
    display: inline;
    color: #8e929d !important;
}

@media only screen and (max-width: 720px) {
    .footer-content {
        margin-top: 20px;
    }

    .line {
        display: none;
    }

    .footer-content-head {
        margin-top: 20px;
    }

    .footer-item {
        padding-bottom: 12px;
    }

    .footer-item a {
        font-size: 13px;
    }

    .footer-bottom {
        text-align: center;
        margin-left: 0;
    }

    .social-media {
        margin: 0px 10px;
    }

    .social-media {
        display: flex;
        justify-content: center;
    }

    .marquee-footer {
        height: 86px;
        padding-top: 0;
    }

    .marquee-footer h3 {
        font-size: 50px;
        -moz-animation: marquee 8s linear infinite;
        -webkit-animation: marquee 8s linear infinite;
        animation: marquee 8s linear infinite;
    }

    .address {
        margin-bottom: 10px;
    }

    .hover-div {
        padding-top: 0;
    }

    .country-icon {
        display: none;
    }

    .hover-div {
        margin-left: 0px;
    }

    .div-india {
        padding-top: 15px;
    }

    .hidden-text {
        width: 60%;
        margin-left: 25px;
    }

    .social-media {
        margin-bottom: 20px;
    }

    .hidden-text {
        opacity: 1;
        padding-top: 0;
        top: 90%;
        left: 2%;
    }

    .footer-list {
        padding-left: 0px;
    }

    .footer-content {
        padding-left: 10px;
    }

    .footer-content .col-6 {
        padding: 0 !important;
    }

    .all-rights {
        display: block;
        text-align: center;
    }

    .contact-line {
        display: none;
    }
}

@media only screen and (min-width: 481px) and (max-width: 820px) {
    .marquee-footer h3 {
        font-size: 108px;
    }

    .all-rights {
        display: block;
        text-align: center;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .contact-line {
        display: none;
    }

    .footer-item {
        padding-bottom: 15px;
    }

    .footer .col-md-3 {
        padding: 0 !important;
    }
}

@media (min-width: 540px) and (max-width: 650px) {
    .marquee-footer h3 {
        font-size: 72px;
    }
}

@media only screen and (max-width: 767px) {
    .ftr-address {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer .footer-content-head,
.footer .address h5 {
    margin-bottom: 20px;
}



@media (min-width: 720px) and (max-width: 730px) {
    .marquee-footer h3 {
        font-size: 95px;
    }
}

@media only screen and (min-width: 821px) and (max-width: 1024px) {
    .marquee-footer h3 {
        font-size: 100px;
    }

    .contact-line {
        display: none;
    }
}

@media (min-width: 1360px) {
    .footer-item h5 {
        font-size: 1.471vw;
    }

    .footer-item a {
        font-size: 1vw;
    }

    .footer-content-head {
        font-size: 1.471vw;
    }

    .footer-content a {
        font-size: 1vw;
    }

    .marquee-footer h3 {
        font-size: 6.353vw;
    }

    .address h5 {
        font-size: 1.471vw;
    }

    .address p {
        font-size: 1vw !important;
    }

    .footer-bottom {
        font-size: 1vw !important;
    }

    .footer-item {
        padding-bottom: 1.103vw;
    }

    .footer-content {
        padding-left: 0;
    }

    .footer-list {
        padding-left: 0;
    }

    .hover-div {
        margin-left: 0;
    }

    .footer-bottom {
        padding-left: 10px;
    }
}

@media only screen and (min-width: 2560px) {
    .footer-list {
        font-size: 40px;
    }
}


.footer ul li::before {
    content: none !important;
}

.copyrights {
    background-color: transparent !important;
}

.copyrights li.list-inline-item a {
    border: none !important;
    padding: 0 !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.ps-2 {
    padding-left: 0 !important;
}

.gap-2 {
    gap: 8px !important;
}

.contact-social-bar li:hover:nth-child(4) a,
.copyrights li:hover:nth-child(4) a,
.pin-color::after {
    background: transparent !important;
}

.contact-social-bar li:hover:nth-child(3) a,
.copyrights li:hover:nth-child(3) a,
.pin-color::after {
    background: transparent !important;
}

.contact-social-bar li:hover:nth-child(2) a,
.copyrights li:hover:nth-child(2) a,
.pin-color::after {
    background: transparent !important;
}

.contact-social-bar li:hover:nth-child(1) a,
.copyrights li:hover:nth-child(1) a,
.pin-color::after {
    background: transparent !important;
}

.copyrights {
    padding: 0 !important;
}

.footer a:hover {
    color: #007BFF !important;
}

@media (min-width: 540px) {
    .footer-list {
        padding-left: 0;
    }
}