.nishatgroupnew_footer {
    position: relative;
    background: black;
    padding-top: 120px;
    overflow: hidden;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif !important;
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Innovative Top Design */
.footer-top-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: repeating-linear-gradient(45deg,
            black,
            black 10px,
            black 10px,
            black 20px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.footer-top-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e5a40f 0%, transparent 100%);
    opacity: 0.3;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* 3D Cards Layout */
.footer-3d-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 60px;
    perspective: 1000px;
}

.card-3d {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateZ(-10px);
}

.card-3d:hover {
    transform: rotateX(10deg) rotateY(10deg);
}

.card-3d h3 {
    color: #e5a40f;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.card-3d p {
    color: white;
    line-height: 1.6;
    transform: translateZ(20px);
}

/* Hexagon Grid Background */
.hexagon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.hexagon {
    position: absolute;
    width: 50px;
    height: 57.735px;
    background: rgba(209, 187, 59, 0.301);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Main Content Grid */
.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 5%;
    background: rgba(0, 0, 0, 0.384);
}

/* Links Section */
.footer-links {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    display: grid;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.footer-links a:hover::before {
    transform: translateX(100%);
}

.footer-links a:hover {
    background: #e5a40f;
    color: whitesmoke;
    transform: scale(1.05);
}

/* Contact Info */
.contact-info {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    /* background: #e5a40f; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #9d0ed0;
}

.contact-text {
    color: white;
}

/* Map Integration */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.map-wrapper:hover {
    transform: translateZ(20px);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFD700, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.map-wrapper:hover::before {
    opacity: 0.2;
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
    transition: filter 0.3s ease;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    perspective: 1000px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.541);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e5a40f;
    border-radius: 15px;
    transform: translateZ(-20px);
    opacity: 0;

    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateZ(20px) rotateY(180deg);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: all 0.3s ease;
    backface-visibility: hidden;
}

.social-link:hover svg {
    fill: black;

}

/* Copyright Section */
.footer-bottom {
    position: relative;
    padding: 30px 5%;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 215, 0, 0.5),
            transparent);
}

.copyright-text {
    color: white;
    font-size: 12px;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.copyright-text a {
    color: #e5a40f;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-3d-cards {
        grid-template-columns: 1fr;
    }

    .card-3d:hover {
        transform: none;
    }

    .social-link:hover {
        transform: translateZ(10px);
    }
}

/* Social Media Icons Styling */
.socail-media-ul {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    display: flex;
}

.socail-media-ul li {
    list-style: none;
}

.socail-media-ul li a {
    position: relative;
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    margin: 0 10px;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(0deg, #ddd, #fff);
    transition: .5s;
}

.socail-media-ul li a:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.socail-media-ul li a .fab {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, #fff, #ddd);
    border-radius: 50%;
    line-height: calc(60px - 12px);
    font-size: 24px;
    color: #262626;
    transition: .5s;
}

.socail-media-ul li:nth-child(1) a:hover .fab {
    color: #3b5998;
}

.socail-media-ul li:nth-child(2) a:hover .fab {
    color: #00aced;
}

.socail-media-ul li:nth-child(3) a:hover .fab {
    color: #dd4b39;
}

.socail-media-ul li:nth-child(4) a:hover .fab {
    color: #007bb6;
}

.socail-media-ul li:nth-child(5) a:hover .fab {
    color: #e4405f;
}