/* ===================== Variables ===================== */
:root {
    --bg1-color: #013365;
    /* Dark Blue (main text / nav) */
    --bg3-color: #ffffff;
    /* Section background */
    --button-color: #e9292f;
    /* Bright Red (highlights / buttons) */
    --text-color: #000000;
    /* Primary text for sections */
    --sub-text: #000000;
}





/* ===================== Header ===================== */
.header {
    width: 100%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#header {
    top: 0;
    width: 90%;
    margin: auto;
    z-index: 1000;
    position: relative;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

#header .logo {
    width: 12%;
    height: 100%;
    margin: -40px 0;
    /* padding-top: 15px; */
}

#header .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.header-search-mob {
    display: none !important;
}

#nav {
    width: 80%;
}

.nav-ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.nav-ul li a.active {
    color: var(--sub-text);
    font-weight: 700;
}

.nav-ul li a {
    font-weight: 500;
    color: #2e2e2e;
    position: relative;
    font-size: 18px;
}

.nav-ul li a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: var(--button-color);
    transition: width 0.3s;
}

.nav-ul li a:hover::after {
    width: 100%;
}

.nav-ul li a.active::after {
    content: "";
    display: block !important;
    height: 2px;
    width: 100%;
    background: var(--button-color);
    transition: width 0.3s;
}

.nav-ul li {
    text-align: center;
}



/* rotate arrow when open */
.dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.nav-ul.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg1-color);
    position: absolute;
    top: 100% !important;
    right: 0;
    left: 0;
    width: 90%;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    z-index: 1111111;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--bg1-color);
}

.dropdown {
    position: relative;
}

.dropdown>a {
    cursor: pointer;
}

/* Hidden by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: #f0f0f0;
}

.header-search {
    position: relative;
}

.header-search .btn-outline-success {
    border: none;
    position: absolute;
    color: var(--sub-text);
    top: 0;
    bottom: 0;
    border-radius: 50px;
}

.search-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-wrapper input {
    width: 100%;
    padding-block: 0.5rem;
}

.form-control {
    border-radius: 50px;
    padding-left: 50px;
    padding-right: 20px;
}

.placeholder-text {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(50%);
    color: #aaa;
    pointer-events: none;
    white-space: nowrap;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    font-size: 0.95rem;
}

/* When showing text */
.placeholder-text.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* When hiding text (slide left) */
.placeholder-text.hide {
    opacity: 0;
    transform: translateY(-50%) translateX(30%);
}



.hero-section {
    height: 100%;
    position: relative;
}

.hero-section .container {
    max-width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
}


.hero-section .row {
    bottom: 0;
    width: 100%;
    margin: 0;
    overflow: hidden;

}

.slider {
    display: flex;
    padding: 0;
}

.hero-section .mobile {
    display: none;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    gap: 20px;
}

.hero-section .slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-section .slider-track {
    display: flex;
    width: 500%;
    transition: transform 1s ease;
}

.hero-section .slider-track img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hero-section .slider-track img.active {
    transform: scale(1);
}


.purpose-section {
    background-color: var(--bg1-color);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.purpose-section p {
    margin: 0 !important;
    color: #f0f0f0;
}

.purpose-section .row {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 100px 30px;
    border-radius: 50px;
}


/* ===================== Section 3 ===================== */
.section3 {
    text-align: center;
    overflow: hidden;
    width: 100%;
    padding-top: 100px;
}

/* Base hidden states */
.section3 .section3-heading {
    /* opacity: 0; */
    /* transform: translateY(-30px); */
    transition: all 0.6s ease;
    color: var(--button-color) !important;
}

.section3 .section3-heading svg {
    margin-bottom: 5px;
}

.section3-row-content-productbtn {
    /* opacity: 0;
    transform: scale(0); */
    transition: all 0.6s ease;
    transform-origin: center;
}

.brand-content {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Active/Visible states */
.section3 h2.firstactive {
    opacity: 1;
    transform: translateY(0);
}

.section3-row-content-productbtn.firstactive {
    opacity: 1;
    transform: scale(1);
}

.brand-content.firstactive {
    opacity: 1;
    transform: translateY(0);
}

.section3-row-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Base hidden state */
.section3-row-content-image,
.section3-row-content-content {
    flex: 1;
    /* opacity: 0; */
    transition: all 0.8s ease;
    /* transform: translateX(0) translateY(0); */
}

/* Normal active (click par chalega)
.section3-row-content.active .section3-row-content-image {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px);
}

.section3-row-content.active .section3-row-content-content {
    opacity: 0;
    transform: translateX(50%) translateY(-50px);
}

First time animation (already hai)
.section3-row-content.firstactive .section3-row-content-image {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.section3-row-content.firstactive .section3-row-content-content {
    opacity: 1;
    transform: translateX(0) translateY(0);
} */

/* ================= Staggered inner content ================= */
/* Default hidden state for inner content */
.section3-row-content-content h2,
.section3-row-content-content p,
.section3-row-content-content button {
    /* opacity: 0;
    transform: translateY(30px); */
    transition: all 0.8s ease;
}

/* When firstactive is added, animate in */
.section3-row-content.firstactive .section3-row-content-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.section3-row-content.firstactive .section3-row-content-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.section3-row-content.firstactive .section3-row-content-content button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.section3-row-slider-hlp {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.section3-row-slider-hlp.slideup {
    opacity: 1;
    transform: translateY(0);
}

.section3-row-content-content .btn-primary a {
    color: var(--bg3-color);
}

.section3 .container {
    max-width: 100%;
    position: relative;
    padding: 0;
}

.section3 h2 {
    margin-bottom: 20px;
    color: var(--bg1-color);
}

/* Brand buttons */
.section3-row-content-productbtn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 111111;
}

.section3-row-content-productbtn button {
    padding: 10px 20px;
    border: none;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section3-row-content-productbtn button.active {
    border-bottom: 2px solid red;
    color: red;
}

/* Brand content */
.section3-row-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
    /* margin-top: -80px; */
    position: relative;
    z-index: 11111;
}

.section3-row-content.active {
    display: flex;
}

.aircare img {
    scale: 1.2;
}

.section3-row-content-image {
    flex: 1 1 45%;
    margin-bottom: -60px;
}

.shubhkart .section3-row-content-image {
    margin-bottom: -100px !important;
}

.section3-row-content-image img {
    width: 100%;
    border-radius: 10px;
}

.section3-row-content-content {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
}

.brand-box img {
    display: none;
}

.section3-row-content-content h2 {
    font-size: 60px !important;
    margin-bottom: 15px;
}

.section3 p {
    width: 80%;
    margin-inline: 0 !important;
}

.section3-row-content-content p {
    margin-bottom: 15px;
}

.section3-row-content-content button {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    width: 45%;
}

.section3-row-slider-hlp {
    /* margin-top: -80px !important; */
    background-color: var(--bg1-color);
    position: relative;
    z-index: 1;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section3 .swiper {
    width: 80%;
    margin: auto;
    padding: 20px 0;
}

.section3 .swiper-wrapper {
    display: flex;
}

.section3 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg3-color);
    transition: transform 0.3s ease;
    border-radius: 12px;
    height: 100%;
}

.swiper-slide-content p {
    margin-bottom: 0 !important;
    margin-top: 10px;
    color: var(--sub-text);
}

.swiper-slide-content h2 {
    margin-bottom: 0 !important;
    font-size: 1.6rem !important;
}

.swiper-slide-content {
    padding: 20px;
}

.section3 .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.section3 .swiper-slide:hover {
    transform: scale(1.05);
}

/* Slider icons */
.slider-container-icon {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    z-index: 1111;
}

.slider-container-icon button {
    background: var(--button-color, #fff);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slider-container-icon button i {
    font-size: 18px;
    color: #333;
}

/* ===================== Responsive ===================== */
@media (max-width: 1200px) {
    .section3 .swiper {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .section3-row-content {
        flex-direction: column;
        text-align: center;
    }

    .section3-row-content-image,
    .section3-row-content-content {
        flex: 1 1 100%;
    }
}




.updates-section {
    height: 100vh;
}

.updates-section .container {
    max-width: 100%;
    height: 100%;
    padding: 0;
}

.updates-section .row {
    width: 100%;
    height: 100%;
}

.updates-section-box {
    width: 50%;
    background-color: #e9292f;
    display: flex;
    flex-direction: column;
}

.updates-section-box:last-child {
    width: 50%;
    background-color: blue;
}

.updates-section-box-row {
    width: 100%;
    height: 100%;
    display: flex;
}

.updates-section-box-row-parent {
    width: 100%;
}


/* news */
.section6 {
    padding: 50px 0;
    background-color: var(--bg1-color);
}

.section6 .container {
    max-width: 100%;
}

.section6 .row h1 {
    text-align: center;
    color: var(--bg3-color);
}

/* Overlay content */
.section6-image-box-content {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transform: none;
    opacity: 1;
    padding: 20px;
}

/* remove hover effect */
.section6-image-box:hover .section6-image-box-content {
    opacity: 1;
    transform: none;
}

/* Slider */
.section6-image-slider {
    display: flex;
    gap: 20px;
    padding: 10px;
    white-space: nowrap;
}

.section6-image-sliderhlp {
    overflow: hidden;
}

/* Image box */
.section6-image-box {
    flex: 0 0 calc((100% - 3 * 20px) / 4);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    display: flex;
    align-items: end;
    margin-right: 20px;
}

.section6-image-box {
    opacity: 0;
    transform: translateY(40px);
    animation: popUp 0.8s ease forwards;
}

.section6-image-box.pop-visible {
    animation: popUp 0.6s ease forwards;
}

@keyframes popUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section6-image-box a svg {
    margin-left: 10px;
    stroke: var(--button-color);
}

.section6-image-box a:hover,
.section6-image-box a:hover svg {
    stroke: var(--bg1-color);
}

.section6-image-box a {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--button-color);
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.section6-image-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.section6-image-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.section6-image-box p {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1px;
    margin: 20px 0;
    color: var(--text-color);
}

.section6-image-box h2 {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    text-align: center;
    font-size: 22px;
    color: var(--bg1-color);
}

/* Animate scroll */
.section6-image-slider.animate {
    animation: scrollLoop var(--duration, 40s) linear infinite;
}

@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--moveDistance, -50%));
        /* 🔑 now uses dynamic distance */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section6-image-box {
        flex: 0 0 calc((100% - 1 * 20px) / 2);
        /* 3 per row */
    }
}

@media (max-width: 576px) {
    .section6-image-box {
        flex: 0 0 calc((100% - 20px) / 1);
        /* 2 per row */
    }
}

/* ===================== Footer ===================== */
footer {
    background: var(--bg3-color);
    color: var(--bg1-color);
    box-shadow: 0px 0px 40px -15px rgba(0, 76, 176, 0.5);
}

.section7 {
    background: #f9f9f9;
    padding-top: 50px;
    position: relative;
}

.section7 .container {
    max-width: 90% !important;
    margin: auto;
    flex-direction: column;
    padding: 0;
}

.section7 .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.section7 .row .section7-row-logo {
    width: 20% !important;
    display: flex;
    flex-direction: column;
}

.section7 .row .section7-row-logo p {
    border-top: 2px solid black;
    padding-top: 20px;
}

.section7 .row .section7-row-parts {
    width: 20%;
}

.section7 .row .section7-row-parts img {
    height: 60%;
}

.section7 .row .section7-row-parts h2 {
    color: var(--bg1-color);
    margin-bottom: 20px;
}

.section7 .row .section7-row-parts-span {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section7 .row .section7-row-parts-spanno {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.section7 .row .section7-row-parts-spanno a {
    color: #555 !important;
}

.section7 .row .section7-row-parts-spanno span {
    color: #555 !important;
    font-size: 18px;
    font-weight: 600;
}

.section7-row-socialmedia {
    width: 20% !important;
}

.section7 .row .section7-row-parts-span a {
    color: var(--sub-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.section7-row-socialmedia-icon-box h2 {
    margin-bottom: 20px;
}

.section7-row-socialmedia-icon {
    gap: 20px;
    display: flex;
}

.section7-row-socialmedia-icon .fa-brands {
    padding: 10px 0;
    background-color: var(--bg2-color);
    border-radius: 10px;
    font-size: 32px;
    width: 15%;
}

.section7-up {
    position: absolute;
    padding: 12px 12px;
    border-radius: 50px;
    right: 50px;
    bottom: 25px;
    background-color: var(--button-color);
}

.section7-up .fa-arrow-up {
    color: var(--bg3-color);
    margin-right: 0 !important;
}

.section7-row-products-anchorhlp {
    display: flex;
}

.section7 .fa-solid {
    font-size: 24px;
    /* margin-right: 20px; */
}

.section7-row-products-anchorhlp .section7-row-products-anchorhlp-span {
    display: flex;
    flex-direction: column;
    /* margin-top: 10px; */
}

.section7-row-products-anchorhlp .section7-row-products-anchorhlp-span a:last-child {
    margin-top: 20px;
}

.section7-row-contact {
    width: 30% !important;
}

.section7 a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.section7 a:hover {
    color: var(--bg1-color) !important;
    transform: scale(1.1);
}

.section7 span:hover {
    color: var(--bg1-color) !important;
    transform: scale(0.9);
}

.section7container {
    text-align: center;
    padding-top: 50px;
    background: #f9f9f9;
}

.section7 .mobile {
    display: none;
}

.section7-row-products-anchorhlp-span a:last-child {
    position: relative;
}

.section7-row-products-anchorhlp-span a:last-child::after {

    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    width: 100px;
    margin: auto;
    height: 2px;
    background-color: var(--bg1-color);
}




.journey-container .section-title {
    color: var(--bg3-color);
}

.frame-1272638042 a {
    color: #000000;
    display: flex;
    gap: 10px;
}


.yamify.active {
    display: flex !important;
}

.yamify {
    transition: all 0.3s ease;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    display: none;
    /* display: flex !important; */
    justify-content: center;
    align-items: center;
    top: 0;
    z-index: 111111111111111;
}

.yamify-box h1 {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--button-color);
}

.yamify-box {
    width: 70%;
    height: 70%;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    background-color: var(--bg3-color);
}

.yamify-box img {
    width: 40%;
}

.yamify-cancel {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    font-weight: 700;
}

.yamify-box p {
    color: var(--button-color);
    font-weight: 500;
    text-align: center;
    width: 80%;
    margin-bottom: 0;
}