       * {

           margin: 0;

           padding: 0;

           box-sizing: border-box;

       }

       :root {

           --space-blue: #0a0a2a;

           --space-dark: #05051a;

           --neon-blue: #00f3ff;

           --neon-purple: #b967ff;

           --neon-pink: #ff00ff;

           --neon-green: #00ff9d;

           --neon-yellow: #ffde59;

           --neon-orange: #ff6b35;

           --light: #ffffff;

           --gray: #a0a0c0;

           --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

       }



       body {

           font-family: 'Poppins', sans-serif;

           background-color: var(--space-blue);

           color: var(--light);

           line-height: 1.6;

           overflow-x: hidden;

           padding-top: 80px;

       }


       .port-container {

           width: 90%;

           max-width: 1400px;

           margin: 0 auto;

           padding: 0 20px;

       }



       /* Header & Navigation */

       header {

           position: fixed;

           top: 0;

           left: 0;

           width: 100%;

           z-index: 1000;

           padding: 20px 0;

           transition: var(--transition);

           background: rgba(10, 10, 42, 0.95);

           backdrop-filter: blur(15px);

           border-bottom: 1px solid rgba(0, 243, 255, 0.2);

       }



       header.scrolled {

           padding: 15px 0;

           box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

           background: rgba(10, 10, 42, 0.98);

       }



       .nav-container {

           display: flex;

           justify-content: space-between;

           align-items: center;

       }



       .logo {

           font-family: 'Orbitron', sans-serif;

           font-size: 20px;

           font-weight: 700;

           color: var(--light);

           text-decoration: none;

           display: flex;

           align-items: center;

           gap: 5px;

           z-index: 1002;

       }



       .logo-icon {

           width: 60px;

           height: 60px;

           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));

           border-radius: 50%;

           display: flex;

           align-items: center;

           justify-content: center;

           animation: pulse 3s infinite alternate;

       }



       @keyframes pulse {

           0% {
               box-shadow: 0 0 10px var(--neon-blue);
           }

           100% {
               box-shadow: 0 0 25px var(--neon-purple);
           }

       }



       .logo span {

           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
           ;

           -webkit-background-clip: text;

           background-clip: text;

           color: transparent;

           text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);

       }



       /* Desktop Navigation */

       .desktop-nav {

           display: flex;

       }



       .desktop-nav ul {

           display: flex;

           list-style: none;

           gap: 2px;

           margin: 0;

           padding: 0;

       }



       .desktop-nav ul li {

           position: relative;

       }



       .desktop-nav ul li a {

           color: var(--light);

           text-decoration: none;

           font-weight: 600;

           font-size: 1rem;

           padding: 10px 20px;

           border-radius: 30px;

           transition: var(--transition);

           position: relative;

           overflow: hidden;

           font-family: 'Orbitron', sans-serif;

           display: block;

       }



       .desktop-nav ul li a::before {

           content: '';

           position: absolute;

           top: 0;

           left: -100%;

           width: 100%;

           height: 100%;

           background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);

           transition: 0.5s;

       }



       .desktop-nav ul li a:hover::before,

       .desktop-nav ul li a.active::before {

           left: 100%;

       }



       .desktop-nav ul li a:hover,

       .desktop-nav ul li a.active {

           background: rgba(0, 243, 255, 0.1);

           color: var(--neon-blue);

           box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);

       }



       /* Mobile Menu Button */

       .mobile-menu-btn {

           display: none;

           font-size: 1.8rem;

           cursor: pointer;

           color: var(--light);

           background: none;

           border: none;

           z-index: 1002;

       }



       /* Mobile Navigation */

       .mobile-nav {

           position: fixed;

           top: 0;

           right: -100%;

           width: 300px;

           height: 100vh;

           background: rgba(10, 10, 42, 0.98);

           backdrop-filter: blur(20px);

           z-index: 1001;

           transition: var(--transition);

           padding: 100px 30px 30px;

           border-left: 1px solid rgba(0, 243, 255, 0.2);

       }



       .mobile-nav.active {

           right: 0;

       }



       .mobile-nav ul {

           list-style: none;

       }



       .mobile-nav ul li {

           margin-bottom: 20px;

       }



       .mobile-nav ul li a {

           color: var(--light);

           text-decoration: none;

           font-size: 1.2rem;

           padding: 15px 20px;

           display: block;

           border-radius: 10px;

           transition: var(--transition);

           font-family: 'Orbitron', sans-serif;

       }



       .mobile-nav ul li a:hover,

       .mobile-nav ul li a.active {

           background: rgba(0, 243, 255, 0.1);

           color: var(--neon-blue);

       }



       .mobile-nav-close {

           position: absolute;

           top: 25px;

           right: 25px;

           font-size: 1.8rem;

           color: var(--light);

           background: none;

           border: none;

           cursor: pointer;

           z-index: 1002;

       }



       /* Overlay for mobile menu */

       .overlay {

           position: fixed;

           top: 0;

           left: 0;

           width: 100%;

           height: 100%;

           background: rgba(0, 0, 0, 0.7);

           z-index: 1000;

           display: none;

       }



       .overlay.active {

           display: block;

       }



       /* Hero Section - Redesigned */

       .hero {

           min-height: 80vh;

           display: flex;

           align-items: center;

           position: relative;

           padding-top: 40px;

           background: linear-gradient(135deg, rgba(10, 10, 42, 0.9), rgba(42, 27, 61, 0.9));

           overflow: hidden;

       }

.tooltip-wrapper {
  position: absolute;
  transition: transform 6s linear;
}

.info-btn {
    width: 100px;
    height: 100px;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.info-btn {
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  box-shadow:
    0 0 25px rgba(34, 211, 238, 0.6),
    0 0 50px rgba(139, 92, 246, 0.6);
  color: #fff;
}

.tooltip-box {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}


.tooltip-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


.tooltip-content {
  background: linear-gradient(135deg, #020617, #111827);
  color: #e5e7eb;
  padding: 16px;
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
  position: relative;
}

.tooltip-content h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #fff;
}

.tooltip-content p {
  font-size: 13px;
  margin-bottom: 10px;
}


.badge {
  font-size: 12px;
  color: #9ca3af;
}


.tooltip-arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #020617;
  transform: translateX(-50%) rotate(45deg);
}
.read-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  background: #4f46e5;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #4338ca;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}


.info-btn {
  animation: pulse 2s infinite ease-in-out;
}

.tooltip-wrapper:hover .info-btn {
  animation-play-state: paused;
}







       .hero-bg {

           position: absolute;

           top: 0;

           left: 0;

           width: 100%;

           height: 100%;

           z-index: -1;

           background:

               radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),

               radial-gradient(circle at 80% 20%, rgba(185, 103, 255, 0.1) 0%, transparent 50%),

               radial-gradient(circle at 40% 40%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
               
       }



       .hero-content {

           max-width: 800px;

           margin: 0 auto;

           text-align: center;

           position: relative;
           padding-bottom: 40px;

           z-index: 2;

       }



       .hero h1 {

           font-family: 'Orbitron', sans-serif;

           font-size: 75px;
           ;

           margin-bottom: 15px;

           line-height: 1.1;

           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
           ;

           -webkit-background-clip: text;

           background-clip: text;

           color: transparent;

           animation: gradientShift 5s infinite alternate;

           text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

       }



       @keyframes gradientShift {

           0% {
               background-position: 0% 50%;
           }

           50% {
               background-position: 100% 50%;
           }

           100% {
               background-position: 0% 50%;
           }

       }



       .hero-subtitle {

           font-size: 1.8rem;

           margin-bottom: 20px;

           color: var(--neon-yellow);

           font-weight: 600;

           font-family: 'Orbitron', sans-serif;

       }


       .auto_typing {
           width: 100%;
           height: auto;
       }

       .typing-text {
           font-size: 1.9rem;
           margin-bottom: 2rem;
           min-height: 2rem;
           opacity: 0;
           animation: fadeInUp 1s ease forwards;
           animation-delay: 1.1s;
           font-family: 'Orbitron', sans-serif;
           color: var(--neon-yellow);
       }

       .typing-text span {
           color: #00f3ff;
           font-weight: 600;
           text-shadow: 0 0 10px #00f3ff;
       }

       @keyframes fadeInUp {
           from {
               opacity: 0;
               transform: translateY(20px);
           }

           to {
               opacity: 1;
               transform: translateY(0);
           }
       }

       /* auto typing text end  */

       .hero-tagline {

           font-size: 1.1rem;

           color: var(--neon-blue);

           margin-bottom: 10px;

           text-transform: uppercase;

           letter-spacing: 3px;

       }



       .hero-description {

           font-size: 18px;

           margin-bottom: 40px;

           color: var(--gray);

           max-width: 700px;

           margin-left: auto;

           margin-right: auto;

       }



       .hero-btns {

           display: flex;

           gap: 20px;

           justify-content: center;

           flex-wrap: wrap;

       }



       .btn {

           padding: 15px 40px;

           border-radius: 50px;

           text-decoration: none;

           font-weight: 600;

           font-size: 1.1rem;

           display: inline-flex;

           align-items: center;

           gap: 12px;

           transition: var(--transition);

           font-family: 'Orbitron', sans-serif;

           cursor: pointer;

           border: none;

           position: relative;

           overflow: hidden;

       }



       .btn::before {

           content: '';

           position: absolute;

           top: 0;

           left: -100%;

           width: 100%;

           height: 100%;

           background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

           transition: 0.5s;

       }



       .btn:hover::before {

           left: 100%;

       }



       .btn-primary {

           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));

           color: var(--space-blue);

           box-shadow: 0 10px 30px rgba(0, 243, 255, 0.4);

       }



       .btn-primary:hover {

           transform: translateY(-5px);

           box-shadow: 0 20px 40px rgba(0, 243, 255, 0.6);

       }



       .btn-secondary {

           background: transparent;

           color: var(--light);

           border: 2px solid var(--neon-blue);

           box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);

       }



       .btn-secondary:hover {

           background: rgba(0, 243, 255, 0.1);

           transform: translateY(-5px);

           box-shadow: 0 0 40px rgba(0, 243, 255, 0.5);

       }



       /* Section Common */

       .section {

           padding: 70px 0;

           position: relative;

       }



       .section-title {

           text-align: center;

           margin-bottom: 60px;

       }



       .section-title h2 {

           font-family: 'Orbitron', sans-serif;

           font-size: 3.5rem;

           color: var(--light);

           margin-bottom: 15px;

           position: relative;

           display: inline-block;

       }



       .section-title h2::after {

           content: '';

           position: absolute;

           bottom: -10px;

           left: 50%;

           transform: translateX(-50%);

           width: 150px;

           height: 4px;

           background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));

           border-radius: 2px;

           box-shadow: 0 0 15px var(--neon-blue);

       }



       .section-title p {

           font-size: 1.2rem;

           color: var(--gray);

           max-width: 600px;

           margin: 0 auto;

       }



       /* About Section - Redesigned */

       .about-content {

           display: grid;

           grid-template-columns: 1fr 1fr;

           gap: 60px;

           align-items: center;

       }



       .about-text h3 {

           font-size: 2.5rem;

           margin-bottom: 20px;

           color: var(--neon-blue);

           font-family: 'Orbitron', sans-serif;

       }



       .about-text p {

           font-size: 18px;

           margin-bottom: 25px;

           color: var(--gray);

           line-height: 1.8;

       }



       .skills-container {

           margin-top: 30px;

       }



       .skill-item {

           margin-bottom: 20px;

       }



       .skill-name {

           display: flex;

           justify-content: space-between;

           margin-bottom: 8px;

           color: var(--light);

           font-weight: 500;

       }



       .skill-bar {

           height: 10px;

           background: rgba(255, 255, 255, 0.1);

           border-radius: 5px;

           overflow: hidden;

       }



       .skill-progress {

           height: 100%;

           background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));

           border-radius: 5px;

           width: 0;

           transition: width 1.5s ease;

       }



       .about-image {

           position: relative;

           border-radius: 20px;

           overflow: hidden;

           border: 3px solid var(--neon-blue);

           box-shadow: 0 20px 50px rgba(0, 243, 255, 0.3);

           transform: perspective(1000px) rotateY(-5deg);

           transition: var(--transition);

       }

       .about-image img {

           width: 100%;

           height: auto;

           display: block;

           transition: transform 0.5s;

       }



       /* Services Section - Enhanced */ce
    .services-grid{
    display:grid;
}
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 243, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--space-blue);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--neon-green);
}


/* Tablets */
@media (max-width: 992px) {
    .service-card {
        padding: 30px 25px;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
    }

    .service-card:hover {
        transform: translateY(-6px);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
      .hero-tagline{
 font-size: 0.85rem;
}
    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}


       /* Video Portfolio - Enhanced */

       .portfolio-tabs {

           display: flex;

           justify-content: center;

           gap: 15px;

           margin-bottom: 50px;

           flex-wrap: wrap;

       }



       .tab-btn {

           padding: 12px 30px;

           background: rgba(255, 255, 255, 0.05);

           border: 1px solid rgba(0, 243, 255, 0.2);

           border-radius: 50px;

           color: var(--light);

           cursor: pointer;

           transition: var(--transition);

           font-weight: 600;

           font-family: 'Orbitron', sans-serif;

           position: relative;

           overflow: hidden;

       }



       .tab-btn::before {

           content: '';

           position: absolute;

           top: 0;

           left: -100%;

           width: 100%;

           height: 100%;

           background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);

           transition: 0.5s;

       }



       .tab-btn:hover::before {

           left: 100%;

       }

       .tab-btn.active,
       .tab-btn:hover {
           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));

           color: var(--space-blue);

           box-shadow: 0 10px 20px rgba(0, 243, 255, 0.3);

       }



       .reveal {
           opacity: 1;
           transform: translateY(20px);
           transition: opacity 0.6s ease, transform 0.6s ease;
       }


       .portfolio-item {
           background: rgba(255, 255, 255, 0.05);
           border-radius: 20px;
           overflow: hidden;
           border: 1px solid rgba(0, 243, 255, 0.25);
           transition: transform 0.4s ease, box-shadow 0.4s ease;
           will-change: transform;
       }

       .portfolio-item:hover {
           transform: translateY(-10px) scale(1.02);
           border-color: var(--neon-blue);
           box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
       }


       .portfolio-image {
           position: relative;
           height: 220px;
           overflow: hidden;
       }

       .portfolio-image img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: transform 0.5s ease;
       }

       .portfolio-item:hover img {
           transform: scale(1.1);
       }


       .portfolio-overlay {
           position: absolute;
           inset: 0;
           background: linear-gradient(to bottom,
                   rgba(0, 0, 0, 0.2),
                   rgba(0, 0, 0, 0.85));
           display: flex;
           justify-content: center;
           align-items: center;
           gap: 15px;
           opacity: 0;
           transition: opacity 0.4s ease;
       }

       .portfolio-item:hover .portfolio-overlay {
           opacity: 1;
       }

       /* Overlay buttons */
       .portfolio-overlay a {
           display: inline-flex;
           align-items: center;
           gap: 8px;
           padding: 10px 18px;
           background: rgba(0, 243, 255, 0.15);
           color: #00f3ff;
           border-radius: 25px;
           font-size: 0.9rem;
           text-decoration: none;
           border: 1px solid rgba(0, 243, 255, 0.4);
           transition: all 0.3s ease;
       }

       .portfolio-overlay a:hover {
           background: #00f3ff;
           color: #000;
       }

       .portfolio-info {
           padding: 25px;
       }

       .portfolio-info h3 {
           font-size: 1.5rem;
           margin-bottom: 10px;
           color: var(--light);
       }

       .portfolio-info p {
           color: var(--gray);
           margin-bottom: 15px;
       }

       .portfolio-tags {
           display: flex;
           flex-wrap: wrap;
           gap: 10px;
       }

       .tag {
           padding: 5px 15px;
           background: rgba(0, 243, 255, 0.1);
           border-radius: 20px;
           font-size: 0.9rem;
           color: var(--neon-blue);
       }


       /* Testimonials - Redesigned */

       /* .testimonials-slider {

            max-width: 900px;

            margin: 0 auto;

            position: relative;

        }



        .testimonial-card {

            background: rgba(255, 255, 255, 0.05);

            border-radius: 20px;

            padding: 40px;

            margin: 20px;

            border: 1px solid rgba(0, 243, 255, 0.2);

            position: relative;

            overflow: hidden;

        }



        .testimonial-card::before {

            content: '"';

            font-size: 15rem;

            color: rgba(0, 243, 255, 0.05);

            position: absolute;

            top: -40px;

            left: 10px;

            font-family: 'Georgia', serif;

        }



        .testimonial-text {

            font-size: 1.2rem;

            font-style: italic;

            margin-bottom: 30px;

            color: var(--light);

            position: relative;

            z-index: 1;

        }



        .testimonial-author {

            display: flex;

            align-items: center;

            gap: 20px;

        }



        .author-image {

            width: 80px;

            height: 80px;

            border-radius: 50%;

            overflow: hidden;

            border: 3px solid var(--neon-blue);

            box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);

        }



        .author-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

        }



        .author-info h4 {

            font-size: 1.3rem;

            color: var(--light);

            margin-bottom: 5px;

        }



        .author-info p {

            color: var(--neon-blue);

            font-weight: 500;

        }



        .slider-controls {

            display: flex;

            justify-content: center;

            gap: 20px;

            margin-top: 40px;

        }



        .slider-btn {

            width: 50px;

            height: 50px;

            border-radius: 50%;

            background: rgba(255, 255, 255, 0.05);

            border: 1px solid rgba(0, 243, 255, 0.2);

            color: var(--light);

            cursor: pointer;

            transition: var(--transition);

            display: flex;

            align-items: center;

            justify-content: center;

        }



        .slider-btn:hover {

            background: var(--neon-blue);

            color: var(--space-blue);

            transform: scale(1.1);

        } */



       /* Stats Section */

       .counter-section {

           background: linear-gradient(135deg, rgba(10, 10, 42, 0.9), rgba(42, 27, 61, 0.9));

       }

.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 243, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.counter-item:hover::before {
    left: 100%;
}

.counter-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
}

.counter-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
}

.counter-text {
    font-size: 1.2rem;
    color: var(--gray);
}
/* Tablet */
@media (max-width: 768px) {
    .counter {
        font-size: 3rem;
    }

    .counter-icon {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .counter-item {
        padding: 30px 15px;
    }

    .counter-item:hover {
        transform: translateY(-5px);
    }

    .counter {
        font-size: 2.5rem;
    }

    .counter-text {
        font-size: 1rem;
    }
}


.process-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}


       .process-step:hover {

           transform: translateY(-10px);

           border-color: var(--neon-blue);

           box-shadow: 0 15px 30px rgba(0, 243, 255, 0.2);

       }



       .step-number {

           width: 60px;

           height: 60px;

           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));

           border-radius: 50%;

           display: flex;

           align-items: center;

           justify-content: center;

           font-family: 'Orbitron', sans-serif;

           font-size: 1.5rem;

           font-weight: 700;

           color: var(--space-blue);

           margin: 0 auto 20px;

       }



       .process-step h3 {

           font-size: 1.5rem;

           margin-bottom: 15px;

           color: var(--light);

       }



       .process-step p {

           color: var(--gray);

       }


@media (max-width: 576px) {
    .process-step {
        padding: 25px 20px;
    }

    .process-step:hover {
        transform: translateY(-5px);
    }
}

       /* Contact Section - Enhanced */

       .contact-content {

           display: grid;

           grid-template-columns: 1fr 2fr;

           gap: 50px;

       }



       .contact-info {

           display: flex;

           flex-direction: column;

           gap: 25px;

       }



       .contact-item {

           background: rgba(255, 255, 255, 0.05);

           padding: 25px;

           border-radius: 15px;

           border: 1px solid rgba(0, 243, 255, 0.2);

           transition: var(--transition);

           position: relative;

           overflow: hidden;

       }



       .contact-item::before {

           content: '';

           position: absolute;

           top: 0;

           left: -100%;

           width: 100%;

           height: 100%;

           background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);

           transition: 0.5s;

       }



       .contact-item:hover::before {

           left: 100%;

       }



       .contact-item:hover {

           transform: translateX(10px);

           border-color: var(--neon-blue);

           box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);

       }



       .contact-icon {

           width: 60px;

           height: 60px;

           background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));

           border-radius: 50%;

           display: flex;

           align-items: center;

           justify-content: center;

           font-size: 1.5rem;

           color: var(--space-blue);

           margin-bottom: 15px;

       }



       .contact-item h4 {

           font-size: 1.3rem;

           margin-bottom: 10px;

           color: var(--light);

       }



       .contact-item p {

           color: var(--gray);

       }



       .contact-form {

           background: rgba(255, 255, 255, 0.05);

           padding: 40px;

           border-radius: 20px;

           border: 1px solid rgba(0, 243, 255, 0.2);

       }



       .form-group {

           margin-bottom: 25px;

       }



       .form-group label {

           display: block;

           margin-bottom: 8px;

           color: var(--light);

           font-weight: 500;

       }



       .form-control {

           width: 100%;

           /* padding: 15px; */

           background: rgba(255, 255, 255, 0.07);

           border: 1px solid rgba(0, 243, 255, 0.3);

           border-radius: 10px;

           /* color: var(--light); */

           color: var(--gray);


           font-size: 1rem;

           transition: var(--transition);

       }

       .form-control::placeholder {

           color: var(--gray);

       }


       .form-control:focus {

           outline: none;

           border-color: var(--neon-blue);

           box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
           background: rgba(255, 255, 255, 0.07);
       }



       textarea.form-control {

           min-height: 150px;

           resize: vertical;

       }

       .form-control .option {
           color: #000;
       }

       /* Footer */

       footer {

           background: var(--space-dark);

           padding:50px  0 30px 0;

           border-top: 1px solid rgba(0, 243, 255, 0.2);

       }



       .footer-content {

           margin-bottom: 50px;

       }



       .footer-column h3 {

           font-size: 1.5rem;

           color: var(--light);

           margin-bottom: 20px;

           font-family: 'Orbitron', sans-serif;

       }
.footer-column p {
    color: var(--gray);
     }
       .footer-links {

           list-style: none;
           padding-left: 5px;

       }



       .footer-links li {

           margin-bottom:5px;

       }



       .footer-links a {

           color: var(--gray);

           text-decoration: none;

           transition: var(--transition);

       }



       .footer-links a:hover {

           color: var(--neon-blue);

           padding-left: 10px;

       }



       .social-links {

           display: flex;

           gap: 15px;

           margin-top: 20px;

       }



       .social-link {

           width: 45px;

           height: 45px;

           border-radius: 50%;

           background: rgba(255, 255, 255, 0.05);

           display: flex;

           align-items: center;

           justify-content: center;

           color: var(--light);

           text-decoration: none;

           transition: var(--transition);

           border: 1px solid rgba(0, 243, 255, 0.2);

       }



       .social-link:hover {

           background: var(--neon-blue);

           color: var(--space-blue);

           transform: translateY(-5px);

           box-shadow: 0 10px 20px rgba(0, 243, 255, 0.4);

       }



       .newsletter-form {

           display: flex;

           gap: 10px;

           margin-top: 20px;

       }



       .newsletter-form input {

           flex: 1;

           padding: 12px;

           background: rgba(255, 255, 255, 0.07);

           border: 1px solid rgba(0, 243, 255, 0.3);

           border-radius: 5px;

           color: var(--light);

       }



       .footer-bottom {

           text-align: center;

           padding-top: 30px;

           border-top: 1px solid rgba(0, 243, 255, 0.2);

           color: var(--gray);

       }

       .transparent-select {
           background-color: transparent;
           color: var(--gray);
           /* border: 1px solid #ccc; */
       }

       .transparent-select:focus {
           background: rgba(255, 255, 255, 0.07);
       }

       .transparent-select option {
           background: rgba(255, 255, 255, 0.07);
           color: var(--gray);
       }

       /* Responsive Design */


       @media (max-width: 1440px) and (min-width: 768px) {


           header {
               padding: 18px 0;
           }

           .logo {
               font-size: 18px;
           }

           .desktop-nav {
               display: flex;
           }

           .desktop-nav ul {
               gap: 0;
           }

           .desktop-nav ul li a {
               padding: 8px 14px;
               font-size: 0.95rem;
           }

           .port-container {
               padding: 0 20px;
           }

.footer-column h3{
     font-size: 1rem;
}

           .footer-column p{
            font-size: 0.85rem;
           }
       }


       /* ................ */

       @media (max-width: 1200px) {

           .hero h1 {

               font-size: 3.5rem;

           }



       }

       @media (max-width:1180px) {
           .desktop-nav ul li {
               font-size: 14px;

           }
       }

       @media (max-width:1024px) {
           .desktop-nav ul li {
               font-size: 1px;

           }

           .about-text h3 {
               font-size: 2.3rem;
           }

           .about-text p {
               font-size: 16px;
               margin-bottom: 25px;
               color: var(--gray);
               line-height: 1.4;
           }

           .skill-name {
               font-size: 13px;
           }

       }

       @media (max-width: 992px) {

           .about-content,

           .contact-content {

               grid-template-columns: 1fr;

           }


           .portfolio-grid {

               grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

           }



           .process-steps {

               grid-template-columns: repeat(2, 1fr);

           }


           .portfolio-item p {
               font-size: 14px;
           }



       }

       @media (max-width: 768px) {

           body {

               padding-top: 70px;

           }



           .hero {

               padding-top: 40px;

           }



           .hero h1 {

               font-size: 2.8rem;

           }



           .hero-subtitle {

               font-size: 1.5rem;

           }



           .section-title h2 {

               font-size: 2.5rem;

           }




           .desktop-nav {

               display: none;

           }



           .mobile-menu-btn {

               display: block;

           }



           .process-steps {

               grid-template-columns: 1fr;

           }

           .mobile-nav {

               width: 280px;

           }

       }



       @media (max-width: 576px) {

           .hero h1 {

               font-size: 2.2rem;

           }


           .section-title h2,
           .about-text h3 {
               font-size: 2rem;
           }

           .section-title p,
           .about-text p {
               font-size: 17px;
           }

           .hero-subtitle {

               font-size: 1.2rem;

           }



           .hero-btns {

               flex-direction: column;

           }



           .btn {

               width: 100%;

               justify-content: center;

           }



           .services-grid {

               grid-template-columns: 1fr;

           }



           .footer-content {

               grid-template-columns: 1fr;

           }



           .portfolio-grid {

               grid-template-columns: 1fr;

           }



           .mobile-nav {

               width: 100%;

               right: -100%;

           }



           .mobile-nav.active {

               right: 0;

           }

           .portfolio-image {
               height: 200px;
           }

       }



       @media (max-width: 576px) {
           .footer-content {
               grid-template-columns: 1fr;
               /* text-align: center; */
           }

           /* .social-links {
    justify-content: center;
  } */
       }

       @media(max-width:420px) {


           .sent-btn {
               font-size: 12px;
           }

           .footer-column {
               width: 100%;
           }

       }