/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

body {
    background-color: #121a13; /* dark almost black green */
    color: #b6e3c1; /* light viridian greenish text */
    padding-top: 70px;
}

/* 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; }
}

/* Keep navbar, header, footer original — do NOT edit those sections */

/* Page Background */
body {
  background-color: #0a0f24;
  color: #d0e2ff;
}

/* Digital Marketing Section */
.digital-marketing-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #004aad, #007bff);
  position: relative;
  overflow: hidden;
  margin: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 74, 173, 0.4);
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #cce0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: slideInDown 1s ease-in-out;
}

.section-subtitle {
  font-size: 22px;
  color: #e6f0ff;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-in-out;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px;
  justify-items: center;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  backdrop-filter: blur(12px);
  background: rgba(0, 60, 150, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  color: #e6f0ff;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
  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);
  background: rgba(0, 123, 255, 0.5);
  box-shadow: 0 0 35px rgba(0, 123, 255, 0.8);
}

.service-card img {
  width: 80px;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
  filter: brightness(1.3);
}

.service-card:hover img {
  transform: scale(1.1) rotate(8deg);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-card p {
  font-size: 16px;
  color: #d6e6ff;
}

/* CTA Button */
.dm-contact-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #004aad, #007bff);
  color: #ffffff;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.7);
  transition: background 0.5s ease, transform 0.3s ease, box-shadow 0.5s ease;
}

.dm-contact-button:hover {
  background: linear-gradient(135deg, #007bff, #004aad);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 123, 255, 1);
}

/* Web Development Section */
.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, 74, 173, 0.5);
  background: linear-gradient(135deg, #003366, #004aad);
}

.service-navigation {
  width: 35%;
  background: linear-gradient(135deg, #002855, #004aad);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  overflow-y: auto;
}

.service-navigation button {
  font-size: 18px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.service-navigation button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.service-display {
  width: 65%;
  background: linear-gradient(135deg, #004aad, #007bff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  color: #fff;
}

/* Service Detail */
.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: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.service-detail p {
  font-size: 18px;
  color: #e0eaff;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .webdev-wrapper {
    flex-direction: column;
  }

  .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;
  }
}
