        /* General Styles */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }
      
      body {
          background-color: #f9fafb;
          color: #333333;
          overflow-x: hidden;

      }
      
      section {
          padding: 80px 20px;
      }
      
      .container {
          max-width: 1200px;
          margin: 0 auto;
      }
      
      .section-title {
          font-size: 2.5rem;
          margin-bottom: 40px;
          text-align: center;
          color: #333333;
          position: relative;
      }
      
      .section-title:after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: linear-gradient(90deg, #2563eb, #1d4ed8);
      }
      
      .btn {
          display: inline-block;
          padding: 12px 30px;
          background: linear-gradient(90deg, #2563eb, #1d4ed8);
          color: #ffffff;
          border-radius: 30px;
          text-decoration: none;
          font-weight: 600;
          letter-spacing: 1px;
          text-transform: uppercase;
          box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
          transition: all 0.3s ease;
          cursor: pointer;
          border: none;
          outline: none;
      }
      
      .btn:hover {
          transform: translateY(-5px);
          box-shadow: 0 7px 20px rgba(37, 99, 235, 0.6);
          background: linear-gradient(90deg, #1d4ed8, #2563eb);
          color:white;
      }
      .btn a:hover{
        color:white;
      }
      .btn-outline {
          background: transparent;
          border: 2px solid #ffffff;
          margin-left: 20px;
      }
      
      .btn-outline:hover {
          background: rgba(255, 255, 255, 0.1);
      }

      
      /* Hero Section */
      .hero {
          min-height: 100vh;
          display: flex;
          align-items: center;
          position: relative;
          background: linear-gradient(135deg, #0f172a, #1e293b);
          overflow: hidden;
          padding: 0 20px;
      }
      
      /* Code animation background */
      .code-background {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0.05;
          overflow: hidden;
          z-index: 0;
      }
      
      .code-line {
          position: absolute;
          color: #ffffff;
          font-family: 'Courier New', monospace;
          font-size: 14px;
          white-space: nowrap;
          opacity: 0.7;
          animation: codeFall linear infinite;
      }
      
      @keyframes codeFall {
          0% {
              transform: translateY(-100%);
          }
          100% {
              transform: translateY(100vh);
          }
      }
      
      /* Floating devices */
      .floating-devices {
          position: absolute;
          width: 600px;
          height: 600px;
          right: -100px;
          top: 50%;
          transform: translateY(-50%);
          z-index: 1;
      }
      
      .device {
          position: absolute;
          background: rgba(255, 255, 255, 0.05);
          border: 2px solid rgba(255, 255, 255, 0.1);
          border-radius: 10px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          backdrop-filter: blur(5px);
          overflow: hidden;
          animation: float 6s ease-in-out infinite;
      }
      
      .device::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 15px;
          background: rgba(255, 255, 255, 0.1);
          z-index: 1;
      }
      
      .device::after {
          content: '';
          position: absolute;
          top: 3px;
          left: 10px;
          width: 8px;
          height: 8px;
          background: #f87171;
          border-radius: 50%;
          box-shadow: 18px 0 0 #fbbf24, 36px 0 0 #34d399;
          z-index: 2;
      }
      
      .device-screen {
          position: absolute;
          top: 15px;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, #111827, #1f2937);
          overflow: hidden;
      }
      
      .device-code {
          position: absolute;
          top: 5px;
          left: 5px;
          right: 5px;
          bottom: 5px;
          font-family: 'Courier New', monospace;
          font-size: 8px;
          color: #a5f3fc;
          overflow: hidden;
          line-height: 1.2;
      }
      
      .code-html {
          color: #f472b6;
      }
      
      .code-css {
          color: #a5b4fc;
      }
      
      .code-js {
          color: #fbbf24;
      }
      
      .device-1 {
          width: 280px;
          height: 180px;
          top: 60px;
          right: 150px;
          animation-delay: 0s;
          transform: rotate(-5deg);
          z-index: 4;
      }
      
      .device-2 {
          width: 140px;
          height: 240px;
          top: 180px;
          right: 80px;
          animation-delay: 1s;
          transform: rotate(5deg);
          z-index: 3;
      }
      
      .device-3 {
          width: 200px;
          height: 150px;
          top: 320px;
          right: 180px;
          animation-delay: 2s;
          transform: rotate(-8deg);
          z-index: 2;
      }
      
      @keyframes float {
          0% {
              transform: translateY(0px) rotate(var(--rotation, 0deg));
          }
          50% {
              transform: translateY(-20px) rotate(var(--rotation, 0deg));
          }
          100% {
              transform: translateY(0px) rotate(var(--rotation, 0deg));
          }
      }
      
      /* Tech orbits */
      .tech-orbit {
          position: absolute;
          width: 600px;
          height: 600px;
          right: -100px;
          top: 50%;
          transform: translateY(-50%);
          z-index: 0;
      }
      
      .orbit {
          position: absolute;
          border: 1px dashed rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          animation: orbitRotate linear infinite;
      }
      
      .orbit-1 {
          width: 400px;
          height: 400px;
          top: 100px;
          left: 100px;
          animation-duration: 30s;
      }
      
      .orbit-2 {
          width: 300px;
          height: 300px;
          top: 150px;
          left: 150px;
          animation-duration: 20s;
      }
      
      .orbit-3 {
          width: 200px;
          height: 200px;
          top: 200px;
          left: 200px;
          animation-duration: 15s;
      }
      
      @keyframes orbitRotate {
          0% {
              transform: rotate(0deg);
          }
          100% {
              transform: rotate(360deg);
          }
      }
      
      .tech-icon-orbit {
          position: absolute;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: rgba(30, 41, 59, 0.8);
          backdrop-filter: blur(5px);
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          animation: orbitPosition linear infinite;
      }
      
      .tech-icon-orbit i {
          font-size: 20px;
          color: white;
      }
      
      .tech-1 {
          animation-duration: 30s;
      }
      
      .tech-2 {
          animation-duration: 30s;
          animation-delay: -7.5s;
      }
      
      .tech-3 {
          animation-duration: 30s;
          animation-delay: -15s;
      }
      
      .tech-4 {
          animation-duration: 30s;
          animation-delay: -22.5s;
      }
      
      .tech-5 {
          animation-duration: 20s;
      }
      
      .tech-6 {
          animation-duration: 20s;
          animation-delay: -6.7s;
      }
      
      .tech-7 {
          animation-duration: 20s;
          animation-delay: -13.3s;
      }
      
      .tech-8 {
          animation-duration: 15s;
      }
      
      .tech-9 {
          animation-duration: 15s;
          animation-delay: -7.5s;
      }
      
      @keyframes orbitPosition {
          0% {
              transform: rotate(0deg) translateX(var(--radius)) rotate(0deg);
          }
          100% {
              transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg);
          }
      }
      
      .hero-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: space-between;
          position: relative;
          z-index: 5;
      }
      
      .hero-content {
          color: white;
          z-index: 2;
      }
      
      .hero-badge {
          display: inline-block;
          background: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(5px);
          border-radius: 30px;
          padding: 8px 16px;
          font-size: 14px;
          font-weight: 500;
          color: #a5b4fc;
          margin-bottom: 20px;
          animation: fadeInDown 1s ease;
      }
      
      .hero-badge i {
          margin-right: 6px;
      }
      
      .hero h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 24px;
          font-weight: 700;
          background: linear-gradient(90deg, #ffffff, #a5b4fc);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: fadeInDown 1s ease 0.2s backwards;
      }
      
      .hero-tagline {
          font-size: 1.25rem;
          color: #94a3b8;
          margin-bottom: 16px;
          animation: fadeInDown 1s ease 0.4s backwards;
      }
      
      .hero-description {
          font-size: 1.1rem;
          color: rgba(255, 255, 255, 0.7);
          line-height: 1.6;
          margin-bottom: 40px;
          animation: fadeInDown 1s ease 0.6s backwards;
      }
      
      .hero-cta {
          display: flex;
          animation: fadeInUp 1s ease 0.8s backwards;
      }
      
      .hero-stats {
          display: flex;
          gap: 40px;
          margin-top: 60px;
          animation: fadeInUp 1s ease 1s backwards;
      }
      
      .stat-item {
          text-align: center;
      }
      
      .stat-value {
          font-size: 2.5rem;
          font-weight: 700;
          color: white;
          margin-bottom: 5px;
      }
      
      .stat-label {
          font-size: 0.9rem;
          color: #94a3b8;
          text-transform: uppercase;
          letter-spacing: 1px;
      }
      
      @keyframes fadeInDown {
          from {
              opacity: 0;
              transform: translateY(-30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }
      
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }
      
      /* Responsive Styles */
      @media screen and (max-width: 1200px) {
          .floating-devices,
          .tech-orbit {
              right: -200px;
          }
      }
      
      @media screen and (max-width: 992px) {
          .hero-container {
              flex-direction: column;
              text-align: center;
              padding: 40px 0;
          }
          
          .hero-content {
              margin-bottom: 60px;
          }
          
          .floating-devices,
          .tech-orbit {
              position: relative;
              right: 0;
              top: 0;
              transform: none;
              margin-top: 40px;
              width: 100%;
              height: 400px;
          }
          
          .hero-cta {
              justify-content: center;
          }
          
          .hero-stats {
              justify-content: center;
          }
          
          .orbit-1 {
              width: 300px;
              height: 300px;
              top: 50px;
              left: calc(50% - 150px);
          }
          
          .orbit-2 {
              width: 200px;
              height: 200px;
              top: 100px;
              left: calc(50% - 100px);
          }
          
          .orbit-3 {
              width: 100px;
              height: 100px;
              top: 150px;
              left: calc(50% - 50px);
          }
          
          .device-1 {
              width: 220px;
              height: 140px;
              top: 40px;
              right: auto;
              left: calc(50% - 140px);
          }
          
          .device-2 {
              width: 100px;
              height: 180px;
              top: 120px;
              right: auto;
              left: calc(50% + 60px);
          }
          
          .device-3 {
              width: 160px;
              height: 120px;
              top: 230px;
              right: auto;
              left: calc(50% - 80px);
          }
      }
      
      @media screen and (max-width: 768px) {
          .hero h1 {
              font-size: 2.8rem;
          }
          
          .hero-stats {
              flex-direction: column;
              gap: 20px;
          }
      }
      
      @media screen and (max-width: 480px) {
          .hero h1 {
              font-size: 2.2rem;
          }
          
          .hero-tagline {
              font-size: 1.1rem;
          }
          
          .hero-description {
              font-size: 1rem;
          }
          
          .hero-cta {
              flex-direction: column;
              gap: 15px;
          }
          
          .btn-outline {
              margin-left: 0;
          }
          
          .floating-devices {
              height: 300px;
          }
          
          .device-1 {
              width: 180px;
              height: 120px;
              left: calc(50% - 100px);
          }
          
          .device-2 {
              width: 80px;
              height: 140px;
              left: calc(50% + 40px);
          }
          
          .device-3 {
              width: 140px;
              height: 100px;
              top: 180px;
          }
      }
      
      /* Why Choose Us Section */
      .why-choose {
          background-color: white;
      }
      
      .cards-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
      }
      
      .card {
          background: white;
          border-radius: 15px;
          padding: 30px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          text-align: center;
          position: relative;
          z-index: 1;
          overflow: hidden;
      }
      
      .card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }
      
      .card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 5px;
          background: linear-gradient(90deg, #4776E6, #8E54E9);
          z-index: -1;
      }
      
      .card-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, #f5f7fa, #e9ecef);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
      }
      
      .card-icon i {
          font-size: 30px;
          background: linear-gradient(90deg, #4776E6, #8E54E9);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
      }
      
      .card h3 {
          font-size: 1.5rem;
          margin-bottom: 15px;
          color: #2d3748;
      }
      
      .card p {
          color: #718096;
          line-height: 1.6;
      }
      
      /* Our Process Section */
      .process {
          background-color: #f8f9fa;
      }
      
      .timeline {
          position: relative;
          max-width: 1000px;
          margin: 0 auto;
      }
      
      .timeline::before {
          content: '';
          position: absolute;
          width: 4px;
          background: linear-gradient(180deg, #4776E6, #8E54E9);
          top: 0;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          border-radius: 4px;
      }
      
      .timeline-item {
          position: relative;
          width: 50%;
          padding: 20px 40px;
          margin-bottom: 60px;
      }
      
      .timeline-item:nth-child(even) {
          left: 50%;
      }
      
      .timeline-item:nth-child(odd) {
          left: 0;
      }
      
      .timeline-content {
          background: white;
          padding: 30px;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          position: relative;
      }
      
      .timeline-item:nth-child(odd) .timeline-content::after {
          content: '';
          position: absolute;
          right: -15px;
          top: 30px;
          width: 30px;
          height: 30px;
          background: white;
          transform: rotate(45deg);
          box-shadow: 5px -5px 5px rgba(0, 0, 0, 0.05);
      }
      
      .timeline-item:nth-child(even) .timeline-content::after {
          content: '';
          position: absolute;
          left: -15px;
          top: 30px;
          width: 30px;
          height: 30px;
          background: white;
          transform: rotate(45deg);
          box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.05);
      }
      
      .timeline-dot {
          position: absolute;
          width: 40px;
          height: 40px;
          background: white;
          border-radius: 50%;
          top: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          z-index: 1;
      }
      
      .timeline-item:nth-child(odd) .timeline-dot {
          right: -20px;
      }
      
      .timeline-item:nth-child(even) .timeline-dot {
          left: -20px;
      }
      
      .timeline-dot span {
          width: 25px;
          height: 25px;
          background: linear-gradient(90deg, #4776E6, #8E54E9);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-weight: bold;
          font-size: 14px;
      }
      
      .timeline-content h3 {
          font-size: 1.5rem;
          margin-bottom: 15px;
          color: #2d3748;
      }
      
      .timeline-content p {
          color: #718096;
          line-height: 1.6;
      }
      
      /* Tech Stack Section */
      .tech-stack {
          background-color: white;
          text-align: center;
      }
      
      .tech-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: 30px;
          margin-top: 50px;
      }
      
      .tech-item {
          perspective: 1000px;
          height: 120px;
      }
      
      .tech-inner {
          position: relative;
          width: 100%;
          height: 100%;
          transition: transform 0.6s;
          transform-style: preserve-3d;
      }
      
      .tech-item:hover .tech-inner {
          transform: rotateY(180deg);
      }
      
      .tech-front, .tech-back {
          position: absolute;
          width: 100%;
          height: 100%;
          backface-visibility: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 10px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }
      
      .tech-front {
          background-color: white;
      }
      
      .tech-back {
          background: linear-gradient(135deg, #4776E6, #8E54E9);
          color: white;
          transform: rotateY(180deg);
          padding: 15px;
          font-size: 14px;
          text-align: center;
      }
      
      .tech-icon {
          font-size: 40px;
          color: #4776E6;
      }
      
      /* Portfolio Section */
      .portfolio {
          background-color: #f8f9fa;
      }
      
      .portfolio-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }
      
      .portfolio-item {
          position: relative;
          border-radius: 10px;
          overflow: hidden;
          height: 250px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }
      
      .portfolio-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
      }
      
      .portfolio-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(45, 55, 72, 0.9);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          padding: 20px;
          opacity: 0;
          transform: translateY(100%);
          transition: opacity 0.3s ease, transform 0.3s ease;
      }
      
      .portfolio-item:hover .portfolio-overlay {
          opacity: 1;
          transform: translateY(0);
      }
      
      .portfolio-item:hover .portfolio-img {
          transform: scale(1.1);
      }
      
      .portfolio-overlay h3 {
          color: white;
          font-size: 1.5rem;
          margin-bottom: 10px;
      }
      
      .portfolio-overlay p {
          color: rgba(255, 255, 255, 0.8);
          text-align: center;
          margin-bottom: 20px;
      }
      
      .portfolio-overlay .btn {
          font-size: 14px;
          padding: 8px 20px;
      }
      
      /* CTA Section */
      .cta {
          background: linear-gradient(135deg, #1a202c, #2d3748);
          text-align: center;
          color: white;
          padding: 100px 20px;
      }
      
      .cta h2 {
          font-size: 3rem;
          margin-bottom: 30px;
          animation: fadeInUp 1s ease;
      }
      
      .cta .btn {
          animation: pulse 2s infinite;
      }
      
      /* Responsive Styles */
      @media screen and (max-width: 768px) {
          .section-title {
              font-size: 2rem;
          }
          
          .hero h1 {
              font-size: 2.5rem;
          }
          
          .timeline::before {
              left: 40px;
          }
          
          .timeline-item {
              width: 100%;
              padding-left: 80px;
              padding-right: 20px;
          }
          
          .timeline-item:nth-child(even) {
              left: 0;
          }
          
          .timeline-item:nth-child(odd) .timeline-dot,
          .timeline-item:nth-child(even) .timeline-dot {
              left: 20px;
          }
          
          .timeline-item:nth-child(odd) .timeline-content::after,
          .timeline-item:nth-child(even) .timeline-content::after {
              left: -15px;
              right: auto;
          }
      }
      
      @media screen and (max-width: 480px) {
          .hero h1 {
              font-size: 2rem;
          }
          
          .hero p {
              font-size: 1rem;
          }
          
          .section-title {
              font-size: 1.8rem;
          }
      }
/* Additional CSS for the Services Section */
.services {
    background-color: white;
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4776E6, #8E54E9);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f7fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    background: linear-gradient(90deg, #4776E6, #8E54E9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
}

/* Media Queries for Services Section */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}