@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    /* Y-axis par overflow ko disable karne ke liye */
    background-color: white;
    color:#000407;
}

/* HEADER */
a {
    text-decoration: none;
}
a:hover {
    color: #0056b3;
    text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* STICKY HEADER FIX */
.unostar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    z-index: 999;
    background: transparent; /* Survatila transparent rahil */
    transition: all 0.3s ease; /* Smooth animation sathi */
}

/* Jevha page scroll hoil tevha JS mule hi class lagel */
.unostar-header.scrolled {
    background: rgba(0, 0, 0, 0.7); /* Black color with 70% opacity */
    backdrop-filter: blur(10px);     /* Black blur / frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support sathi */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


.logo-box {

     height: 96px;
    background: white;
    padding-left: 20px;
    padding-right: 77px;

    display: flex;

    align-items: center;


    clip-path: polygon(0 0,
            100% 0,
            82% 100%,
            0 100%);


}



.logo-box img {

    height: 82px;

}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* =========================
HEADER MENU
========================= */

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav>ul {
    display: flex;
    align-items: center;
    gap: 0px;
}

.header-nav li {
    position: relative;
}

.header-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    letter-spacing: 0.3px;
    padding: 9px 8px;
    text-decoration: none;
    /* text-transform: uppercase; */
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    transition: .3s;
}

/* Hover & Active Same Style */

.header-nav li:hover>a,
.header-nav li>a.active,
.header-nav li.active>a {
    color:rgb(216 234 112);
    /* background: rgba(255, 255, 255, 0.906); */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* =========================
FIRST DROPDOWN
========================= */

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 110%;
        width: 320px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    opacity: 0;
    display: block !important;
    border-top: 4px solid #7ab52b !important;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s;
    z-index: 999;
}

.dropdown-menu1 {
    position: absolute;
    left: 0;
    top: 110%;
    width: 230px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    opacity: 0;
    border-top: 4px solid #7ab52b;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s;
    z-index: 999;
}

.dropdown-menu li:hover>a,
.dropdown-menu1 li:hover>a,
.submenu li:hover>a {
    background-color: #7ab52b;
    color: #fff;
    text-decoration: none !important;
}

.dropdown:hover>.dropdown-menu,
.dropdown:hover>.dropdown-menu1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li,
.dropdown-menu1 li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child,
.dropdown-menu1 li:last-child {
    border: none;
}

.dropdown-menu a,
.dropdown-menu1 a {
    padding: 8px 18px;
    text-transform: capitalize;

    color: #444444;
}

/* =========================
SECOND LEVEL
========================= */

.dropdown-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    border-top: 4px solid #384180;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: .35s;
}

.dropdown-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =========================
MOBILE
========================= */

@media(max-width:991px) {

    .header-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: #fff;
        overflow-y: auto;
        transition: .4s;
        z-index: 9999;
        box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    }

    .header-nav {
        display: block;
        flex: none;
    }

    .header-nav.active {
        left: 0;
    }

    .header-nav>ul {
        display: block;
    }

    .header-nav li {
        border-bottom: 1px solid #eee;
    }

    .header-nav a {
        padding: 16px 20px;
        color: rgb(65, 63, 63);
    }


}

@media(max-width:991px) {

    .dropdown-menu,
    .dropdown-menu1,
    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-radius: 0;
        background: #f8f8f8;
    }


    /* IMPORTANT FIX */

    .dropdown.show>.dropdown-menu,
    .dropdown.show>.dropdown-menu1 {
        display: block;
    }


    .dropdown-submenu.show>.submenu {
        display: block;
        border-bottom: 4px solid #384180;
    }



    .dropdown-menu a,
    .dropdown-menu1 a {
        padding-left: 35px;
    }


    .submenu a {
        padding-left: 55px;
    }


    .dropdown>a i,
    .dropdown-submenu>a i {
        transition: .3s;
    }



    .dropdown.show>a i,
    .dropdown-submenu.show>a i {
        transform: rotate(180deg);
    }

}

.header-right {

    margin-right: 30px;

}



.download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 11px 11px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    gap: 9px;
    text-decoration: none;
    background: #2b3990;
    /* Logo Deep Blue */
    border-radius: 4px 50px 50px 4px;
    /* Asymmetric rounded shape like reference */
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(43, 57, 144, 0.25);
    transition: all 0.4s ease;
}



/* Background sliding fill for hover animation */
.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8cc63f, #7ab52b);
    /* Logo Lime Green Gradient */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

/* Hover Actions */
.download-btn:hover {
    box-shadow: 0 6px 20px rgba(140, 198, 63, 0.4);
    transform: translateY(-2px);
}

.download-btn:hover::before {
    transform: translateX(100%);
}

/* Bounce/Drop down animation on the download icon when hovered */
.download-btn:hover i {
    transform: translateY(4px);
}

/* Active click effect */
.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(140, 198, 63, 0.3);
}

@media(max-width:991px) {

    .download-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        font-size: 18px;
        top: 21px;
    }

    .download-btn i {
        margin: 0;
    }

    .download-btn {
        font-size: 0;
        /* Download text hide */
    }

    .download-btn i {
        font-size: 18px;
        /* Icon visible */
        margin-left: 19px;


    }

}

.menu-icon {

    display: none;

    font-size: 25px;

}

.hero-btn {
    display: inline-block;
    background: #7ab52b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.hero-btn:hover {
    background: #659a22;
}


.main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    /* White text for clear contrast on blue */
    text-decoration: none;
    background: #2b3990;
    /* Default solid deep blue matching the logo */
    border: 2px solid #2b3990;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    z-index: 1;

    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 57, 144, 0.2);
    white-space: nowrap;
}

/* Background fill sliding up from bottom to green on hover */
.main-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8cc63f, #7ab52b);
    /* Logo lime green gradient */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

/* Hover Actions */
.main-btn:hover {
    color: #ffffff;
    border-color: #8cc63f;
    box-shadow: 0 6px 20px rgba(140, 198, 63, 0.4);
}

.main-btn:hover::before {
    transform: translateY(-100%);
}

/* Active click effect */
.main-btn:active {
    transform: scale(0.98);
}

.main-btn i {
    display: inline-block;
    transition: transform 0.4s ease;
    transform-origin: center;
}

.main-btn:hover i {
    transform: scaleX(1.6);
}

@keyframes leftAnim {


    from {

        opacity: 0;

        transform: translateX(-80px);

    }


    to {

        opacity: 1;

        transform: translateX(0);

    }


}




.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    /* White text for clear contrast on blue */
    text-decoration: none;

    background: #8cc63f;
    /* Default solid deep blue matching the logo */
    border: 2px solid #8cc63f;
    /* border-radius: 4px 50px 50px 4px;  */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    z-index: 1;

    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 57, 144, 0.2);
    white-space: nowrap;
}

/* Background fill sliding up from bottom to green on hover */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2b3990, #2b3990);
    /* Logo lime green gradient */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

/* Hover Actions */
.hero-btn:hover {
    color: #ffffff;
    border-color: #2b3990;
    box-shadow: 0 6px 20px rgba(63, 137, 198, 0.4);
}

.hero-btn:hover::before {
    transform: translateY(-100%);
}

/* Active click effect */
.hero-btn:active {
    transform: scale(0.98);
}


@keyframes leftAnim {


    from {

        opacity: 0;

        transform: translateX(-80px);

    }


    to {

        opacity: 1;

        transform: translateX(0);

    }


}


/* =========================
   HERO SLIDER STYLES
========================= */


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Smooth Fade & Normal Scale Effect */
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 25px;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content p {
    margin: 0 auto;
    /* max-width: 850px; */
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
}

/* Dark overlay for better text visibility */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content span {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-content h1 {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* HERO BUTTON STYLING */
.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: #8cc63f;
    border: 2px solid #8cc63f;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 57, 144, 0.2);
    white-space: nowrap;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b3990;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.hero-btn:hover {
    color: #ffffff;
    border-color: #2b3990;
}

.hero-btn:hover::before {
    transform: translateY(-100%);
}

/* ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;

    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: #8cc63f;
}

.prev-arrow {
    left: 30px;
    border-radius: 10px 0px 0px 10px;
}

.next-arrow {
    right: 30px;
    border-radius: 0px 10px 10px 0px;
}

/* WAVE CURVE OVERLAY */
.slider-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.slider-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}




/* MOBILE */


@media(max-width:991px) {


    .hero-btn {
        padding: 6px 16px;
    }

    .slider-arrow {
        position: absolute;
        top: 83%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        transition: background 0.3s;
    }

    .logo-box {

        height: 75px;

        padding-right: 50px;

    }



    .logo-box img {

        height: 50px;

    }






    /* 
.download-btn{

display:none;

} */




    .hero-slider {

        height: 330px;

    }



    .hero-content {


        max-width: 85%;

    }

    .hero-content span {
        display: none;
    }

    .hero-content h1 {

        margin: 0px auto;
        font-size: 18px;


    }



    .hero-content p {

        font-size: 13px;
        margin-bottom: 6px;
    }



    .dots {
        bottom: 20px;
        left: 103px;
        gap: 3px;
    }

    .dot {
        height: 15px;
        /* Stars ke liye size thoda adjust kiya hai */
        width: 15px;
    }


}

/* Desktop */
.menu-icon {
    display: none;
    cursor: pointer;
}



/* Mobile View */
@media(max-width:991px) {

    .menu-icon {
        display: block;
        font-size: 28px;
        color: #fff;
    }



}

/* about css */

/* CSS Code */
.logistic-section {
    padding: 80px 20px;
    overflow: hidden;
    background-color: #ffffff;
}

.logistic-section .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logistic-section .image-box {
    flex: 1;
    max-width: 30%;
    position: relative;
}

.logistic-section .image-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.logistic-section .truck-img img {
    border-top-right-radius: 0;
}

.logistic-section .ship-img img {
    border-top-left-radius: 0;
}

/* Delivery Card */
.logistic-section .delivery-info {
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 16px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    z-index: 2;
}

.logistic-section .delivery-icon {
       width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #8cc63f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}


.logistic-section .delivery-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.logistic-section .delivery-info p {
    margin: 4px 0 0;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

/* Tablet */
@media (max-width:991px) {

    .logistic-section .image-box {
        max-width: 48%;
        margin-bottom: 70px;
    }

    .logistic-section .image-box img {
        height: 380px;
    }

    .logistic-section .delivery-info h4 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width:767px) {

    .logistic-section .image-box {
        max-width: 100%;
        margin-bottom: 70px;
    }

    /* .logistic-section .image-box img{
        height:320px;
    } */

    .logistic-section .delivery-info {
        width: 90%;
        padding: 15px;
        gap: 12px;
    }

    .logistic-section .delivery-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .logistic-section .delivery-info h4 {
        font-size: 17px;
    }
}

.logistic-section .corner-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #ff6723;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.logistic-section .content-box {
    flex: 1;
    max-width: 35%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.logistic-section .overview-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    width: 100%;
    margin-bottom: 8px;
    white-space: nowrap;
    color: #809205;
        font-size: 16px;

    font-weight: 500;
    line-height: 1.7;
    border: none;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Left & Right Decorative Lines */
.logistic-section .tag-line {
    width: 35px;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            #b3c636);
}

.logistic-section .tag-line:last-child {
    background: linear-gradient(90deg,
            #b3c636,
            transparent);
}

/* Arrows */
.logistic-section .arrow-left,
.logistic-section .arrow-right {
    width: 0;
    height: 0;
    display: inline-block;
}

.logistic-section .arrow-left {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 6px solid #2b3990;
}

.logistic-section .arrow-right {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #2b3990;
}

/* Heading Text */
.logistic-section .tag-text {
    padding: 7px 9px;
}

.logistic-section .content-box h2 {
    font-size: 24px;
    color: #36427e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.logistic-section .content-box h2 span {
    color: #ff6723;
}

.logistic-section .content-box p {
    font-size: 16px;
    /* color: #555; */
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 30px;
}

.logistic-section .all-projects-btn {
    background-color: #00212b;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.logistic-section .all-projects-btn:hover {
    background-color: #333;
}

/* Animations */
.logistic-section .animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.logistic-section .animate-on-scroll.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none !important;
}

.logistic-section .fade-in-up {
    transform: translateY(50px);
}

.logistic-section .slide-in-left {
    transform: translateX(-100px);
}

.logistic-section .slide-in-right {
    transform: translateX(100px);
}

/* Responsive Mobile View */
@media (max-width: 991px) {
    .logistic-section .container {
        flex-direction: column;
    }

    .logistic-section .image-box {
        max-width: 90%;
        margin-bottom: 20px;
        border-radius: 20px !important;
        height: 300px;
    }

    .logistic-section .content-box {
        max-width: 100%;
        order: -1;
        margin-bottom: 30px;
    }

    .logistic-section .content-box h2 {
        font-size: 28px;
    }
}

.industry-section {

    position: relative;
    padding: 45px 0;
    overflow: hidden;

}



.industry-video {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;

}



.industry-overlay {

    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .55));

    z-index: -1;

}




.industry-heading {

    text-align: center;
    color: #fff;
    margin-bottom: 48px;

}


.industry-heading span {

    color: #8cc63f;
    font-size: 18px;
    font-weight: 600;

}


.industry-heading h2 {
    font-size: 26px;
    max-width: 950px;
    margin: 15px auto;
    font-weight: 500;
}





.industry-wrapper {

    display: grid;
    margin: 15px;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;

}




.industry-card {

    height: 185px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    color: #fff;
    transition: .5s;
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #8cc63f;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: .5s;
}
.industry-card:hover {
    transform: translateY(-15px);
    border-color: #8cc63f;
    box-shadow: 0 20px 50px rgba(140, 198, 63, .3);
}
.industry-card:hover::before {

    opacity: .5;

}



.icon-box {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8cc63f, #5fa82b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(140, 198, 63, .35);
    animation: iconFloat 3s ease-in-out infinite;
}



/* Outer Glow Circle */

.icon-box::before {

    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    border: 2px solid rgba(140, 198, 63, .5);

    animation:
        iconPulse 2s infinite;

}



/* Rotating Ring */

.icon-box::after {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 2px dashed rgba(140, 198, 63, .7);

    animation:
        iconRotate 8s linear infinite;

}



/* Floating Animation */

@keyframes iconFloat {

    0%, 100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}



/* Pulse Animation */

@keyframes iconPulse {

    0% {

        transform: scale(1);

        opacity: 1;

    }

    100% {

        transform: scale(1.6);

        opacity: 0;

    }

}



/* Rotate Border */

@keyframes iconRotate {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

.industry-card h3 {

    font-size: 20px;
    margin-bottom: 10px;

}



.industry-card p {

    font-size: 15px;
    color: #ddd;

}

@media(max-width:1100px) {

    .industry-wrapper {

        grid-template-columns: repeat(3, 1fr);

    }

}



@media(max-width:768px) {

    .industry-section {

        padding: 70px 15px;

    }


    .industry-heading h2 {

        font-size: 28px;

    }


    .industry-wrapper {

        grid-template-columns: 1fr 1fr;

    }



    .industry-card {

        height: 240px;

    }

}



@media(max-width:480px) {

    .industry-wrapper {

        grid-template-columns: 1fr;

    }

}

/* Initial State */

.industry-card {

    opacity: 0;
    transform: translateY(60px);
    transition: all .8s cubic-bezier(.22, 1, .36, 1);

}


/* Active Animation */

.industry-section.show .industry-card {

    opacity: 1;
    transform: translateY(0);

}


/* Stagger Effect */

.industry-section.show .industry-card:nth-child(1) {
    transition-delay: .1s;
}

.industry-section.show .industry-card:nth-child(2) {
    transition-delay: .2s;
}

.industry-section.show .industry-card:nth-child(3) {
    transition-delay: .3s;
}

.industry-section.show .industry-card:nth-child(4) {
    transition-delay: .4s;
}

.industry-section.show .industry-card:nth-child(5) {
    transition-delay: .5s;
}

/* =========================================================
   UNOSTAR FOOTER
========================================================= */

.unostar-footer {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #111a35;

    color: #ffffff;

    padding-top: 95px;

    margin-top: 10px;

}


/* =========================================================
   PARALLAX BACKGROUND
========================================================= */

.footer-parallax-bg {

    position: absolute;

    top: -100px;
    left: 0;

    width: 100%;

    height: calc(100% + 200px);

    background-image:
        url("imgs/footer.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    transform: scale(1.05);

    z-index: 0;

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.footer-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(8, 16, 38, 0.96) 0%,
            rgba(17, 26, 53, 0.90) 50%,
            rgba(8, 16, 38, 0.96) 100%);

}


/* Green atmospheric glow */

.footer-overlay::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: 100px;

    border-radius: 50%;

    background: rgba(122, 181, 43, 0.09);

    filter: blur(80px);

}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.unostar-footer::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    bottom: 80px;

    border: 1px solid rgba(122, 181, 43, .18);

    border-radius: 50%;

    z-index: 1;

}


.unostar-footer::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    left: -60px;
    bottom: 180px;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    z-index: 1;

}


/* =========================================================
   CREATIVE TOP SHAPE
========================================================= */

.footer-top-shape {

    position: absolute;

    top: -1px;
    left: 0;

    width: 100%;

    height: 80px;

    background: #ffffff;

    z-index: 5;

    clip-path: polygon(0 0,
            100% 0,
            100% 48%,
            94% 60%,
            88% 42%,
            82% 62%,
            76% 43%,
            70% 64%,
            64% 42%,
            58% 63%,
            52% 43%,
            46% 63%,
            40% 42%,
            34% 62%,
            28% 43%,
            22% 62%,
            16% 42%,
            10% 60%,
            5% 45%,
            0 55%);

}


/* Green line below white shape */

.footer-top-shape::after {

    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    height: 22px;

    background: #7ab52b;

    clip-path: polygon(0 45%,
            8% 75%,
            16% 45%,
            24% 75%,
            32% 45%,
            40% 75%,
            48% 45%,
            56% 75%,
            64% 45%,
            72% 75%,
            80% 45%,
            88% 75%,
            96% 45%,
            100% 65%,
            100% 100%,
            0 100%);

}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.footer-container {

    position: relative;

    z-index: 4;

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.35fr .70fr 1.20fr 1.20fr;

    gap: 43px;

}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-col {

    min-width: 0;

}


/* =========================================================
   HEADING
========================================================= */

.footer-heading {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 27px;

}


.footer-heading h3 {

    margin: 0;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 600;

    color: #ffffff;

}


.heading-line {

    position: relative;

    display: block;

    width: 10px;

    height: 4px;

    background: #7ab52b;

    border-radius: 20px;

}


.heading-line::after {

    content: "";

    position: absolute;

    right: -12px;

    top: 0;

    width: 7px;

    height: 4px;

    border-radius: 20px;

    background: #7ab52b;

}


/* =========================================================
   CONTACT LIST
========================================================= */

.contact-list {

    padding: 0;

    margin: 0;

    list-style: none;

}


.contact-list li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;

}


.icon-box1 {

    flex: 0 0 43px;

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: #7ab52b;

    background: rgba(122, 181, 43, .10);

    border: 1px solid rgba(122, 181, 43, .35);

    transition: all .35s ease;

}


.contact-list li:hover .icon-box1 {

    color: #ffffff;

    background: #7ab52b;

    border-color: #7ab52b;

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(122, 181, 43, .25);

}


.contact-content {

    padding-top: 1px;

}


.contact-content small {

    display: block;

    margin-bottom: 3px;

    color: #7ab52b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

}


.contact-content a {

    color: #d7deea;

    text-decoration: none;

    font-size: 14px;

    transition: .3s;

}


.contact-content a:hover {

    color: #7ab52b;

}


.contact-content p {

    margin: 0;

    color: #d7deea;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   MAP CARD
========================================================= */

.footer-map-card {

    position: relative;

    width: 100%;

    margin-top: 25px;

    padding: 6px;

    overflow: hidden;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .30);

}


.footer-map-card iframe {

    display: block;

    width: 100%;

    height: 155px;

    border: 0;

    border-radius: 11px;

    filter: grayscale(15%);

}


/* Map label */

.map-label {

    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    color: #ffffff;

    background: #7ab52b;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .25);

}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {

    list-style: none;

    margin: 0;

    padding: 0;

}


.footer-links li {

    margin-bottom: 8px;

}


.footer-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: #cbd5e1;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.5;

    transition: all .3s ease;

}


.footer-links a i {

    margin-right: 9px;

    color: #7ab52b;

    font-size: 11px;

    transition: .3s;

}


.footer-links a:hover {

    color: #7ab52b;

    transform: translateX(6px);

}


.footer-links a:hover i {

    transform: translateX(3px);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    position: relative;

    z-index: 5;

    margin-top: 6px;

    border-top: 1px solid rgba(255, 255, 255, .10);

    background: rgba(4, 10, 24, .70);

    backdrop-filter: blur(8px);

}


.footer-bottom-inner {

    width: 90%;

    max-width: 1400px;

    min-height: 42px;

    margin: auto;

    display: flex;

    align-items: center;

}


.footer-bottom p {

    margin: 0;

    color: #94a3b8;

    font-size: 13px;

}





.footer-bottom a {

    color: #728093;

    font-weight: 600;

    text-decoration: underline;

    transition: .3s;

}


.footer-bottom a:hover {

    color: #728093;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 45px;

    }


    .reach-us-col {

        grid-column: span 2;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .unostar-footer {

        padding-top: 75px;

        margin-top: 50px;

    }


    .footer-parallax-bg {

        background-attachment: scroll;

    }


    .footer-top-shape {

        height: 65px;

    }


    .footer-container {

        width: 88%;

        grid-template-columns: 1fr;

        gap: 38px;

    }


    .reach-us-col {

        grid-column: span 1;

    }


    .footer-heading {

        margin-bottom: 21px;

    }


    .footer-heading h3 {

        font-size: 19px;

    }


    .footer-map-card iframe {

        height: 180px;

    }


    .footer-bottom {

        margin-top: 45px;

    }


    .footer-bottom-inner {

        width: 88%;

        padding: 18px 0;

        min-height: auto;

        flex-direction: column;

        text-align: center;

        gap: 8px;

    }


    .footer-bottom p {

        font-size: 12px;

        line-height: 1.6;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-container {

        width: 90%;

    }


    .footer-heading h3 {

        font-size: 18px;

    }


    .contact-content a,
    .contact-content p,
    .footer-links a {

        font-size: 13px;

    }


    .icon-box1 {

        flex-basis: 40px;

        width: 40px;

        height: 40px;

    }


    .footer-map-card iframe {

        height: 160px;

    }


    .footer-top-shape {

        height: 58px;

    }

}

/* Testimonial Section Layout */
.testimonial-section {
    padding: 40px 20px;
    background-color: #fff;
    /* Match tone with image background */
    overflow: hidden;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


/* Right Slider Wrapper */
.testimonial-slider-wrapper {
    flex: 1.2;
    position: relative;
    max-width: 600px;
    width: 100%;
}

.testimonial-slides-container {
    position: relative;
    min-height: 280px;
}

/* Testimonial Card Styling */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #eee;
    padding: 40px 30px 60px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content h3 {
    font-size: 22px;
    color: #384180;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-content .designation {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: #7ab52b;
    margin: 15px auto;
    position: relative;
}

.divider-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #245086;
    border-radius: 50%;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-content p {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
}

/* Client Avatar Badge (Niche Center mein gol bubble) */
.client-avatar-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background-color: #384180;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
    border: 4px solid #f4efe6;
}

/* Star Navigation Bar */
.star-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: -10px;
}

.star-btn {
    background: #e2e8f0;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    gap: 3px;
    color: #94a3b8;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.star-btn i {
    pointer-events: none;
}

.star-btn:hover {
    background: #cbd5e1;
}

.star-btn.active {
    background: #7ab52b;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(255, 87, 34, 0.35);
}

/* Responsive Mobile View */
@media (max-width: 991px) {
    .testimonial-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .testimonial-title-box h2 {
        font-size: 32px;
    }

    .testimonial-slider-wrapper {
        max-width: 100%;
    }
}

/* White Creative Client Section */
.white-client-section {
    padding: 40px 0;
    background: #eee;
    overflow: hidden;
    position: relative;
}

.white-client-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.white-section-title {
    text-align: center;
    margin-bottom: -2px;
}

.white-section-title .white-badge-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(11, 60, 93, 0.1));
    color: #7cb342;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(124, 179, 66, 0.2);
}

.white-section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
}

/* Marquee Wrapper & Gradient Fades for White Background */
.white-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.white-marquee-wrapper::before,
.white-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.white-marquee-wrapper::before {
    left: 0;
    /* background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)); */
}

.white-marquee-wrapper::after {
    right: 0;
    /* background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)); */
}

/* Marquee Track Animation */
.white-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: whiteScroll 30s linear infinite;
}

.white-marquee-wrapper:hover .white-marquee-track {
    animation-play-state: paused;
}

/* Modern Clean White Card Design */
.white-logo-card {
    width: 200px;
    height: 100px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.white-logo-card:hover {
    background: #ffffff;
    border-color: #7cb342;
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(124, 179, 66, 0.12);
}

.white-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.white-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Keyframes */
@keyframes whiteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .white-section-title h2 {
        font-size: 28px;
    }

    .white-logo-card {
        width: 150px;
        height: 80px;
    }

    .white-marquee-track {
        animation-duration: 22s;
    }
}

/* Scrollbar ki overall width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Scrollbar ka track (background area) */
::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

/* Scrollbar ka thumb (draggable handle) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #36427e, #7ab52b);
    /* Yahan aap apna pasandida color ya gradient de sakte hain */
    border-radius: 10px;
}

/* Scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #36427e;
    /* Hover hone par color change hoga */
}

.experience-tag {
    display: inline-block;
    margin-top: 25px;
}

@media(max-width:767px) {

    .experience-tag {
        display: none;
    }

    .slider-wave {
        display: none;
    }

    .star-navigation {
        margin-top: 22px;
    }


}

.experience-tag span {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 22px;


    color: #7ab52b;

    font-size: 16px;
    font-weight: 600;


}


.experience-tag i {

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #8cc63f;

    color: #fff;

    border-radius: 50%;

    font-size: 15px;

}



@media(max-width:991px) {


    .unostar-header {

        height: 75px;
        z-index: 99999;

    }


    /* Logo */

    .logo-box {

        height: 75px;

        padding-left: 20px;

        padding-right: 40px;

    }



    .logo-box img {

        height: 50px;

    }




    /* Hamburger */

    .menu-icon {

        display: block !important;

        color: #fff;

        font-size: 28px;

        cursor: pointer;
        margin-left: 56px;
        margin-top: -14px;

    }

}
/* =========================================
   MODERN LOGISTICS BREADCRUMB
========================================= */

.page-breadcrumb {
        position: relative;
    width: 100%;
    min-height: 309px;
    background: linear-gradient(100deg, rgb(53 59 107 / 97%), rgb(43 57 144 / 50%)), url(./imgs/breadcrumb.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background overlay */

.breadcrumb-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(122, 181, 43, 0.25),
            transparent 30%
        );

    pointer-events: none;
}


/* Container */

.breadcrumb-container {
    width: 100%;
    max-width: 1200px;

    margin: auto;
    padding: 55px 25px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Content */

.breadcrumb-content {
    position: relative;
    z-index: 2;
}


/* Small label */

.breadcrumb-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 12px;

    opacity: 0.9;
}

.breadcrumb-small i {
    color: #7ab52b;
    font-size: 12px;
}


/* Main Page Title */

.breadcrumb-content h1 {
        margin: 63px 5px 20px;
    color: #ffffff;
    /* font-family: "Manrope", sans-serif; */
    font-size: 27px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
}


/* Breadcrumb Navigation */

.breadcrumb-nav {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 14px;
}


/* Home */

.breadcrumb-nav a {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}

.breadcrumb-nav a i {
    color: #7ab52b;
}

.breadcrumb-nav a:hover {
    color: #7ab52b;
}


/* Arrow */

.breadcrumb-arrow {
    color: rgba(255,255,255,0.5);

    font-size: 12px;
}


/* Current Page */

.current-page {
    color: #c8d1ff;

    font-weight: 500;
}


/* =========================================
   DECORATIVE LOGISTICS ELEMENT
========================================= */

.breadcrumb-decoration {
    position: absolute;

    right: 30px;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 8px;

    opacity: 0.8;
}


/* Decorative lines */

.breadcrumb-decoration span {
    display: block;

    height: 3px;

    border-radius: 10px;

    background: #7ab52b;
}


/* Different sizes */

.breadcrumb-decoration span:nth-child(1) {
    width: 70px;
}

.breadcrumb-decoration span:nth-child(2) {
    width: 35px;
}

.breadcrumb-decoration span:nth-child(3) {
    width: 12px;

    border-radius: 50%;
}


/* =========================================
   ANIMATION
========================================= */

.breadcrumb-content {
    animation: breadcrumbFade 0.8s ease forwards;
}

@keyframes breadcrumbFade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   DECORATIVE ANIMATION
========================================= */

.breadcrumb-decoration span {
    animation: breadcrumbLine 2s ease-in-out infinite;
}

.breadcrumb-decoration span:nth-child(2) {
    animation-delay: 0.2s;
}

.breadcrumb-decoration span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes breadcrumbLine {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.6;
    }

    50% {
        transform: scaleX(1.25);
        opacity: 1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .page-breadcrumb {
        min-height: 210px;
    }

    .breadcrumb-container {
        padding: 45px 20px;
    }

    .breadcrumb-content h1 {
        font-size: 32px;
    }

    .breadcrumb-small {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .breadcrumb-nav {
        font-size: 12px;
        gap: 8px;
    }

    .breadcrumb-decoration {
        right: 20px;
        bottom: 25px;
    }

}


@media (max-width: 480px) {

    .page-breadcrumb {
        min-height: 190px;
    }

    .breadcrumb-container {
        padding: 40px 18px;
    }

    .breadcrumb-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .breadcrumb-small {
        font-size: 9px;
    }

    .breadcrumb-nav {
        font-size: 11px;
    }

    .breadcrumb-decoration {
        display: none;
    }

}
/* =========================================
   MOBILE VIEW FIX
========================================= */

@media (max-width: 767px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin: 0 auto !important;
    }

    /* Main sections */
    section {
        width: 100%;
        max-width: 100%;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Hero / banner */
    .hero,
    .hero-section,
    .banner,
    .page-banner {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Main content */
    .why-unostar-container,
    .mhe-circle-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Grid */
    .why-unostar-grid {
        width: 100%;
        grid-template-columns: 1fr !important;
    }

    /* Items */
    .why-item {
        width: 100%;
        box-sizing: border-box;
        border-right: 0 !important;
    }

    /* Headings */
    .why-unostar-heading {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .why-unostar-heading h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    /* Paragraph */
    .why-item p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.6;
    }

}