/* =============================
   Google Fonts Import
============================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Handlee&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merienda:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&family=Sora:wght@100..800&display=swap');

/* =============================
   Root Variables
============================= */
:root {
    --primary-color: #0298F9;
    --secondary-color: #013474;
    --text-color: #080808;
    --text-light: #2C2C2C;
    --bg-color: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease-in-out;
}

/* =============================
   CSS Reset / Normalize
============================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* =============================
   Typography
============================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 700;
    color: var(--bg-color);
    line-height: 1.2;
}

div {
    font-family: "Instrument Sans", sans-serif;
}

p {
    font-family: "Instrument Sans", sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none !important;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.color-primary {
    color: var(--primary-color) !important;
}

section {
    overflow: hidden;
}

.highlight {
    color: var(--primary-color);
}

/* =============================
   Layout Helpers
============================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================
   Button Style
============================= */

/* =============================
   Layout Helpers
============================= */
.new-btn-style {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 0;
    background: var(--primary-color);
    text-decoration: none;
    font-family: "Instrument Sans", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(2, 152, 249, 0.2);
    border-radius: 50px;
    overflow: hidden;
    border: none;
}

.new-btn-style:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #054FA3;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: 0;
}

.new-btn-style:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.new-btn-style span,
.new-btn-style i {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.new-btn-style span {
    letter-spacing: normal;
    padding: 12px 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.new-btn-style:hover span,
.new-btn-style:hover i {
    color: #ffffff;
    animation: scaleUp 0.3s ease-in-out;
}

.new-btn-style svg {
    transform: rotate(-45deg);
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* header css start */
.header-logo-img {
    width: 150px;
}

.footer-logo-img {
    width: 180px;
}

.top-header {
    font-size: 14px;
    padding: 10px 0 10px;
    border-bottom: 1px solid #e9ecef;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}

.header-logo-bg {
    background-color: #ffffff;
    height: 125px;
    position: relative;
}

.company-address p {
    color: var(--bg-color);
}

.company-address {
    margin-left: 20px;
    color: var(--bg-color);
}

.contact-info {
    text-align: right;
}

.contact-info a {
    color: var(--bg-color);
    text-decoration: none;
}

.contact-info p {
    color: var(--bg-color);
    text-decoration: none;
}

.main-header {
    position: relative;
    width: 100%;
    background: rgb(2, 152, 249, 0.08) !important;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-link {
    color: var(--bg-color) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 5px 0;
    position: relative;
}

.navbar-nav .nav-link.active {
    color: var(--bg-color);
    font-weight: bold;
}

.nav-link:hover {
    color: var(--bg-color);
}

.nav-link:focus {
    color: var(--bg-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.header-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
}

.company-address span img {
    width: 20px;
    margin-right: 10px;
}

.contact-info span img {
    width: 20px;
    margin-right: 10px;
}

.contact-info p:first-child {
    margin-right: 10px;
}

.contact-info p {
    position: relative;
    display: inline-block;
    margin: 0 20px;
}

.contact-info p:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -17px;
    top: 0;
    color: #bbbbbb;
}


.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .contact-info {
        text-align: center;
        margin-top: 10px;
    }

    .nav-item {
        text-align: center;
        margin: 5px 0;
    }

    .header-btn-container {
        text-align: center;
        margin: 15px 0;
    }
}


/* footer section css */

.footer-section {
    background: url(../images/banner/footer-bg.png);
    background-size: cover;
    background-position: center center;
    padding: 80px 0 20px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.4rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #38ada9;
    border-radius: 2px;
}

.footer p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer .contact-info li {
    margin-bottom: 20px;
}

.contact-icon {
    width: 25px;
    height: 25px;
    padding-top: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.water-drop {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0751A5 0%, #019AFA 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.water-drop:hover {
    background: linear-gradient(135deg, #019AFA 0%, #0751A5 100%);
}

.water-drop i {
    color: var(--bg-color);
    transform: rotate(225deg);
    font-size: 16px;
}

.copyright {
    border-top: 1px solid rgb(2 152 249 / 50%);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-color);
}

.copyright a {
    margin: 0 10px;
}

.footer-section ul {
    padding-left: 0px;
}

.footer-section ul li {
    list-style: none;
}

.footer-links a,
.footer-nav-liks a {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s linear;
}

.footer-nav-liks a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.footer-nav-liks a:hover::after {
    width: 100%;
}

.footer-nav-liks a:hover {
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.developer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bbb;
}

.footer-contact-info p {
    color: var(--text-light);
    margin-bottom: 0px;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .footer [class^="col-"] {
        margin-bottom: 40px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer h5 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 15px;
    }

    .water-drop {
        width: 40px;
        height: 40px;
    }

    .water-drop i {
        font-size: 16px;
    }
}

/* banner css starts */
.banner-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #123c4d96;
    background-size: cover;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--bg-color);
    text-align: center;
    max-width: 800px;
    text-align: left;
    padding-top: 120px;
    margin: 0 auto 0 0;
}

.banner-content h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--bg-color);
}

.banner-btn {
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.banner-section {
    margin-top: -130px;
}

.footer-section h5 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-nav-liks li {
    margin: 20px 0;
}

.shape-image-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    bottom: -100px;
}

.social-media-icons {
    position: absolute;
    right: 20px;
    top: 57%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-media-icons .social-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
}

.social-media-icons .social-line {
    display: block;
    width: 1px;
    height: 40px;
    background: #ffffff;
    margin-bottom: 10px;
}

.social-media-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media-icons ul li {
    margin: 15px 0;
}

.social-media-icons ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0751A5 0%, #019AFA 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-media-icons ul li a:hover {
    background: linear-gradient(135deg, #019AFA 0%, #0751A5 100%);
    transition: 0.3s ease;
}

.social-media-icons ul li a i {
    transform: rotate(225deg);
}

/* about-us css starts */
.section-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-space-2 {
    padding-top: 40px;
    padding-bottom: 80px;
}

.sub-heading {
    position: relative;
}

.sub-heading p {
    padding-left: 15px;
    color: var(--primary-color);
}

.sub-heading-2 p {
    padding-left: 15px;
    color: var(--primary-color);
}

.sub-heading p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 1px;
    background: var(--primary-color);
}

.main-title h2 {
    font-size: 45px;
    color: var(--text-color);
    font-weight: 700;
    line-height: 50px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    z-index: 1;
}

.main-title h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/banner/Water-1.png) no-repeat center;
    width: 100%;
    height: 120%;
    z-index: -1;
    animation: waterSlide 8s linear infinite alternate;
    opacity: 1;
}

@keyframes waterSlide {
    0% {
        transform: translateY(-50%) translateX(-50%);
    }

    100% {
        transform: translateY(-50%) translateX(50%);
    }
}

.main-title .highlight {
    color: var(--primary-color);
}

.about-features-container {
    margin-top: 35px;
}

.about-features-container .feature-list .icon img {
    transition: transform 0.5s linear;
}

.about-features-container .feature-list:hover .icon img {
    transform: rotateY(180deg);
}

.about-us-section .about-img-container {
    position: relative;
}

.about-highlight-box {
    position: absolute;
    bottom: -40px;
    left: -10px;
    width: 300px;
    height: 140px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50px 0 50px;
    animation: moveSide 5s ease-in-out infinite alternate;
}

.about-highlight-box .line {
    width: 50px;
    height: 2px;
    background-color: var(--bg-color);
}

.about-highlight-box h5 {
    font-size: 30px;
}

@keyframes moveSide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40px);
    }
}

.about-us-section .about-img-container img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

/* client-section css starts */
.clients-border {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 45px 0;
}

.client-logo {
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(100%);
}

.clients-section .swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* products css starts */

.product-box {
    background: #EEF8FF;
    padding: 50px 40px;
    border-radius: 12px;
}

.product-img {
    max-height: 340px;
    object-fit: cover;
}

.read-more {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}


.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.read-more:hover::after {
    width: 100%;
}

/* process section css starts */

.process-step {
    position: relative;
    margin-bottom: 30px;
}

.process-img {
    position: relative;
    display: inline-block;
}

.process-img img {
    padding: 5px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.water-drop-2 {
    position: absolute;
    top: -10px;
    right: -15px;
    background: linear-gradient(135deg, #0751A5 0%, #019AFA 100%);
    border-radius: 50% 0% 50% 50%;
    transform: rotate(-42deg);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-drop-2 span {
    transform: rotate(40deg);
    text-align: center;
}

.process-arrow {
    position: absolute;
    top: 70px;
    width: 100px !important;
}

.arrow-1 {
    left: 23%;
}

.arrow-2 {
    left: 47%;
}

.arrow-3 {
    left: 71%;
}

.process-main-container {
    margin-top: 70px !important;
}

/* why nilara css starts */

.why-nilara {
    background: url(../images/banner/why-nilara-bg.png) no-repeat;
    background-size: cover;
}

.feature-box {
    margin-bottom: 30px;
    position: relative;
    padding-left: 50px;
}

.feature-box .water-drop {
    position: absolute;
    left: 0;
    top: 5px;
    background: #007bff;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 45px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.bottle-wrap {
    position: relative;
    display: inline-block;
}

.bottle-img {
    max-height: 450px;
    z-index: 2;
    position: relative;
}

/* Circle Icons Around Bottle */
.circle-icon {
    position: absolute;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 7px 28px rgba(1, 154, 250, 0.17);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    font-size: 24px;
    z-index: 9;
    transition: 0.3s linear;
}

.circle-icon:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transition: 0.3s linear;
}

.icon-1 {
    top: 10%;
    left: -20px;
}

.icon-2 {
    top: 42%;
    left: -70px;
}

.icon-3 {
    bottom: 15%;
    left: -40px;
}

.icon-4 {
    top: 10%;
    right: -20px;
}

.icon-5 {
    top: 42%;
    right: -70px;
}

.icon-6 {
    bottom: 15%;
    right: -40px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 55px;
    position: relative;
    max-width: 400px;
}

.icon-line {
    position: relative;
    margin-right: 40px;
    display: flex;
    align-items: center
}

.drop-icon {
    width: 40px;
    height: 50px;
    background: url('../images/icons/step-1.svg') no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #007bff;
    font-size: 14px;
    z-index: 2;
}

.drop-icon-2 {
    background: url(../images/icons/step-2.svg) no-repeat center/contain;
}

.drop-icon-3 {
    background: url(../images/icons/step-3.svg) no-repeat center/contain;
}

.drop-icon-4 {
    background: url(../images/icons/step-4.svg) no-repeat center/contain;
}

.drop-icon-5 {
    background: url(../images/icons/step-5.svg) no-repeat center/contain;
}

.drop-icon-6 {
    background: url(../images/icons/step-6.svg) no-repeat center/contain;
}

.h-line {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.v-line {
    position: absolute;
    top: 7%;
    left: calc(100% + 25px);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.icon-line-2 {
    position: relative;
    margin-left: 40px;
    display: flex;
    align-items: center;
}

.icon-line-2 .h-line {
    right: 100% !important;
    left: -30px !important;
}

.icon-line-2 .v-line {
    right: calc(100% + 25px) !important;
    left: -30px !important;
}

.feature-box.right-feature-box {
    text-align: end;
}


.our-cta-bg {
    background: var(--primary-color) url('../images/banner/cta-bg.png') no-repeat center/cover;
    border-radius: 8px;
    color: #fff;
}

.our-cta h2 {
    font-size: 38px;
}

.our-cta p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f1f1f1;
}

.cta-container-bg-space {
    padding: 20px;
}

.our-cta .btn:hover {
    background-color: var(--bg-color);
}


/* faq- css starts */

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    color: #000;
    background-color: #fff;
    box-shadow: none;
    padding: 1rem;
    border-radius: 10px !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: none !important;
    content: "\276F";
    font-size: 1rem;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.accordion-item {
    margin-bottom: 30px;
}

.our-cta .cta-btn {
    color: var(--primary-color) !important;
}

.fa,
.fas,
.far,
.fal,
.fad {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.enquiery-form-bg {
    padding: 30px;
    border-radius: 15px;
    background-color: #EEF8FF;
}

.form-control {
    border: 1px solid #dedede;
    height: 45px;
}

.form-control:focus {
    border: 1px solid var(--primary-color);
    box-shadow: none !important;
    height: 45px;
}

textarea.form-control {
    height: 75px;
}

textarea.form-control:focus {
    height: 75px;
}

.enquiry-form-modal .btn,
.enquiry-form-modal .btn:hover {
    background: var(--primary-color);
}

.enquiry-form-modal svg {
    transform: rotate(-45deg);
}

.enquiry-form-modal .btn-close {
    width: 20px;
    height: 20px;
    padding: 5px;
    font-size: 13px;
    border: 1px solid;
    border-radius: 50%;
}

.enquiry-form-modal .btn-close:hover {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.enquiry-form-modal .btn-close:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078" !important;
    margin-left: auto !important;
    background: #019AFA;
    padding: 10px;
    width: 25px !important;
    height: 25px !important;
    font-size: 13px;
    color: white;
    transition: transform .3s !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-button,
.accordion-button:focus {
    background-color: #EEF8FF !important;
    box-shadow: none !important;
}

.animate__animated {
    opacity: 0;
    visibility: hidden;
}

.animate__animated.animate__fadeInUp,
.animate__animated.animate__fadeInDown,
.animate__animated.animate__fadeInLeft,
.animate__animated.animate__fadeInRight,
.animate__animated.animate__zoomIn,
.animate__animated.animate__slideInUp,
.animate__animated.animate__slideInDown {
    opacity: 1;
    visibility: visible;
}

.error {
    color: #ff0000;
}

.products-list-container h2 {
    font-size: 38px;
}

.right-align-features-list {
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: end;
}


.privacy-section {
    padding: 60px 0;
}

.privacy-section h5 {
    margin-top: 30px;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section {
    padding: 60px 0;
}

.terms-section h5 {
    margin-top: 30px;
    font-weight: 600;
}

.terms-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.main-header.force-black .nav-link,
.main-header.force-black p {
    color: black !important;
}

.main-header.force-black .top-header {
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.custom-offcanvas {
    width: 80% !important;
    max-width: 320px;
    background-color: #EEF8FF !important;
}

.offcanvas .nav-link {
    color: var(--text-color) !important;
    text-align: start;
    width: fit-content;
}

.offcanvas a {
    color: var(--text-color);
}

.navbar-toggler {
    color: var(--bg-color) !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}

.side-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.side-panel.open {
    right: 0;
}

.side-backdrop.show {
    display: block;
}

/* Panel header */
.side-panel-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.side-panel-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.side-panel-body {
    padding: 20px;
    overflow-y: auto;
}


.side-panel .nav-link {
    color: var(--text-color) !important;
    text-align: start;
    width: fit-content;
}

.side-panel a {
    color: var(--text-color) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
}

.main-header.force-black .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='black' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}


.floating_btn {
    position: fixed;
    bottom: 115px;
    right: 30px;
    opacity: 1;
    transition: 0.3s;
    z-index: 100;
}

@media (max-width: 767px) {
    .floating_btn {
        right: 30px;
        bottom: 70px;
    }

    .floating_btn.floating_btn_show {
        bottom: 90px;
    }
}

.floating_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 23px;
    transition: transform 0.3s;
    animation: 2s infinite pulse-animation;
}

.floating_btn a:hover {
    transform: translateY(-3px);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.6);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(37, 211, 101, 0.1);
    }
}

.privacy-section a {
    color: var(--text-color);
}


/* breadcrumb css starts */

.breadcrumb-container {
    position: relative;
    background: url(../images/banner/about-img.webp) no-repeat;
    background-size: cover;
    background-position: 0px -210px;
    padding-top: 200px;
    padding-bottom: 100px;
    margin-top: -130px;
    z-index: 2;
}

.breadcrumb-container::before {
    content: '';
    position: absolute;
    background: url(../images/banner/breadcrumb-overlay.png);
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.breadcrumb-container::after {
    content: '';
    position: absolute;
    background: url(../images/banner/contact-page-text.png) no-repeat;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100px;
    background-size: contain;
    z-index: 1;
}

.breadcrumb-container.products-page::after {
    content: '';
    position: absolute;
    background: url(../images/banner/products-page-text.png) no-repeat;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100px;
    background-size: contain;
    z-index: 1;
}

.breadcrumb-container.about-us-page::after {
    content: '';
    position: absolute;
    background: url(../images/banner/about-us-page-text.png) no-repeat;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100px;
    background-size: contain;
    z-index: 1;
}

.breadcrumb-container h2 {
    font-size: 44px;
    font-weight: bold;
    color: var(--bg-color);
    margin-bottom: 15px;
}

.breadcrumb-container ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff61;
    padding: 10px 15px;
    border-radius: 50px;
}

.breadcrumb-container ul li {
    list-style-type: none;
    font-size: 15px;
    color: var(--bg-color);
}

.breadcrumb-container ul li.active {
    padding-left: 10px;
    font-weight: bold;
}

.breadcrumb-container ul li a {
    color: var(--bg-color);
}

.breadcrumb-container ul li a {
    position: relative;
}

.breadcrumb-container ul li a:first-child::before {
    content: '/';
    position: absolute;
    right: -13px;
    top: 0px;
}

/* breadcrumb css end */

.contact-list-container .contact-list-bg-color {
    background-color: #EEF8FF;
    border-radius: 15px;
    padding: 30px;
}

.contact-list-container .contact-list-main .contact-contents p {
    font-size: 18px;
}

.contact-list-container .contact-list-main .contact-contents h6 {
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1.5;
}

.contact-list-main .icons {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
}

.contact-list-main .icons img {
    max-width: 100%;
    max-height: 100%;
}

.contact-page-form #btn-submit {
    background-color: var(--primary-color);
    transition: all 0.3s linear;
}

.contact-page-form #btn-submit:hover svg {
    transform: rotate(0deg);
    transition: all 0.3s linear;
}

.contact-page-form svg {
    transform: rotate(-45deg);
    transition: all 0.3s linear;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    font-size: 14px;
}

.contact-page-form .main-title h2 {
    font-size: 35px;
}

/* products page css starts */

.product-tabs .nav-link {
    font-size: 18px;
    background: #fff;
    border: 1px solid #cce7ff;
    border-radius: 50px !important;
    padding: 15px 20px;
    color: var(--text-color) !important;
    text-align: left;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.product-tabs .nav-link.active,
.product-tabs .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: var(--bg-color) !important;
    border-color: var(--primary-color);
}

.product-tabs .icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    font-size: 16px;
    transition: all 0.7s ease;
}

.product-tabs .icon-circle i {
    transform: rotate(-45deg);
    transition: all 0.7s ease;
}

.product-tabs .nav-link.active .icon-circle i {
    transform: rotate(0deg);
    transition: all 0.7s ease;
}

.product-tabs .nav-link.active .icon-circle,
.product-tabs .nav-link:hover .icon-circle {
    background: #fff;
    color: #007bff;
    transition: all 0.7s ease;
}

.products-list-page .nav-link:hover::after {
    width: 0% !important;
}

.products-list-page .tab-pane img {
    width: 400px;
    height: 290px;
    object-fit: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


/* products-sec-cta css starts  */
.products-sec-cta {
    background: url(../images/banner/product-cta-bg.png) no-repeat;
    background-size: cover;
    padding: 100px;
}

.products-sec-cta .contact-container .contact-icon {
    width: 70px !important;
    height: 70px !important;
    margin-right: 0 !important;
}

.who-are-main-img {
    height: 450px !important;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.who-we-small-img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.our-identity-sec {
    background: url(../images/banner/our-identity-bg.webp) no-repeat;
    background-size: cover;
}

.indentity-center-img {
    height: 500px;
    z-index: 2;
    position: relative;
}

.why-card {
    position: relative;
    background: var(--bg-color);
    border: 1px solid #e6f1ff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: left;
    transition: all 0.3s ease;
    height: 330px;
    overflow: hidden;
    z-index: 1;
}

/* pseudo-element for the animated circle */
.why-card::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 0;
    background: var(--primary-color);
    border-radius: 50% 50% 0 0;
    transition: height 0.9s ease;
    z-index: -1;
}

.why-card:hover::before {
    height: 200%;
}

.why-card:hover,
.why-card:hover p {
    color: #fff;
}


.why-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.why-card .icon img {
    max-width: 100%;
    height: auto;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.whySwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.whySwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
}

.whySwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Right side help card */
.help-card {
    background: url(../images/banner/need-help-cta.webp) no-repeat;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    color: #fff;
    padding: 40px 25px;
    display: flex;
    align-items: flex-end;
    height: 330px;
}

.help-content {
    position: relative;
    z-index: 2;
}

.help-content h4 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: normal;
}

.help-content p {
    color: var(--bg-color);
    margin-bottom: 20px;
}

.icon img {
    transition: opacity 0.3s ease;
}

.icon-hover {
    display: none;
}

.why-card:hover .icon-default {
    display: none;
}

.why-card:hover .icon-hover {
    display: inline-block;
}

/* bottom to top css  */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0298f92b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    padding: 0;
}

.back-to-top img {
    width: 60px;
    height: 60px;
    transform: rotate(-95deg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

/* Loader container covers full screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EEF8FF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader animation */
.loader {
    display: block;
    width: 84px;
    height: 84px;
    position: relative;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-color, #007bff);
    border-radius: 50% 50% 50% 0%;
    transform: translate(-50%, 0%) rotate(135deg) scale(0);
    animation: push_401 2s infinite linear;
}

.loader:after {
    animation-delay: 1s;
}

@keyframes push_401 {

    0%,
    50% {
        transform: translate(-60%, 0%) scale(1) rotate(135deg);
    }

    100% {
        transform: translate(-60%, 100%) scale(0) rotate(135deg);
    }
}

.accordion-item {
    border: 0 !important;
}

.products-sec-cta .main-title h2 {
    width: 90%;
}


/* Responsive css starts */
@media screen and (max-width:768px) {
    .header-logo-bg {
        height: 90px;
        width: 115px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-logo-img {
        width: 90px;
    }

    .banner-content {
        padding-top: 80px;
    }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        z-index: -1;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content {
        max-width: 400px;
    }

    .social-media-icons {
        display: none;
    }

    .section-space {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .main-title h2 {
        font-size: 33px;
    }

    .about-features-container {
        flex-wrap: wrap;
    }

    .about-us-section .about-img-container img {
        margin-top: 15px;
    }

    .client-logo {
        max-height: 55px;
    }

    .product-box {
        padding: 20px 20px;
    }

    .products-list-container h2 {
        font-size: 28px;
    }

    .section-space-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .circle-icon {
        display: none;
    }

    .right-align-features-list {
        margin-top: 30px !important;
    }

    .our-cta h2 {
        font-size: 35px;
    }

    .footer-section {
        padding: 20px 0 20px;
    }

    .footer-contact-info a {
        color: var(--text-light);
    }

    .about-highlight-box h5 {
        font-size: 28px;
    }

    .about-highlight-box {
        height: 130px;
    }

    .enquiry-form-modal .col-lg-6 {
        padding: 0px !important;
    }

    .loader {
        width: 50px;
        height: 50px;
    }

    .footer-logo-img {
        width: 140px;
    }

    .back-to-top img {
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .loader:before,
    .loader:after {
        width: 54px;
        height: 54px;
    }

    .contact-list-container a {
        color: var(--primary-color);
    }

    .breadcrumb-container {
        background: url(../images/banner/about-img.webp) no-repeat;
        background-size: cover;
        background-position: 0px 0px;
        padding-top: 160px;
        padding-bottom: 50px;
        margin-top: -130px;
        z-index: 2;
    }

    .breadcrumb-container::after,
    .breadcrumb-container.about-us-page::after,
    .breadcrumb-container.products-page::after {
        width: 270px;
        bottom: -45px;
    }

    .shape-image-animation {
        bottom: -110px;
    }

    .breadcrumb-container h2 {
        font-size: 40px;
    }

    .breadcrumb-container ul {
        padding: 8px 10px;
    }

    .breadcrumb-container ul li {
        font-size: 14px;
    }

    .products-list-page .tab-pane img {
        width: 100%;
        height: 200px;
        margin-bottom: 25px;
        margin-right: 0px !important;
    }

    .product-tabs .nav-link {
        font-size: 16px;
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .product-tabs .icon-circle {
        width: 40px;
        height: 40px;
    }

    .products-sec-cta {
        padding: 80px 10px 50px;
    }

    .products-cta-main-img {
        margin-top: 25px;
        width: 280px;
        height: 330px;
        object-fit: cover;
        text-align: center;
    }

    .products-sec-cta-call-link {
        color: var(--bs-heading-color);
    }

    .who-are-main-img {
        height: 300px !important;
    }

    .indentity-center-img {
        height: 300px !important;
        z-index: 2;
        width: 100%;
        text-align: center;
        position: relative;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .our-identity-sec {
        padding-top: 100px !important;
        padding-bottom: 70px !important;
    }

    .why-card {
        height: 300px;
    }

    .help-card {
        height: 300px;
    }

    .new-btn-style span {
        font-size: 15px;
        padding: 10px 15px;
    }

    .copyright {
        margin-top: 0px;
    }

    .why-nilara {
        padding-top: 110px !important;
    }

    .bottle-img {
        max-height: 300px;
    }

    .enquiery-form-bg {
        padding: 25px;
    }

    .products-sec-cta .main-title h2 {
        width: 100%;
    }
}