:root { --accent-color: #4CAF50; --light-accent-color: #81C784; --global-bg-dark: #03000a; --text-color-global-dark: #e0e0e0; --heading-color-global-dark: #ffffff; --link-color-global-dark: #bb86fc; --link-hover-color-global-dark: #d7baff; --icon-color-global-dark: #bb86fc; --section-title-underline-color: var(--link-color-global-dark); --heading-font: 'Merriweather', serif; --body-font: 'Poppins', sans-serif; --border-radius: 8px; --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1); --box-shadow-dark-elements: 0 5px 20px rgba(0, 0, 0, 0.3); --transition-speed: 0.3s; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--body-font); color: var(--text-color-global-dark); background-color: var(--global-bg-dark); line-height: 1.7; overflow-x: hidden; position: relative; } body.modal-open { overflow: hidden; } .global-animated-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; background-color: var(--global-bg-dark); } .light-band { position: absolute; opacity: 0; background-image: linear-gradient(to right, rgba(108, 0, 224, 0), rgba(187, 134, 252, 0.15), rgba(220, 190, 255, 0.25), rgba(187, 134, 252, 0.15), rgba(108, 0, 224, 0)); filter: blur(30px); animation: driftAndGlow 20s infinite ease-in-out; will-change: transform, opacity; } .light-band.band1 { width: 160%; height: 25%; top: 10%; left: -30%; animation-duration: 28s; animation-delay: 0s; --tx: 40%; --ty: 3%; --scale: 1.05; } .light-band.band2 { width: 130%; height: 35%; top: 45%; left: -15%; transform: rotate(-3deg); animation-duration: 35s; animation-delay: -10s; --tx: -25%; --ty: -8%; --scale: 1.1; } .light-band.band3 { width: 190%; height: 20%; top: 70%; left: -45%; transform: rotate(2deg); animation-duration: 25s; animation-delay: -18s; --tx: 35%; --ty: 5%; --scale: 1.08; } @keyframes driftAndGlow { 0%, 100% { transform: translateX(0) translateY(0) scale(1); opacity: 0.25; } 50% { transform: translateX(var(--tx, 0)) translateY(var(--ty, 0)) scale(var(--scale, 1)); opacity: 0.55; } } .container { width: 90%; max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; } h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: var(--heading-color-global-dark); font-weight: 700; } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; position: relative; padding-bottom: 0.5rem; } .section-title span { position: relative; padding-bottom: 0.5rem; } .section-title span::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background-color: var(--section-title-underline-color); border-radius: 2px; } .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--text-color-global-dark); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; } p { margin-bottom: 1rem; color: var(--text-color-global-dark); } a { color: var(--link-color-global-dark); text-decoration: none; transition: color var(--transition-speed) ease; } a:hover { color: var(--link-hover-color-global-dark); } .btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: var(--border-radius); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all var(--transition-speed) ease; border: none; cursor: pointer; } .btn-primary { background-color: var(--accent-color); color: #fff; } .btn-primary:hover { background-color: #388E3C; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); } .btn-secondary { background-color: transparent; color: #fff; border: 2px solid #fff; } .btn-secondary:hover { background-color: #fff; color: #111; } .btn-tertiary { background-color: transparent; color: var(--link-color-global-dark); border: 1px solid var(--link-color-global-dark); padding: 0.6rem 1.2rem; font-size: 0.9rem; } .btn-tertiary:hover { background-color: var(--link-color-global-dark); color: #fff; } .btn-block { display: block; width: 100%; } #main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1rem 0; background-color: rgba(10, 2, 20, 0.6); backdrop-filter: blur(12px); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); transition: padding var(--transition-speed) ease, background-color var(--transition-speed) ease; } #main-header.scrolled { padding: 0.75rem 0; background-color: rgba(10, 2, 20, 0.75); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); } #main-header nav { display: flex; justify-content: space-between; align-items: center; } .logo { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 700; color: var(--heading-color-global-dark) !important; white-space: nowrap; flex-shrink: 0; } #main-header .nav-links { list-style: none; display: flex; } #main-header .nav-links li { margin-left: 2rem; } #main-header .nav-link { font-weight: 500; color: var(--text-color-global-dark) !important; padding-bottom: 0.3rem; position: relative; } #main-header .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--link-color-global-dark); transition: width var(--transition-speed) ease; } #main-header .nav-link:hover::after, #main-header .nav-link.active::after { width: 100%; } #main-header .nav-link:hover { color: var(--link-hover-color-global-dark) !important; } #main-header .nav-link.active { color: var(--link-color-global-dark) !important; } .burger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--heading-color-global-dark); } .hero-section { height: 100vh; min-height: 600px; position: relative; display: flex; align-items: center; text-align: center; background: radial-gradient(circle at center, #2a1b3d 0%, #03000a 100%); color: var(--heading-color-global-dark); } .hero-content-container { position: relative; z-index: 2; } .hero-headline { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; color: var(--heading-color-global-dark); } .hero-headline .line { display: block; } .hero-headline .line.subtitle { font-size: 2rem; font-family: var(--body-font); font-weight: 400; color: var(--link-color-global-dark); margin-top: 0.5rem; } .hero-subheadline { font-size: 1.2rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; color: var(--text-color-global-dark); } .hero-cta .btn { margin: 0.5rem; } .content-section { padding: 5rem 0; background-color: transparent; position: relative; z-index: 1; } .blog-listing-section, .blog-post-section { padding-top: calc(5rem + 70px); } .about-content-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; } .about-image-container { text-align: center; } .about-image { max-width: 300px; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--border-radius); border: 3px solid rgba(255, 255, 255, 0.08); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); } .skills-section .section-title span::after { background-color: var(--accent-color); } .skills-categories-wrapper { display: grid; grid-template-columns: 1fr; gap: 3rem; } @media (min-width: 992px) { .skills-categories-wrapper { grid-template-columns: 1fr 1fr; } } .skill-category { background: rgba(30, 20, 50, 0.2); border: 1px solid rgba(187, 134, 252, 0.1); padding: 2rem 1.5rem; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); } .skill-category-title { color: var(--heading-color-global-dark); border-bottom: 2px solid var(--accent-color); padding-bottom: 0.5rem; margin-bottom: 2rem; text-align: left; font-size: 1.4rem; } .skill-item-progress { background-color: rgba(45, 30, 70, 0.3); padding: 1rem; margin-bottom: 1.25rem; border-radius: calc(var(--border-radius) / 1.5); border: 1px solid rgba(187, 134, 252, 0.15); transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; } .skill-item-progress:last-child { margin-bottom: 0; } .skill-item-progress:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); background-color: rgba(55, 40, 80, 0.4); } .skill-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; } .skill-name { color: var(--text-color-global-dark); font-weight: 500; font-size: 0.95rem; } .skill-icon-inline { color: var(--accent-color); margin-right: 0.6rem; font-size: 1rem; } .skill-percentage { color: var(--heading-color-global-dark); font-weight: 600; font-size: 0.9rem; } .progress-bar-container { background-color: rgba(0, 0, 0, 0.2); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2); border-radius: 10px; height: 10px; overflow: hidden; } .progress-bar { background: linear-gradient(to right, var(--light-accent-color), var(--accent-color)); height: 100%; border-radius: 10px; width: 0%; transition: width 1.2s cubic-bezier(0.25, 0.1, 0.25, 1); } .markiety-header-content { display: flex; flex-wrap: wrap; align-items: center; gap: 2.5rem; margin-bottom: 3.5rem; } .markiety-logo-container { flex: 1 1 220px; max-width: 280px; text-align: center; } .markiety-logo-img { max-width: 100%; height: auto; border-radius: var(--border-radius); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25); background-color: #ffffff; padding: 10px; } .markiety-intro { flex: 2 1 450px; text-align: left; } .markiety-intro p { font-size: 1.05rem; line-height: 1.8; color: var(--text-color-global-dark); } .subsection-title { text-align: center; font-size: 1.8rem; font-family: var(--body-font); font-weight: 600; color: var(--heading-color-global-dark); margin-top: 3rem; margin-bottom: 2rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .service-item { background: rgba(30, 20, 50, 0.4); backdrop-filter: blur(8px); border: 1px solid rgba(187, 134, 252, 0.25); padding: 2rem 1.5rem; border-radius: var(--border-radius); text-align: center; box-shadow: var(--box-shadow-dark-elements); transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, background-color var(--transition-speed) ease; display: flex; flex-direction: column; align-items: center; } .service-item:hover { transform: translateY(-8px); background: rgba(45, 30, 70, 0.5); border-color: rgba(187, 134, 252, 0.4); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); } .service-icon { width: 70px; height: 70px; border-radius: 50%; background-color: var(--link-color-global-dark); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background-color var(--transition-speed) ease; box-shadow: 0 4px 10px rgba(187, 134, 252, 0.25); } .service-icon i { font-size: 2.2rem; } .service-item:hover .service-icon { background-color: var(--accent-color); box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3); } .service-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--heading-color-global-dark); } .service-item p { font-size: 0.95rem; color: var(--text-color-global-dark); } .markiety-social-title { margin-top: 4rem; } .markiety-social-links { text-align: center; margin-bottom: 1rem; } .markiety-social-links .social-icon { font-size: 2rem; color: var(--text-color-global-dark); margin: 0 1rem; display: inline-block; transition: color var(--transition-speed) ease, transform var(--transition-speed) ease; } .markiety-social-links .social-icon:hover { color: var(--link-hover-color-global-dark); transform: scale(1.15); } .certificates-section { padding-bottom: 2rem; } .certificates-carousel-wrapper { margin: 2rem 0; padding: 0 10px; } .certificates-carousel { overflow: hidden !important; position: relative; width: 100%; margin: 0 auto; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); } .carousel-track { display: flex !important; will-change: transform; animation-name: marquee-scroll; animation-timing-function: linear; animation-iteration-count: infinite; } .certificates-carousel:hover .carousel-track { animation-play-state: paused; } @keyframes marquee-scroll { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } } .certificate-item.carousel-slide { min-width: 280px; max-width: 320px; flex: 0 0 auto; margin-right: 25px; padding: 5px; border-radius: var(--border-radius); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; overflow: hidden; transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; height: 100%; position: relative; background-size: 300% 300% !important; animation: certificateGradient 12s ease infinite; color: #e0e0e0; } .certificate-item.carousel-slide:nth-child(4n+1) { background: linear-gradient(-45deg, #1f2833, #2c3e50, #34495e, #283747); } .certificate-item.carousel-slide:nth-child(4n+2) { background: linear-gradient(-45deg, #373b44, #4286f4, #373b44, #2c3e50); } .certificate-item.carousel-slide:nth-child(4n+3) { background: linear-gradient(-45deg, #480048, #C04848, #304352, #2C5364); } .certificate-item.carousel-slide:nth-child(4n+4) { background: linear-gradient(-45deg, #16222A, #3A6073, #1e3c72, #2a5298); } .certificate-item.carousel-slide:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5); z-index: 5; animation-play-state: paused; } .certificate-image { width: 100%; height: 180px; object-fit: cover; border-bottom: 2px solid rgba(255, 255, 255, 0.08); } .certificate-image.clickable-cert-image { cursor: pointer; transition: opacity 0.2s ease-in-out; } .certificate-image.clickable-cert-image:hover { opacity: 0.85; } .certificate-info { padding: 1.5rem; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .certificate-info h3 { font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.3; color: #fff; } .certificate-info p { font-size: 0.9rem; margin-bottom: 1.2rem; color: #ccc; } .certificate-info .btn-tertiary { margin-top: auto; background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: #fff; } .certificate-info .btn-tertiary:hover { background-color: rgba(255, 255, 255, 0.9); color: var(--global-bg-dark); border-color: transparent; } .view-all-certs-container { display: block !important; visibility: visible !important; opacity: 1 !important; position: relative !important; z-index: 10 !important; text-align: center; margin-top: 2.5rem; } #view-all-certs-btn { display: inline-block !important; visibility: visible !important; opacity: 1 !important; position: relative !important; z-index: 11 !important; padding: 0.9rem 2rem; font-size: 1rem; background-color: var(--accent-color) !important; color: #fff !important; cursor: pointer; border-radius: var(--border-radius); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all var(--transition-speed) ease; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: flex-start; } .contact-form-container h3, .contact-details-container h3 { color: var(--heading-color-global-dark); margin-bottom: 1.5rem; } .form-group { margin-bottom: 1.5rem; } .form-group input, .form-group textarea { width: 100%; padding: 0.9rem; border: 1px solid rgba(187, 134, 252, 0.25); border-radius: var(--border-radius); font-family: var(--body-font); font-size: 1rem; background-color: rgba(40, 30, 60, 0.35); color: var(--text-color-global-dark); } .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(224, 224, 224, 0.5); } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--link-color-global-dark); background-color: rgba(50, 40, 70, 0.4); box-shadow: 0 0 0 2px rgba(187, 134, 252, 0.25); } .contact-detail-item { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1rem; } .contact-detail-item i { font-size: 1.2rem; color: var(--icon-color-global-dark); margin-right: 0.8rem; width: 20px; text-align: center; } .social-title { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.4rem; color: var(--heading-color-global-dark); } .social-links-contact .social-icon { font-size: 1.5rem; color: var(--text-color-global-dark); margin-right: 1rem; } .social-links-contact .social-icon:hover { color: var(--link-hover-color-global-dark); } #main-footer { background-color: transparent; color: var(--text-color-global-dark); border-top: 1px solid rgba(187, 134, 252, 0.15); position: relative; z-index: 1; padding: 3rem 0 2rem 0; text-align: center; } #main-footer .footer-nav-links { list-style: none; padding: 0; margin: 0 0 1.5rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; } #main-footer .footer-nav-links li a { font-weight: 500; color: var(--text-color-global-dark); padding-bottom: 0.3rem; position: relative; text-decoration: none; transition: color var(--transition-speed) ease; } #main-footer .footer-nav-links li a:hover { color: var(--link-hover-color-global-dark); } #main-footer .footer-nav-links li a.active::after { display: none; } #main-footer .copyright-text { color: var(--text-color-global-dark); margin-bottom: 0.25rem; font-size: 0.95rem; } #main-footer .crafted-with-text { color: var(--text-color-global-dark); margin-bottom: 0; font-size: 0.9rem; } #main-footer .fa-heart { color: var(--link-color-global-dark) !important; } .animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; } .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); } .animate-on-scroll.delay-1 { transition-delay: 0.2s; } .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(3, 0, 10, 0.9); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; z-index: 2000; overflow-y: auto; padding: 20px; } .modal.active { display: flex; } .modal-content { background-color: #100A1F; color: var(--text-color-global-dark); border: 1px solid rgba(187, 134, 252, 0.2); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7); padding: 25px 30px; border-radius: var(--border-radius); width: 90%; max-width: 1000px; max-height: 90vh; overflow-y: auto; position: relative; } .modal-content h2 { color: var(--heading-color-global-dark); text-align: center; margin-bottom: 1.5rem; font-size: 1.8rem; } .modal-close-btn { position: absolute; top: 15px; right: 20px; font-size: 2.2rem; font-weight: bold; color: #aaa; cursor: pointer; line-height: 1; transition: color 0.2s ease; } .modal-close-btn:hover { color: #fff; } .certificates-grid-modal { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; } .certificates-grid-modal .certificate-item { background: rgba(30, 20, 50, 0.5); border: 1px solid rgba(187, 134, 252, 0.2); border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); display: flex; flex-direction: column; overflow: hidden; color: var(--text-color-global-dark); animation: none; } .certificates-grid-modal .certificate-item .certificate-info h3 { color: var(--heading-color-global-dark); } .certificates-grid-modal .certificate-item .certificate-info p { color: var(--text-color-global-dark); } .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(3, 0, 10, 0.97); display: none; align-items: center; justify-content: center; z-index: 3000; padding: 20px; } .lightbox.active { display: flex; } .lightbox-content { max-width: 90%; max-height: 85%; object-fit: contain; display: block; margin: auto; border: 3px solid rgba(255, 255, 255, 0.1); border-radius: var(--border-radius); box-shadow: 0 0 30px rgba(187, 134, 252, 0.2); } #lightbox-caption { text-align: center; color: #ccc; padding: 10px 0; font-size: 0.9rem; max-width: 80%; margin: 10px auto 0 auto; } .lightbox-close-btn { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2.5rem; font-weight: bold; cursor: pointer; transition: color 0.2s ease; } .lightbox-close-btn:hover { color: var(--link-color-global-dark); } .blog-listing-section, .blog-post-section { padding-bottom: 4rem; } .main-blog-title span::after { background-color: var(--accent-color); } .blog-posts-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; } @media (min-width: 768px) { .blog-posts-grid { grid-template-columns: 1fr 1fr; } } .blog-post-item { background: rgba(30, 20, 50, 0.3); backdrop-filter: blur(5px); border: 1px solid rgba(187, 134, 252, 0.15); padding: 0; border-radius: var(--border-radius); box-shadow: var(--box-shadow-dark-elements); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; overflow: hidden; } .blog-thumbnail { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid rgba(187, 134, 252, 0.1); } .blog-post-content { padding: 1.5rem 2rem 2rem 2rem; display: flex; flex-direction: column; flex-grow: 1; } .blog-post-item:hover { transform: translateY(-6px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35); } .blog-post-content h2 { font-size: 1.5rem; margin-bottom: 0.75rem; font-family: var(--heading-font); } .blog-post-content h2 a { color: var(--heading-color-global-dark); transition: color 0.3s ease; } .blog-post-content h2 a:hover { color: var(--link-hover-color-global-dark); } .blog-post-excerpt { font-size: 0.95rem; color: var(--text-color-global-dark); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; } .blog-post-item .btn-tertiary { align-self: flex-start; margin-top: auto; } .related-posts { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(187, 134, 252, 0.15); } .related-posts h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--heading-color-global-dark); } .related-posts-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; } @media (min-width: 600px) { .related-posts-grid { grid-template-columns: 1fr 1fr; } } .related-post-card { display: flex; gap: 1rem; align-items: center; text-decoration: none; background: rgba(187, 134, 252, 0.05); padding: 1rem; border-radius: var(--border-radius); transition: background 0.3s ease, transform 0.3s ease; } .related-post-card:hover { background: rgba(187, 134, 252, 0.1); transform: translateX(5px); } .related-post-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin: 0 !important; } .related-post-info h4 { font-size: 1rem; margin: 0 0 0.25rem 0 !important; color: var(--heading-color-global-dark); line-height: 1.4; } .related-post-info span { font-size: 0.8rem; color: #aaa; } .blog-article-container { max-width: 800px; margin-left: auto; margin-right: auto; } .blog-article-header h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; color: var(--heading-color-global-dark); text-align: left; } .article-meta { font-size: 0.9rem; color: #aaa; margin-bottom: 2.5rem; text-align: left; } .blog-article-content { font-size: 1.1rem; line-height: 1.8; color: var(--text-color-global-dark); } .blog-article-content p { margin-bottom: 1.5rem; } .blog-article-content h2, .blog-article-content h3, .blog-article-content h4 { font-family: var(--heading-font); color: var(--heading-color-global-dark); margin-top: 2.5rem; margin-bottom: 1rem; line-height: 1.3; } .blog-article-content h2 { font-size: 1.8rem; } .blog-article-content h3 { font-size: 1.5rem; } .blog-article-content h4 { font-size: 1.3rem; } .blog-article-content ul, .blog-article-content ol { margin-left: 1.5rem; margin-bottom: 1.5rem; padding-left: 1rem; } .blog-article-content li { margin-bottom: 0.5rem; } .blog-article-content blockquote { border-left: 4px solid var(--accent-color); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: #ccc; } .blog-article-content img { max-width: 100%; height: auto; border-radius: var(--border-radius); margin: 1.5rem 0; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .blog-featured-image { width: 100%; max-height: 450px; object-fit: cover; border-radius: var(--border-radius); margin-bottom: 2.5rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); } .blog-article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(187, 134, 252, 0.15); text-align: center; } @media (max-width: 992px) { .about-content-grid { grid-template-columns: 1fr; } .about-image-container { margin-bottom: 2rem; } .about-image { max-width: 280px; aspect-ratio: 1 / 1; object-fit: cover; } .skills-categories-wrapper { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .contact-form-container { margin-bottom: 2rem; } .markiety-header-content { flex-direction: column; text-align: center; } .markiety-logo-container { margin-bottom: 1.5rem; max-width: 220px; } .markiety-intro { text-align: center; } } @media (max-width: 1100px) { #main-header .nav-links li { margin-left: 1.25rem; } .logo { font-size: 1.35rem; } } @media (max-width: 768px) { html { font-size: 15px; } .hero-headline { font-size: 2.8rem; } .hero-headline .line.subtitle { font-size: 1.6rem; } .section-title { font-size: 2.2rem; } .blog-listing-section, .blog-post-section { padding-top: calc(4rem + 55px); } .nav-links { position: fixed; right: -100%; top: 0; height: 100vh; width: 75%; max-width: 320px; background-color: rgba(15, 5, 30, 0.98); backdrop-filter: blur(10px); flex-direction: column; align-items: center; justify-content: center; transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25); z-index: 999; } .nav-links.nav-active { right: 0; } .nav-links li { margin: 1.5rem 0; opacity: 0; } .burger { display: block; z-index: 1001; } .burger.toggle-burger i::before { content: "\f00d"; } @keyframes navLinkFade { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } } .carousel-slide { min-width: 260px; max-width: 290px; margin-right: 20px; } .certificates-carousel { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%); } .modal-content { width: 95%; padding: 20px; max-height: 85vh; } .certificates-grid-modal { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; } .footer-nav-links { gap: 0.5rem 1rem; } .footer-nav-links li a { font-size: 0.9rem; } .light-band { filter: blur(20px); } .light-band.band1 { height: 20%; animation-duration: 30s; } .light-band.band2 { height: 30%; animation-duration: 38s; } .light-band.band3 { height: 15%; animation-duration: 28s; } .blog-posts-grid { grid-template-columns: 1fr; } .blog-article-header h1 { font-size: 2.2rem; } } @media (max-width: 480px) { .hero-headline { font-size: 2.2rem; } .hero-headline .line.subtitle { font-size: 1.3rem; } .blog-listing-section, .blog-post-section { padding-top: calc(3rem + 50px); } .carousel-slide { min-width: 240px; max-width: 260px; margin-right: 15px; } .certificate-info { padding: 1.2rem; } .certificate-info h3 { font-size: 1.05rem; } .btn-tertiary { padding: 0.5rem 1rem; font-size: 0.8rem; } .services-grid { grid-template-columns: 1fr; } .modal-content { padding: 15px; } .modal-content h2 { font-size: 1.5rem; } .certificates-grid-modal { grid-template-columns: 1fr; } .light-band { filter: blur(15px); } @keyframes driftAndGlow { 0%, 100% { transform: translateX(0) translateY(0) scale(1); opacity: 0.2; } 50% { transform: translateX(var(--tx, 0)) translateY(var(--ty, 0)) scale(var(--scale, 1)); opacity: 0.45; } } .blog-article-header h1 { font-size: 1.8rem; } .blog-article-content { font-size: 1rem; } } .blog-featured-image { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; } .blog-featured-image:hover { transform: scale(1.02); } .stranger-chat-hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at center, #1a0b2e 0%, #000000 100%); padding-top: 100px; } .product-badge { background: rgba(187, 134, 252, 0.1); color: var(--link-color-global-dark); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(187, 134, 252, 0.3); margin-bottom: 1.5rem; display: inline-block; } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 4rem; } .feature-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.09); padding: 2.5rem; border-radius: var(--border-radius); transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.08); } .feature-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1.5rem; } .mockup-container { margin: 4rem 0; position: relative; min-height: 400px; background: rgba(255, 255, 255, 0.05); border-radius: 20px; display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(255, 255, 255, 0.2); } .waitlist-form { max-width: 500px; margin: 0 auto; background: rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: var(--border-radius); border: 1px solid rgba(187, 134, 252, 0.15); } .stranger-chat-preview-icon-container { width: 200px; height: 200px; background: #2a1b3d; display: flex; align-items: center; justify-content: center; border-radius: 20px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); margin: 0 auto; overflow: hidden; } .stranger-chat-preview-icon { font-size: 5rem; color: #fff; } .stranger-chat-preview-img { width: 100%; height: 100%; object-fit: cover; } .testimonial-icon { background: transparent !important; box-shadow: none !important; margin-bottom: 1rem !important; height: auto !important; width: auto !important; border-radius: 0 !important; } .testimonial-icon i { color: var(--accent-color); font-size: 2rem; } .testimonial-text { font-style: italic; margin-bottom: 1rem; color: #e0e0e0; } .testimonial-author { color: #fff; margin-bottom: 0.2rem; font-size: 1.1rem; font-weight: 600; } .testimonial-location { font-size: 0.8rem; opacity: 0.7; color: #ccc; }