 :root {
            --primary: #6c5ce7;
            --primary-dark: #5649c0;
            --secondary: #fd79a8;
            --dark: #2d3436;
            --light: #f5f6fa;
            --accent: #00cec9;
            --text-light: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f5f5f5;
        }

        .navbar {
            background:#2c3e50;
            /* box-shadow: rgba(236, 13, 13, 0.95); */
            box-shadow: 0px 1px rgba(255, 255, 255, 0.573);
            padding: 0 5%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo i {
            color: rgb(241, 241, 241);
            font-size: 2rem;
            margin-right: 12px;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color:  rgba(4, 208, 157, 0.833);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color:white;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
            padding: 8px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .nav-links a i {
            margin-right: 8px;
            font-size: 0.9em;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

       
        .dropdown {
            position: relative;
        }

        .dropdown > a::after {

            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 6px;
            font-size: 0.8em;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            width: 220px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid #f1f1f1;
            color: var(--dark);
        }

        .dropdown-content a i {
            color: var(--accent);
        }

        .dropdown-content a:hover {
            background-color: var(--light);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

      
        .cta-button {
            /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
            background-color: rgba(4, 208, 157, 0.833);
           
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
            margin-left: 10px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 134, 198, 0.941);
            background-color: rgba(13, 164, 164, 0.751);
            color: white;
            
        }

     
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
 
        .banner {
            position: relative;
            height: 600px;
            width: 100%;
            display: flex;
            align-items: center;
            /* background-image: url(./blue.jpg); */
            background-color: #2c3e50;
            background-size: cover;
            background-position: center;
            padding: 0 50px;
            color: white;
            margin-top: -80px;
            padding-top: 80px;
        }

        .banner-content {
            max-width: 600px;
            z-index: 2;
        }

        .banner-content h1 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner-content p {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .banner-buttons {
            display: flex;
            gap: 15px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1em;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .cta-btn.primary {
            background-color: var(--secondary);
            color: white;
        }
         footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 1.5rem;
            margin-top: 3rem;
        }

        .cta-btn.secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-btn .arrow {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .cta-btn:hover .arrow {
            transform: translateX(5px);
        }

       
        .services {
            padding: 80px 0;
            text-align: center;
            background-color: white;
        }

        .services h2 {
            font-size: 2.2em;
            margin-bottom: 50px;
            color: var(--primary);
        }

        .service-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
    

        .service-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5em;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95em;
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .banner {
                height: 500px;
                padding: 0 30px;
                padding-top: 80px;
            }
            
            .banner-content h1 {
                font-size: 2.2em;
            }
        }

        @media (max-width: 768px) {
            .banner {
                height: 400px;
                text-align: center;
            }
            
            .banner-content {
                max-width: 100%;
            }
            
            .banner-buttons {
                justify-content: center;
                flex-direction: column;
            }
            
            .service-grid {
                flex-direction: column;
                align-items: center;
            }
        }
        /* Team Section */
.team-section {
  background-color: #f5f6fa;
  padding: 60px 20px;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #6c5ce7;
}

.team-member h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  color: #333;
}

.team-member .role {
  font-weight: 500;
  color: #6c5ce7;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 0.9rem;
  color: #666;
}
