/* ------------------headnavfull -------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: rgb(255, 255, 255);
    color: #333;
}

/* *{margin:0;padding:0;box-sizing:border-box} */
/* body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;background-color:#ffffff;color:#000000} */
.sazs-header {
    background: #fff !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: transform .3s ease-in-out !important
}

.sazs-header.expanded {
    background: rgba(255, 255, 255, .98)
}

.sazs-header-wrapper {
    max-width: 1460px;
    margin: 0 auto;
    padding: 5px 0
}

.sazs-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sazs-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none
}

.sazs-brand-image {
    width: 150px;
    height: 70px;
    margin-top: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    z-index: 1001 !important;
    justify-content: center
}

.sazs-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding-left: 70px
}

.sazs-menu-item {
    position: relative
}

.sazs-menu-link {
    color: rgba(0, 0, 0, .8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500 !important;
    padding: .5rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: color .3s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer
}

.sazs-menu-link:hover,
.sazs-menu-link.active {
    color: #000
}

.sazs-arrow-svg {
    width: 12px;
    height: 12px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.sazs-menu-item.active .sazs-arrow-svg {
    transform: rotate(45deg)
}

.sazs-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1), opacity .4s cubic-bezier(.4, 0, .2, 1), padding .4s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .5s;
    padding: 0 2rem;
    transform: translateY(-10px)
}

.sazs-submenu.active {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    padding: 2rem;
    transform: translateY(0);
    transition: max-height .6s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1), padding .5s cubic-bezier(.4, 0, .2, 1), visibility 0s linear 0s, transform .5s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.sazs-submenu-col {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.sazs-product-card {
    background: 0 0;
    border: none;
    border-radius: 12px;
    padding: 0;
    text-decoration: none;
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(.95);
    transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .sazs-product-card {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.sazs-submenu.active .sazs-submenu-col:nth-child(1) .sazs-product-card {
    transition-delay: .1s
}

.sazs-submenu.active .sazs-submenu-col:nth-child(2) .sazs-product-card {
    transition-delay: .15s
}

.sazs-submenu.active .sazs-submenu-col:nth-child(3) .sazs-product-card {
    transition-delay: .2s
}

.sazs-submenu.active .sazs-submenu-col:nth-child(4) .sazs-product-card {
    transition-delay: .25s
}

.sazs-product-card:hover {
    transform: translateY(-6px) scale(1.02);
    opacity: 1;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.sazs-card-img-wrapper {
    width: 100%;
    height: 120px;
    background: #000;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.sazs-product-card:hover .sazs-card-img-wrapper {
    transform: scale(1.05)
}

.sazs-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.sazs-product-card:hover .sazs-card-img-wrapper img {
    transform: scale(1.1)
}

.sazs-card-heading {
    color: #000;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .5rem;
    padding: 0 .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: color .3s cubic-bezier(.4, 0, .2, 1)
}

.sazs-card-text {
    color: rgba(0, 0, 0, .5);
    font-size: .85rem;
    line-height: 1.5;
    padding: 0 .75rem .75rem;
    transition: color .3s cubic-bezier(.4, 0, .2, 1)
}

.sazs-cta-group {
    padding-left: 400px;
    display: flex;
    align-items: center;
    gap: 1rem
}

.sazs-button {
    padding: .65rem 1.5rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border: none;
    cursor: pointer
}

.sazs-button-outline {
    background: 0 0;
    color: rgba(0, 0, 0, .8);
    border: 1px solid rgba(0, 0, 0, .2)
}

.sazs-button-outline:hover {
    background: rgba(255, 255, 255, .05);
    color: #000;
    border-color: rgba(0, 0, 0, .3)
}

.sazs-hamburger {
    display: none;
    cursor: pointer;
    padding: .5rem
}

.sazs-hamburger i {
    font-size: 24px;
    color: #000
}

.product-dropdown {
    display: grid;
    grid-template-columns: .3fr 2.2fr;
    gap: 2rem;
    max-width: 1350px
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.product-section-title {
    color: rgba(0, 0, 0, .5);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .product-section-title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .1s
}

.product-link {
    color: rgba(0, 0, 0, .9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: .5rem 0;
    display: block;
    opacity: 0;
    transform: translateX(-20px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .product-link {
    opacity: 1;
    transform: translateX(0)
}

.sazs-submenu.active .product-link:nth-child(2) {
    transition-delay: .12s
}

.sazs-submenu.active .product-link:nth-child(3) {
    transition-delay: .14s
}

.sazs-submenu.active .product-link:nth-child(4) {
    transition-delay: .16s
}

.sazs-submenu.active .product-link:nth-child(5) {
    transition-delay: .18s
}

.sazs-submenu.active .product-link:nth-child(6) {
    transition-delay: .2s
}

.sazs-submenu.active .product-link:nth-child(7) {
    transition-delay: .22s
}

.sazs-submenu.active .product-link:nth-child(8) {
    transition-delay: .24s
}

.product-link:hover {
    color: #000;
    padding-left: .5rem
}

.product-right {
    border-left: 1px solid rgba(0, 0, 0, .1);
    padding-left: 3rem
}

.product-grid-title {
    color: rgba(0, 0, 0, .5);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .product-grid-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .1s
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: #000;
    overflow-x: hidden;
    transition: .5s;
    padding-top: 60px
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 14px;
    color: #fff !important;
    display: block;
    transition: .3s
}

.sidenav a,
.sidenav a strong,
.sidenav a b {
    font-weight: 400 !important
}

.sidenav a:hover {
    color: #f1f1f1
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    background: 0 0;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px 8px 8px 32px
}

.sidenav-logo {
    width: 130px;
    margin-bottom: 20px;
    margin-left: 18px
}

.mobile-dropdown {
    position: relative
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 32px;
    font-size: 25px;
    color: #fff !important;
    cursor: pointer
}

.mobile-dropdown-trigger i {
    font-size: 16px;
    transition: transform .3s ease
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg)
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding-left: 50px
}

.mobile-dropdown-content.active {
    max-height: 300px
}

.mobile-dropdown-content a {
    font-size: 12px !important;
    padding: 8px 0 !important
}

.call {
    padding: 10px 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    font-weight: 700;
    font-size: 27px !important
}

.call a {
    text-decoration: none !important;
    color: #fff !important;
    padding: 8px 8px 8px 0px
}

.ringing-icon {
    font-size: 22px !important;
    color: #fff;
    animation: ring 1s infinite ease-in-out;
    margin: 0 20px 7px 0 !important
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0)
    }

    10% {
        transform: rotate(15deg)
    }

    20% {
        transform: rotate(-15deg)
    }

    30% {
        transform: rotate(10deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    50% {
        transform: rotate(5deg)
    }

    60% {
        transform: rotate(-5deg)
    }
}

.media-events-dropdown {
    max-width: 1400px;
    margin: 0 auto
}

.media-events-header {
    margin-bottom: 0.6rem
}

.media-events-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(-15px);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .media-events-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .1s
}

.media-title-separator {
    color: rgba(0, 0, 0, .3);
    margin: 0 .5rem
}

.media-title-subtitle {
    color: rgba(0, 0, 0, .5);
    font-weight: 400
}

.media-events-ai-tracker {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .media-events-ai-tracker {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .15s
}

.ai-tracker-label {
    font-size: .95rem;
    font-weight: 600;
    color: #000
}

.ai-tracker-beta {
    display: inline-block;
    padding: .2rem .5rem;
    background: rgba(139, 92, 246, .2);
    color: #7c3aed;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ai-tracker-text {
    color: rgba(0, 0, 0, .6);
    font-size: .95rem
}

.media-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}


.media-event-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(.95);
    transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .media-event-card {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.sazs-submenu.active .media-events-grid .media-event-card:nth-child(1) {
    transition-delay: .15s
}

.sazs-submenu.active .media-events-grid .media-event-card:nth-child(2) {
    transition-delay: .18s
}

.sazs-submenu.active .media-events-grid .media-event-card:nth-child(3) {
    transition-delay: .21s
}

.sazs-submenu.active .media-events-grid .media-event-card:nth-child(4) {
    transition-delay: .24s
}

.sazs-submenu.active .media-events-grid .media-event-card:nth-child(5) {
    transition-delay: .27s
}

.media-event-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 0, 0, .2);
    background: #fafafa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.media-card-image {
    /* width:100%; */
    height: 160px;
    background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
    border-radius: 12px;
    margin: 1rem;
    overflow: hidden;
    position: relative;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.media-event-card:hover .media-card-image {
    transform: scale(1.05)
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.media-event-card:hover .media-card-image img {
    transform: scale(1.1)
}

.media-card-content {
    padding: 0 1.5rem 0.5rem
}

.media-card-title {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .75rem;
    line-height: 1.4;
    transition: color .3s cubic-bezier(.4, 0, .2, 1)
}

.media-event-card:hover .media-card-title {
    color: #4285f4
}

.blogs-dropdown-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0
}

.blogs-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.blog-card {
    background: 0 0;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(30px) scale(.95);
    transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1)
}

.sazs-submenu.active .blog-card {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.sazs-submenu.active .blogs-cards-grid .blog-card:nth-child(1) {
    transition-delay: .1s
}

.sazs-submenu.active .blogs-cards-grid .blog-card:nth-child(2) {
    transition-delay: .15s
}

.sazs-submenu.active .blogs-cards-grid .blog-card:nth-child(3) {
    transition-delay: .2s
}

.sazs-submenu.active .blogs-cards-grid .blog-card:nth-child(4) {
    transition-delay: .25s
}

.sazs-submenu.active .blogs-cards-grid .blog-card:nth-child(5) {
    transition-delay: .3s
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.blog-card-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.blog-card:hover .blog-card-image {
    transform: scale(1.02)
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05)
}

.blog-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2
}

.blog-overlay-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.blog-card:hover .blog-overlay-title {
    transform: translateY(-4px)
}

.blog-overlay-explore {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.blog-card:hover .blog-overlay-explore {
    gap: .75rem
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 12px 32px rgba(0, 0, 0, .35)
    }

    50% {
        box-shadow: 0 12px 32px rgba(102, 255, 153, .3), 0 0 20px rgba(102, 255, 153, .2)
    }
}

.bento-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto
}

.card {
    position: relative !important;
    border-radius: 28px !important;
    padding: 20px !important;
    overflow: hidden !important;
    min-height: 200px !important;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4) !important;
    transition: transform .3s ease, box-shadow .3s ease !important;
    animation: fadeInUp .6s ease-out backwards;
    display: flex;
    flex-direction: column;
}

.card:nth-child(1) {
    animation-delay: .1s
}

.card:nth-child(2) {
    animation-delay: .2s
}

.card:nth-child(3) {
    animation-delay: .3s
}

.card:nth-child(4) {
    animation-delay: .4s
}

.card:nth-child(5) {
    animation-delay: .5s
}

.card:nth-child(6) {
    animation-delay: .6s
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: left .5s;
    z-index: 2
}

.card:hover::before {
    left: 100%
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.55)
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    animation: slideInLeft .8s ease-out backwards;
    position: relative;
    z-index: 1;
    color: #000000 !important;
}

.card p {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    opacity: .82 !important;
    animation: slideInLeft .8s ease-out .1s backwards !important;
    position: relative !important;
    z-index: 1 !important;
    color: #000000 !important;
    
}

/* Remove background from these classes */
.anpr,
.einvoice,
.weighbridge,
.boom,
.biometrics,
.smarttech {
    grid-column: span 2;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.368);
}

/* Updated styles - Image positioned above text, not as overlay */
.card-bg-image {
    position: relative;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
    display: block;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.shine-effect {
    position: absolute;
    right: 10px;
    bottom: 0px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    /* animation:float 3s ease-in-out infinite; */
    z-index: 1
}

.shine-effect:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
    animation: none
}

.mini-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    transition: all .4s ease
}

.mini-text span {
    font-size: .95rem;
    opacity: .75;
    transition: all .4s ease
}

.content-item {
    transition: opacity .4s ease, transform .4s ease
}

.feature-container {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    z-index: 1
}

.feature-pill {
    background: rgba(255, 255, 255, .95);
    color: #111;
    padding: 12px 18px;
    border-radius: 16px;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .3s ease;
    animation: slideInRight .6s ease-out backwards
}

.feature-pill:first-child {
    animation-delay: .5s
}

.feature-pill:last-child {
    animation-delay: .7s
}

.feature-pill:hover {
    transform: translateX(-5px)
}

.status-panel {
    width: 150px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px
}

.status-panel strong {
    font-size: 1.1rem;
    display: block;
    transition: all .4s ease
}

.status-panel span {
    font-size: .95rem;
    opacity: .8;
    transition: all .4s ease
}

.status-panel hr {
    border: none;
    border-top: 1px solid rgb(0, 0, 0);
    margin: 14px 0
}

.info-box {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
    transition: transform .3s ease
}

.info-box:hover {
    transform: scale(1.02)
}

.status-badge {
    background: #66ff99;
    color: #0d2e00;
    padding: 10px 16px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.4rem;
    animation: glow 2s ease-in-out infinite;
    transition: transform .3s ease
}

.status-badge:hover {
    transform: scale(1.1)
}

@media (max-width:1400px) {
    .sazs-cta-group {
        padding-left: 200px
    }

    .sazs-header-wrapper {
        padding: 1rem 1.5rem
    }
}

@media (max-width:1200px) {
    .sazs-menu-list {
        padding-left: 40px;
        gap: 1.5rem
    }

    .sazs-cta-group {
        padding-left: 100px
    }

    .sazs-menu-link {
        font-size: 16px
    }

    .sazs-submenu-grid {
        gap: 1.5rem
    }

    .media-events-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .media-events-title {
        font-size: 1.75rem
    }

    .blogs-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem
    }

    .blog-card-image {
        height: 300px
    }
}

@media (max-width:1024px) {

    .sazs-menu-list,
    .sazs-cta-group {
        display: none
    }

    .sazs-hamburger {
        display: block
    }

    .sazs-header-wrapper {
        padding: 1rem
    }

    .sazs-brand-image {
        width: 120px;
        height: 55px;
        margin-top: 0
    }

    .sazs-submenu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .sazs-submenu {
        padding: 0 1rem
    }

    .sazs-submenu.active {
        padding: 1.5rem 1rem
    }

    .sazs-card-img-wrapper {
        height: 180px
    }

    .sazs-card-heading {
        font-size: .9rem
    }

    .sazs-card-text {
        font-size: .8rem
    }

    .media-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .media-card-image {
        height: 130px;
        margin: .75rem
    }

    .media-card-content {
        padding: 0 1rem 1rem
    }

    .media-card-title {
        font-size: .9rem
    }

    .media-events-title {
        font-size: 1.5rem
    }

    .blogs-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .blog-card-image {
        height: 280px
    }

    .blog-overlay-title {
        font-size: .95rem
    }

    .blog-overlay-explore {
        font-size: .9rem
    }
}

@media (max-width:768px) {
    .sazs-header-wrapper {
        padding: .75rem 1rem
    }

    .sazs-brand-image {
        width: 100px;
        height: 52px
    }

    .sazs-submenu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .sazs-submenu.active {
        max-height: 2000px;
        padding: 1rem
    }

    .sazs-card-img-wrapper {
        height: 160px
    }

    .sazs-card-heading {
        font-size: .85rem;
        padding: 0 .5rem
    }

    .sazs-card-text {
        font-size: .75rem;
        padding: 0 .5rem .5rem
    }

    .media-events-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .media-card-image {
        height: 140px
    }

    .media-events-header {
        margin-bottom: 2rem
    }

    .media-events-title {
        font-size: 1.25rem
    }

    .blogs-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .blog-card-image {
        height: 300px
    }

    .blog-overlay-title {
        font-size: 1.1rem
    }

    .blog-overlay-explore {
        font-size: 1rem
    }
}

@media (max-width:640px) {
    .bento-container {
        grid-template-columns: 1fr
    }

    .card {
        min-height: 260px;
        padding: 28px 20px
    }

    .shine-effect {
        right: 20px;
        bottom: 20px
    }

    .card-bg-image {
        height: 150px;
        margin-bottom: 12px
    }
}

@media (max-width:480px) {
    .sazs-header-wrapper {
        padding: .5rem .75rem
    }

    .sazs-brand-image {
        width: 120px;
        height: 50px
    }

    .sazs-hamburger {
        padding: .25rem
    }

    .sazs-submenu.active {
        padding: .75rem
    }

    .sazs-card-img-wrapper {
        height: 140px;
        border-radius: 8px
    }

    .sazs-product-card {
        border-radius: 8px
    }

    .sazs-card-heading {
        font-size: .8rem
    }

    .sazs-card-text {
        font-size: .7rem;
        line-height: 1.4
    }

    .media-card-image {
        height: 120px;
        margin: .5rem;
        border-radius: 8px
    }

    .media-card-content {
        padding: 0 .75rem .75rem
    }

    .media-card-title {
        font-size: .85rem
    }

    .media-events-title {
        font-size: 1.1rem
    }

    .blog-card-image {
        height: 250px;
        border-radius: 16px
    }

    .blog-card {
        border-radius: 16px
    }

    .blog-card-overlay {
        padding: 1.25rem 1rem 1rem
    }

    .blog-overlay-title {
        font-size: .95rem
    }

    .blog-overlay-explore {
        font-size: .9rem
    }

    .card-bg-image {
        height: 120px;
        margin-bottom: 10px
    }
}

@media (max-width:1100px) {
    .bento-container {
        grid-template-columns: repeat(2, 1fr)
    }
}

/*------------------------------ footeer css full -----------------------*/



/* Footer: "Together We Grow" Section */
.footer-container {
    position: relative;
    background-color: rgb(255, 255, 253);
    padding: 0px 20px;
    padding-top: 30px;
    text-align: center;
    overflow: hidden;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgb(255, 255, 253);
    border-radius: 50% 50% 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.heading {
    color: #2d3748;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 10px;
}

.succeed-text {
    color: #3E89EC;
}

.join-button {
    display: inline-block;
    background-color: #216DCE;
    color: #fafbfc !important;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #333;
}

/* Social Links & Navigation Section */
.a {
    background-color: rgb(255, 255, 253);
    color: #333;
    text-align: center;
    padding: 20px 0 40px 0;
}

.b {
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.c {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.c:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.d {
    width: 30px;
    transition: filter 0.3s ease;
}

.d:hover {
    filter: brightness(1.2);
}

.e {
    font-size: 14px;
    color: #333;
    padding: 30px 0 0;
    max-width: 1000px;
    margin: 0 auto;
}

.f {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.f:hover {
    color: #007bff;
    text-decoration: underline;
}

.f:not(:last-child)::after {
    content: " | ";
    color: #333;
}

/* Animations for footer links and icons */
.c,
.f {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Footer (Copyright + Help Button) */
.footerbottom {
    padding: 40px 0 40px;
    background: #0b0d1f;
    color: white;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footerbottom span {
    font-size: 14px;
}

/* WhatsApp Help Button */
.help-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border: 2px solid #6aa5ff;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.3);
}

.help-btn:hover {
    background-color: #1f78fc;
    color: #fff;
    text-decoration: none;
}

/* Scroll to Top Button */
.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 100;
    display: none;
    /* Shown via JS when scrolling */
}

.scroll-top:hover {
    background-color: #f8f9fa;
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .heading {
        font-size: 36px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .help-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 16px;
    }

    .scroll-top {
        display: none;
    }

    .footer-container {
        padding: 12px 15px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .help-btn {
        width: auto;
        left: 5%;
        bottom: 5%;
        padding: 10px 15px;
        font-size: 14px;
    }

    .heading {
        font-size: 28px;
        letter-spacing: 6px;
    }

    .b {
        flex-wrap: wrap;
        gap: 15px;
    }

    .d {
        width: 28px;
    }
}