

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin: 0 auto; 
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e20e17;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: #e6002e;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1a73e8;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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


        .hero {
            position: relative;
            height: 60vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
            }
            /**/ 

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('assets/hero_background.jpg') no-repeat center center / cover;
            opacity: 0.4;
            z-index: 1;
            animation: zoomDrift 26s ease-in-out infinite;
}

@keyframes zoomDrift {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.05) translate(10px, -10px); }
  100% { transform: scale(1) translate(0, 0); }
}

    
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        
        
    }
    /**/
        .hero-text {
        flex: 1;
        min-width: 300px;
        z-index: 2;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color : #ffffff;
          
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #cccccc;
            max-width: 600px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: #1a73e8;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
            
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #e20e17; 
            box-shadow: 0 20px 50px #e20e1780;
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color : #e20e17;
            background-clip: text;
        }

        /* About Section */
        .about {
            background: #ffffff;
            color: #333333;
        }
        
        .about .section-title {
           color : #e20e17;
            background-clip: text;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
           
            
        }

        .about-content p , p

        .about-text {
            text-align: justify;
            font-size: 1rem;
            color: #333333;
            margin-bottom: 10px;
            
            line-height: 2.2;

            font-weight: bold;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            border: 1px solid #ff33664d;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a73e8;
        }

        .stat-label {
            font-size: 1rem;
            color: #666666;
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            background: #0b0c10;
        }
        
        .services .section-title {
            color :#ffffff
           ;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.5rem;
            color: #1a73e8;
            margin-bottom: 1rem;
        }
        .section-description {
            text-align: center;
            font-size: 1.1rem;
            color: #333333;
            margin-bottom: 3rem;
            font-weight: bold;
        }

        .services-grid p {
            text-align: center;
        }

       
        

        

       
        .service-icon {
            font-size: 3rem;
            color: #e20e17;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .service-card p {
            color: #cccccc;
            line-height: 1.6;
        }

        /* Clients Section */
        .clients {
            background: #ffffff;
         /*   color: #333333;*/
        }
        
        .clients .section-title {
         color : #e20e17;
            background-clip: text;
        }

  /*     .clients-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr); 
            gap: 2rem;
            justify-items: center;
            align-items: center;
            padding-top: 2rem;
            }

        @media (max-width: 1024px) {
        .clients-grid {
            grid-template-columns: repeat(3, 1fr); 
   }

        @media (max-width: 600px) {
        .clients-grid {
            grid-template-columns: repeat(2, 1fr); 
        }
        }

      


    
        .client-logo img {
            max-width: 150%;
            max-height: 90px;
            object-fit: contain;
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .client-logo img:hover {
            filter: none;
            transform: scale(1.5);
            }
*/


              /*new clients struct*/
              .clients-carousel-wrapper {
                  position: relative;
                  overflow: hidden;
                  padding: 2rem 0;
                }

                .clients-carousel {
                  display: flex;
                  gap: 2rem;
                  overflow-x: hidden; /* Hide scrollbar */
                  scroll-behavior: smooth;
                  padding: 1rem 0;
                  touch-action: pan-x;
                  scroll-snap-type: x mandatory;
                }

                .client-logo {
                  flex: 0 0 auto;
                  width: calc(100% / 4 - 2rem); /* Show 4 at a time */
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  scroll-snap-align: start;
                }

                .client-logo img {
                  max-width: 100%;
                  max-height: 90px;
                  object-fit: contain;
                  transition: filter 0.3s ease, transform 0.3s ease;
                }
                
                /* Slightly boost a couple of smaller-looking logos */
                .client-logo img[src$="AC.jpeg"],
                .client-logo img[src$="ministryHE.svg"] {
                  max-height: 105px;
                }

                .client-logo img:hover {
                  transform: scale(1.2);
                }

                .carousel-btn {
                  position: absolute;
                  top: 50%;
                  transform: translateY(-50%);
                  background: #e20e17;
                  color: #fff;
                  border: none;
                  padding: 16px;
                  border-radius: 50%;
                  cursor: pointer;
                  z-index: 2;
                  opacity: 0.9;
                }
                
                .carousel-btn i {
                  font-size: 1.25rem;
                  line-height: 1;
                }

                .carousel-btn.left {
                  left: 0;
                }

                .carousel-btn.right {
                  right: 0;
                }

                .carousel-btn:disabled {
                  opacity: 0.4;
                  cursor: not-allowed;
                }

                /* Responsive */
                @media (max-width: 1024px) {
                  .client-logo {
                    width: calc(100% / 3 - 2rem);
                  }
                }

                @media (max-width: 768px) {
                  .client-logo {
                    width: calc(100% / 2 - 2rem);
                  }
                }



        /* Why Choose Us Section */
        .why-choose {
            background: #19191919;
        }
        
        .why-choose .section-title {
            color : #ffffff;
            background-clip: text;
        }
        .why-choose p {
            color: #ffffff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: scale(1.05);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #1a73e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: transform 0.3s ease;
            }

          .feature-item:hover .feature-icon {
            transform: scale(1.1);
          }

          .feature-item h3 {
              font-size: 1.5rem;
              margin-bottom: 1rem;
              color: #ffffff;
          }

          .feature-item p {
              color: #cccccc;
              line-height: 1.6;
          }

        /* Contact Section */
          .contact {
              background: linear-gradient(135deg, #0a0a0a 0%, #1a73e8 100%);
              color: #333333;
          }
          
          .contact .section-title {

              color : #ffffff;
              background-clip: text;
          }

          .contact-content {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 4rem;
          }

          .contact-info h3 {
              font-size: 1.5rem;
              margin-bottom: 1rem;
              color: #e20e17;
          }

          .contact-info i {
              color: #e20e17;
              margin-right: 10px;
              }

        

          .contact-info p {
              color: #ffffff;
              margin-bottom: 1rem;
          }

          .contact-form {
              background: rgba(255, 255, 255, 0.9);
              padding: 2.5rem;
              border-radius: 20px;
              border: 1px solid rgba(26, 115, 232, 0.2);
              box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
          }

          .form-group {
              margin-bottom: 1.5rem;
          }

          .form-group label {
              display: block;
              margin-bottom: 0.5rem;
              color: #333333;
              font-weight: 500;
          }

          .form-group input,
          .form-group textarea {
              width: 100%;
              padding: 12px;
              background: rgba(255, 255, 255, 0.9);
              border: 1px solid rgba(0, 0, 0, 0.2);
              border-radius: 10px;
              color: #333333;
              font-size: 1rem;
          }

          .form-group input:focus,
          .form-group textarea:focus {
              outline: none;
              border-color: #1a73e8;
              box-shadow: 0 0 10px rgba(26, 115, 232, 0.3);
          }

          /* Footer */
          footer {
              background: #0a0a0a;
              padding: 2rem 0;
              text-align: center;
              border-top: 1px solid rgba(255, 255, 255, 0.1);
          }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }



        /*services in homepage */

       .services-grid {
            display: flex;              
            flex-wrap: wrap;            
            gap: 50px;                  
            justify-content: center;    
            margin-top: 40px;
             row-gap: 30px;
        }

       

          .service-card {
            background-color: #0b0b0b;
            padding: 20px;
            border-radius: 20px;
            border: 1px solid rgba(26, 115, 232, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex: 1 1 300px;         
            max-width: 360px;         
            display: flex;
            flex-direction: column;
        }


        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 56, 56, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            color : #e20e17;
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            opacity: 1;
            left: 100%;
        }
        

         .service-content p {
            text-align : left;
}

         .service-card:hover {
            transform: translateY(-10px);
            border-color: #1a73e8;
            box-shadow: 0 20px 40px rgba(26, 115, 232, 0.2);
        }

        .service-icon1 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e20e17, #ff3838);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .service-card:hover .service-icon1 {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(255, 71, 87, 0.4);
        }

        .service-icon1 svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .service-content {
          position: relative;
          z-index: 2;
          flex-grow: 1;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: #1a73e8;
        }

        .service-subtitle {
            font-size: 1.1rem;
            font-weight: 600;
            color: #b8b8b8;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #b8b8b8;
            margin-bottom: 25px;
        }


        .card-separator {
            margin-top: auto;
            margin-bottom: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            height: 1px;
            width: 100%;
        }


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

        .card-footer {
            margin-top: auto;
            padding-top: 20px;
          }



          .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 2;
        }

         .btn-primary {
            background: linear-gradient(135deg, #e20e17, #ff3838);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1a73e8, #1a73e8);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
           
            border-color: #e20e17;
            color: #e20e17;
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .btn:hover .arrow {
            transform: translateX(4px);
        }

        .homepage-services {
          position: relative;
    
          z-index: 1;
          overflow: hidden;
        }

        .homepage-services::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background-color: rgba(0, 0, 0, 0.5);

          z-index: 0;
        }
        .homepage-services > * {
          position: relative;
          z-index: 2;
        }



        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
          
            
            .service-buttons {
                flex-direction: column;
            }
        }



          .about-stats {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          margin-top: 30px;
          text-align: center;
        }

        .stat-item {
          background: rgba(255, 255, 255, 0.05);
          padding: 20px;
          border-radius: 10px;
          transition: transform 0.3s ease;
        }

        .stat-item:hover {
          transform: translateY(-5px);
        }

        .stat-number {
          font-size: 2rem;
          font-weight: bold;
          color: #1a73e8;
          margin-bottom: 10px;
        }

        .stat-label {
          font-size: 1rem;
          color: #444;
        }

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

      .hero-text {
        margin-top: 30px;
      }
    }

    .hero-image img {
      position: relative;
      top: -30px;
      transition: transform 0.3s ease;
    }

    .hero-image img:hover {
      transform: translateY(-5px) scale(1.02);
    }

        /* SECTION STYLING */
    .services-section {
      background: linear-gradient(rgba(20, 21, 24, 0.85), rgba(20, 21, 24, 0.85)),
                  url('assets/hero.jpg') no-repeat center center / cover;
      padding: 100px 0;
      position: relative;
      z-index: 2;
      overflow: visible;
    }

    /* CONTAINER FLEX */
    .services-container {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* IMAGE STYLING */
    .services-image-wrapper {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .services-image {
      width: 350px;
      position: absolute;
      top: -110px;
      left: -40px;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .services-image:hover {
      transform: scale(1.11);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    }

    /* TEXT STYLING */
    .services-text {
      flex: 1;
      min-width: 300px;
      position: relative;
      left: -100px;
      z-index: 1;
    }

    .services-title {
      color: #e20e17;
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .services-description {
      color: #ccc;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .services-image {
        position: static;
        width: 100%;
        margin-bottom: 30px;
        transform: none !important;
      }

      .services-image-wrapper {
        text-align: center;
      }

      .services-text {
        left: 0;
      }
    }

    @media (max-width: 600px) {
      .services-title {
        font-size: 2rem;
      }

      .services-description {
        font-size: 1rem;
      }
    }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }


        /*announcements*/
        .announcements {
            background: #ffffff;
            color: #ffffff;
            padding: 100px 0;
            }

            .logo-box:hover {
                transform: scale(1.05);
                
                }


            .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
            }

            .event-card {
                background: rgba(255, 255, 255, 0.85);
                padding: 2rem;
                border-radius: 15px;
                border: 1px solid rgba(26, 115, 232, 0.2);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                transition: transform 0.3s ease;
            }

            .event-card:hover {
            transform: translateY(-5px);
            border-color: #e20e17 366;
            }

            .event-card h3 {
            color: #e20e17;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            }

            .event-card p {
            color: #3f3838;
            line-height: 1.6;
            margin-bottom: 1rem;
            }
            

            .event-date {
            font-size: 0.9rem;
            color: #1a73e8;
            font-weight: bold;
            }

            .events-button {
            margin-top: 3rem;
            text-align: center;
            }


            /*map*/
            .map-section {
                background: #0b0c10;
                color: #ffffff;
                padding: 50px 0 0;
                text-align: center;
                }

            .map-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color : #ffffff;
            background-clip: text;
            }

            .map-container {
            width: 100%;
            height: 400px;
            overflow: hidden;
            }


            /*services pagecd*/

               .services-hero {
                    position: relative;
                    overflow: hidden;
                    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
                    padding: 120px 20px 80px;
                    color: #ffffff;
                    text-align: left;
                    position: relative;
                    }

                    .about-hero {
                    position: relative;
                    overflow: hidden;
                    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
                    padding: 120px 20px 80px;
                    color: #ffffff;
                    text-align: left;
                    position: relative;
                    }
        @media (max-width: 768px) {
 
                .about-hero h1 {
                font-size: 2.5rem;
                }
            }


/*content page*/


                body.content-page {
                    background: #ffffff;
                    color: #222;
                    }

                

            .content-hero {
            
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            padding: 120px 20px 80px;
            color: white;
            padding: 120px 20px 80px;
            text-align: center;
            }

            .section-title {
            font-size: 2.5rem;
            color: #e20e17;
            margin-bottom: 2rem;
            }

            .news-section, .events-section {
            padding: 80px 20px;
            }

            .news-item, .event-item {
            background: #f9f9f9;
            border-left: 4px solid #e20e17;
            padding: 1.5rem;
            margin-bottom: 2rem;
            transition: box-shadow 0.3s ease;
            }

            .news-item:hover, .event-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .news-item h3, .event-item h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            }

            .news-item p, .event-item p {
            font-size: 1rem;
            color: #555;
            }

            .news-item a, .event-item a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 0.5rem;
            }

            .news-item a:hover {
            text-decoration: underline;
            }
            .container1  p {
                color: #ffffff;
            }
          

            /**/

            .social-icons a {
            color: #1a73e8;
            font-size: 20px;
            margin: 0 10px;
            transition: color 0.3s ease;
            }

            .social-icons a:hover {
            color: #e20e17;
            }





/**/

.two-columns { /*axis grid*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


/**/

.cybersecurity-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cybersecurity-intro {
    grid-template-columns: 1fr;
  }
}
.digitalisation-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .digitalisation-intro {
    grid-template-columns: 1fr;
  }
}


 
                  

/*nav linkssss*/

/* Dropdown base */
/* Base container */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background-color: #1a1a1a;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
}

/* Show on hover */
.nav-links .dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown item */
.nav-links .dropdown-menu li {
  width: 100%;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #f1f1f1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links .dropdown-menu a:hover {
  background-color: #e20e17;
  color: white;
}




.language-switch {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-switch button {
  background-color: transparent;
  border: none;
  color: #e20e17;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s;
}

.language-switch button:hover {
  color: #1a73e8;
}


/*mobile resp hamburger*/

/* Base */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Nav links default */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #0a0a0a;
    padding: 20px 0;
    z-index: 999;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}


/*btn scroll*/

  #scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 950;
  background-color: #e20e17;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: none; /* will show via script when scrolling */
}

#scrollToTopBtn:hover {
  background-color: #c01114;
  transform: scale(1.1);
}
body.homepage #scrollToTopBtn {
  left: 25px;
  right: auto;
}


/*chatbot*/
#chat-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 2000;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  padding: 0;
}

#chat-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

  #chat-widget {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 370px;
    max-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 1040;
    overflow: hidden;
  }

  #chatbox {
    display: flex;
    flex-direction: column;
    padding: 16px;
    height: 100%;
  }

  #messages {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 5px;
  }

  #inputArea {
    display: flex;
    margin-top: 10px;
  }

  input[type="text"] {
    flex: 1;
    padding: 8px;
    font-size: 14px;
  }



  .message.bot {
    background: #1a73e8;
    align-self: flex-start;
    border-radius: 12px;
    margin: 5px 0;
    padding: 8px;
    max-width: 80%;
  }

  .message.user {
    background: #e20e17;
    align-self: flex-end;
    border-radius: 12px;
    margin: 5px 0;
    padding: 8px;
    max-width: 80%;
    text-align: right;
  }

   @media (max-width: 768px) {
    #chat-widget {
      width: 90vw;
      right: 5vw;
      bottom: 90px;
      max-height: 80vh;
    }

    #chat-toggle {

      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      background: #ffffff;
      padding: 0;
    }

    #chatbox {
      padding: 12px;
    }

    #chat-toggle img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     display: block;
     border-radius: 50%;
    }


    input[type="text"] {
      font-size: 13px;
      padding: 6px;
    }

    button.send-btn {
      padding: 6px 10px;
    }

    .message.bot, .message.user {
      font-size: 0.9rem;
      padding: 6px;
    }
  }



  /*tools popup*/
  /*

 .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px; 
  overflow-y: auto;
}

.modal-content {
  background: #1b1d21;
  color: #fff;
  width: 100%;
  max-width: 960px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  margin: auto;
}

.modal-title {
  color: #e20e17;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}

.tools-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tool-card {
  background: #2a2c31;
  padding: 20px 24px;
  border-radius: 10px;
  flex: 1 1 45%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tool-card h3 {
  color: #e20e17;
  margin-bottom: 10px;
}

.tool-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 10px;
}

.tool-card ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #aaa;
}
@media (max-width: 768px) {
  .tools-grid {
    flex-direction: column;
    gap: 20px;
  }

  .tool-card {
    flex: 1 1 100%;
  }

  .modal-content {
    padding: 25px;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}
*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #1b1d21;
  color: #fff;
  width: 100%;
  max-width: 960px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  margin: auto;
}

.modal-title {
  color: #e20e17;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}

.tools-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tool-card {
  background: #2a2c31;
  padding: 20px 24px;
  border-radius: 10px;
  flex: 1 1 45%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tool-card h3 {
  color: #e20e17;
  margin-bottom: 10px;
}

/* New right-aligned icon container */
.tool-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.tool-description p {
  flex: 1;
  margin: 0;
  color: #ccc;
  font-size: 1rem;
}

.tool-description img {
  width: 150px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.tool-card ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #aaa;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .tools-grid {
    flex-direction: column;
    gap: 20px;
  }

  .tool-card {
    flex: 1 1 100%;
  }

  .modal-content {
    padding: 25px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .tool-description {
    flex-direction: column;
    align-items: flex-start;
  }

  .tool-description img {
    width: 36px;
    margin-top: 10px;
  }
}
/*modal diagss*/

.tool-heading {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #e20e17;
  border-bottom: 2px solid #e20e17;
  padding-bottom: 8px;
}

.tool-description {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.tool-description img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Diagram styling */
.devsecops-diagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}

.pipeline-step {
  background-color: #2a2c31;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pipeline-step i {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #e20e17;
}

.pipeline-arrow {
  font-size: 1.2rem;
  color: #999;
}

/* Responsive diagram stack */
@media (max-width: 768px) {
  .devsecops-diagram {
    flex-direction: column;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
  }
}



/*services page*/

.devsecops-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0;
    margin: 40px 0;
    border-radius: 30px;
    text-align: center;
    position: relative;
  }
  
  .devsecops-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
  }


  .solution-transition {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.solution-transition::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, #ffffff00, #000000);
  z-index: 1;
}

.solution-transition h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e20e17;
}

.solution-transition p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

  
  .pipeline-step {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .pipeline-step:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
  }
  
  .pipeline-step i {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .pipeline-step span {
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
  }
  
  .pipeline-arrow {
    color: #e20e17;
    font-size: 2rem;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
  }
  
  .cybersecurity-red {
    border-left-color: #e20e17;
  }
  
  .cybersecurity-red .service-icon {
    color: #e20e17;
  }
  
  
  
  @media (max-width: 768px) {
    .service-axes {
      grid-template-columns: 1fr;
    }
    
    .services-hero h1 {
      font-size: 2.5rem;
    }
    
    .devsecops-diagram {
      flex-direction: column;
    }
    
    .pipeline-step {
      margin: 10px 0;
    }
    
    .pipeline-arrow {
      transform: rotate(90deg);
    }
  }

  /* Pop-in animation */
@keyframes popIn {
  to {
    transform: scale(1);
  }
}

/* Pulse effect for number glow */
@keyframes pulse {
  0% {
    text-shadow: 0 0 0 rgba(226,14,23,0);
  }
  50% {
    text-shadow: 0 0 10px rgba(226,14,23,0.6);
  }
  100% {
    text-shadow: 0 0 0 rgba(226,14,23,0);
  }
}


/**/
 .services-overview {
    padding: 80px 0;
    background: #ffffff;
  }
  
  .service-axes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
  }
  
  .axis-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #444;
    transition: transform 0.3s ease;
  }
  
  .axis-card:nth-child(2) {
    border-top-color: #444;
  }
  
  .axis-card:hover {
    transform: translateY(-10px);
  }

  .axis-card p {
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    text-align:center ;
  }
  
  .axis-icon {
    font-size: 3rem;
    color: #444;
    margin-bottom: 20px;
  }
  
  .axis-card:nth-child(2) .axis-icon {
    color: #444;
  }
  
  .cyber-threats {
    background: linear-gradient(135deg, #0b0c1000 0%, #0b0c1000 100%);
    padding: 80px 0;
  }

  
  .threats-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .threats-header h2 {
    font-size: 2.5rem;
    color: #e20e17;
    margin-bottom: 20px;
  }
  
  