@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

:root {
    --dark-bg: #121212;
    --neon-green: #0080ff;
    --text-color: #ffffff;
    --text-secondary: #aaaaaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--neon-green);
}

nav ul li a.active {
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 5px;
}

.hire-btn {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.hire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--neon-green);
    display: block;
}

.hero-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.cta {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--neon-green);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 20px;
}

.download-btn i {
    margin-left: 10px;
}

.download-btn:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    color: var(--text-color);
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pro-image{
    height: 280px;
    width: 290px;
    margin-left: -50px;
}

.image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--neon-green);
    animation: rotate 20s linear infinite;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Stats Section */

.stats {
    display: flex;
    justify-content: space-evenly; /* Evenly distribute stats */
    width: 100%; /* Take full width */
    max-width: 1000px; /* Adjust for responsiveness */
    margin-top: 20px;
    flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
}

.stat-item {
    text-align: center;
    flex: 1; /* Make each stat take equal space */
    min-width: 120px; /* Prevent shrinking too much */
}

.stat-item h2 {
    font-size: 34px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #555;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .cta {
        justify-content: center;
        
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }
    .stat-item h2{
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hire-btn {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--dark-bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu ul li {
        margin: 15px 0;
    }

    .mobile-menu .hire-btn {
        display: block;
        margin-top: 20px;
    }

    .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 24px;
        cursor: pointer;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 36px;
    }

    .stat-item {
        width: 100%;
    }
}

.card {
    width: 190px;
    height: 254px;
    background: #07182E;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px; /* Ensures it fits nicely inside */
    position: absolute;
    z-index: 0; /* Behind the text */
  }
  
  .card h2 {
    z-index: 1;
    color: white;
    font-size: 2em;
    position: relative;
  }
  
  .card::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 130%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
  }
  
  @keyframes rotBGimg {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  .card::after {
    content: '';
    position: absolute;
    background: rgba(7, 24, 46, 0.7); /* Adds a slight overlay for text visibility */
    inset: 5px;
    border-radius: 15px;
    z-index: 0;
  }
  
  


/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark-bg);
  }
  
  .section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 auto;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-green);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-secondary);
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background: var(--neon-green);
    color: var(--dark-bg);
  }
  
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
  }
  
  .service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
  }
  
/* Update responsive styles for services */
@media (max-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .service-card {
      padding: 30px 20px;
    }
  }
  

/* Contact Section */
.contact-section-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      radial-gradient(circle at center, rgba(0, 255, 170, 0.1) 0%, transparent 70%);
    padding: 100px 0;
    margin-top: 50px;
    position: relative;
  }
  
  .contact-section-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/contact-img.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
  }
  
  .contact-section {
    text-align: center;
  }
  
  .contact-header {
    margin-bottom: 60px;
  }
  
  .contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  
  .contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--neon-green);
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .contact-card:hover .contact-icon {
    background: var(--neon-green);
    color: var(--dark-bg);
  }
  
  .contact-card h3 {
    font-size: 18px;
    color: var(--text-color);
  }
  
  .contact-card p {
    color: var(--text-secondary);
    font-size: 16px;
  }
  
  .contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-card a:hover {
    color: var(--neon-green);
  }
  
  .contact-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .contact-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .contact-social-icon:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    transform: translateY(-3px);
  }
  
  .contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .contact-form-container:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
  
  .form-group label {
    font-size: 14px;
    color: var(--text-color);
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    transition: color 0.3s ease;
  }
  
  .textarea-container i {
    top: 20px;
    transform: none;
  }
  
  .input-with-icon input,
  .input-with-icon textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-family: "Space Mono", monospace;
    transition: all 0.3s ease;
  }
  
  .input-with-icon input:focus,
  .input-with-icon textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2px rgba(0, 255, 170, 0.2);
  }
  
  .input-with-icon input:focus + i,
  .input-with-icon textarea:focus + i {
    color: var(--neon-green);
  }
  
  .submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
  }
  
  .submit-button i {
    font-size: 16px;
  }
  
  /* Footer Styles */
  .footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  
  .footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    color: var(--text-secondary);
    max-width: 300px;
  }
  
  .footer-links {
    display: flex;
    gap: 60px;
  }
  
  .footer-links-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
  }
  
  .footer-links-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--neon-green);
  }
  
  .footer-links-column ul {
    list-style: none;
  }
  
  .footer-links-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links-column ul li a:hover {
    color: var(--neon-green);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .footer-social-icon:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
  }
  

/* Download Button States */
.download-btn.loading {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  .download-btn.success {
    background-color: #4caf50;
  }
  
  .download-btn .fa-spinner {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-content {
      margin-bottom: 50px;
    }
  
    .cta {
      justify-content: center;
      justify-content: center;
    }
  
    .stats {
      flex-wrap: wrap;
    }
  
    .stat-item {
      width: 50%;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
    }
  
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .contact-content {
      flex-direction: column;
      gap: 30px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-links {
      gap: 30px;
      flex-wrap: wrap;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    nav ul {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hire-btn {
      display: none;
    }
  
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--dark-bg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 100;
    }
  
    .mobile-menu ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .mobile-menu ul li {
      margin: 15px 0;
    }
  
    .mobile-menu .hire-btn {
      display: block;
      margin-top: 20px;
    }
  
    .close-menu {
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 24px;
      cursor: pointer;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .contact-section-wrapper {
      padding: 60px 0;
    }
  
    .contact-card {
      padding: 20px;
    }
  
    .contact-card-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .contact-icon {
      margin-bottom: 15px;
      margin-right: 0;
    }
  
    .contact-social-icons {
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 36px;
    }
  
    .stat-item {
      width: 100%;
    }
  
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .service-card {
      padding: 30px 20px;
    }
  
    .contact-form-container {
      padding: 20px;
    }
  
    .submit-button {
      width: 100%;
    }
  
    .hero-content p {
      font-size: 14px;
    }
  
    .download-btn {
      width: 100%;
      justify-content: center;
      margin-right: 0;
    }
  
    h1 {
      font-size: 32px;
    }
  
    .section-title {
      font-size: 26px;
    }
  }
  
  /* Update responsive styles for services */
  @media (max-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .service-card {
      padding: 30px 20px;
    }
  }
  
  /* Fix for very small screens */
  @media (max-width: 360px) {
    .contact-social-icons {
      gap: 5px;
    }
  
    .contact-social-icon {
      width: 30px;
      height: 30px;
    }
  
    .image-container {
      width: 250px;
      height: 250px;
    }
  }
  
  
  