.banner-container {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    height: 120px;
}

.banner-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slider img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    animation: zoomInOut 3s infinite alternate ease-in-out;
}

.image-blink {
    border-radius: 15px;
    transition: box-shadow .3s ease-in-out;
    animation: imageBlink 2s infinite alternate;
}

@keyframes imageBlink {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        height: 50px;
        position: relative;
        max-width: 357px;
        margin: 20px auto;
        overflow: hidden;
        border-radius: 10px;
    }

    .banner-slider img {
        height: 50px;
    }
}

/* category */

.category-section-2 {
    padding: 30px 0;
    /* background-color: #f8f8f8; */
    /* text-align: center; */
}

.category-section-2 .title h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-left: 127px;
    font-weight: 700;
    color: #222;
    position: relative;
    text-transform: uppercase;
}

.category-wrapper {
    border: 1px solid #ececec;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1255px;
    margin: auto;
}

.category-slider-container {
    display: flex;
    align-items: center;
    position: relative;
}

.category-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    min-width: 140px;
    text-align: center;
}

.shop-category-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.shop-category-box:hover {
    transform: translateY(-5px);
}

.circle-4 {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 90px;
    height: 90px;
    border: 2px solid #ececec;
    transition: all 0.3s ease-in-out;
}

.circle-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-4:hover {
    border-color: #2aa9e0;
    transform: scale(1.1);
}

.category-name h6 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    color: #000000;
    font-family: auto;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2aa9e0;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.prev-btn:hover,
.next-btn:hover {
    background: #2aa9e0;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.cubicor-company {
    color: #00baff;
    font-family: Garamond, serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
}

.cubicor-justify {
    text-align: justify;
    color: #000000;
}

/* about us on index page */

.overlap-images {
    position: relative;
    padding: 15px;
}

.overlap-images .item {
    position: relative;
    width: 100%;
    padding: 11% 11% 19%;
}

.overlap-images .item:not(:first-child) {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.overlap-images .item img {
    width: 100%;
    display: block;
}

/*end about us on index page */

/* footer start */

.cubicor-ranj-dropdown {
    position: relative;
    display: inline-block;
}

.cubicor-ranj-dropdown-button {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.cubicor-ranj-dropdown-button:hover {
    background-color: #f1f1f1;
}

.cubicor-ranj-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cubicor-ranj-dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.cubicor-ranj-dropdown-item:hover {
    background-color: #f1f1f1;
}

.cubicor-ranj-dropdown:hover .cubicor-ranj-dropdown-content {
    display: block;
}

.cubicor-ranj-dropdown:hover .cubicor-ranj-dropdown-button {
    background-color: #f1f1f1;
}

/* footer end */


/* General styles */
.community-section {
    background-color: #eef2f9;
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
}

.community-heading {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.community-heading::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Card styling */
.community-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, #ff7eb3, #ff758c);
}

/* Facebook and YouTube iframe styling */
.community-iframe {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 430px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.community-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.community-img:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.community-hero {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.community-hero span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

    .col-md-3,
    .col-md-4,
    .col-md-5 {
        width: 100%;
        margin-bottom: 35px;
    }

    .community-iframe {
        height: 330px;
    }
}


/*  */

/* Rotate Boxes */
.rotate-container {
    height: auto;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    perspective: 1000px;
}

.rotate-box .front,
.back {
    width: 100%;
    height: 100%;
}

.rotate-box {
    width: 100%;
    height: 300px;
    position: relative;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -o-transition: 0.8s;
    -o-transform-style: preserve-3d;
    transition: 0.8s;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    perspective: 1000px;
    pointer-events: none;
}

.rotate-box .front,
.rotate-box .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    perspective: inherit;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.rotate-box .front {
    z-index: 2;
}

.rotate-box .back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.rotate-box .box-details {
    -webkit-transform: translate3d(0, -50%, 75px) scale(.85) translateZ(0);
    -moz-transform: translate3d(0, -50%, 75px) scale(.85) translateZ(0);
    -o-transform: translate3d(0, -50%, 75px) scale(.85) translateZ(0);
    transform: translate3d(0, -50%, 75px) scale(.85) translateZ(0);
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    perspective: inherit;
    top: 50%;
    position: relative;
    text-align: center;
    width: 100%;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Hovers */
.rotate-container:hover .rotate-box,
.rotate-container.hover .rotate-box {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.rotate-container.hover1:hover .rotate-box,
.rotate-container.hover1.hover .rotate-box {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.rotate-container.hover2:hover .rotate-box,
.rotate-container.hover2.hover .rotate-box {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.rotate-container.hover3:hover .rotate-box,
.rotate-container.hover3.hover .rotate-box {
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

/* Set the rotate for hover2 and 3 */
.rotate-container.hover2 .back,
.rotate-container.hover3 .back {
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

/* end */

/* brand logo start */

/* General Styles */
.brand-logo-container {
    width: 100%;
    padding: 20px 0;
    background: #f8f8f8;
    text-align: center;
    position: relative;
}

/* Heading Styling */
.brand-logo-container h4 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    /* margin-bottom: 20px; */
}

/* Slider Wrapper */
.brand-logo-slider {
    width: 100%;
    /* max-width: 1200px; */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Track for infinite scrolling */
.brand-logo-track {
    display: flex;
    width: 200%;
    animation: scrollLogos 15s linear infinite;
}

/* Individual Logo */
.brand-logo-slide {
    flex: 0 0 auto;
    width: 10%;
    text-align: center;
    padding: 10px;
}

.brand-logo-slide img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    filter: grayscale(40%);
    border-radius: 8px;
}

/* Hover Effect */
.brand-logo-slide img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Smooth Infinite Scrolling Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brand-logo-slide {
        width: 14%;
    }

    .brand-logo-slide img {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .brand-logo-slide {
        width: 20%;
    }

    .brand-logo-slide img {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .brand-logo-slide {
        width: 25%;
    }

    .brand-logo-slide img {
        max-width: 70px;
    }
}


/* end */

/* gallery */

.event-card {
    background: #fff;
    border: 2px solid rgb(0, 0, 0);
    /* Green border */
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.event-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.event-card:hover .event-img {
    transform: scale(1.05);
}

.event-title {
    margin-top: 10px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #fff;
    display: inline-block;
    padding: 6px 15px;
}

.event-title a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.event-title a:hover {
    color: #28a745;
}

/* end */


/* services Group of Companies */

.news-container {
    max-width: 1400px;
    margin: auto;
    padding: 50px 15px;
}

.news-section {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

.news-section.show {
    opacity: 1;
    transform: translateY(0);
}

.news-content {
    padding: 30px;
}

.news-title {
    font-size: 28px;
    font-weight: bold;
    color: #1f3c88;
    font-family: Garamond, serif;
    text-transform: uppercase;
}

.news-description {
    font-size: 18px;
    color: #555;
    margin: 20px 0;
}

.article-text {
    color: rgb(0, 0, 0);
    line-height: 33px;
    font-weight: 300;
    margin-top: 10px;
    text-align: justify;
    font-size: 19px;
}

.news-button,
.sm-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #1f3c88;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.news-button:hover,
.sm-btn:hover {
    background: #142d6a;
    cursor: pointer;
}

.news-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.news-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.news-image:hover img {
    transform: scale(1.1);
}

.news-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-image:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .news-section {
        flex-direction: column;
        text-align: center;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 22px;
    }

    .article-text {
        font-size: 17px;
        line-height: 30px;
    }
}



/* end */

/* page banner css */
.innerhead {
    background: #f2f2f2;
    padding: 0;
    position: relative;
    top: 35px;
}

.page-banner {
    height: 350px;
    background-position: center center;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    position: relative;
}

.page-banner::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #041b2d59;
    content: "";
}

.banner-title {
    height: 100%;
    display: table;
    width: 100%;
}

.bann {
    display: table-cell;
    vertical-align: middle;
}

.innerhead h2 {
    position: absolute;
    text-align: center;
    color: #FFF;
    background: rgba(0, 0, 0, 0.75);
    padding: 15px 50px;
    border-radius: 4px;
    font-size: 2em;
    box-shadow: 0 20px 30px rgba(125, 147, 178, .3);
    transition: 0.5s all;
}

/* end */


/* tabs company */


.glass-tabs .nav-link {
    border: none;
    color: #2aa9de;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.glass-tabs .nav-link.active {
    background: #1d82ae;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.glass-card {
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0 0 0);
    border-radius: 20px;
    animation: fadeSlide 0.5s ease;
}

.btn-glow {
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s ease;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

.text-gradient {
    background: linear-gradient(to right, #000000, #2ea6e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-tab {
    animation: fadeSlide 0.5s ease;
}

/* birthday css */
.birthday-heading {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #004365;
    position: relative;
    padding-bottom: 15px;
}

.birthday-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 120px;
    background: linear-gradient(to right, #00bcd4, #004365);
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0, 67, 101, 0.3);
}


.birthday-card {
    background-color: #fff;
    border-left: 6px solid #0b6693;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
}

.birthday-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.birthday-card img {
    width: 100%;
    display: block;
    border-bottom: 2px solid #ffcc80;
}   