/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
   
}

body {
    background-color: #1a1a2e; /* deep indigo background */
    color: #ffffff; /* changed to white */
    padding-top: 70px; /* Space for fixed navbar */
    
}

/* Navbar */
/* Hamburger icon animation */
.hamburger.open {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Smooth sub-menu animation */
.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.sub-menu.show-submenu {
    max-height: 500px;
    padding: 10px 0;
}

/* Navbar */
/* 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%;
            }
        }
/* Contact Section */
./* Contact Section */
.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;
}

.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) {
    .team-cards { flex-direction: column; align-items: center; gap: 20px; }
    .parallax-banner h1 { font-size: 2.5em; padding: 10px 20px; }
    .banner-content p { font-size: 1.2em; padding: 8px 15px; }
    .team-card { width: 90%; max-width: 300px; }
    .about-card { width: 80%; }
    .why-choose-section li { font-size: 1.1em; padding-left: 30px; }
    .rotating-ring { display: none; }
    .contact-content { flex-direction: column; align-items: center; gap: 30px; }
}


/* Digital Marketing Page - Powerful Neon Theme */

/* Section Styling */
.digital-marketing-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #140f2d, #2e2a57); /* deep indigo */
    position: relative;
    overflow: hidden;
    margin: 30px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #7b56ff, #4b3787);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-in-out;
    color: #ffffff !important;
    text-shadow: none !important;
}

.section-subtitle {
    font-size: 22px;
    color: #ffffff; /* white */
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-in-out;
}

/* Glass Effect Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
}

.service-card {
    backdrop-filter: blur(20px);
    background: rgba(123, 86, 255, 0.07);
    border: 2px solid rgba(123, 86, 255, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(123, 86, 255, 0.35);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 30px rgba(123, 86, 255, 0.75);
    background: rgba(123, 86, 255, 0.15);
}

.service-card img {
    width: 80px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1) rotate(8deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff; /* white */
}

.service-card p {
    font-size: 16px;
    color: #ffffff; /* white */
}

/* Glowing CTA Button - Digital Marketing */
.dm-contact-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #7b56ff, #4b3787);
    color: #ffffff;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(123, 86, 255, 0.8);
    transition: background 0.5s ease, transform 0.3s ease, box-shadow 0.5s ease;
}

.dm-contact-button:hover {
    background: linear-gradient(135deg, #4b3787, #7b56ff);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(123, 86, 255, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}




.webdev-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1300px;
    min-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 auto; /* Centering support for smaller screens */
}

.service-navigation {
    width: 35%;
    background-color: #4b0082;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    overflow-y: auto;
    align-items: center;
}

.service-navigation button {
    font-size: 18px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
}

.service-navigation button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-display {
    width: 65%;
    background-color: #8a2be2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.service-detail {
    position: absolute;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.7s ease;
    text-align: center;
    max-width: 90%;
}

.service-detail.active-service {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-detail img {
    width: 200px;
    max-width: 90%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 15px;
}

.service-detail p {
    font-size: 18px;
    color: #ffecb3;
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        display: block; /* Remove centering in mobile for better stacking */
    }

    .webdev-wrapper {
        flex-direction: column;
        min-height: auto;
        margin: 20px;
    }

    .service-navigation {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-height: 220px;
        gap: 15px;
    }

    .service-navigation button {
        flex: 1 1 45%;
        margin: 5px;
        font-size: 16px;
    }

    .service-display {
        width: 100%;
        min-height: 400px;
    }

    .service-detail img {
        width: 120px;
    }

    .service-detail h3 {
        font-size: 20px;
    }

    .service-detail p {
        font-size: 14px;
    }
}
