.grs-footer {
    position: relative;
    overflow: hidden;
/*     background: linear-gradient(135deg, #001f3f, #003366, #00264d); */
    background:#001f3f;
    color: #fff;
    padding: 50px 0 20px;
}

/* Titles */
.footer-title {
    font-size: 18px;   /* 🔼 increased */
    font-weight: 600;
    margin-bottom: 15px;
}

/* Main text */
.footer-text {
    font-size: 15px;   /* 🔼 from 14px */
    color: #cfd8dc;
    line-height: 1.8;
    text-decoration: none; 
}

/* Bottom copyright */
.footer-bottom {
    font-size: 14px;   /* 🔼 from 13px */
    color: #b0bec5;
}
.footer-text i {
    color: #00e5ff;
    margin-right: 6px;
    font-size: 15px;
}

/* Background container */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

/* SVG Lines */
.footer-lines {
    width: 100%;
    height: 100%;
}

.footer-lines path {
    fill: none;
    stroke: #00bcd4;
    stroke-width: 1.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 6s linear infinite;
}

/* Animation */
@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.grs-footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-bg {
    z-index: 0;
    pointer-events: none;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #00e5ff;
    padding-left: 6px;
}

/* Dropdown */
.footer-submenu {
    display: none;
    padding-left: 15px;
    list-style: none; 
}

.footer-submenu li {
    list-style: none;   /* extra safety */
}
.footer-dropdown.active .footer-submenu {
    display: block;
}

/* Social */
.footer-social a {
    margin-right: 12px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00e5ff;
    transform: translateY(-4px);
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.2);
}

/* Floating glow shapes */
.grs-footer::before,
.grs-footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,188,212,0.3), transparent);
    border-radius: 50%;
    animation: float 10s infinite alternate;
}

.grs-footer::before {
    top: -100px;
    left: -100px;
}

.grs-footer::after {
    bottom: -100px;
    right: -100px;
}

/* Floating animation */
@keyframes float {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(40px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .grs-footer {
        text-align: center;
    }
}