  html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Cairo", sans-serif;
  /* background-color: black; */
}
        a {
        text-decoration: none;
        }
        ul {
        list-style: none;
        margin: 0;
        padding: 0;
        }
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

        *::selection {
        background-color: #dbe5f7;
        color: #0a1835;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.5s ease;
        }
        
        header.scrolled {
            background-color: #0a1835;
            padding: 15px 10%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            color: white;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
        }
        
        .logo img {
            height: 40px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            position: relative;
        }
        
        nav ul li {
            margin-left: 0;
            margin-right: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a:hover,
        nav ul li a.active {
            color: #0a1835;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #0a1835;
            bottom: 0;
            right: 0;
            transition: all 0.3s ease;
        }

        
        /* Dropdown Menu */
        nav ul ul {
            position: absolute;
            top: 100%;
            right: 0;
            background-color:  black;
            min-width: 150px;
            display: none;
            border-radius: 0 0 5px 5px;
            color: #000;

            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .btns{
          position: absolute;
            right: 200px;
            display: inline-block;
            padding: 12px 30px;
            background-color:#1f4693;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 10px;
            border: none;
            cursor: pointer;
        }
        .btns:hover{
             background-color: #0a1835;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        nav ul li:hover > ul {
            display: block;
        }
        
        nav ul ul li {
            margin: 0;
            padding: 10px 15px;
            width: 100%;
        }
        
        nav ul ul li a {
            font-size: 14px;
            color: #fff;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
              
        }
        
        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            transition: all 1s ease;
            display: flex;
            align-items: center;
            padding: 0 10%;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(60, 60, 60, 0.7);
        }
        
        .slide-content {
            position: relative;
            max-width: 600px;
            color: white;
            z-index: 2;
            text-align: right;
            transform: translateY(-50px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #1f4693;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 10px;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
background-color: #0a1835;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 50px;
            right: 10%;
            z-index: 10;
            display: flex;
        }
        
        .slider-control {
          /* top: -96PX; */
          /* position: absolute; */
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-control.active {
          /* top: -96PX; */
          /* position: absolute; */
            background-color: white;
            transform: scale(1.3);
        }
        
        /* Stars Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        /* Waves */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
              
        }
        
        .waves svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        
        .parallax > use {
            animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
        }
        
        .parallax > use:nth-child(1) {
            animation-delay: -2s;
            animation-duration: 7s;
        }
        
        .parallax > use:nth-child(2) {
            animation-delay: -3s;
            animation-duration: 10s;
        }
        
        .parallax > use:nth-child(3) {
            animation-delay: -4s;
            animation-duration: 13s;
        }
        
        .parallax > use:nth-child(4) {
            animation-delay: -5s;
            animation-duration: 20s;
        }
        
        @keyframes move-forever {
            0% {
                transform: translate3d(-90px,0,0);
            }
            100% {
                transform: translate3d(85px,0,0);
            }
        }
        
        /* Slide Backgrounds */
        .slide:nth-child(1) {
            background-image: url('https://d2zn16t8uygl6t.cloudfront.net/myprintea/images/contentimages/images/professional_printing_services_digital_offset_large_format_options_concept_printing_services_digital.jpg');
        }
        
        .slide:nth-child(2) {
            background-image: url('https://fvs.com.sa/wp-content/uploads/2024/06/3-2-graphic-design-free-download-png-ezgif.com-jpg-to-webp-converter-1280x823.webp');
        }
        
        .slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide:nth-child(4) {
            background-image: url('https://th.bing.com/th/id/R.1f4119d12c2561fee913f5df9bc8aecd?rik=vVpITMj9ivaQBg&pid=ImgRaw&r=0');
        }
        nav ul {
          margin-right: 500px;
        }
        nav ul li ul {
          margin-right: 10px;
          margin-top: 7px;
        }
        nav ul li ul li:hover{
          color: black;
        }
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
        }
                body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        }
        
       
           #services-3print {
            /* padding: 100px 10%; */
            background: linear-gradient(135deg, #0a1835 0%, #1a1a2e 100%);
            color: white;
            position: relative;
        }
        #lkj{
                        padding: 100px 10%;
            background: linear-gradient(135deg, #0a1835 0%, #1a1a2e 100%);
            color: white;
            position: relative;
        }
        #services-3print .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
            position: relative;
        }
        
        #services-3print .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 60px;
            height: 3px;
            background: #4db8ff;
        }
        
        #services-3print .section-subtitle {
            text-align: center;
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        #services-3print .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        #services-3print .service-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            overflow: hidden;
        }
        
        #services-3print .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.3);
            border-color: rgba(77,184,255,0.3);
        }
        
        #services-3print .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        #services-3print .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        #services-3print .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        #services-3print .service-content {
            padding: 20px;
        }
        
        #services-3print .service-title {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            position: relative;
        }
        
        #services-3print .service-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 50%;
            transform: translateX(50%);
            width: 30px;
            height: 2px;
            background: #4db8ff;
            transition: all 0.4s ease;
        }
        
        #services-3print .service-card:hover .service-title::after {
            width: 60px;
        }
        
        #services-3print .service-desc {
            color: rgba(255,255,255,0.7);
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 0.9rem;
        }
        
        #services-3print .service-btn {
            display: block;
            width: max-content;
            margin: 0 auto;
            padding: 8px 20px;
            background: linear-gradient(90deg, #4db8ff, #3aa8f0);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(77,184,255,0.3);
        }
        
        #services-3print .service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(77,184,255,0.5);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            #about-section .container {
                flex-direction: column;
            }
            
            .about-content, 
            .about-image {
                width: 100%;
                padding: 0;
            }
            
            .about-image {
                margin-top: 50px;
                text-align: center;
            }
            
            .section-title::after {
                right: 50%;
                transform: translateX(50%);
            }
            
            nav ul {
                margin-right: 0;
            }
            
            .hero {
                margin-top: 70px;
            }
            
            .slide-content h1 {
                font-size: 36px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 15px 5%;
            }
            
            .slide-content {
                padding: 0 5%;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            #services-3print .services-grid {
                grid-template-columns: 1fr;
            }
        }
        #services-3print .section-title{
            position: absolute;
            right: 680px;
            top: 19px;
        }
        .portfolio-section{
            background-image: url(portfolio-section);
            position: absolute;
            top: 50px;
        }