/* =========================
   01. Theme Variables
========================= */
:root {
    --navy: #0a2d5d;
    --cyan: #00d4ff;
    --gold: #ffc107;
    --smoke: #f8faff;
    --glass: rgba(255, 255, 255, 0.85);
    --text: #344767;
}

/* =========================
   02. Base / Common Style
========================= */
* {
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
.brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.text-cyan,
.brand-accent {
    color: var(--cyan);
}

.brand-primary {
    color: var(--navy);
}

/* =========================
   03. Navbar Section
========================= */
/* =========================
   TOP BAR RESPONSIVE
========================= */

.top-bar {
    background: #0a2d5d;
    padding: 10px 0;
    font-size: 14px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.top-contact i {
    color: #00d4ff;
    margin-right: 5px;
}

.top-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
}

.admin-login {
    background: #ffc107;
    color: #000;
}

.customer-login {
    background: #00d4ff;
    color: #fff;
}

.top-bar {
    display: block;
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .site-logo {
        max-height: 50px;
    }
}

/* =========================
   LOGO
========================= */

.site-logo {
    max-height: 65px;
    width: auto;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-link {
    font-weight: 600;
    color: #0a2d5d !important;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: #00d4ff !important;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .top-contact {
        justify-content: center;
        margin-bottom: 10px;
    }

    .top-bar {
        text-align: center;
    }

    .top-login {
        margin: 5px;
    }

    .site-logo {
        max-height: 55px;
    }
}

.navbar {
    background: var(--glass) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 10px;
}

.btn-nav {
    background: var(--navy);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 25px;
    transition: 0.3s;
}

.btn-nav:hover {
    box-shadow: 0 10px 20px rgba(10, 45, 93, 0.2);
    transform: translateY(-2px);
}

/* =========================
   04. Hero Section
========================= */

.hero-slider {
    position: relative;
    background:
        linear-gradient(rgba(10, 45, 93, 0.85), rgba(10, 45, 93, 0.75)),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    min-height: 85vh;
}

.hero-slider .carousel-item {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 90px 0 120px;
}

.hero-row {
    min-height: 70vh;
}

.hero-slide h1 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.1;
    font-weight: 900;
}

.hero-slide h1 span {
    color: var(--cyan);
}

.hero-text {
    max-width: 620px;
}

.hero-image-box {
    height: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-png {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Fade Fix */
.hero-slider .carousel-inner {
    overflow: hidden;
}

.hero-slider .carousel-item {
    min-height: 85vh;
    display: none;
}

.hero-slider .carousel-item.active,
.hero-slider .carousel-item-next,
.hero-slider .carousel-item-prev {
    display: block;
}

.hero-slider .carousel-item-next:not(.carousel-item-start),
.hero-slider .active.carousel-item-end {
    transform: translateX(100%);
}

.hero-slider .carousel-item-prev:not(.carousel-item-end),
.hero-slider .active.carousel-item-start {
    transform: translateX(-100%);
}

/* Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 5;
}

.carousel-control-prev {
    left: 25px;
}

.carousel-control-next {
    right: 25px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        min-height: auto;
    }

    .hero-slide {
        min-height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-box {
        height: 360px;
        margin-top: 40px;
    }

    .hero-png {
        max-height: 340px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-slide {
        padding: 60px 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image-box {
        height: 280px;
    }

    .hero-png {
        max-height: 260px;
    }
}





/* =========================
   05. Categories Section
========================= */
.cat-overlap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.cat-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    border: 1px solid transparent;
    text-decoration: none;
    display: block;
    height: 100%;
}

.cat-card:hover {
    transform: translateY(-12px);
    border-color: var(--cyan);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
}

.cat-card i {
    font-size: 2.2rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.cat-card h6 {
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* =========================
   06. About Section
========================= */
.about-img {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.stat-box h2 {
    color: var(--navy);
    font-weight: 900;
    margin: 0;
}





/* =========================
   07. Featured Products Section
========================= */
.product-card {
    background: #fff;
    border-radius: 30px;
    position: relative;
    border: none;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.product-img-box {
    background: #f4f7fa;
    height: 250px;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* product image ke liye */
    transition: 0.4s ease;
}

.product-img-box img {
    max-height: 100%;
    transition: 0.4s;
}

.product-card:hover .product-img-box img {
    transform: scale(1.1);
}

.therapy-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 5;
}

.btn-order {
    background: var(--cyan);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
}

@media (max-width: 575px) {
    #products .col-6 {
        padding: 6px;
    }

    .product-img-box {
        height: 160px;
    }

    .product-card h6 {
        font-size: 13px;
    }

    .product-card p {
        font-size: 11px;
        min-height: 35px;
    }

    .btn-order {
        font-size: 11px;
        padding: 8px;
    }

    .therapy-badge {
        font-size: 9px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
}






/* =========================
   08. Why Choose Us Section
========================= */
.why-box {
    padding: 40px;
    border-radius: 30px;
    background: var(--smoke);
    height: 100%;
    transition: 0.3s;
}

.why-box:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--cyan);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}






/* =========================
   09. Blog Section
========================= */
.blog-card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-img {
    height: 200px;
    object-fit: cover;
}

.blog-category {
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
}






/* =========================
   10. Enquiry Section
========================= */
.enquiry-bg {
    background: var(--navy);
    padding: 100px 0;
    color: #fff;
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 50px;
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    outline: none;
}

.form-control-modern:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.45);
}






/* =========================
   11. Footer Section
========================= */
/* =========================
   FOOTER SECTION
========================= */

.footer-section {
    background: #05142a;
    color: #8a99af;
    padding: 70px 0 20px;
}

.footer-logo {
    max-height: 60px;
}

.footer-widget h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h5::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--cyan);
    display: block;
    margin-top: 10px;
}

.footer-widget p {
    line-height: 1.8;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #8a99af;
    text-decoration: none;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-contact div {
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-contact i {
    color: var(--cyan);
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--cyan);
    transform: translateY(-3px);
}

.footer-section hr {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #8a99af;
}

.footer-bottom a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

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

/* Mobile */

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.footer-contact a {
    text-decoration: none;
    color: #8a99af;
    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: var(--cyan);
}

.footer-contact a i {
    margin-right: 10px;
}

/* Responsive */

@media (max-width: 991px) {

    .footer-widget {
        text-align: center;
    }

    .footer-widget h5::after {
        margin: 10px auto 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .footer-section {
        padding-top: 50px;
    }

    .footer-logo {
        max-height: 50px;
    }

    .footer-widget h5 {
        margin-bottom: 18px;
    }

    .footer-contact div {
        font-size: 14px;
    }
}














/* =========================
   12. Responsive Style
========================= */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 18px 0 8px;
    }

    .nav-link {
        margin: 4px 0;
        padding: 10px 0;
    }

    .btn-nav {
        width: 100%;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        text-align: center;
        padding: 90px 0 130px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .icon-circle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 78px;
    }

    .navbar {
        padding: 10px 0;
    }

    .hero {
        clip-path: none;
        padding: 70px 0 95px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .cat-overlap {
        margin-top: -45px;
    }

    .cat-card {
        padding: 25px 12px;
        border-radius: 20px;
    }

    .about-img {
        border-radius: 25px;
    }

    .product-img-box {
        height: 190px;
    }

    .why-box {
        padding: 30px 22px;
    }

    .blog-heading {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 12px;
    }

    .glass-form {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .enquiry-bg {
        padding: 70px 0;
    }

    footer {
        padding: 60px 0 25px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2rem;
    }

    .display-5,
    .display-6 {
        font-size: 1.8rem;
    }

    .cat-card h6 {
        font-size: 0.75rem;
    }

    .cat-card i {
        font-size: 1.8rem;
    }

    .product-card,
    .blog-card,
    .why-box {
        border-radius: 20px;
    }
}




/* =========================
    All Products Section
========================= */

.product-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-tab {
    border: 1px solid var(--cyan);
    background: #fff;
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.product-tab.active,
.product-tab:hover {
    background: var(--cyan);
    color: #fff;
}

.product-item {
    transition: 0.3s ease;
}

.product-item.hide {
    display: none;
}

@media (max-width: 575px) {
    .product-tabs {
        gap: 8px;
    }

    .product-tab {
        padding: 8px 13px;
        font-size: 12px;
    }
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-details,
.btn-buy {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

/* View Details */

.btn-details {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--navy);
}

.btn-details:hover {
    background: var(--cyan);
    color: #fff;
}

/* Buy Now */

.btn-buy {
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
}

.btn-buy:hover {
    background: #08306a;
    color: #fff;
}

/* Mobile */

@media (max-width: 575px) {

    .product-actions {
        flex-direction: column;
        gap: 8px;
    }

    .btn-details,
    .btn-buy {
        width: 100%;
        padding: 8px;
        font-size: 12px;
    }
}





/* =========================
     Products Details Section
========================= */

.product-details-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.product-main-image {
    height: 420px;
    background: #f4f7fa;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.details-category {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-details-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
}

.composition-box,
.description-box,
.product-gallery {
    background: #f8faff;
    border-radius: 22px;
    padding: 25px;
}

.gallery-img {
    height: 130px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sidebar */

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.category-sidebar {
    background: #fff;
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.category-sidebar h4 {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7fa;
    color: var(--navy);
    text-decoration: none;
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.category-list li.active a,
.category-list li a:hover {
    background: var(--navy);
    color: #fff;
}

.category-list small {
    background: #fff;
    color: var(--navy);
    padding: 3px 8px;
    border-radius: 20px;
}

.selected-category-box {
    background: linear-gradient(135deg, var(--navy), var(--cyan));
    color: #fff;
    padding: 20px;
    border-radius: 20px;
}

.selected-category-box h6 {
    font-weight: 800;
    margin-bottom: 5px;
}

.selected-category-box p {
    margin: 0;
}

/* Buttons */

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-details,
.btn-buy {
    flex: 1;
    padding: 9px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.btn-details {
    border: 1px solid var(--cyan);
    color: var(--navy);
    background: #fff;
}

.btn-buy {
    background: var(--navy);
    color: #fff;
}

/* Responsive */

@media(max-width: 991px) {
    .sticky-sidebar {
        position: static;
    }

    .product-main-image {
        height: 330px;
    }
}

@media(max-width: 575px) {
    .product-details-card {
        padding: 18px;
        border-radius: 20px;
    }

    .product-main-image {
        height: 260px;
    }

    .product-details-title {
        font-size: 28px;
    }

    .composition-box,
    .description-box,
    .product-gallery {
        padding: 18px;
    }

    .product-actions {
        flex-direction: column;
    }
}

/* =========================
   RELATED PRODUCTS SLIDER
========================= */

.related-products {
    position: relative;
}

.related-product-slider {
    position: relative;
    overflow: hidden;
    padding-top: 45px;
    padding-bottom: 45px;
}

.related-product-track {
    display: flex;
    transition: transform 0.5s ease;
}

.related-product-slide {
    flex: 0 0 33.3333%;
    padding: 0 12px;
}

.related-product-slide .product-card {
    height: 100%;
}

.related-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.related-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfd8e3;
    padding: 0;
}

.related-slider-dots button.active {
    background: var(--cyan);
}

/* Tablet: 2 products */

@media (max-width: 991px) {
    .related-product-slide {
        flex: 0 0 50%;
    }
}

/* Mobile: 1 product */

@media (max-width: 575px) {
    .related-product-slide {
        flex: 0 0 100%;
        padding: 0 6px;
    }
}




/* =========================
   BLOG DETAILS PAGE
========================= */

.blog-details-section {
    background: #f8faff;
}

.blog-details-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.blog-details-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 24px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 18px;
}

.blog-meta i {
    color: var(--cyan);
    margin-right: 5px;
}

.blog-details-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 18px;
}

.blog-lead {
    font-size: 18px;
    color: #516173;
    font-weight: 500;
}

.blog-details-card p {
    color: #6c757d;
    line-height: 1.8;
}

.blog-details-card h3 {
    color: var(--navy);
    font-weight: 800;
    margin-top: 30px;
}

.blog-details-card ul {
    padding-left: 20px;
}

.blog-details-card li {
    margin-bottom: 10px;
    color: #6c757d;
}

.blog-details-card blockquote {
    background: #f4f7fa;
    border-left: 5px solid var(--cyan);
    padding: 22px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 30px 0;
}

/* Sidebar */

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.sidebar-widget h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 18px;
}

.blog-search {
    display: flex;
    background: #f4f7fa;
    border-radius: 14px;
    overflow: hidden;
}

.blog-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 13px;
    outline: none;
}

.blog-search button {
    width: 48px;
    border: none;
    background: var(--cyan);
    color: #fff;
}

.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-list li {
    margin-bottom: 10px;
}

.blog-category-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    background: #f4f7fa;
    color: var(--navy);
    padding: 13px 15px;
    border-radius: 14px;
    font-weight: 700;
}

.blog-category-list a:hover {
    background: var(--navy);
    color: #fff;
}

.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.recent-post img {
    width: 78px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.recent-post h6 {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.recent-post span {
    font-size: 12px;
    color: #6c757d;
}

/* Responsive */

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
    }

    .blog-details-img {
        height: 340px;
    }

    .blog-details-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .blog-details-card {
        padding: 18px;
        border-radius: 20px;
    }

    .blog-details-img {
        height: 230px;
        border-radius: 16px;
    }

    .blog-details-title {
        font-size: 28px;
    }

    .blog-meta {
        gap: 10px;
        font-size: 13px;
    }

    .blog-lead,
    .blog-details-card blockquote {
        font-size: 16px;
    }

    .sidebar-widget {
        padding: 18px;
        border-radius: 18px;
    }
}




/* =========================
   CONTACT PAGE
========================= */

.contact-section {
    background: #f8faff;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-content h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-content p {
    margin-bottom: 3px;
    color: #666;
    line-height: 1.5;
    word-break: break-word;
}

.contact-form-box label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.contact-form-box .form-control {
    border-radius: 12px;
    min-height: 50px;
    box-shadow: none;
}

.contact-form-box .form-control:focus {
    border-color: var(--cyan);
}

.contact-form-box textarea.form-control {
    min-height: 150px;
}

.contact-btn {
    min-width: 180px;
}

.map-section iframe {
    display: block;
}

/* Tablet */

@media (max-width: 991px) {
    .contact-info-box {
        margin-bottom: 20px;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .contact-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .contact-section .container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 18px;
        border-radius: 20px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 22px;
        flex-direction: row;
        text-align: left;
    }

    .contact-item .icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 18px;
        margin: 0;
    }

    .contact-content h5 {
        font-size: 17px;
    }

    .contact-content p {
        font-size: 14px;
    }

    .contact-btn {
        width: 100%;
    }
}


/* =========================
   GLOBAL ALERT
========================= */

.custom-alert {
    position: fixed;
    top: 90px;
    right: 20px;
    min-width: 320px;
    max-width: 450px;
    z-index: 99999;

    padding: 16px 18px;
    border-radius: 14px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    animation: slideIn .4s ease;
}

.success-alert {
    background: #28a745;
}

.error-alert {
    background: #dc3545;
}

.custom-alert i {
    font-size: 20px;
    margin-top: 2px;
}

.alert-close {
    margin-left: auto;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

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

@media(max-width:576px) {
    .custom-alert {
        left: 15px;
        right: 15px;
        min-width: auto;
        max-width: none;
        top: 75px;
    }
}




/* =========================
   ABOUT US PAGE
========================= */

.inner-banner {
    background:
        linear-gradient(rgba(10, 45, 93, .85), rgba(10, 45, 93, .75)),
        url("https://images.unsplash.com/photo-1579165466541-74e24690558a?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.inner-banner-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.inner-banner-content p {
    max-width: 650px;
    margin: 0 auto;
    opacity: .85;
    font-size: 18px;
}

.about-details-section {
    background: #fff;
}

.about-details-img {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    position: relative;
}

.about-details-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.section-subtitle {
    display: inline-block;
    color: var(--cyan);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-size: 14px;
}

.section-title {
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 20px;
}

.about-count-box {
    background: #f8faff;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(10, 45, 93, .06);
}

.about-count-box h3 {
    color: var(--navy);
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 4px;
}

.about-count-box p {
    margin: 0;
    color: #6c757d;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.mission-vision-section {
    background: #f8faff;
}

.about-info-card {
    background: #fff;
    padding: 35px;
    border-radius: 28px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.about-info-card:hover {
    transform: translateY(-8px);
}

.about-info-icon {
    width: 65px;
    height: 65px;
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}

.about-info-card h4 {
    color: var(--navy);
    font-weight: 800;
}

.about-info-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.about-quality-section {
    background: #fff;
}

.about-small-text {
    max-width: 650px;
}

.quality-box {
    background: #f8faff;
    border-radius: 24px;
    padding: 32px 18px;
    text-align: center;
    height: 100%;
    transition: .3s ease;
}

.quality-box:hover {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transform: translateY(-6px);
}

.quality-box i {
    font-size: 34px;
    color: var(--cyan);
    margin-bottom: 16px;
}

.quality-box h5 {
    color: var(--navy);
    font-weight: 800;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .inner-banner {
        padding: 90px 0;
    }

    .about-details-img img {
        height: 380px;
    }

    .about-info-card {
        padding: 28px;
    }
}

@media (max-width: 575px) {
    .inner-banner {
        padding: 70px 0;
    }

    .inner-banner-content p {
        font-size: 15px;
    }

    .about-details-img {
        border-radius: 22px;
    }

    .about-details-img img {
        height: 260px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-count-box {
        padding: 20px 8px;
    }

    .about-count-box h3 {
        font-size: 30px;
    }

    .about-count-box p {
        font-size: 11px;
    }

    .about-info-card {
        padding: 24px;
        border-radius: 22px;
    }

    .quality-box {
        padding: 24px 10px;
    }

    .quality-box h5 {
        font-size: 14px;
    }
}





/* =========================
   MOBILE EXTRA PADDING FIX
========================= */

@media (max-width: 575.98px) {

    section.py-5 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    section .container.py-5,
    .container.py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .hero-slide {
        padding: 45px 0 55px !important;
    }

    .hero-image-box {
        margin-top: 25px;
        height: 230px;
    }

    .cat-overlap {
        margin-top: -25px;
    }

    .cat-card {
        padding: 18px 10px;
    }

    #about {
        margin-top: 20px !important;
    }

    .why-box {
        padding: 22px 16px;
    }

    .enquiry-bg {
        padding: 45px 0 !important;
    }

    .glass-form {
        padding: 22px 16px;
    }

    .footer-section {
        padding: 40px 0 18px;
    }

    .inner-banner {
        padding: 55px 0;
    }

    .mission-vision-section,
    .about-quality-section,
    .about-details-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .related-product-slider {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .blog-details-card,
    .product-details-card,
    .contact-info-box,
    .contact-form-box {
        padding: 16px;
    }
}