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

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(135deg, #0a1929 0%, #0d2d47 100%);
     color: #fff;
     overflow-x: hidden;
 }

 /* Navigation */
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 8%;
     position: fixed;
     width: 100%;
     top: 0;
     background: rgba(10, 25, 41, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .logo {
     font-size: 24px;
     font-weight: bold;
     color: #fff;
     text-decoration: none;
 }

 .logo a {
     text-decoration: none;
     color: white;
 }

 .logo span {
     color: #ff3333;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 35px;
 }

 .nav-links a {
     color: #fff;
     text-decoration: none;
     font-size: 15px;
     transition: color 0.3s;
 }

 .nav-links a:hover {
     color: #ff3333;
 }

 .lets-talk-btn {
     padding: 10px 25px;
     background: transparent;
     color: #ff3333;
     border: 2px solid #ff3333;
     border-radius: 5px;
     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s;
 }

 .lets-talk-btn:hover {
     background: #ff3333;
     color: #fff;
 }

 /* Hero Section */
 .hero {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 150px 8% 100px;
     min-height: 100vh;
 }

 .hero-content {
     flex: 1;
     max-width: 600px;
 }

 .hero-content h3 {
     font-size: 18px;
     color: rgb(255, 255, 255);
     margin-bottom: 10px;
     font-weight:500;
 }

 .hero-content h1 {
     font-size: 48px;
     margin-bottom: 15px;
     line-height: 1.2;
     color: #8b9fb5;
 }

 .hero-content h1 .orange {
     color: #ff3333;
     margin: 0;
 }
 .hero-content h1 .sky-blue{
    color: #00BBFF;
    margin-left: -0.75rem;

 }

 .hero-content p {
     color: #8b9fb5;
     line-height: 1.8;
     margin-bottom: 30px;
 }

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

 .btn-primary {
     padding: 12px 30px;
     background: #0066ff;
     color: #fff;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 15px;
     transition: all 0.3s;
 }

 .btn-primary:hover {
     background: #0052cc;
     transform: translateY(-2px);
 }

 .btn-secondary {
     padding: 12px 30px;
     background: transparent;
     color: #fff;
     border: 2px solid #fff;
     border-radius: 5px;
     cursor: pointer;
     font-size: 15px;
     transition: all 0.3s;
 }

 .btn-secondary:hover {
     background: #fff;
     color: #0a1929;
 }

 .hero-graphic {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .red-circle {
     width: 350px;
     height: 350px;
     background: #ff3333;
     border-radius: 50%;
     position: relative;
 }

 .red-line {
     width: 200px;
     height: 4px;
     background: #ff3333;
     position: absolute;
     bottom: -2px;
     left: 0;
 }

 /* About Section */
 .about {
     padding: 100px 8%;
 }

 .section-title {
    
     font-size: 42px;
     margin-bottom: 10px;
 }

 .section-title span {
     color: #ff3333;
 }

 .section-subtitle {
     color: #8b9fb5;
     font-size: 16px;
     margin-bottom: 50px;
 }

 .about-content {
     display: flex;
     gap: 50px;
     align-items: flex-start;
 }

 .about-card {
     background: rgba(255, 255, 255, 0.05);
     padding: 40px;
     border-radius: 15px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     flex: 1;
 }

 .download-cv {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 12px 25px;
     background: transparent;
     color: #fff;
     border: 2px solid #fff;
     border-radius: 5px;
     cursor: pointer;
     font-size: 14px;
     margin-top: 20px;
     transition: all 0.3s;
 }

 .download-cv:hover {
     background: #fff;
     color: #0a1929;
 }

 .about-text {
     flex: 1.5;
 }

 .about-text p {
     color: #8b9fb5;
     line-height: 1.8;
     margin-bottom: 30px;
 }

 .tech-stack {
     display: flex;
    flex-wrap: wrap;
     gap: 1em;
 }

 .tech-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 2rem;
     border: 1px solid rgba(255, 255, 255, 0.2);
     

 }

 /* Skills Section */
 .skills {
     padding: 100px 8%;
     text-align: center;
 }

 .skills-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     margin-top: 50px;
 }

 .skill-item h3 {
     font-size: 24px;
     margin-bottom: 20px;
 }

 .skill-bar {
     background: rgba(255, 255, 255, 0.1);
     height: 8px;
     border-radius: 10px;
     position: relative;
     
 }

 .skill-progress {
     height: 100%;
     background-color: #00BBFF;
     border-radius: 10px;
     position: relative;
     transition: width 1s ease;
 }

 .skill-circle {
     width: 20px;
     height: 20px;
     background: #fff;
     border-radius: 50%;
     position: absolute;
     right: -10px;
     top: -6px;
     z-index: 2;
 }

 .skill-percentage {
     position: absolute;
     right: 0;
     top: -30px;
     font-weight: bold;
     color: #fff;
 }

 /* Qualification Section */
 .qualification {
     padding: 100px 8%;
     text-align: center;
 }

 .timeline {
     max-width: 900px;
     margin: 50px auto;
     position: relative;
 }

 .timeline::before {
     content: '';
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 2px;
     background: rgba(255, 255, 255, 0.2);
     transform: translateX(-50%);
 }

 .timeline-item{

    align-items: center;
 }
 .timeline-item.left{
     display: flex;
     justify-content: space-between;
     margin-bottom: 40px;
     position: relative;

 }
   .timeline-item.right{
     display: flex;
     justify-content: space-between;
     margin-bottom: 40px;
     position: relative;
     justify-content: flex-end;

 }





 .timeline-content {
     background: rgba(255, 255, 255, 0.05);
     padding: 25px;
     border-radius: 10px;
     width: 45%;
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-align: left;
transition: all 0.3s ease;
 }
 .timeline-content:hover {
     align-items: center;
     background: rgba(255, 255, 255, 0.12);
     border-color: rgba(255, 255, 255, 0.25);
     transform: translateY(-5px);
 }

 .timeline-content h3 {
     font-size: 20px;
     margin-bottom: 10px;
 }

 .timeline-content p {
     color: #8b9fb5;
     font-size: 14px;
 }

 .timeline-dot {
     width: 16px;
     height: 16px;
     background: #ff3333;
     border-radius: 50%;
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     border: 4px solid #0a1929;

 }
 .timeline-connector {
            position: absolute;
    left: 50%;
    width: 45px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item.left .timeline-connector {
    transform: translateX(-100%);
    right: 50%;
}
 /* Services Section */
 .services {
     padding: 100px 8%;

 }

 .services-grid {
     display: flex;
     
    width: 100%;
     gap: 30px;
     margin-top: 50px;
     overflow-x: auto;
     overflow-y: auto;
     scroll-behavior: smooth;
     scrollbar-width: none;
     animation: scroll-linear  10s linear infinite; 
     padding-top: 12px;
 }

 .services-grid .service-card {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 15px;
     padding: 30px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s;
     height: auto;
     width: 300px;
     flex-shrink: 0;
 }

 .service-card:hover {
     transform: translateY(-7px);
     border-color: #ff3333;
 }

 .service-image {
     width: 100%;
     height: 150px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     margin-bottom: 20px;
 }

 .service-card h3 {
     font-size: 18px;
     margin-bottom: 15px;
 }

 .service-card p {
     color: #8b9fb5;
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .view-demo {
     padding: 10px 25px;
     background: transparent;
     color: #fff;
     border: 2px solid #fff;
     border-radius: 5px;
     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s;
 }

 .view-demo:hover {
     background: #fff;
     color: #0a1929;
 }

 /* Contact Section */
 .contact {
     padding: 100px 8%;
     text-align: center;
 }

 .contact-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     gap: 80px;
 }

 .contact-text {
     flex: 1;
     text-align: left;
 }

 .contact-text h2 {
     font-size: 42px;
     margin-bottom: 10px;
 }

 .contact-text h2 span {
     color: #00d4ff;
 }

 .contact-form {
     flex: 1;
 }

 .form-row {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
 }

 .form-group {
     flex: 1;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 5px;
     color: #fff;
     font-size: 14px;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: #8b9fb5;
 }

 .submit-btn {
     padding: 12px 40px;
     background: #0066ff;
     color: #fff;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 15px;
     margin-top: 15px;
     transition: all 0.3s;
 }

 .submit-btn:hover {
     background: #0052cc;
     transform: translateY(-2px);
 }

 /* Footer */
 footer {
     padding: 40px 8%;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     justify-content: center;
 }

 .footer-links {
     display: flex;
     gap: 30px;
 }

 .footer-links a {
     color: #8b9fb5;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #fff;
 }

 .social-icons {
     display: flex;
     gap: 15px;
     justify-content: center;
     margin-bottom: 20px;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .social-icon:hover {
     background: #ff3333;
     transform: translateY(-3px);
 }

 .footer-bottom {
     text-align: center;
     color: #8b9fb5;
     font-size: 14px;
 }

 .footer-bottom span {
     color: #ff3333;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero {
         flex-direction: column;
         text-align: center;
     }

     .hero-graphic {
         margin-top: 50px;
     }

     .red-circle {
         width: 250px;
         height: 250px;
     }

     .about-content {
         flex-direction: column;
     }

     .skills-grid,
     .services-grid {
         flex-direction: column;
         
     }
     .service-card{
        width: 100% !important;
     }

     .contact-content {
         flex-direction: column;
     }

     .nav-links {
         display: none;
     }

     .timeline-content {
         width: 90%;
     }
     .timeline-dot {
       left: 0;
         }
    .timeline::before {
     left: 0px;
 }
 .timeline-item{
    justify-content: flex-end !important; 
 }
 .timeline-connector {
        left: 0px !important;
        width: 40px;
        transform: translateX(0) !important;
 }

 }