
/* this is the universal code for all the pages  */
* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}


/* this is the body part backround which u can see is blue and some animation */
.morphing-bg {
    background: linear-gradient(-45deg, #0f051d, #1e1a38, #2d1b69, #1e1a38);
    background-size: 400% 400%;
    animation: gradient-morph 15s ease infinite;
    will-change: background-position;
}

@keyframes gradient-morph {
    0% {
        background-position: 0% 50%;
    }

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

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

/* the backround ends here  */


/* this is the css for the backround particles  */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #f65ca4, #06b6d4, #ec4899);
    border-radius: 50%;
    animation: float-particle 20s infinite linear;
    opacity: 0.6;
    will-change: transform;
}

.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            rgba(139, 92, 246, 0.1) 20px,
            rgba(139, 92, 246, 0.1) 21px);
    animation: binary-fall 8s linear infinite;
}

.binary-rain::before {
    content: "01001001 01000001 01001001 01000001 01001001 01000001 01001001 01000001";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    color: rgba(139, 92, 246, 0.3);
    font-family: monospace;
    font-size: 12px;
    white-space: nowrap;
    animation: binary-fall 6s linear infinite;
}

/* which ends here */






/* This Css Code if for the Books an apointment Button */
.text-glow {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
}


.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .hover-lift:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* And this code ends here  */



/* This code is for the mobile menu hamburger */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    will-change: backdrop-filter;
}

/* Mobile Menu Animation */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Hamburger Animation */
.hamburger span {
    transition: all 0.3s ease;
    will-change: transform, opacity;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
    will-change: transform;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* hamburger ends here */



/* Code For Hero Section Button */
.glow-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4, #ec4899, #8b5cf6);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    will-change: background-position;
}

.glow-button::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: left 0.5s;
    will-change: left;
}

.glow-button:hover::before {
    left: 100%;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

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

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

/* code Ends Here */



/* this css code is for hero section right side animation */

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes particle-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    33% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 1;
    }

    66% {
        transform: translate(-20px, 20px) scale(0.8);
        opacity: 0.5;
    }
}

@keyframes binary-fall {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Animation Classes */
.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

.animate-spin-reverse {
    animation: spin-reverse 6s linear infinite;
}

.floating-code {
    animation: float 3s ease-in-out infinite;
}

.code-1 {
    animation-delay: 0s;
}

.code-2 {
    animation-delay: 1s;
}

.code-3 {
    animation-delay: 2s;
}

.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

.orbit-1 {
    animation: orbit 10s linear infinite;
}

.orbit-2 {
    animation: orbit 12s linear infinite reverse;
    animation-delay: -3s;
}

.orbit-3 {
    animation: orbit 14s linear infinite;
    animation-delay: -6s;
}

.orbit-4 {
    animation: orbit 16s linear infinite reverse;
    animation-delay: -9s;
}

.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid;
    animation: typing 3s steps(20) infinite;
}


.tech-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.tech-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.tech-particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.tech-particle-4 {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

.tech-particle-5 {
    bottom: 60%;
    right: 10%;
    animation-delay: 4s;
}

/*hero section right side animation and it ends here  */








/* This is the section Of Developers Css */
.developer-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.developer-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.tech-tag {
    @apply bg-white/10 text-white/90 text-xs px-3 py-1 rounded-full backdrop-blur-sm;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    @apply bg-white/20 text-white scale-110;
}

.social-icon {
    @apply w-10 h-10 flex items-center justify-center rounded-full border border-white/20 bg-white/5;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icon svg {
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.2);
}

/* developer section ends here */

/* this css code is for the technolony section */
.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

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

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

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}


.glow-text {
    background: linear-gradient(45deg, #8b5cf6, #06b6d4, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s ease infinite;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    will-change: background-position;
}

@keyframes gradient-text {

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

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

/* Technology Section Ends Here */

/* this section is for the Reviews for the user  */
.review-card {
    transition: all 0.5s ease;
    will-change: transform, box-shadow;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
    will-change: transform;
}

/* Fade In Up Animation */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out both;
    will-change: opacity, transform;
}

/* User reviews Ends here */


/* and index.html some code which i dont know what it do */
section {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 2rem;
    }
}

/* Hero section height adjustment */
.hero-section {
    min-height: 90vh;
}

/* Developer section spacing */
.developer-section {
    margin-top: -2rem;
}

/* Remove excessive gaps between sections */
.section-gap {
    margin-bottom: -2rem;
}

/* sorry for this */





/* This is the End Of Home Page Css */



/* Services Page Start From Here */



/* This is the Industry Solution Css */

.process-step {
      transition: all 0.3s ease;
      will-change: transform;
    }

    .process-step:hover {
      transform: scale(1.05);
    }
    /* It Ends Here */


    /* this the satts Section */
     .stat-number {
      background: linear-gradient(45deg, #8b5cf6, #06b6d4, #ec4899);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-text 3s ease infinite;
      will-change: background-position;
    }

    @keyframes gradient-text {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }


/* Ends Here  */

/* This is Also The end Of the u know Services Page */




/* From Here Starts The Training Page */

    .gradient-text {
      background: linear-gradient(45deg, #8b5cf6, #06b6d4, #ec4899);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradient-shift 3s ease infinite;
    }
    
    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    
    
    /* Glassmorphism */
    .glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Hover Effects */
    .hover-scale {
      transition: transform 0.3s ease;
    }
    
    .hover-scale:hover {
      transform: scale(1.05);
    }
    
    .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hover-lift:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    }
    
    /* Slider */
    .slide {
      opacity: 0;
      transform: translateX(100%);
      transition: all 0.6s ease;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    .slide.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
    }
    
    .slide.prev {
      transform: translateX(-100%);
    }

    /* Here the training Page ends */



    /* From here Starts the About Us Section  */
    
/* This is the Typing CEO Section */
    .typing-effect {
      overflow: hidden;
      border-right: 3px solid #8b5cf6;
      white-space: nowrap;
      animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes blink-caret {
      from, to { border-color: transparent; }
      50% { border-color: #8b5cf6; }
    }


    .hover-lift:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
    }

   
    /* Timeline Styles */
    .timeline {
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #8b5cf6, #06b6d4, #ec4899);
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .timeline-item {
      position: relative;
      margin: 4rem 0;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.6s ease;
    }

    .timeline-item.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 20px;
      height: 20px;
      background: linear-gradient(45deg, #8b5cf6, #06b6d4);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      border: 4px solid #1e1a38;
      z-index: 10;
    }

    .timeline-content {
      width: 45%;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: auto;
    }

    /* CEO ENds here */

/* This is the section of Our team */

    /* Team Card Animations */
    .team-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

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

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

    .team-card:hover {
      transform: translateY(-15px) rotateY(5deg);
      box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
      background: rgba(139, 92, 246, 0.1);
    }

    /* Skill Bar Animation */
    .skill-bar {
      background: rgba(255, 255, 255, 0.1);
      height: 8px;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    .skill-progress {
      height: 100%;
      background: linear-gradient(90deg, #8b5cf6, #06b6d4, #ec4899);
      border-radius: 4px;
      width: 0%;
      transition: width 2s ease-in-out;
      position: relative;
    }

    .skill-progress::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }


    /* Value Cards */
    .value-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .value-card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #8b5cf6, #06b6d4, #ec4899);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .value-card:hover::before {
      transform: scaleX(1);
    }


/* Ends Here */
/* In About Page i dont know About this code mate */

    .stat-number {
      background: linear-gradient(45deg, #8b5cf6, #06b6d4, #ec4899);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-text 3s ease infinite;
    }

    @keyframes gradient-text {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .tech-icon {
      transition: all 0.3s ease;
      filter: grayscale(100%);
    }

    .tech-icon:hover {
      filter: grayscale(0%);
      transform: scale(1.2) rotate(5deg);
    }
    /* it ends here */
    /* The About US Ends Here */


    /* From Here Starts the Contact Us Page */

    /* This is all the contact Css */
            /* Holographic Card Effect */
        .holographic-card {
            position: relative;
            background: rgba(15, 5, 29, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .holographic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            z-index: 2;
        }
        
        .holographic-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(139, 92, 246, 0.1) 0%,
                rgba(59, 130, 246, 0.05) 50%,
                rgba(236, 72, 153, 0.1) 100%
            );
            z-index: 1;
            pointer-events: none;
        }
        
        .holographic-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 48px rgba(139, 92, 246, 0.4);
            border-color: rgba(139, 92, 246, 0.4);
        }
        
        /* Cyberpunk Input Fields */
        .cyber-input {
            background: rgba(10, 4, 19, 0.8);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            padding: 16px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .cyber-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3),
                        inset 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .cyber-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        /* Neon Button */
        .neon-button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 12px;
            padding: 18px 32px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
            z-index: 1;
        }
        
        .neon-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .neon-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
        }
        
        .neon-button:hover::before {
            opacity: 1;
        }
        
        /* Glowing Text */
        .glow-text {
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.7),
                         0 0 20px rgba(139, 92, 246, 0.5),
                         0 0 30px rgba(139, 92, 246, 0.3);
        }
        
        /* Digital Grid Background */
        .digital-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.3;
        }
        
        /* Floating Holograms */
        .hologram {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            z-index: -1;
        }
        
        .hologram-1 {
            background: var(--primary);
            top: 20%;
            left: 10%;
            animation: float 8s ease-in-out infinite;
        }
        
        .hologram-2 {
            background: var(--secondary);
            bottom: 15%;
            right: 10%;
            animation: float 10s ease-in-out infinite 2s;
        }
        
        .hologram-3 {
            background: var(--accent);
            top: 50%;
            right: 20%;
            animation: float 12s ease-in-out infinite 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-40px) translateX(20px); }
        }
        
        /* Contact Card Hover Effects */
        .contact-card {
            transition: all 0.4s ease;
            border-left: 3px solid transparent;
        }
        
        .contact-card:hover {
            transform: translateX(10px);
            border-left: 3px solid var(--primary);
            background: rgba(139, 92, 246, 0.05);
        }
        
        /* Binary Code Animation */
        .binary-code {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            opacity: 0.1;
        }
        
        .binary-digit {
            position: absolute;
            color: rgba(139, 92, 246, 0.7);
            font-family: monospace;
            font-size: 14px;
            animation: fall linear infinite;
        }
        
        @keyframes fall {
            to { transform: translateY(100vh); }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .holographic-card {
                border-radius: 16px;
            }
            
            .cyber-input {
                padding: 14px;
            }
            
            .neon-button {
                padding: 16px 24px;
            }
        }

        .contact {
  text-align: center;
  padding: 40px 20px;
}


.contact iframe {
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Ends Here */

/* The Contact Us Ends Here */