




    /* Footer Section */
    .footer-section {
        background: linear-gradient(135deg, #0F3460, #1A1A2E, #16213E);
        padding: 50px 20px;
        color: white;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        box-shadow: 0px -5px 20px rgba(0, 255, 255, 0.3); /* Neon glow at the top */
    }
    
    .footer-section  ul li {
        font-size: 1.2rem;
        padding: 12px;
        border-left: 4px solid cyan;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        margin-bottom: 10px;
        box-shadow: 0px 2px 10px rgba(0, 255, 255, 0.3);
        color: white;
    }
        .footer-logo img {
            width: 150px;
        }
        .footer-content {
            max-width: 300px;
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-links, .footer-services, .footer-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-links h3, .footer-services h3, .footer-contact h3 {
            font-size: 18px;
            color: #fca311;
            margin-bottom: 10px;
        }
        .footer-links ul, .footer-services ul, .footer-contact ul {
            list-style: none;
            padding: 0;
        }
        .footer-links ul li, .footer-services ul li, .footer-contact ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        .footer-links ul li a, .footer-services ul li a, .footer-contact ul li a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-links ul li a:hover, .footer-services ul li a:hover, .footer-contact ul li a:hover {
            color: #fca311;
        }
        
        /* Motionable Icons */
        .footer-links ul li i, 
        .footer-services ul li i, 
        .footer-contact ul li i {
            margin-right: 10px;
            color: #fca311;
            transition: transform 0.3s ease-in-out;
        }
        .footer-links ul li:hover i,
        .footer-services ul li:hover i,
        .footer-contact ul li:hover i {
            transform: translateX(5px);
        }
    
        /* Footer Bottom */
        .footer-bottom {
            background-color: #091423;
            padding: 10px 0;
            text-align: center;
            font-size: 14px;
        }
        h2 {
            color: #fca311;
        }
    
        /* Scroll-Up Button */
        #scrollUp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #fca311;
            color: white;
            padding: 10px 15px;
            border-radius: 50%;
            display: none;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            font-size: 16px;
        }
        #scrollUp:hover {
            background-color: #ffbe0b;
        }
        
    
        /* Responsive Design */
        @media (max-width: 900px) {
            .footer-section {
                flex-direction: column;
                text-align: center;
            }
            .footer-links, .footer-services, .footer-contact {
                align-items: center;
                margin-bottom: 20px;
            }
        }
    
    h1, h2, h3 {
        color: #fca311;
    }
    
    /* Hero Section */
    .hero-section {
        background-image: url('assets/img/hero/hero-bg.jpg');
        background-size: cover;
        padding: 50px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .hero-section p {
        max-width: 600px;
        margin: auto;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .hero-section .cta-buttons {
        margin-top: 20px;
    }
    .cta-button {
        background-color: #fca311;
        color: white;
        padding: 12px 20px;
        margin: 10px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1rem;
        transition: 0.3s;
    }
    .cta-button:hover {
        background-color: #ffbe0b;
    }
    /* Services Section */
    /* 🟢 SERVICE CARDS - RESPONSIVE DESIGN */
    .service-card {
        background: #14213d;
        color: white;
        padding: 15px;
        width: 90%; /* Makes it responsive on mobile */
        max-width: 300px; /* Standard max width */
        height: auto; /* Dynamic height */
        margin: 10px auto; /* Centers the card */
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        text-align: center;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 255, 255, 0.3); /* Futuristic glow */
    }
    
    /* ICON STYLE */
    .service-card i {
        font-size: 2rem;
        color: #fca311;
        margin-bottom: 10px;
    }
    
    /* CARD HEADINGS */
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90%;
        white-space: nowrap;
    }
    
    /* CARD DESCRIPTION */
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        max-height: 120px;
    }
    
    /* HOVER EFFECT */
    .service-card:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 15px rgba(0, 255, 255, 0.5);
    }
    
    /* 📱 MOBILE RESPONSIVENESS */
    @media screen and (max-width: 768px) {
        .service-card {
            width: 95%; /* Makes it fit well on small screens */
            max-width: 280px; /* Slightly smaller for mobile */
            padding: 12px;
        }
    
        .service-card i {
            font-size: 1.8rem; /* Smaller icons on mobile */
        }
    
        .service-card h3 {
            font-size: 1rem;
        }
    
        .service-card p {
            font-size: 0.9rem;
            max-height: 100px;
        }
    }
    
    /* 🔄 MOVING ANIMATION */
    @keyframes moveLeftRight {
        0% { transform: translateX(0); }
        50% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }
    
    .moving-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        animation: moveLeftRight 12s linear infinite alternate;
    }
    
    
    
    /* Contact Section */
    .contact-section {
        padding: 50px 20px;
        background-color: #091423;
        text-align: center;
    }
    .contact-info {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer {
        background-color: #0d1b2a;
        padding: 20px 10px;
    }
    .footer ul {
        list-style: none;
        padding: 0;
    }
    .footer ul li {
        display: inline-block;
        margin: 0 10px;
    }
    .footer ul li a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: 0.3s;
    }
    .footer ul li a:hover {
        color: #fca311;
    }
    
    /* Scroll-Up Button */
    #scrollUp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #fca311;
        color: white;
        padding: 10px 15px;
        border-radius: 50%;
        display: none;
        cursor: pointer;
        transition: 0.3s;
        border: none;
        font-size: 16px;
    }
    #scrollUp:hover {
        background-color: #ffbe0b;
    }
    
    
    
        /* Animated Icons */
        .animated-icon {
            font-size: 1.2rem;
            color: #fca311;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        h2{
            color: #fca311;
        }
    
    .custom-header {
        position: relative;
    }
    
    .social-icons {
        position: absolute;
        top: 10px;
        right: 20px;
        display: flex;
        gap: 15px;
        z-index: 10; /* Ensures it stays above other elements */
    }
    
    .social-icons a {
        color: white;
        font-size: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .social-icons a:hover {
        color: #007bff;
    }
    
    
    
    
    
    
    /* FOOTER SECTION - Futuristic Tech Theme */
    .footer-section {
        background: linear-gradient(135deg, #0F3460, #1A1A2E, #16213E);
        padding: 40px 20px;
        color: white;
        text-align: center;
        box-shadow: 0px -5px 20px rgba(0, 255, 255, 0.3); /* Neon glow at the top */
    }
    
    /* FOOTER LOGO CONTAINER */
    .footer-logo {
        display: flex;
        flex-direction: column; /* Stack elements */
        align-items: center;
        gap: 20px;
    }
    
    /* LOGO FRAME - Tech Boundaries */
    .logo-frame {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5); /* Tech glowing effect */
        border: 2px solid rgba(0, 255, 255, 0.7);
        transition: all 0.3s ease-in-out;
    }
    
    .logo-frame img {
        width: 160px;
        height: auto;
        border-radius: 8px;
    }
    
    /* HOVER EFFECT */
    .logo-frame:hover {
        box-shadow: 0px 0px 25px rgba(0, 255, 255, 0.8);
        transform: scale(1.05);
    }
    
    /* SOCIAL ICONS */
    .social-icon {
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: 24px;
    }
    
    .social-icon a {
        color: cyan;
        transition: all 0.3s ease-in-out;
    }
    
    .social-icon a:hover {
        color: #00E0FF;
        transform: scale(1.2);
    }
    
    /* FOOTER CONTENT - Clean and Readable */
    .footer-content {
        max-width: 600px;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
    }
    
    /* MOBILE RESPONSIVENESS */
    @media screen and (max-width: 768px) {
        .footer-section {
            padding: 30px 10px;
        }
    
        .logo-frame {
            padding: 8px;
        }
    
        .logo-frame img {
            width: 140px;
        }
    
        .social-icon {
            font-size: 20px;
            gap: 10px;
        }
    
        .footer-content {
            font-size: 13px;
        }
    }
    
        
    
    
    