/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: url('cursor.png'), auto;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

a {
    text-decoration: none;
}

/* Navbar */
        .navbar {
            width: 100%;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .menu {
            display: flex;
            align-items: center;
        }

        .menu ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .menu ul li a {
            text-decoration: none;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .menu ul li a:hover {
            background-color: #334155;
        }

        /* Hamburger */
        .hamburger {
            font-size: 2rem;
            color: white;
            cursor: pointer;
            display: none;
        }

        /* Submenu */
        .submenu {
            max-height: 0;
            overflow: hidden;
            background-color: #334155;
            border-radius: 5px;
            transition: max-height 0.4s ease;
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
        }

        .submenu a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .submenu a:hover {
            background-color: white;
            color: #0f172a;
        }

        /* Desktop Hover Effect */
        @media (min-width: 769px) {
            .has-submenu {
                position: relative;
            }

            .has-submenu:hover .submenu {
                max-height: 500px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .menu {
                position: absolute;
                top: 100px;
                right: 0;
                background-color: #1e293b;
                width: 250px;
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }

            .menu.active {
                transform: translateX(0);
            }

            .menu ul {
                flex-direction: column;
                width: 100%;
            }

            .menu ul li {
                width: 100%;
            }

            .menu ul li a {
                padding: 12px 20px;
                width: 100%;
            }

            .hamburger {
                display: block;
            }

            /* Mobile submenu style */
            .submenu {
                position: static;
                background-color: #475569;
                width: 100%;
            }
        }
/* Hero Section */
.hero {
    background: url('assets/hiimage.avif') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 100px;
    color: #ffffff;
    text-shadow: 0 0 10px #0b0b0b;
    animation: bounce 2s infinite;
}
.hero p {
    font-size: 1.5em;
    margin-top: 15px;
    animation: fadeIn 2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 6px;
    backdrop-filter: blur(3px);
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #00f0ff;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 15px #00f0ff;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background: #00c6d6;
    box-shadow: 0 0 20px #00f0ff;
}

/* Existing styles remain the same above */

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
        min-height: 80vh;
        background-attachment: scroll; /* Avoid jank on mobile for fixed backgrounds */
    }

    .hero h1 {
        font-size: 32px; /* Smaller heading for mobile */
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1em;
        padding: 8px 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 15px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 1em;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/* Parallax Sections */
/* Parallax Backgrounds */
.parallax {
    background: url('https://images.unsplash.com/photo-1536305030439-496a91fdf48f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
}

.parallax h2, .parallax-digital h2 {
    font-size: 40px;
    color: #00f0ff;
    text-shadow: 0 0 10px #000000;
    animation: bounce 2s infinite;
}

/* Digital Marketing Parallax Section */
.parallax-digital {
    background: url("assets/digital-marketing-1.jpg") no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    position: relative;
    padding: 50px 20px;
    animation: fadeIn 2s ease-in-out;
}

.parallax-digital::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.digital-content {
    position: relative;
    z-index: 2;
    color: #00f0ff;
    text-shadow: 0 0 10px #000;
    animation: slideUp 1.5s ease-in-out;
}

.digital-content h2 {
    font-size: 100px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.digital-content p {
    font-size: 50px;
    margin-bottom: 30px;
    color: #fff;
}

.digital-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00f0ff;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 15px #00f0ff;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.digital-content .btn:hover {
    transform: scale(1.05);
    background: #00c6d6;
    box-shadow: 0 0 20px #00f0ff;
}

/* Keyframes */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Responsive Mobile Optimization */
@media (max-width: 768px) {
    .parallax, .parallax-digital {
        background-attachment: scroll; /* Disable parallax on mobile */
        min-height: 60vh;
        padding: 30px 10px;
    }

    .parallax h2, .parallax-digital h2 {
        font-size: 28px;
    }

    .digital-content h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .digital-content p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .digital-content .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .parallax, .parallax-digital {
        min-height: 50vh;
        padding: 20px 5px;
    }

    .parallax h2, .parallax-digital h2 {
        font-size: 22px;
    }

    .digital-content h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .digital-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .digital-content .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* About Us Section */
#about {
    background: #294c9d;
    color: #a0d8f7;
    max-width: 900px;
    margin: 10% auto;
    padding: 80px 20px;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    animation: fadeSlideUp 1.5s ease-in-out;
}

#about h2 {
    font-size: 42px;
    color: #fff4f4;
    margin-bottom: 30px;
    text-shadow: 0 0 15px #00f0ff;
    font-weight: 700;
}

#about p {
    margin-bottom: 25px;
    color: #ffffff;
}

/* Services Section */
#services {
    background: #0f172a;
    padding: 100px 40px;
    text-align: center;
}

#services h2 {
    font-size: 42px;
    color: #00f0ff;
    margin-bottom: 50px;
    text-shadow: 0 0 10px #000;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.card-icon {
    width: 220px;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 0 25px #00f0ff;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(3deg);
}

/* Why Choose Us Section */
#why-choose {
    background: #294c9d;
    color: #a0d8f7;
    max-width: 1200px;
    margin: 10% auto;
    padding: 80px 30px;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

#why-choose h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 15px #00f0ff;
    font-weight: 700;
}

.choose-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.choose-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00f0ff;
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.choose-card:hover .choose-icon {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #1e293b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-columns h4 {
    margin-bottom: 10px;
    color: #00f0ff;
}

.footer-columns ul {
    list-style: none;
}

.footer-columns ul li a {
    color: #fff;
    display: block;
    margin: 5px 0;
}

.footer-columns ul li a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 50px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 24px;
        padding: 0 10px;
    }

    .btn {
        padding: 10px 20px;
    }

    .parallax, .parallax-digital {
        min-height: 60vh;
        padding: 30px 10px;
        background-attachment: scroll;
    }

    .parallax h2, .parallax-digital h2 {
        font-size: 28px;
    }

    .digital-content h2 {
        font-size: 50px;
    }

    .digital-content p {
        font-size: 24px;
    }

    .service-cards, .choose-cards {
        flex-direction: column;
        align-items: center;
    }

    .card, .choose-card {
        width: 90%;
    }

    .card-icon {
        width: 200px;
        height: 140px;
    }

    .choose-icon {
        width: 60px;
        height: 60px;
    }

    #about, #why-choose {
        padding: 50px 15px;
        font-size: 16px;
    }

    #about h2, #why-choose h2 {
        font-size: 32px;
    }
}
/* Contact Section Styling */
/* Section Base */
#why-choose {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

#why-choose h2 {
    font-size: 48px;
    color: #00f0ff;
    margin-bottom: 60px;
    text-shadow: 0 0 10px #00f0ff;
}

/* Animated Background Shapes */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    animation: floatShapes 8s infinite ease-in-out;
}

.shape:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.shape:nth-child(3) { top: 70%; left: 30%; animation-delay: 4s; }
.shape:nth-child(4) { top: 10%; left: 60%; animation-delay: 6s; }
.shape:nth-child(5) { top: 80%; left: 80%; animation-delay: 8s; }

@keyframes floatShapes {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

/* Card Container */
.choose-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.choose-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00f0ff;
    border-radius: 20px;
    width: 300px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.choose-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}

.choose-icon {
    width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00f0ff);
}

.choose-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00f0ff;
}

.choose-card p {
    font-size: 16px;
    color: #c0e0ff;
}

.fade-left, .fade-in, .fade-right {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s forwards;
}

.fade-left {
    animation-delay: 0.2s;
    transform: translateX(-50px);
}

.fade-in {
    animation-delay: 0.4s;
}

.fade-right {
    animation-delay: 0.6s;
    transform: translateX(50px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 992px) {
    .choose-cards {
        flex-direction: column;
        align-items: center;
    }

    .choose-card {
        width: 80%;
    }
}

/* Parallax Section */
.parallax-consulting {
    background: url("assets/consulting2-e1566397341151.png") no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.parallax-consulting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: #00f0ff;
    text-shadow: 0 0 10px #000;
    animation: slideUp 1.5s ease-in-out;
}

.parallax-content h2 {
    font-size: 100px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.parallax-content p {
    font-size: 50px;
    margin-bottom: 30px;
    color: #fff;
}

.parallax-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00f0ff;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 15px #00f0ff;
    transition: background 0.3s, box-shadow 0.3s;
}

.parallax-content .btn:hover {
    background: #00c6d6;
    box-shadow: 0 0 20px #00f0ff;
    transform: scale(1.05);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.wide-button-container {
    display: flex;
    gap: 40px;
}

.wide-action-button {
    margin-top: 20px;
    width: 680px; /* Increased width */
    height: 150px;
    border: none;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    text-align: left;
    position: relative;
    font-size: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-btn {
    background: rgba(240, 240, 240, 0.8);
    color: #004d4d;
}

.jobseeker-btn {
    background: #0b706f;
    color: white;
}

.small-text {
    font-size: 18px;
    opacity: 0.8;
}

.large-text {
    font-size: 26px;
    font-weight: bold;
    display: block;
    margin-top: 8px;
}

.arrow-icon {
    font-size: 36px;
    transition: transform 0.4s ease;
}

.wide-action-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 22px rgba(0, 0, 0, 0.5);
}

.wide-action-button:hover .arrow-icon {
    transform: translateX(15px);
}

@media (max-width: 768px) {
    .wide-button-container {
        flex-direction: column;
        align-items: center;
    }

    .wide-action-button {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .parallax-consulting {
        background-attachment: scroll; /* Parallax effect off on mobile for better performance */
        min-height: 80vh;
        padding: 40px 10px;
    }

    .parallax-content h2 {
        font-size: 50px; /* Scaled down */
        margin-bottom: 15px;
    }

    .parallax-content p {
        font-size: 24px; /* Scaled down */
        margin-bottom: 20px;
    }

    .parallax-content .btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .wide-button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .wide-action-button {
        width: 90%;
        height: auto;
        padding: 15px;
        font-size: 16px;
        flex-direction: column;
        text-align: center;
    }

    .small-text {
        font-size: 14px;
    }

    .large-text {
        font-size: 20px;
        margin-top: 5px;
    }

    .arrow-icon {
        font-size: 24px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .parallax-consulting {
        min-height: 70vh;
        padding: 30px 5px;
    }

    .parallax-content h2 {
        font-size: 36px;
    }

    .parallax-content p {
        font-size: 18px;
    }

    .parallax-content .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .wide-action-button {
        width: 95%;
        padding: 10px;
    }

    .small-text {
        font-size: 12px;
    }

    .large-text {
        font-size: 18px;
    }

    .arrow-icon {
        font-size: 20px;
    }
}



/* About Section */
.about-modern {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.04;
    animation: moveShapes 60s linear infinite;
}

@keyframes moveShapes {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.section-title {
    font-size: 60px;
    color: #00e5ff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: popIn 1s ease forwards;
}

.section-subtitle {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 60px;
    animation: popIn 1.2s ease forwards;
}

.about-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-card {
    background: transparent;
    width: 320px;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    border-radius: 20px;
}

.about-card:hover .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 0 40px rgba(0, 229, 255, 1);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    color: #ffffff;
}

.card-front {
    background: #0f2027;
    border: 2px solid #00e5ff;
}

.card-back {
    background: linear-gradient(135deg, #00e5ff, #00a6d8);
    color: #000000;
    transform: rotateY(180deg);
    font-weight: bold;
}

.card-front h3, .card-back h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.card-front p, .card-back p {
    font-size: 16px;
    text-align: center;
}

.contact-button {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 35px;
    background: linear-gradient(45deg, #00e5ff, #00a6d8);
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 10px #00e5ff, 0 0 20px #00ffb0 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00e5ff, 0 0 40px #00ffb0 inset;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
    .about-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .about-card {
        width: 280px;
        height: 220px;
    }
}

/* New Contact Section */
.new-contact-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 20px;
    overflow: hidden;
    color: #a0d8f7;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.contact-content > div {
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1s forwards;
}

.contact-content > div:nth-child(1) { animation-delay: 0.3s; }
.contact-content > div:nth-child(2) { animation-delay: 0.6s; }
.contact-content > div:nth-child(3) { animation-delay: 0.9s; }

.quick-links ul li {
    margin-bottom: 15px;
    animation: bounceIn 1.5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links ul li a {
    color: #a0d8f7;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
}

.contact-container {
    text-align: center;
    max-width: 400px;
}

.contact-title {
    font-size: 42px;
    color: #00f0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00f0ff;
}

.contact-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #ffffff;
    margin: 10px 0;
}

.social-media {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatIcons 3s ease-in-out infinite;
}

.social-icons a:hover img {
    transform: scale(1.2);
    box-shadow: 0 0 15px #00f0ff;
}

.rotating-ring {
    position: absolute;
    border: 8px solid #00f0ff;
    border-radius: 50%;
    opacity: 0.1;
    animation: rotateRing 15s linear infinite;
    z-index: 0;
}

.ring1 { width: 300px; height: 300px; top: -150px; left: -150px; }
.ring2 { width: 200px; height: 200px; bottom: -100px; right: -100px; animation-duration: 25s; }

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@keyframes floatIcons {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-container {
        max-width: 100%;
    }
}


/* Section */
.services {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.services h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  position: relative;
}

.services h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  margin: 15px auto 0;
  border-radius: 2px;
}

.subtitle {
  font-size: 1.3rem;
  color: #d1d5db;
  margin-bottom: 50px;
}

/* Card Container */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Card Styles */
.card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  overflow: hidden;
  animation: slideFade 1s ease forwards;
  opacity: 0;
  transform: translateY(50px);
}

.card img {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid;
  border-image: linear-gradient(45deg, #ff6a00, #ee0979, #00c6ff, #f77062) 1;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d1d5db;
  text-align: center;
}

.card:hover {
  transform: translateY(-15px) scale(1.05) rotateZ(-1deg);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.card:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2);
}

/* Animation */
@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services h1 {
    font-size: 2.8rem;
  }

  .card {
    padding: 30px 20px;
  }

  .card img {
    height: 140px;
    width: 140px;
  }

  .card h2 {
    font-size: 1.6rem;
  }

  .card p {
    font-size: 1rem;
  }
}
.know-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    color: #fff;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
}

.know-more-btn:hover {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
}
