/* General body styles */
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-color: black;
    color: white;
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.9); /* Slight transparency for the navbar */
    box-sizing: border-box;
  }
  
  .navbar .logo {
    display: flex;
    align-items: center;
  }
  
  .navbar .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .navbar ul li {
    margin-left: 30px;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .navbar ul li a:hover {
    color: #00bfff; /* Light blue hover effect */
  }
  
  .navbar .quote-btn {
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .navbar .quote-btn:hover {
    background-color: white;
    color: black;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: url('Hero-Section.png') no-repeat center center/cover; /* Replace with correct path */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3em;
    line-height: 0.7; /* Reduced line-height for less space between lines */
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero h1 span {
    display: block;
    margin-bottom: 0; /* Remove extra space between spans */
  }
  
  
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
  }
  
  /* Scroll Indicator at the Bottom */
  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .scroll-arrow {
    font-size: 24px;
    margin-top: 5px;
  }
  
  /* Responsive styles for smaller screens */
  @media (max-width: 768px) {
    .navbar ul li {
      margin-left: 20px;
    }
  
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1em;
    }
  }
  
  @media (max-width: 480px) {
    .navbar {
      padding: 10px 20px;
    }
  
    .hero h1 {
      font-size: 1.5em;
    }
  
    .hero p {
      font-size: 0.9em;
    }
  }

  /* About Us Section */
.about-us {
    padding: 60px 0;
    background: linear-gradient(180deg, #000000 0%, #1E1E1E 100%);
    color: white;
    text-align: left;
  }
  
  .about-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-us-left img {
    max-width: 100%;
    border-radius: 10px; /* Rounded corners for the image */
  }
  
  .about-us-right {
    max-width: 550px;
    margin-left: 40px;
  }
  
  .about-us-right h3 {
    text-transform: uppercase;
    font-size: 14px;
    color: #b0b0b0; /* Lighter gray for the subtitle */
    margin-bottom: 10px;
  }
  
  .about-us-right h2 {
    font-size: 2.2em; /* Larger size for the main heading */
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .about-us-right p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-us-right .btn {
    display: inline-block;
    padding: 12px 24px; /* Slightly larger button */
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .about-us-right .btn:hover {
    background-color: white;
    color: black;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .about-us-content {
      flex-direction: column; /* Stack image and text on smaller screens */
    }
  
    .about-us-right {
      margin-left: 0;
      margin-top: 20px;
      text-align: center; /* Center text content on smaller screens */
    }
  
    .about-us-right h2 {
      font-size: 1.8em; /* Adjust heading size */
    }
  
    .about-us-right .btn {
      display: inline-block;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .about-us-right h2 {
      font-size: 1.5em; /* Further reduce heading size for very small screens */
    }
  
    .about-us-right p {
      font-size: 0.9em;
    }
  
    .about-us-left img {
      width: 100%; /* Ensure image scales properly */
    }
  }

  /* Counters Section */
.counters {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0;
    background-color: #111;
    color: white;
    text-align: center;
    font-family: 'Manrope', sans-serif;
  }
  
  .counter h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .counter p {
    font-size: 1em;
    color: #b0b0b0; /* Light gray for the text */
  }
  
  /* Divider between counters */
  .divider {
    height: 50px;
    width: 1px;
    background-color: #b0b0b0; /* Light gray color for the vertical lines */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .counters {
      flex-direction: column;
    }
  
    .divider {
      display: none; /* Hide dividers on small screens */
    }
  
    .counter {
      margin-bottom: 20px;
    }
  }

  /* IT Solutions Section */
.it-solutions {
    padding: 60px 20px;
    background: linear-gradient(180deg, #1E1E1E 0%, #121212 100%);
        color: white;
    text-align: center;
  }
  
  .it-header h3 {
    text-transform: uppercase;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .it-header h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  .it-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .it-card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    flex: 1;
    min-width: 200px;
    max-width: 270px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .it-card:hover {
    border: 1px solid #b0b0b0;
  }
  
  .it-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  
  .it-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text; /* Clip the gradient to the text */
    -webkit-text-fill-color: transparent; /* Makes text transparent to show gradient */
  }
  
  
  .it-card p {
    font-size: 1em;
    color: #b0b0b0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .it-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .it-card {
      max-width: 100%;
      margin-bottom: 20px;
    }
  }

  /* Our Services Section */
.our-services {
    padding: 60px 20px;
    background: radial-gradient(circle at left, #1E1E1E 0%, #121212 100%);
    color: white;
    text-align: center;
  }
  
  .services-header h3 {
    text-transform: uppercase;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .services-header h2 {
    font-size: 2em;
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* Accordion Items */
  .accordion-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
  }
  
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .accordion-header h3 {
    font-size: 1.5em;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 120%);
    -webkit-background-clip: text; /* Clips the gradient to the text */
    -webkit-text-fill-color: transparent; /* Makes the text transparent to show the gradient */
  }
  
  
  .accordion-header span {
    font-size: 1.5em;
    color: white;
    margin-right: 10px;
  }
  
  .accordion-header .icon {
    font-size: 1.5em;
    transition: transform 0.3s;
  }
  
  .accordion-content {
    display: none;
    padding: 20px 0;
    border-top: 1px solid #333;
  }
  
  /* Open state */
  .accordion-item.active .accordion-content {
    display: block;
  }
  
  .accordion-item.active .icon {
    transform: rotate(45deg);
  }
  
  /* Services grid within accordion */
  .services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .service-box {
    background-color: #222;
    padding: 15px;
    text-align: center;
    width: 200px;
    border-radius: 10px;
    transition: all 0.3s;
  }
  
  .service-box:hover {
    background-color: #333;
  }
  
  .service-box img {
    width: 100%;
    border-radius: 5px;
  }
  
  .service-box h4 {
    margin-top: 10px;
    font-size: 1.1em;
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .service-box {
      width: 100%;
    }
  }

  

/* Portfolio Section */
.portfolio {
    padding: 60px 20px;
    background: radial-gradient(circle at right, #1E1E1E 0%, #121212 100%);
    color: white;
    text-align: center;
}

.portfolio-header h3 {
    text-transform: uppercase;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
}

.portfolio-header h2 {
    font-size: 2em;
    margin-bottom: 40px;
}



.slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 40px; /* Create some space at the bottom for the arrows */
}

/* Adjusting the slide width and container */
.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
}

/* Ensuring content inside the slide is spaced properly */
.slide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.slide-image {
    max-width: 40%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.slide-info {
    width: 50%;
    text-align: left;
    padding-left: 20px;
}

.slide-info h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.slide-info p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.slide-info h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Adjusting the button and technologies container */
.technologies {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.technologies span {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
    align-self: flex-start;
}

.btn:hover {
    background-color: white;
    color: black;
}
   

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
    }

    .slide-image,
    .slide-info {
        width: 100%;
    }

    .slide-image {
        margin-bottom: 20px;
        max-width: 100%;
    }
}






  /* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: radial-gradient(circle at top, #1E1E1E 0%, #121212 100%);
    color: white;
    text-align: center;
  }
  
  .testimonials-header h3 {
    text-transform: uppercase;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .testimonials-header h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  .slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(100% * 3); /* 3 slides, since there are 6 testimonials */
  }
  
  .testimonial-slide {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .testimonial-content {
    width: 45%;
    text-align: left;
    display: flex;
    align-items: center;
  }
  
  .testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .testimonial-info h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
  }
  
  .testimonial-info h4 {
    font-size: 1em;
    color: #b0b0b0;
    margin-bottom: 15px;
  }
  
  .testimonial-info p {
    font-size: 1em;
    color: #b0b0b0;
  }
  
  /* General arrow styles for all sliders */
.slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 10px; /* Default position */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    gap: 10px; /* Default gap */
}

.slider-arrow {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
}

/* Portfolio Section Specific Arrow Adjustments */
.portfolio .slider-arrows {
    bottom: 0px; /* Custom position for Portfolio arrows */
    gap: 8px; /* Adjust gap for Portfolio */
}

.portfolio .slider-arrow {
    width: 35px; /* Make Portfolio arrows slightly smaller */
    height: 35px;
    font-size: 18px;
}

/* Testimonials Section Specific Arrow Adjustments */
.testimonials .slider-arrows {
    bottom: 15px; /* Adjust position for Testimonials arrows */
    gap: 6px; /* Adjust gap for Testimonials */
}

.testimonials .slider-arrow {
    width: 30px; /* Smaller arrows for Testimonials */
    height: 30px;
    font-size: 16px;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 25px;
        height: 25px;
        font-size: 14px;
        padding: 5px;
    }

    .portfolio .slider-arrows,
    .testimonials .slider-arrows {
        bottom: 15px; /* Closer to the bottom on smaller screens */
    }
}


  
  /* Responsive Design */
  @media (max-width: 768px) {
    .testimonial-slide {
      flex-direction: column;
    }
  
    .testimonial-content {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .testimonial-image {
      width: 100px;
      height: 100px;
      margin-right: 0;
      margin-bottom: 15px;
    }
  
    .testimonial-info {
      text-align: center;
    }
  }

  /* Contact Us Section */
.contact-us {
    padding: 60px 20px;
    background: radial-gradient(circle at left, #1E1E1E 0%, #121212 100%);
    color: white;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-form,
  .contact-info {
    width: 45%;
  }
  
  .contact-form h2,
  .contact-info h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .contact-form h2 {
    color: white;
  }
  
  .contact-form form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1em;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #b0b0b0;
  }
  
  .contact-form button {
    padding: 12px 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #333;
    color: white;
  }
  
  .contact-info h3 {
    color: #b0b0b0;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .contact-info .office-location {
    display: flex;
    flex-direction: column; /* Stack the flag (image) above the text */
    align-items: left; /* Center align the content */
    text-align: left; /* Center align the text */
    margin-bottom: 20px;
}

.contact-info .office-location img {
    width: 74.94px;
    height: 50px;
    margin-bottom: 10px; /* Add some space below the flag */
}

.contact-info .office-location p {
    font-size: 1em;
    color: white;
    margin: 0; /* Ensure no extra margin around the paragraph */
}

  
  .contact-info p strong {
    display: block;
    margin-bottom: 5px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-form,
    .contact-info {
      width: 100%;
      margin-bottom: 40px;
    }
  }

  /* Footer Section */
.footer {
  padding: 40px 20px 0;
  background: radial-gradient(circle at center, #1E1E1E 0%, #121212 100%);
  color: white;
  font-family: 'Manrope', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertically center */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 140px;
  height: auto;
  display: block;
}

.footer-logo {
  display: flex;
  align-items: center;
  width: 15%; /* consistent with other columns */
}


.footer-column {
  width: 15%;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: bold;
}
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 1em;
  }
  
  .footer-column ul li a:hover {
    color: white;
  }
  
  /* Footer Bottom (Copyright) */
  /* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
}
  
  
  
  /* Font face for Neutral Face */
  @font-face {
    font-family: 'Neutral Face';
    src: url('fonts/NeutralFace.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Neutral Face';
    src: url('fonts/NeutralFaceBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }
  
  /* Responsive adjustments start here */
  /* Mobile Navbar adjustments */
.navbar ul {
  display: flex;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/* Hero section adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 0.9em;
  }
}

/* About Us further adjustments */
@media (max-width: 480px) {
  .about-us-right h2 {
    font-size: 1.4em;
  }

  .about-us-right p {
    font-size: 0.9em;
  }
}

/* Counters section adjustments */
@media (max-width: 480px) {
  .counter h3 {
    font-size: 2em;
  }

  .counter p {
    font-size: 0.9em;
  }
}

/* Portfolio slider tweaks */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .slide-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .slide-info {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .slide-info h3 {
    font-size: 1.5em;
  }

  .slide-info p {
    font-size: 0.9em;
  }
}

/* Accordion tweaks */
@media (max-width: 480px) {
  .accordion-header h3 {
    font-size: 1.2em;
  }

  .accordion-header span {
    font-size: 1.2em;
  }
}

/* Contact section tweaks */
@media (max-width: 480px) {
  .contact-form h2, .contact-info h2 {
    font-size: 1.5em;
  }

  .contact-form input, .contact-form textarea {
    font-size: 0.9em;
  }

  .contact-form button {
    font-size: 0.9em;
  }
}

/* Footer tweaks */
@media (max-width: 480px) {
  .footer-column h3 {
    font-size: 1em;
  }
}
/* Hide desktop menu and quote button on mobile */
@media (max-width: 768px) {
  .navbar ul, .quote-btn {
    display: none;
  }

  .navbar ul.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }

  .navbar ul.active li {
    margin: 0;
  }

  .navbar ul.active li a {
    font-size: 1.5em;
  }

  .quote-btn {
    display: none;
  }
}
.close-btn {
  display: none;
}

.navbar ul.active .close-btn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hero h1 {
  font-size: 2.5em;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.2;
  word-break: normal;
}

.hero p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5em;
  }
  .hero p {
    font-size: 0.9em;
  }
}

