:root {
   
    --primary-color: #333;
    --primary-background-color: rgba(165, 162, 162, 0.1);
    --primary-light-color: #fff;
    --primary-linear: linear-gradient(to right, rgba(255, 69, 0,0.95), rgba(0, 198, 255,0.95));
    --primary-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --primary-pad-top: 8px 0;
    --primary-margin-side-center: 0 auto;

    /* Layout */
    --primary-max-width: 1820px;

    /* Typography */
    --primary-font-size: 16px; /* fallback base size */
    --primary-font-family: "Segoe UI", Arial, sans-serif;
    --primary-line-height: 1.6;

    /* Borders */
    --primary-border-radius: 8px;

    /* Transitions */
    --primary-transition: all 0.3s ease-in-out;
}

   
    body, 
    html {
           
        padding: 0;
        font-family: 'Poppins', sans-serif;
        max-width: var(--primary-max-width); 
        min-width: 390px;
        margin: var(--primary-margin-side-center);
        overflow-x: hidden;
        scroll-behavior: smooth;
        width: 100%;
    }
    .main{
        position: relative;
        background: var(--primary-light-color);
       
     
    }

 /*+++++++++++++++++++++NAVBAR++++++++++++++++++++++++*/
 .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--primary-pad-top);
            background:var(--primary-linear) ;
            box-shadow: var(--primary-box-shadow);
            position: fixed;
            width: 100%; /* Full width */           
            z-index: 1000;
            max-width: var(--primary-max-width); 
            margin: var(--primary-margin-side-center);
            
        }
        .navbar img{
            margin-left:10px;
            width:40px;
        }
        .navbar h1 {
            color: var(--primary-light-color);
            font-size: 24px;
            margin: 0;
            padding: 0 15px;
        }
        
        .navbar a{
            text-decoration: none;
            color:var(--primary-light-color);
         }

        .nav-links {
            display: flex;            
            right: 10px;
            margin-right: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 16px;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: yellow;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            font-size: 26px;
            color: white;
            cursor: pointer;
        }

       

    /*++++++++++ GENERAL ++++++++++++++++++*/
    .nav-links,
    .services-page .service-list,
    .service-item {
        gap: 10px;
    }
   
     h1{
            font-size: 50px;
            font-weight: bold;
            color: #00a8e8;
            font-size-adjust: 0.4; /* auto grow text*/
       }
        h3{
           /* color: #0x0a8e8;*/
            color: orangered;
        }
    .btn-get-service{
            text-decoration: none;
            padding: 10px 15px;
            border: solid 1px gray;
            border-radius: 100px;
             color:rgb(65, 64, 64);
             margin-top: 15px;
        }

         .btn-get-service:hover{
            background-color:rgb(252, 158, 124);            
             color:rgb(253, 250, 250);
        }
 /* Notification Styling */
        
        .notification {
            
            position: fixed;
            top: 10vh;
            left: 50%;
            width:50%;
            transform: translate(-50%, -50%);
            padding: 9px;
            background-color: rgba(40, 167, 69, 0.8);/* Green for success */
            color: white;
            font-size: 16px;
            border-radius: 3px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            display: none; /* Initially hidden */
            z-index: 1500;
            text-align: center;
            min-width: 250px;
        }
        .error {
            background-color: rgba(220, 53, 69, 0.8); /* Red for error */
        }



/*+++++++++++++++++++++BANNER SECTION+++++++++++++++++++++++++*/
        .cover-page {
            width: 100%;
            height: 100vh;
            background: url('../icons/luca-bravo-9l_326FISzk-unsplash.jpg') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            padding: 10%;
            color: #000;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;
        }
        .service-data{
            width: 95%;
            margin:auto;
            
        }
        .service-data  .item-head{
            width:40%;
        } 
        .image-call-center{
            width: 30%;
            height: 60vh;
           
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            padding-left: 10%;
            color: #000;
            position: relative;
            border-radius: 8px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;

        }
       
        .service-data h2{
            text-align: center;
        }
        .service-data a, .service-data li {
            list-style: none;
            text-decoration: none;
            text-align: left;

        }
        .service-data li {
           margin-top: 10px;
            
        }
      
        .service-data p {
            text-align: center;
            align-content: center;
            width:90%;
            margin:auto;
             
         }
      
        .cover-page h1 {
            font-size: 60px;
            font-weight: bold;
            color: #00a8e8;
        }
        .cover-page span {
            color: #f4f4f4;
        }
        .cover-page p {
            font-size: 20px;
            font-weight: 300;
            margin-top: 10px;
            color: #f4f4f4;
        }
        .cover-page .cta-button {
            margin-top: 20px;
            padding: 15px 30px;
            background: #00a8e8;
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            border-radius: 50px;
            transition: 0.3s;
        }
        .cover-page .cta-button:hover {
            background: #007bb5;
        }
       
        .cover-page1,
        section {
            padding:20px 10px;
            text-align: center;
            margin: 10px;
            border-radius: 10px;
            box-shadow: var(--primary-box-shadow);
        }
        .item-head{
            display: flex;
        }
       



/*+++++++++++++++++++++ SERVICES SECTION+++++++++++++++++++++++++*/
  
        .cover-page1 {          
            opacity: 0;
             animation: fadeInUp 1s ease-out forwards;
        }   
        .services-page .services-page p {
            font-size: 18px;
            margin-top: 10px;
        }
   
        .services-page .service-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .services-page .cross-platform::before {
            content: url('assets/icons/crossed2.svg');  /* Path to your SVG file */
            display: inline-block;
             width: 50px;
        }
        .services-page .intuitive::before {
            content: url('assets/icons/intuitive.svg');  /* Path to your SVG file */
            display: inline-block;
             width: 50px;
        }
       .service-item {

            display: flex;
            align-items: center;           
            width: 35%;
            padding: 15px;           
            box-shadow: 0 4px 8px rgba(148, 148, 148, 0.1);
            border-radius: 10px;
            transition: 0.3s;
        }
        .cover-page1 .service-item {
            width: 80%;
            margin: 10px auto;
        }
     
       .service-item:hover {
            transform: translateY(-5px);
        }
        .service-item i{
            font-size: 24px;
            text-align: center;
            color: rgb(255, 69, 0);
            margin: auto 10px; 
        }
        .services-page .service-item h5{
             color: #00a8e8;
             text-align: left;

        }
        
        .website-dev p{
            width:90%;
            margin:auto;
        }
       
        


 /*+++++++++++++++++++++ contact us +++++++++++++++++++++++++*/  
     .contact {
           
            display: flex;
            flex-direction: column;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            align-items: center;
            text-align: center;
            position: relative;
            height: 70vh;
            overflow: hidden; 
            background: url('../icons/texting.jpg') no-repeat center center/cover;
           
        }
        /* .contact::after{
         content: "";
         width: 100%;
         height: 100vh;
    
         bottom: 75%;
         position: absolute;
         transform: skewY(-50deg);
         z-index: 1;
        }*/
       
        .item {
            color:#fbf9f9;
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 90vh;
            width: 50%;
            z-index: 100;
            position: relative;
            margin:auto;
             
        }

       .item h1 {
         color:#fbf9f9;
       }
        .item input, .item textarea {
            width: 90%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            margin: var(--primary-margin-side-center);
            outline: none;
            transition: all 0.3s;
        }
        .item input:focus, .item textarea:focus {
            border-color: #007BFF;
            box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
        }
        .item textarea {
            height: 100px;
            resize: none;
        }
        .item .btn-get-service {
            background: #007BFF;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }
        .item .btn-get-service:hover {
            background: #0056b3;
        }

/* request page */
 /* Ticket Container */
        #tickets {
          
            margin:100px auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
        }
         #tickets p{
             color:red;
         }

        /* Form Styling */
        input, textarea {
            width: 90%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
       
        

        textarea {
            height: 100px;
        }

        /* Button Styling */
        button {
            background: #007bff;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
            width: 100%;
        }

        button:hover {
            background: #0056b3;
        }



  
/* Footer General Styles */
footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
    z-index: 1000;
    
}

footer a{
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}
footer a:hover {
    color: #fff;
    text-decoration:underline;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    max-width: 1300px;
    margin: auto;
    padding: 10px;
}

.footer-section {
    width:25%;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-section p, .footer-section ul {
    font-size: 15px;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}
.social-button {
    padding: 7px 10px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 5px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 2px;
    border-top: 1px solid #444;
    font-size: 10px;
    color: #bbb;
}
.facebook { background: #1877F2; }
.whatsapp { background: #25D366; }
.linkedin { background: #0077B5; }
.instagram { background: linear-gradient(45deg, #E1306C, #F77737); }
.twitter { background: #000000; }
   



/*+++++++++++++++++++++ KEY FRAMES +++++++++++++++++++++++++*/
  
     @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/*+++++++++++++++++++++ Responsive Design +++++++++++++++++++++++++*/
       
        /* Responsive Navbar */
        @media (max-width: 825px){
             
            .cover-page1 .service-item{
                display: flex;
                flex-direction: column;
                 gap: 0;
                 text-align: center;
            }
              .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content:center;
            max-width: 825px;
            margin: auto;
        }
            .footer-section {
        width:200px;
        margin-bottom: 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                background: linear-gradient(to right, rgba(255, 69, 0, 0.9), rgba(0, 198, 255, 0.9));
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                text-align: center;
                padding: 5px 0;
            }
             .service-item {
            justify-content: center;
            text-align: left;
        }

            .nav-links a {
                display: block;
                padding: 10px;
                color: white;
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: block;
                margin-right: 15px;
            }
        }

   
  

    @media (max-width: 560px) {
            .support .service-item,
            .cyber .service-item,
            .android-dev .service-item,
            .desktop-dev .service-item,
            .website-dev .service-item {

            display:flex;
            flex-direction: column;
            align-items: center;
             gap: 15px;
            width: 40%;
            padding: 15px;
            background: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            transition: 0.3s;
        }
        .service-data{
            list-style: none;
            text-align: center;
            margin:auto;
          
        }       
        .image-call-center{
            width: 100%;
            height: 90vh;
            background: url('focused-call.jpg') no-repeat center center/cover;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;

        }
            
        }
        @media  (max-width: 519px) {
            .support .service-item,
            .cyber .service-item,
            .android-dev .service-item,
            .desktop-dev .service-item,
            .website-dev .service-item {
            width: 100%;
            
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content:center;
            max-width: 1100px;
            margin: auto;
        }
            .footer-section {
        width: 90%;
        margin-bottom: 20px;
            }

          .service-data {
              align-content: center;
          }
         .service-data  .item-head{
            width:90%;
            text-align:center;
            margin:auto;
            font-weight:20px;
            
            
        } 
         .service-list {
            display: flex;
            flex-wrap:wrap;
            justify-content:center;
              align-items: center;  /* Aligns items vertically */
            justify-content: flex-start; /* Aligns items to the left */
            gap: 20px;
            margin-top: 20px;
        }
        .support .service-item i,
        .cyber .service-item i,
        .android-dev .service-item i,
        .desktop-dev .service-item i,
        .website-dev .service-item i {
            margin-left: 0;
            display: flex;
            flex-wrap:wrap;
            justify-content:center;
            align-items: center;  /* Aligns items vertically */
            justify-content: flex-start; /* Aligns items to the left */ 
            left: 0;
        }
        .item {
            width: 98%;
            
        }

        }

      