/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Navbar */
/* Base Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #121212;
  position: fixed; /* Ensures it stays at the top */
  top: 0;
  width: 100%; /* Full-width navbar */
  z-index: 10; /* Keeps navbar above other elements */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Logo */
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

/* Navigation Links (Desktop) */
.navbar .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar .nav-links li {
  display: inline;
}

.navbar .nav-links a {
  color: #fff;
  padding: 8px 12px;
  font-size: 0.9rem;
  transition: color 0.3s;
  text-decoration: none;
}

.navbar .nav-links a:hover {
  color: #f04a00;
}

/* Hamburger Menu (Mobile) */
.hamburger-menu {
  display: none; /* Hidden on larger screens */
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Hide nav links by default */
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px; /* Below the navbar */
      right: 0;
      background: #121212;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Show nav links when active */
  .nav-links.active {
      display: flex;
  }

  /* Show hamburger menu */
  .hamburger-menu {
      display: block;
  }

  /* Links for mobile */
  .nav-links a {
      padding: 10px 0;
      font-size: 1rem;
  }
}


/* Quote Button */
.btn-quote {
    background: transparent;
    border: 2px solid #f04a00;
    color: #f04a00;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
}

.btn-quote:hover {
    background: #f04a00;
    color: #fff;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden on larger screens */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-menu span {
    background-color: #fff;
    height: 3px;
    width: 25px;
    transition: transform 0.3s;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }

    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Position dropdown below navbar */
        right: 20px;
        background: #121212;
        width: 200px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        text-align: center;
        border-radius: 10px;
        padding: 0;
    }

    .nav-links.active {
        display: flex; /* Show links when menu is toggled */
    }

    .nav-links a {
        padding: 10px;
        font-size: 1rem;
    }

    .btn-quote {
        display: none; /* Hide quote button on smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.2rem; /* Slightly smaller logo on very small screens */
    }

    .hamburger-menu span {
        width: 20px; /* Adjust hamburger size */
    }
}


/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #1a1a1a, #000);
    height: 100vh;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #f04a00;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #d4d4d4;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #121212;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    color: #fff;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #f04a00;
}

/* What We Are Section */
.what-we-are {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 50px;
    background-color: #1a1a1a;
}

.what-we-are .content {
    max-width: 500px;
}

.what-we-are h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.what-we-are h2 span {
    color: #f04a00;
}

.what-we-are p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 30px;
}

.what-we-are .btn-more {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #f04a00;
    color: #f04a00;
    font-weight: bold;
    border-radius: 20px;
    transition: 0.3s;
}

.what-we-are .btn-more:hover {
    background: #f04a00;
    color: #fff;
}

.what-we-are .image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    background-color: #f04a00;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.stat-number[data-number]:before {
    content: attr(data-number);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-label {
    color: #d4d4d4;
    font-size: 1rem;
    font-weight: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-are {
        flex-direction: column;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 2rem;
        width: 80px;
        height: 80px;
    }
}

  
  /* Card Container */
  .cards {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap to the next line */
    gap: 20px; /* Uniform spacing between cards */
    justify-content: center; /* Center-align cards */
  }
  
  .card {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 calc(25% - 20px); /* Each card takes up 25% of the row minus the gap */
    max-width: 300px; /* Ensures cards don’t get too large on larger screens */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
  }
  
  .read-more {
    color: red;
    font-weight: bold;
  }
  
  /* View More Section */
  .view-more {
    text-align: center;
    margin-top: 20px;
  }
  
  .view-more a {
    color: red;
    font-weight: bold;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .card {
      flex: 1 1 calc(33.33% - 20px); /* Adjust to 3 cards per row */
    }
  }
  
  @media screen and (max-width: 768px) {
    .card {
      flex: 1 1 calc(50% - 20px); /* Adjust to 2 cards per row */
    }
  }
  
  @media screen and (max-width: 480px) {
    .card {
      flex: 1 1 calc(100% - 20px); /* Full width for single column layout */
    }
  }
  
/* Partner Section */
.partners-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
  }
  
  .section-title {
    font-size: 2.5rem; /* Increased font size */
    font-weight: 700;  /* Made the text bold */
    margin-bottom: 20px;
    color: #fff;       /* Bright white for better contrast */
  }
  
  .highlight {
    color: red;        /* Keeps the highlighted part red */
  }
  
  .partners-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .partner-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    width: 140px; /* Slightly larger size for balance */
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 50px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  
  .partner-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
  }
  
  .partner-card img {
    max-width: 70%;
    max-height: 70%;
    z-index: 1;
  }
  
  .partner-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    z-index: 0;
    transition: opacity 0.3s;
  }
  
  .partner-card:hover::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  }
/*  Companies Worked With Section */
/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
}

/* Section Styling */
.testimonial-section {
    padding: 50px 20px;
    background-color: #000;
}

.testimonial-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.testimonial-section h2 span {
    color: #ff4500;
}

/* Carousel Container */
.testimonial-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
    gap: 20px;
}

/* Individual Testimonial Styling */
.testimonial-item {
    background: #1c1c1c;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

.testimonial-text {
    font-size: 1em;
    margin-bottom: 15px;
    font-style: italic;
    color: #eaeaea;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #ff4500;
}

.testimonial-author h4 {
    font-size: 1.2em;
    margin: 0;
    color: #fff;
}

.testimonial-author p {
    font-size: 0.9em;
    margin: 0;
    color: #bbb;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff4500;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.prev:hover, .next:hover {
    background: #e63e00;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .testimonial-item {
        max-width: 250px;
    }

    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
}


/*  What Client Say About Us Section */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section h2 span {
  color: #f04a00;
}

section p {
  margin: 20px 0;
  font-size: 1rem;
  color: #d4d4d4;
}

a {
  text-decoration: none;
}

/* Companies Worked With */
.companies-worked .companies-logos,
.technologies-worked .tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.companies-worked img,
.technologies-worked img {
  max-width: 100px;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.companies-worked img:hover,
.technologies-worked img:hover {
  transform: scale(1.1);
}

/* Technologies Worked */
.technologies-worked .tech-logos img {
  width: 80px;
}

/* Styling for the combined section */
.project-and-connect {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 20px;
  background-color: #1a1a1a;
  color: #fff;
}

/* Project Journey Section */
.project-journey {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.project-journey h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.project-journey h2 span {
  color: #f04a00;
}

.project-journey p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #d4d4d4;
}

.project-journey .btn-connect {
  display: inline-block;
  padding: 12px 25px;
  background: #f04a00;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.project-journey .btn-connect:hover {
  background: #d83900;
}
/* Submit project requirements Section */

#rfp-section {
  padding: 50px 20px;
  background-color: #1A1A1A; /* Dark background */
  color: #ffffff; /* White text for contrast */
  font-family: Arial, sans-serif;
  text-align: center;
}

#rfp-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #FF4C4C; /* Light red for the heading */
}

#rfp-section p {
  font-size: 1rem;
  color: #cccccc; /* Softer white for the description */
  margin-bottom: 30px;
}

/* Form Styles */
#rfp-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #333333; /* Dark gray form background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff; /* White labels */
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #666666; /* Gray borders for inputs */
  border-radius: 5px;
  font-size: 1rem;
  color: #ffffff; /* White text inside fields */
  background-color: #262626; /* Darker input background */
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #FF4C4C; /* Red border on focus */
  outline: none;
  box-shadow: 0 0 5px rgba(255, 76, 76, 0.5);
}

.form-group small {
  display: block;
  font-size: 0.8rem;
  color: #cccccc; /* Softer text for hints */
  margin-top: 5px;
}
/* Tech Options Container */
.tech-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
  justify-content: center; /* Center align the options */
}

/* Individual Tech Option (Radio Styled as Card) */
.tech-option {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #262626; /* Card background */
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #444;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  position: relative; /* Required for the radio button to be styled inside */
}

/* Hover Effect */
.tech-option:hover {
  background-color: #FF4C4C;
  color: #ffffff;
  transform: scale(1.05);
}

/* Hidden Radio Button */
.tech-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Selected State */
.tech-option input:checked + span {
  background-color: #FF4C4C;
  border-color: #e63e3e;
  color: #ffffff;
  font-weight: bold;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 76, 76, 0.8);
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
}

/* Span Styling for Text Inside Cards */
.tech-option span {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}


/* Submit Button */
.btn-submit {
  display: inline-block;
  background-color: #FF4C4C; /* Red submit button */
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background-color: #e64545; /* Slightly darker red on hover */
  transform: scale(1.05); /* Button "pop" effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  #rfp-form {
    padding: 20px;
  }

  #rfp-section h2 {
    font-size: 2rem;
  }

  .btn-submit {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}


/* Connect Now Section */
.connect-now {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.connect-now h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.connect-now h2 span {
  color: #f04a00;
}

.connect-now .social-media-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.connect-now .social-media-buttons button {
  background: transparent;
  color: #f04a00;
  border: 2px solid #f04a00;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.connect-now .social-media-buttons button:hover {
  background: #f04a00;
  color: #fff;
}

.connect-now p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d4d4d4;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .project-and-connect {
    flex-direction: column;
  }

  .project-journey,
  .connect-now {
    text-align: center;
  }

  .connect-now .social-media-buttons {
    justify-content: center;
  }
}

/* Business Growth */
.business-growth .btn-ebook {
  display: inline-block;
  padding: 12px 25px;
  background: #f04a00;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.business-growth .btn-ebook:hover {
  background: #d83900;
}

/* Responsive Design */
@media (max-width: 768px) {
  .companies-worked .companies-logos,
  .technologies-worked .tech-logos {
      flex-direction: column;
      align-items: center;
  }

  .connect-now .social-media-buttons {
      flex-direction: column;
  }
}
}




/* Footer */
/* styles.css */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo {
    width: 150px;
    margin-bottom: 10px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .footer-section ul li a:hover {
    color: red;
  }
  
  .social-icons a {
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .social-icons a:hover {
    color: red;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  
  .footer-bottom span {
    color: red;
  }
  

  .hero-content.animate {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

