  :root { --primary-color: #2563eb; --primary-dark: #1e40af; --primary-light: #3b82f6; --secondary-color: #475569; --dark-color: #1e293b; --light-color: #f8fafc; --gray-color: #94a3b8; --background: #ffffff; --text-color: #1e293b; --border-color: #e2e8f0; --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1); --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1); --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-color); background-color: var(--background); overflow-x: hidden; } h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; } a { text-decoration: none; color: var(--primary-color); transition: all 0.3s ease; } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } .section-padding { padding: 100px 0; }  .cursor, .cursor-follower { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s ease; } .cursor { width: 8px; height: 8px; background-color: var(--primary-color); z-index: 10000; } .cursor-follower { width: 40px; height: 40px; border: 2px solid var(--primary-light); transition: transform 0.1s ease; } body:hover .cursor, body:hover .cursor-follower { opacity: 1; }  .btn { display: inline-block; padding: 12px 30px; border-radius: 50px; border: none; font-weight: 500; font-size: 16px; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .btn::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.2); border-radius: 50%; transform: scale(0); transform-origin: center; transition: transform 0.5s ease-out; } .btn:hover::after { transform: scale(2); } .btn-primary { background-color: var(--primary-color); color: white; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); } .btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); } .btn-secondary { background-color: transparent; color: var(--dark-color); border: 2px solid var(--primary-color); } .btn-secondary:hover { background-color: var(--primary-color); color: white; transform: translateY(-2px); } .btn-outline { background-color: transparent; color: var(--primary-color); border: 1px solid var(--primary-color); } .btn-outline:hover { background-color: var(--primary-color); color: white; } .btn-sm { padding: 8px 20px; font-size: 14px; }  header { position: fixed; width: 100%; background-color: rgba(255, 255, 255, 0.95); padding: 20px 0; z-index: 100; box-shadow: var(--shadow-sm); transition: all 0.3s ease; } header.scrolled { padding: 15px 0; box-shadow: var(--shadow-md); background-color: rgba(255, 255, 255, 0.98); } header .container { display: flex; align-items: center; justify-content: space-between; } .logo a { font-size: 28px; font-weight: 700; color: var(--primary-color); font-family: 'Montserrat', sans-serif; position: relative; } .logo a::after { content: ''; position: absolute; width: 6px; height: 6px; background-color: var(--primary-color); border-radius: 50%; bottom: 5px; right: -8px; } .navbar { display: flex; align-items: center; } .nav-menu { display: flex; align-items: center; } .nav-item { margin-left: 2.5rem; } .nav-link { color: var(--dark-color); position: relative; font-weight: 500; } .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; background-color: var(--primary-color); bottom: -5px; left: 0; transition: width 0.3s ease; } .nav-link:hover, .nav-link.active { color: var(--primary-color); } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .hamburger { display: none; cursor: pointer; } .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease; background-color: var(--dark-color); }  .hero { padding: 180px 0 100px; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); position: relative; overflow: hidden; } .hero-content { display: flex; align-items: center; justify-content: space-between; } .hero-text { flex: 1; } .hero-text h1 { font-size: 4rem; margin-bottom: 1.5rem; color: var(--dark-color); line-height: 1.1; } .typewriter { display: flex; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 1.75rem; color: var(--primary-color); font-weight: 600; margin-bottom: 1.5rem; height: 42px; } .cursor-blink { animation: blink 1s infinite; color: var(--primary-color); } @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } .hero-text p { font-size: 1.2rem; color: var(--secondary-color); margin-bottom: 2rem; } .hero-buttons { display: flex; gap: 1rem; } .hero-image { flex: 1; display: flex; justify-content: flex-end; align-items: center; } .hero-shape { width: 350px; height: 350px; background: var(--gradient); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; animation: morph 8s ease-in-out infinite; border: 3px solid var(--primary-light); box-shadow: var(--shadow-lg); } @keyframes morph { 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } 25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; } 50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; } 75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; } 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } } .scroll-indicator { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; opacity: 0.7; } .mouse { width: 30px; height: 50px; border: 2px solid var(--dark-color); border-radius: 15px; position: relative; } .wheel { width: 4px; height: 10px; background-color: var(--dark-color); border-radius: 2px; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); animation: wheel 1.5s infinite; } @keyframes wheel { 0% { transform: translateX(-50%) translateY(0); opacity: 1; } 100% { transform: translateX(-50%) translateY(20px); opacity: 0; } } .scroll-arrow { display: block; width: 10px; height: 10px; border-right: 2px solid var(--dark-color); border-bottom: 2px solid var(--dark-color); transform: rotate(45deg); margin: 10px 0; animation: arrow 1.5s infinite; } @keyframes arrow { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } .shape-divider { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); } .shape-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; } .shape-divider .shape-fill { fill: #FFFFFF; }  .section-header { text-align: center; margin-bottom: 60px; } .section-title { font-size: 2.5rem; margin-bottom: 1rem; text-transform: capitalize; position: relative; display: inline-block; } .section-line { width: 80px; height: 3px; background: var(--primary-color); margin: 0 auto; }  .about { position: relative; background-color: var(--background); } .about-content { display: flex; align-items: center; gap: 50px; } .about-image { flex: 1; position: relative; height: 400px; background: url('Images/About img.png') no-repeat center/cover; border-radius: 15px; box-shadow: var(--shadow-lg); } .experience-badge { position: absolute; right: -30px; bottom: 40px; background: var(--primary-color); color: white; padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; box-shadow: var(--shadow-md); } .experience-badge .years { display: block; font-size: 2rem; line-height: 1; } .about-text { flex: 1; } .about-text p { color: var(--secondary-color); margin-bottom: 1.5rem; } .about-details { margin: 30px 0; } .detail { margin-bottom: 15px; display: flex; } .label { min-width: 120px; font-weight: 600; color: var(--dark-color); } .value { color: var(--secondary-color); } .available { color: green; } .about-buttons { display: flex; gap: 1rem; }  .skills { background-color: #f9fafb; } .skills-text { max-width: 700px; margin: 0 auto 40px; text-align: center; } .skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .skill-card { background-color: white; padding: 30px; border-radius: 10px; box-shadow: var(--shadow-md); transition: transform 0.3s ease, box-shadow 0.3s ease; } .skill-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .skill-icon { width: 50px; height: 50px; margin-bottom: 20px; } .skill-icon svg { width: 100%; height: 100%; fill: var(--primary-color); } .skill-card h3 { font-size: 1.25rem; margin-bottom: 15px; } .skill-level { display: flex; align-items: center; margin-top: 10px; } .skill-bar { flex: 1; height: 6px; background-color: #e2e8f0; border-radius: 3px; overflow: hidden; margin-right: 10px; } .skill-progress { height: 100%; background-color: var(--primary-color); border-radius: 3px; width: 0; transition: width 1.5s ease-out; } .skill-percent { font-size: 14px; font-weight: 600; color: var(--primary-color); }  .filter-buttons { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 10px; } .filter-btn { background-color: transparent; border: none; padding: 8px 20px; border-radius: 50px; cursor: pointer; font-size: 16px; font-weight: 500; transition: all 0.3s ease; color: var(--secondary-color); } .filter-btn:hover, .filter-btn.active { background-color: var(--primary-color); color: white; } .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .project-item { border-radius: 10px; overflow: hidden; position: relative; box-shadow: var(--shadow-md); transition: all 0.3s ease; height: 250px; } .project-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .project-img { width: 100%; height: 100%; position: relative; } .project-img img { width: 100%; height: 100%; object-fit: cover; } .project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; } .project-item:hover .project-overlay { opacity: 1; } .project-info { text-align: center; padding: 20px; color: white; } .project-info h3 { font-size: 1.5rem; margin-bottom: 10px; } .project-info p { margin-bottom: 20px; font-size: 0.9rem; }  .testimonials { background-color: #f9fafb; position: relative; } .testimonials-slider { position: relative; padding: 20px 0; } .testimonial-slide { display: none; animation: fadeIn 0.8s ease forwards; } .testimonial-slide.active { display: block; } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } .testimonial-card { background-color: white; border-radius: 10px; box-shadow: var(--shadow-md); padding: 40px; text-align: center; max-width: 800px; margin: 0 auto; } .quote-icon { width: 40px; height: 40px; margin: 0 auto 20px; } .quote-icon svg { width: 100%; height: 100%; fill: var(--primary-light); opacity: 0.6; } .testimonial-content p { font-size: 1.1rem; line-height: 1.8; color: var(--dark-color); margin-bottom: 30px; } .client-info h4 { font-size: 1.2rem; margin-bottom: 5px; } .client-info p { color: var(--primary-color); font-size: 0.9rem; margin-bottom: 0; } .testimonial-controls { display: flex; align-items: center; justify-content: center; margin-top: 30px; } .testimonial-control { background-color: transparent; border: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; } .testimonial-control svg { width: 20px; height: 20px; fill: var(--dark-color); transition: all 0.3s ease; } .testimonial-control:hover svg { fill: var(--primary-color); } .testimonial-dots { display: flex; align-items: center; margin: 0 20px; } .dot { width: 10px; height: 10px; border-radius: 50%; background-color: var(--gray-color); margin: 0 5px; cursor: pointer; transition: all 0.3s ease; } .dot.active { background-color: var(--primary-color); transform: scale(1.4); } .shape-divider-bottom { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; } .shape-divider-bottom svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; transform: rotateY(180deg); } .shape-divider-bottom .shape-fill { fill: #FFFFFF; }  .contact-content { display: flex; gap: 50px; } .contact-info, .contact-form { flex: 1; } .contact-info h3 { font-size: 2rem; margin-bottom: 20px; } .contact-info p { margin-bottom: 30px; color: var(--secondary-color); } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { width: 50px; height: 50px; background-color: rgba(37, 99, 235, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; } .contact-icon svg { width: 24px; height: 24px; fill: var(--primary-color); } .contact-text h4 { font-size: 1.1rem; margin-bottom: 5px; } .contact-text p { margin-bottom: 0; color: var(--secondary-color); } .social-links { display: flex; gap: 15px; } .social-link { width: 40px; height: 40px; background-color: var(--light-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .social-link svg { width: 18px; height: 18px; fill: var(--secondary-color); transition: fill 0.3s ease; } .social-link:hover { background-color: var(--primary-color); transform: translateY(-3px); } .social-link:hover svg { fill: white; } .form-group { margin-bottom: 20px; } .form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid var(--border-color); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 16px; transition: all 0.3s ease; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); } .form-status { margin-top: 20px; padding: 10px; border-radius: 5px; display: none; } .form-status.success { background-color: rgba(0, 200, 0, 0.1); color: green; display: block; } .form-status.error { background-color: rgba(255, 0, 0, 0.1); color: red; display: block; }  footer { background-color: var(--dark-color); color: white; padding: 30px 0; } .footer-content { display: flex; align-items: center; justify-content: space-between; } .copyright p { margin: 0; font-size: 14px; } .back-to-top { width: 40px; height: 40px; background-color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .back-to-top:hover { background-color: var(--primary-dark); transform: translateY(-3px); } .back-to-top svg { width: 18px; height: 18px; fill: white; }  .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; } .animate-on-scroll.show { opacity: 1; transform: translateY(0); }  @media (max-width: 1024px) { .hero-content { flex-direction: column; text-align: center; } .hero-text { margin-bottom: 50px; } .hero-buttons { justify-content: center; } .hero-image { justify-content: center; } .about-content { flex-direction: column; } .contact-content { flex-direction: column; } } @media (max-width: 768px) { .section-padding { padding: 70px 0; } .section-title { font-size: 2rem; } .hamburger { display: block; } .hamburger.active .bar:nth-child(2) { opacity: 0; } .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .nav-menu { position: fixed; top: 80px; left: -100%; width: 100%; padding: 1rem 0; background-color: white; flex-direction: column; box-shadow: var(--shadow-md); transition: left 0.3s ease; } .nav-menu.active { left: 0; } .nav-item { margin: 1rem 0; } .hero { padding: 150px 0 80px; } .hero-text h1 { font-size: 2.5rem; } .typewriter { font-size: 1.25rem; justify-content: center; } .skills-grid { grid-template-columns: 1fr; } .projects-grid { grid-template-columns: 1fr; } .testimonial-card { padding: 30px 20px; } } @media (max-width: 1030px) { .experience-badge { display: none; } } @media (max-width: 576px) { .hero-text h1 { font-size: 2rem; } .hero-shape { width: 250px; height: 250px; } .about-image { height: 300px; } .experience-badge { display: none; } .testimonial-content p { font-size: 0.95rem; } .footer-content { flex-direction: column; gap: 20px; } }  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .service-card { background: #fff; border-radius: 15px; padding: 30px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); } .service-icon { width: 70px; height: 70px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, #6e59a5, #9b87f5); color: white; } .service-icon svg { width: 35px; height: 35px; fill: currentColor; } .service-card h3 { font-size: 20px; margin-bottom: 15px; color: #1a1f2c; } .service-card p { color: #8e9196; font-size: 15px; line-height: 1.6; }  .timeline { position: relative; max-width: 800px; margin: 50px auto 0; padding: 20px 0; } .timeline::before { content: ''; position: absolute; width: 2px; background: #6e59a5; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); } .timeline-item { position: relative; width: 50%; padding: 20px 40px; box-sizing: border-box; } .timeline-item:nth-child(odd) { left: 0; text-align: right; } .timeline-item:nth-child(even) { left: 50%; text-align: left; } .timeline-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: #9b87f5; top: 30px; right: -8px; border: 4px solid white; z-index: 2; } .timeline-item:nth-child(even) .timeline-dot { left: -8px; } .timeline-date { display: inline-block; padding: 5px 15px; background: #9b87f5; color: white; border-radius: 20px; font-size: 14px; margin-bottom: 10px; } .timeline-content { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); } .timeline-content h3 { margin: 0 0 5px; color: #1a1f2c; font-size: 18px; } .timeline-content h4 { margin: 0 0 15px; color: #9b87f5; font-size: 14px; font-weight: 500; } .timeline-content p { margin: 0; color: #8e9196; font-size: 14px; line-height: 1.6; }   @media (max-width: 768px) { .timeline::before { left: 40px; } .timeline-item { width: 100%; padding-left: 80px; padding-right: 20px; } .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; text-align: left; } .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 32px; } .services-grid { grid-template-columns: 1fr; } }  .btn { transition: all 0.3s ease; position: relative; overflow: hidden; } .btn:after { content: ''; position: absolute; width: 0; height: 100%; top: 0; left: 0; background: rgba(255, 255, 255, 0.2); transition: width 0.3s ease; z-index: -1; } .btn:hover:after { width: 100%; }  .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; } .animate-on-scroll.show { opacity: 1; transform: translateY(0); }  .skill-card:nth-child(1), .service-card:nth-child(1), .project-item:nth-child(1) { transition-delay: 0.1s; } .skill-card:nth-child(2), .service-card:nth-child(2), .project-item:nth-child(2) { transition-delay: 0.2s; } .skill-card:nth-child(3), .service-card:nth-child(3), .project-item:nth-child(3) { transition-delay: 0.3s; } .skill-card:nth-child(4), .service-card:nth-child(4), .project-item:nth-child(4) { transition-delay: 0.4s; } .skill-card:nth-child(5), .service-card:nth-child(5), .project-item:nth-child(5) { transition-delay: 0.5s; } .skill-card:nth-child(6), .service-card:nth-child(6), .project-item:nth-child(6) { transition-delay: 0.6s; }  .project-item { transition: opacity 0.4s ease, transform 0.4s ease, display 0s 0.4s; }