/* ================================
   ROOT COLOR VARIABLES
================================ */
:root {
    --primary: #1E40AF;
    --secondary: #F97316;
    --dark: #111827;
    --light: #F9FAFB;
    --grey: #6B7280;
    --border: #E5E7EB;
    --success: #16A34A;
    --danger: #DC2626;
    --light-back: #3B82F6;
}



/* ================================
   HEADER TOP BAR
================================ */
.header-top {
    background: linear-gradient(
        90deg,
        #f97316 0%,
        #2563eb 100%
    );
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 235, 205, 0.2),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ================================
   CONTACT INFO
================================ */
.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.header-contact i {
    font-size: 14px;
    color: var(--light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header-contact a {
    color: var(--light) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-contact a:hover {
    color: var(--secondary) !important;
    transform: translateY(-1px);
}

/* ================================
   MAIN HEADER
================================ */
.header {
     background: linear-gradient(
        135deg,
        #1e3a8a 0%,
        #2563eb 100%
    ) ;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.header-content {
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

/* ================================
   LOGO
================================ */
.logo a {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.logo  {
    background: white;
    font-weight: 700;

    padding: 6px 10px;
    border-radius: 8px;
}

.logo:hover  {
    transform: scale(1.05);
}

.nav-link:hover {
    background: rgba(255,255,255,0.18) !important;
}
/* ================================
   NAVIGATION
================================ */
.navbar {
    flex-grow: 1;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    background: linear-gradient(
        135deg,
        var(--secondary),
        #fb923c
    );
    color: #111827 ;
    font-weight: 600;
}

/* ================================
   MOBILE TOGGLER
================================ */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    aspect-ratio: 1;
    border-color: var(--light) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================
   SCROLLING PROMO BAR
================================ */
.scrolling-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    overflow: hidden;
    position: relative;
}

.scrolling-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: stripes 20s linear infinite;
}

@keyframes stripes {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.marquee-text {
    color: var(--light) !important;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: marqueeScroll 15s linear infinite;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ================================
   GLASS EFFECT
================================ */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ================================
   GLOBAL TRANSITION
================================ */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   FOOTER BASE
================================ *//* ================================
   FOOTER BASE
================================ */
.footer {
    background: linear-gradient(
        180deg,
        #1e3a8a 0%,   /* deep royal blue */
        #2563eb 45%,  /* primary blue */
        #3b82f6 100%  /* light blue */
    );
    color: var(--light);
    position: relative;
    overflow: hidden;
}

/* Grain Texture Overlay */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* ================================
   FOOTER TOP WRAP
================================ */
.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* ================================
   LOGO
================================ */
.footer-about .logo {
    font-size: 2rem;
    color: var(--light);
    background-color: unset;
    text-decoration: none;
    font-weight: 700;
}

/* ================================
   CONTACT INFO
================================ */
.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

.footer-contact strong {
    color: var(--secondary);
    font-weight: 600;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary);
}

/* ================================
   FOOTER LINKS
================================ */
.footer-links h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--secondary),
        var(--success)
    );
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.footer-links ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    border-style: solid;
    border-width: 5px;
    border-color: transparent transparent transparent var(--secondary);
    transform: translateY(-50%);
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    transform: translateX(6px);
}

/* ================================
   NEWSLETTER
================================ */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Glass Input */
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

/* Subscribe Button */
.newsletter-form input[type="submit"] {
    padding: 12px 26px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        #fb923c
    );
    color: var(--light);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.foot-submit{
    background-color: linear-gradient(
        135deg,
        var(--secondary),
        #fb923c
    );
}

/* ================================
   SOCIAL ICONS (IF ENABLED)
================================ */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--success)
    );
    color: var(--dark);
    transform: translateY(-4px) scale(1.05);
}

/* ================================
   FOOTER BOTTOM
================================ */
.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.footer-bottom strong {
    color: var(--secondary);
}

.credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 6px;
}

.credits a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #ffffff;
}

/* Loading and Message States */
.loading,
.error-message,
.sent-message {
    display: none;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.loading {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.error-message {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.sent-message {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Demo content styling */
.demo-content {
    min-height: 80vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-banner-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

/* Modern Card Design */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.modern-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.03) 0%,
            rgba(118, 75, 162, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
}

.modern-card:hover::before {
    opacity: 1;
}


/* Card Image */
.card-image-container {
    /* position: relative;
    overflow: hidden;
    height: 240px; */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

/* .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
} */

.modern-card:hover .card-image {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(30, 60, 114, 0.1) 0%,
            rgba(42, 82, 152, 0.1) 50%,
            rgba(255, 152, 64, 0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.modern-card:hover .image-overlay {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 30px 25px;
    position: relative;
    z-index: 3;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.modern-card:hover .card-title::after {
    width: 60px;
}

.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.modern-card:hover .card-description {
    color: #555;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg,
            rgba(255, 107, 107, 0.1),
            rgba(255, 217, 61, 0.1));
    border-radius: 50%;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: 2;
}

.modern-card:hover .floating-element {
    opacity: 1;
    transform: scale(1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Demo Container */
.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-title {
    text-align: center;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Grid Enhancement */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-list .product-card .product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.3s ease all;
}

.product-list .product-card {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    border-radius: 10px;
    transition: 0.3s ease all;
    height: 100%;
}

.product-list .product-card .peoduct-image-container {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-list .product-card .product-details {
    padding: 1rem 1.5rem 0;
}

.product-list .product-card:hover {
    transform: translate(0, -5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-list .product-card:hover .product-image {
    transform: scale(1.05);
}

/* slick slider css hero section? */

.hero .slick-dots {
    position: absolute;
    bottom: 5%;
    padding-right: 30px;
    text-align: center;
}

.hero .slick-dots li {
    margin: auto 7px;
}

.hero .slick-dots li button::before {
    background: transparent;
    color: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    content: "";
    width: 15px;
    height: 15px;
    opacity: 0.85;
    display: inline-block;
}

.hero .slick-dots li.slick-active button::before {
    background: #fff;
    border: 5px solid #fff;
    opacity: 0.85;
}

.catalogue-container {
    margin: 100px auto;
}

.catalogue-card {
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    height: 200px;
}

.catalogue-card:hover {
    transform: translateY(-8px);
    /* background: rgba(255, 255, 255, 0.15); */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.catalogue-card .card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.catalogue-card .card-image {
    width: 100%;
    aspect-ratio: 3/2;
    height: unset;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalogue-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.catalogue-card:hover .image-overlay {
    opacity: 1;
}

.catalogue-card:hover .card-image {
    transform: scale(1.08);
}

.catalogue-card .floating-element {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-align: center;
    margin-bottom: 10px;
}

.catalogue-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.catalogue-card .card-description {
    opacity: 0.8;
    line-height: 1.5;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 255, 136, 1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 991.98px) {

    .section-head h3 {
        font-size: 1.7rem;
    }

    .section-head p {
        font-size: 16px;
    }

    .header-top {
        padding: 5px 0;
    }

    .header-contact {
        font-size: 12px;
        gap: 5px;
    }

    .header-contact a {
        font-size: 12px;
    }

    .navbar-collapse {
        background: rgba(30, 60, 114, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 15px;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 60px;
        width: 100%;
        max-width: 340px;
        right: 0;
    }

    .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .marquee-text {
        font-size: 1rem;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="submit"] {
        align-self: flex-start;
    }

    .header-social {
        display: none;
    }

    .header-top .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .header-contact {
        justify-content: start;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo img {
        max-height: 40px;
    }

    .marquee-text {
        font-size: 0.9rem;
    }

    .card-grid {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .demo-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* .card-image-container {
        height: 200px;
    } */

    .card-content {
        padding: 20px 18px;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .modern-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    /* .card-image-container {
        height: 220px;
    } */

    .card-content {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .product-list .row>div {
        padding: 0px 5px;
        margin: 5px auto;
    }

    .product-list {
        margin: 20px auto;
    }

    .product-list .product-card {
        margin: 5px auto !important;
        border-radius: 0 !important;
        height: 100%;
    }

    .product-list .product-card .peoduct-image-container {}

    .product-list .product-card .product-details {
        padding: 7px !important;
    }

    .product-list .product-card .product-details h5 {
        font-size: 14px;
    }

    .product-list .product-card .product-details span {
        font-size: 12px;
    }

    .product-list .product-card:hover {
        transform: unset !important;
        box-shadow: unset !important;
    }

    .product-list .product-card:hover .product-image {
        transform: unset !important;
    }
}

@media (max-width: 767.98px) {

    .section-head h3 {
        font-size: 1.5rem;
    }

    .section-head p {
        font-size: 14px;
    }

    .footer-top {
        padding: 30px 0 20px;
    }

    .footer-about,
    .footer-links,
    .footer-newsletter {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .catalogue-container {
        background: unset;
        height: 100%;
    }

    /* .card-image-container img {
        aspect-ratio: 4/5 !important;
    } */

    .card-image-container .card-title {
        font-size: 16px;
        margin: 0;
    }

    .catalogue-container .catalogue-card {
        position: relative;
        min-width: 170px;
        /* background : #f5f5f5; */
    }

    .catalogue-container .catalogue-card:hover {
        position: relative;
        background: #f5f5f5;
    }


    .catalogue-container .image-overlay {
        padding: 10px;
        font-size: 16px;
        position: relative;
        background: transparent;
        opacity: 1;
        transition: unset;
        display: none !important;
    }

    .catalogue-container .image-overlay .card-title {
        position: relative;
    }

    .hero .slick-dots {
        text-align: end;
    }

    .hero .slick-dots li {
        width: 16px;
        height: 16px;
        margin: 0 4px;
    }

    .hero .slick-dots li button:before {
        width: 10px !important;
        height: 10px !important
    }

    .catalogue-container .section-title p {
        font-size: 12px;
    }

    .catalogue-container {
        margin: 30px auto 50px
    }


}

@media (max-width: 575.98px) {
    .navbar-collapse {
        right: unset;
        left: 50%;
        transform: translateX(-57%);
    }

    .header-contact a span {
        display: none;
    }

    .modern-card .card-description {
        display: none !important;
    }

    .header-contact a::after {
        content: attr(href);
        font-size: 12px;
    }

    .header-contact a[href^="mailto:"]::after {
        content: "xyz@gmail.com";
    }

    .header-contact a[href^="tel:"]::after {
        content: "+91 90045 73662";
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* .card-image-container {
        height: 180px;
    } */

    .card-content {
        padding: 18px 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.85rem;
    }

    .demo-container {
        padding: 0 7px;
        margin: 20px auto;
    }

    .demo-container .demo-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .catalogue-card .card-description {
        display: none;
    }


    .demo-container .card-grid {
        margin-top: 0;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 10px
    }

    .demo-container .card-grid .modern-card {
        border-radius: 5px;
        min-width: 170px;
    }

    .demo-container .card-grid .card-image-container {
        width: 100%;
        aspect-ratio: 1;
        height: unset;
        overflow: hidden;
    }

    .demo-container .card-grid .card-image-container img {
        width: 100%;
        object-fit: cover
    }

    .demo-container .card-grid .card-content {
        padding: 8px 10px;
    }

    .demo-container .card-grid .card-content p {
        margin: 0;
    }

    .demo-container .card-title {
        font-size: 14px;
        /* gap: 20px; */
    }

    .demo-container .card-description {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .slick-next {
        right: 5px !important;
        z-index: 1;
    }

    .slick-prev {
        left: 5px !important;
        z-index: 1;
    }

}


/* custom card style starts here ? */

.flex-container .binary-card-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex-container .binary-card-layout .cust-card,
.flex-container .cust-card {
    position: relative;
    min-width: 200px;
}

.flex-container .binary-card-layout .cust-card .card-image-container,
.flex-container .cust-card .card-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.flex-container .binary-card-layout .cust-card .card-image-container img,
.flex-container .cust-card .card-image-container img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.3s ease-in-out all;
}

.flex-container .binary-card-layout .cust-card:hover .card-image-container img,
.flex-container .cust-card:hover .card-image-container img {
    transform: scale(1.1);
}

.flex-container .binary-card-layout .cust-card .cust-card-content,
.flex-container .cust-card .cust-card-content {
    padding: 10px 15px;
    background: #2a5197;
    text-align: center;
}

.flex-container .binary-card-layout .cust-card .cust-card-content .card-title,
.flex-container .cust-card .cust-card-content .card-title {
    font-size: 1.2rem;
    color: white;
}


.flex-container .cust-card.horizontal-card {
    position: relative;
    min-width: 400px;
}

.flex-container .cust-card.horizontal-card .card-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.flex-container .cust-card.horizontal-card .card-image-container img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: 50% 50%;
    transition: 0.3s ease-in-out all;
}

.flex-container .cust-card.horizontal-card .cust-card-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2a51975e;
    text-align: center;
    align-content: center;
    opacity: 0;
    transition: 0.3s ease-in-out all;
}

.flex-container .cust-card.horizontal-card .cust-card-content .card-title {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.flex-container .cust-card.horizontal-card:hover .card-image-container img {
    transform: scale(1.1);
}

.flex-container .cust-card.horizontal-card:hover .cust-card-content {
    opacity: 1;
}

.product-list .row>div {
    margin: 10px 0
}

@media (max-width: 600px) {

    .trm-sections-container {
        gap: 15px !important;
    }

    .flex-container {
        gap: 5px;
    }

    .flex-container .cust-card.horizontal-card {
        min-width: 180px;
    }

    .flex-container .binary-card-layout .cust-card,
    .flex-container .cust-card {
        min-width: 100px;
        max-width: 150px;
    }

    .flex-container .binary-card-layout .cust-card .cust-card-content .card-title,
    .flex-container .cust-card .cust-card-content .card-title {
        font-size: 10px;
    }

    .flex-container .binary-card-layout .cust-card .cust-card-content,
    .flex-container .cust-card .cust-card-content {
        padding: 5px 7px;
    }


    .flex-container .cust-card.horizontal-card .cust-card-content {
        position: relative;
        background-color: #2a5197;
        opacity: 1;
        height: fit-content;
        transition: 0.3s ease-in-out all;
    }

    .flex-container .cust-card.horizontal-card .cust-card-content .card-title {
        font-size: 14px;
    }

    .flex-container .cust-card.horizontal-card:hover .card-image-container img {
        transform: scale(1.1);
    }

}
