/* RESET */
body { 
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    background: #000000;
}


/*sj*/

.grid{
    margin:0 auto;
}

.grid-sizer,
.grid-item{
    width:33.333%;
}

@media(max-width:992px){
    .grid-sizer,
    .grid-item{
        width:50%;
    }
}

@media(max-width:576px){
    .grid-sizer,
    .grid-item{
        width:100%;
    }
}

.grid-item{
    padding:10px;
}

.image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.image-wrapper img{
    width:100%;
    display:block;
    transition:0.4s;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:0.4s;
}

.overlay i{
    font-size:40px;
    color:#fff;
}

.image-wrapper:hover img{
    transform:scale(1.08);
}

.image-wrapper:hover .overlay{
    opacity:1;
}

    .glightbox-clean .gprev {
        top: 50% !important;
    }

    .glightbox-clean .gnext {
        top: 50% !important;
    }




    .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
        background-color: #474747 !important;
        opacity: 1 !important;
    }

   /* END sj*/

.container-main{width: 85%;margin: 0 auto;}

.border-round { border-radius: 10px; }
p { line-height:32px;}

h2 {font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px; }

.font-big {font-size: 65px;}

/* NAVBAR */
.custom-navbar {
    background-color: #000;
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0d6efd;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image {
    height: 80vh;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.overlay-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px 40px;
    border-radius: 6px;
}

.overlay-box h1 {
    color: #fff;
    font-weight: 700;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 32px;
    width: 45px;
    height: 60px;
    cursor: pointer;
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image {
        height: 60vh;
    }

    .overlay-box {
        width: 90%;
    }
}
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* ===== SMOOTH DROPDOWN ANIMATION ===== */

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    margin-top: 0;
    background-color: #000;
}

/* First Level Hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* SUBMENU */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

/* Submenu Hover */
.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ITEM STYLE */
.dropdown-item {
    padding: 10px 18px;
    transition: background-color 0.25s ease, padding-left 0.25s ease;
    color: #fff;
}

.dropdown-item:hover {
    padding-left: 24px;
    background-color: #0d6efd;
    color: #fff;
}
/* SLIDER IMAGE */
.hero-image {
    height: auto;
    object-fit: cover;
}

/* SMOOTH SLIDE SPEED */
.carousel-item {
    transition: transform 0.9s ease-in-out;
}

/* Caption Center */
.custom-caption {
    top: 74%;
    transform: translateY(-50%);
    bottom: auto;
}

/* Overlay Box */
.overlay-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 6px;
}
/* PRODUCT CARD */
.product-card { 
    position: relative;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgb(0 0 0 / 45%);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
     height: 400px;   
}

/* CARD LIFT */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* IMAGE */
.product-img {
    padding: 10px;    text-align: center;
    /* background: #e6e6e6; */    height: 280px;
}

.product-img img {
    width: auto;
    border-radius: 4px;
    transition: transform 0.5s ease;
    height: auto;
    max-width: 100%;
    max-height: 250px;
}

/* IMAGE ZOOM */
.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* BODY */
.product-body {
    padding: 15px;
}

.product-body h6 {
    font-weight: 600;
    font-size: 19px;    height: 50px;
}

.price {
    color: #0d6efd;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 20px;
}

/* ===== FULL CARD OVERLAY ===== */
.product-overlay {
    position: absolute;
    inset: 0; /* FULL CARD */
    background: rgb(90 82 82 / 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* BUTTON WRAPPER */
.overlay-actions {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

/* SHOW OVERLAY ON FULL CARD HOVER */
.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-card:hover .overlay-actions {
    transform: translateY(0);
}

/* BUTTONS */
.overlay-actions .btn {
    display: block;
    width: 170px;
    margin: 10px auto;
    border-radius: 30px;
    font-weight: 700;
    padding: 8px 0;
}

/* ENQUIRE */
.enquire-btn {
    background: #fff;
    color: red;
    border: 2px solid red;
}

.enquire-btn:hover {
    background: #F00304;
    color: #fff;
}

/* VIEW DETAILS */
.details-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.details-btn:hover {
    background: #fff;
    color: #000;
}
/* SECTION BACKGROUND */
.inventory-section {
    background: #f7f7f7;
}

/* LEFT CONTENT */
.inventory-left h2 {
    font-size: 43px;
    font-weight: 900;
    line-height: 1.15;
    color: #000;
}

.inventory-left h2 span {
    color: #0d6efd;
}

/* SHOP NOW BUTTON */
.shop-now-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 6px 30px;
    border: 2px solid #F00304;
    border-radius: 30px;
    color: #F00304;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 21px;
}

.shop-now-btn:hover {
    background: red;
    color: #fff;
}

/* INVENTORY CARD */
.inventory-card {
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    height: 370px;
}

/* IMAGE */
.inventory-card img {
  width: auto;
    border-radius: 4px;
    background: #eee;
    height: auto;
    max-width: 100%;
    max-height: 250px;
}

/* TEXT */
.inventory-card p {
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.5px;
    color: #000;
    margin-top: 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inventory-left {
        margin-bottom: 30px;
    }

    .inventory-left h2 {
        font-size: 30px;
    }
}
/* INVENTORY CARD HOVER EFFECT */
.inventory-card {
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    border: 1px solid #d5d5d5;
}

.inventory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* IMAGE ZOOM */
.inventory-card img {
    transition: transform 0.5s ease;
}

.inventory-card:hover img {
    transform: scale(1.06);
}

/* TEXT EFFECT */
.inventory-card p {
    transition: color 0.3s ease;
}

.inventory-card:hover p {
    color: #0d6efd;
}
a { text-decoration: none; }

/* SECTION */
.about-articles {
    background: #fff;
}

/* TITLES */
.section-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    color: #0d6efd;
}

/* ABOUT TEXT */
.about-text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 95%;
}

.read-more {
    color: red;
    font-weight: 700;
    text-decoration: none;
}

/* IMAGE */
.about-img {
    margin-top: 20px;
    max-width: 85%;
}

/* ARTICLES LIST */
.articles-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.articles-list li {
    padding: 14px 0;
    border-bottom: 1px solid #0d6efd;
}

.articles-list a {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.articles-list a:hover {
    color: #0d6efd;
}

/* ARROW */
.arrow {
    margin-right: 10px;
    font-size: 14px;
}


/* FOOTER TOP */
.footer-top {
    background: #ededed;
    padding: 15px 0;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.footer-links li {
    margin-right: 22px;
}

.footer-links a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

.footer-links a:hover { color: #0d6efd;}

/* SOCIAL ICONS */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    margin-left: 8px;
    color: #fff;
    font-size: 18px;
}

.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.facebook {
    background: #1877f2;
}
.social-icon i {font-size: 30px;}


/* FOOTER BOTTOM */
.footer-bottom {
    background: #000;
    padding: 15px 0;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 17px;
}

.footer-bottom a {
    color: #0d6efd;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.slider-text {
    color: #FD0101;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
}





.dropdown-icon {position: absolute; right: 25px;}



.filter-bar {background-color: #dbeafe;border-radius: 6px;padding: 12px;}

.filter-select {min-width: 200px;height: 44px;}


.page-link:hover { background-color: var(--bs-pagination-hover-bg);
    border-color: #0080FF;}


.page-link { border: var(--bs-pagination-border-width) solid #0080FF;}

.page-item:not(:first-child) .page-link {
    margin-left: calc(var(--bs-border-width) * -1);
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}


.page-item {
    color: #0080FF;
    margin: 0 4px;
    border-radius: 10px;
}



.img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.img-container:hover img {
  transform: scale(1.2);
}
.img-container img {
  transition: transform 0.5s ease;
  transform-origin: center center;
}
.img-container:hover img {
  transform: scale(1.5);
}



.product-panel {border: 1px solid #D5D5D5;background: #F6F6F6;padding: 20px;border-radius: 5px;min-height: 547px;}
.product-panel p {
    font-size: 20px;
    font-weight: 600;
}
.product-title {font-size: 26px;font-weight: 600;margin-bottom: 20px;}
.status {margin-bottom: 20px;}
.btn-enquire {font-size: 20px;padding: 7px 30px;border-radius: 50px;}

.content-card {
    border: 1px solid #CACACA;
    border-radius: 6px;
    padding: 22px 24px;
    background: #F9F9F9;
    height: 100%;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-date {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

.read-more {
    color: red;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}
.contact-box {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 25px;
    background: #fff;
}

.custom-input,
.custom-textarea {
    border: 1px solid #0d6efd;
    border-radius: 5px;
    padding: 12px;
}

.custom-input:focus,
.custom-textarea:focus {
    box-shadow: none;
}

.captcha-box {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
}

.highlight {
    color: red;
    font-weight: 600;
}

.site-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}
.site-link:hover {
    text-decoration: underline;
}
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* actual image */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* fade / blur overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(189 189 189 / 65%), rgba(0, 0, 0, 0.35), rgb(0 0 0 / 20%));
}

/* centered text */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    background: rgba(0,0,0,0.65);
    padding: 10px 30px;
    border-radius: 6px; 
}

.contact-box input {height: 45px;}
.contact-box textarea {height: 120px;}
iframe { border-radius: 10px;}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 0px;
    border-bottom: 1px solid #fff;
}

.custom-accordion .accordion-button {
    background: #f2f2f2;
    font-weight: 600;
    padding: 16px 20px;
    box-shadow: none;
    font-size: 18px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #cfe8ff;
    color: #000;
}

.custom-accordion .accordion-button::after {
    background-size: 18px;
}

.custom-accordion .accordion-body {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-top: none;
    padding: 18px 20px;
    font-size: 17px;
    line-height: 1.7;
}
.sitemap-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    border-bottom: 1px dotted #cccc;
    padding: 10px;
}
.sitemap-list li:hover {background-color: #e4f1ff;}

.sitemap-list a {
    text-decoration: none;
    color: #000000;
    font-size: 17px;
}

.sitemap-list a:hover {
    text-decoration: none;
}

.disable-btn{
z-index: 999;
    position: relative;
    background: #ccc !important;
    color: #fff !important;
    cursor: unset;
    border: 0;}




.filter-card {
    border: 1px solid #cfcfcf;
    background: #fff;
    position: relative;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.filter-header {
    padding: 10px 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.filter-header .filter-arrow {
    transition: transform .3s ease;
}

.filter-header.collapsed .filter-arrow {
    transform: rotate(0deg);
}

.filter-header:not(.collapsed) .filter-arrow {
    transform: rotate(180deg);
}

.filter-body {
    max-height: 280px;
    overflow-y: auto;
    position: absolute;
    padding: 10px 15px;
    background: #fff;
    z-index: 9;
    border: 1px solid #ccc;
    width: 100%;
    height: 200px;
}

.filter-body label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    cursor: pointer;
    font-weight: 600;
}

.filter-body input {
    margin-right: 6px;
}

.search-box {background-color: #D2E8FF;padding: 10px;border-radius: 5px;}


/* Dropdown icon */
.dropdown-icon {
    position: absolute;
    right: -4px;
    top: 17%;
    /* transform: translateY(-50%); */
    /* width: 8px; */
    /* height: 4px; */
    /* cursor: pointer; */
}

.dropdown-icon::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

/* Desktop hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

/* Smooth dropdown */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    background-color: #000;
}



.button-bg {
    font-size: 18px;
    font-weight: 600;
}


.btn-close {
    position: absolute;
    right: -10px;
    top: -16px;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px;
    opacity: 1;
    border: 1px solid #0080FF;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 999;
    }


.modal-content h6 { font-size: 26px;font-weight: 600;}
.navbar-nav li  {margin-left: 38px;}
.dropdown-menu li {
    margin-left: 0;
}
.dropdown-menu { padding: 0; }


.tab-pane .contact-box {     border: 0;
    border-radius: 6px;
    padding: 0;
    background: transparent; }

.nav-tabs {
    border-bottom: var(--bs-nav-tabs-border-width) solid #cbe5ff;
    margin: 0px 0px -2px 0px;
}

.nav-tabs .nav-link { font-weight: 500;  font-size: 18px;}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {color: #0080ff;}

.nav {  --bs-nav-link-color: #000000;}
.social-icon-article ul {
    padding: 0;
}

.social-icon-article ul li {
    list-style: none;
    display: inline-block;
    margin-right: 5px;
}

.linkedin {
    top: 9px;
    position: relative;
}
.twitter {
    top: 9px;
    position: relative;
    }

.product-gallery {
    width: 100%;
    margin: auto;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

/* Main Image */
.main-image img {
    max-width: 100%;
    border: 1px solid #ddd;
    margin: 0 auto;
}

/* Thumbnail Area */
.thumb-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.thumb-container {
    display: flex;
    gap: 6px;
    overflow: hidden;
    width: 320px;
}

.thumb {
    width: 112px;
    height: 97px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #b5b5b5;
    border-radius: 5px;
}

.thumb.active {
    border-color: #000;
}

.thumb-nav {
    cursor: pointer;
    font-size: 22px;
    padding: 0 8px;
    user-select: none;
}


.thumb-container {
    display: flex;
    gap: 6px;
    overflow-x: auto;      /* VERY IMPORTANT */
    scroll-behavior: smooth;
    width: 100%;
}

/* scrollbar hide (optional) */
.thumb-container::-webkit-scrollbar {
    display: none;
}

.main-image {
    width: 100%;
    border: 1px solid #ddd;
}

.zoom-container {
    position: relative;
    overflow: hidden;   /* ZOOM KE LIYE MOST IMPORTANT */
}

.zoom-container img {
    width: 100%;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

/* Hover zoom effect */
.zoom-container:hover img {
    transform: scale(1.5);
}


.main-image {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
}

.zoom-container {
    position: relative;
    overflow: hidden;      /* MUST */
    cursor: zoom-in;
}

.zoom-container img {
    width: 100%;
    transition: transform 0.2s ease;
    /* border-radius: 0px; */
}

.thumb-prev {font-size: 55px;color: #0080ff;cursor: pointer;}
.thumb-next {font-size: 55px;color: #0080ff;cursor: pointer;}
.tab-content {background: #fff;padding: 20px;border: 1px solid #cbe5ff;border-radius: 5px;}
.container-main { background: #fff; }

.Enquire-btn { color: #dc3545 !important; }


.pagination li {
    color: #0080FF;
 
}
.pagination li a {
    padding: 5px 10px;
    color: #0080FF;
    margin: 0 4px;
    border-radius: 5px;
    border: 1px solid #0080FF;
    font-weight: 600;
}
.pagination li a:hover {
        background: #0080ff;
    color: #ffffff;
}
.next a {background: #0080FF;color: #fff !IMPORTANT;}
.prev a {background: #0080FF;color: #fff !IMPORTANT;}
.next a:hover {
    background: #f0f0f0; color:#000;
}
.prev a:hover {
    background: #f0f0f0; color:#000;
}

.active a  {background: #0080FF;color: #fff !IMPORTANT;}
.disabled a { background: #ccc;  border: 1px solid #ccc !important;}

#filterCategory .filter-body,
#filterYear .filter-body{  width: 630px;    max-width: 630px;}

.carousel-caption.custom-caption {
    left: 5% !important;
    right: auto !important;
    text-align: left;
}  
.artical-detail-main img { max-width: 100%  !important; height: auto  !important;}
.manage-img img { max-width: 100%  !important; height: auto  !important;}

.search-box .col-lg-6 label {
    display: flex;
    align-items: flex-start;
    gap: 8px;              /* checkbox aur text ke beech gap */
    cursor: pointer;
}

.search-box  .col-lg-6 label input[type="checkbox"] {
    flex-shrink: 0;        /* checkbox chhota na ho */
    margin-top: 6px;       /* optional alignment */
}

.rc-anchor-normal {
 
    width: 240px !important;
}

/* Smooth effect */
.custom-input,
.custom-textarea {
    transition: all 0.2s ease;
}

/* Jab invalid ho → Full Red Outline */
.enquiry-form:invalid .custom-input,
.enquiry-form:invalid .custom-textarea {
    border: 2px solid #ff0000 !important;
    box-shadow: 0 0 0 2px rgba(255,0,0,0.2);
}

/* Focus invalid stronger */
.custom-input:focus:invalid,
.custom-textarea:focus:invalid {
    border: 2px solid #ff0000 !important;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.3);
}

.main-bg h1 {     font-size: 45PX;
    font-weight: bold;
    margin-bottom: 15px;}

./* === OUR WORK IMAGE EFFECT === */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.image-wrapper img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  border-radius: 12px;
}

/* Overlay background */
.image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a002296; /* purple transparent */
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  border-radius: 12px;
}

/* Overlay text */
.image-wrapper .overlay-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

/* Hover effect */
.image-wrapper:hover img {
  transform: scale(1.08);
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.image-wrapper:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.image-wrapper i { font-size: 40px; }


.modal-footer  {
    position: absolute;
    border-radius: 50px;
    right: -30px;
    top: -25px;
    }



#lightboxModal img {width: 100%;border-radius: 10px;height: auto;}   

.modal-footer .btn {
    border-radius: 50px;
    border: 1px solid #230b64;
    font-size: 25px;
    background: linear-gradient(135deg, #632497, #352390);
    color: #fff;
    padding: 6px 12px 11px 15px;
    line-height: 21px;
    } 
   /* ===== ICON + BACKGROUND HOVER EFFECT ===== */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* default background color */
  border-radius: 50%;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.icon-wrapper img {
  width: 100%; /* adjust as needed */
  transition: transform 0.4s ease;
  margin-bottom: 0 !important;
}

/* Hover effect */
.icon-wrapper:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(140, 0, 255, 0.5);
  background: linear-gradient(152deg,rgba(26, 0, 34, 1) 0%, rgba(55, 2, 167, 1) 100%);
}

.icon-wrapper:hover img {
  transform: scale(1.15);
}

.fs-3 {
    font-size: 70px !important;
}

.carousel {background: #000;}
.carousel-inner { background: #000;}
.carousel-item {  background: #000;}
.hero-image { background: #000;}
.custom-caption a {     color: #FD0101 !important;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
    background: transparent;}


    .inventory-card figure { height: 250px;}
.about-main-new img { max-width: 100%; height: auto;}