@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #00071a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* background: linear-gradient(90deg, #000000, #4e0000); */
  /* background-color: rgb(0, 57, 200); */
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-content {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  height: 64px;
}

/* Logo Section */

.logo-icon {
  width: 6rem;
  height: 6rem;
  background-size: cover;
  cursor: pointer;
}

/* Desktop Navigation */
.nav-menu {
  display: none;
  align-items: center;
  /* gap: 1rem; */
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 0.25rem; */
  color: #00071a;
  text-decoration: none;
  /* padding: 0.5rem 0.75rem; */
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* CTA Button */
.cta-button {
  display: none;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #000000;
  border-left: 1px solid #374151;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-menu-header .logo-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu-header .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f4f8fe;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00071a;
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #f472b6;
}

.mobile-cta {
  margin-top: 1.5rem;
}

.mobile-cta .cta-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
}

/* Overlay */
.overlay {
  /* position: fixed; */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  /* z-index: 999; */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .cta-button {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }
}
.cta-button i {
  color: #fff;
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

/* Underline Animation */
.nav-item {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding-bottom: 5px;
}

.nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
.nav-item:hover::after {
  width: 100%;
  background-color: rgb(0, 57, 200);
}
/* Animation Ends */
.carousel-container {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.carousel {
  position: relative;
  width: 90%;
  height: 80vh;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.slides {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  flex-shrink: 0;
}

.gradient-1 {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.gradient-2 {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.gradient-3 {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.gradient-4 {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.gradient-5 {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.slide-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.slide-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #fff;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 1.5rem;
}

.next-arrow {
  right: 1.5rem;
}

.indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  width: 16px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.75);
}

.indicator.active {
  background: white;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.progress-fill {
  height: 100%;
  background: white;
  transition: width 0.3s ease-linear;
  width: 20%;
}
/* Services Code start here */
.services {
  padding: 2rem;
  text-align: center;
}
.services h1 {
  /* font-size: 1.1rem; */
  color: #00071a;
  font-weight: 500;
}
.services h2 {
  font-size: 1.8rem;
  margin: 30px;
  font-weight: 700;
}
.slider-bottom {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.slider {
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* transition: transform 0.6s ease-in-out; */
  width: max-content;
}
.service-card {
  position: relative;
  background-color: #f4f8fe;
  color: #00071a;
  padding: 50px 30px;
  margin: 0 10px;
  min-width: 300px;
  max-width: 300px;
  border-radius: 5px;
  text-align: left;

  /* transition: 0.1s ease-in; */
}
.service-card:hover {
  background-color: rgb(0, 57, 200);
  color: #fff;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #00071a;
}

.service-card p {
  font-size: 14px;
  color: #00071a;
}
.service-card:hover p,
.service-card:hover h3 {
  color: #fff;
}
/* contact*/
.get-in {
  position: relative;
}
.contact-us {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.arrow-icon-svg {
  width: 150px;
  height: 150px;
  position: absolute;
  /* filter: invert(1); */
  top: 10%;
  right: 20%;
  rotate: 180deg;
}
input, textarea {
  width: 100%;
  padding: 12px;
  padding-left: 10px;
  border: 1px solid #999;
  border-radius: 6px;
  font-size: 14px;
  background: transparent;
  outline: none;
  color: black;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}


.contact-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  border: 1px solid #00071a;
  /* background-color: #3b89ff; */
  padding: 2vw 1vw;
  border-radius: 10px;
  color: #00071a;
}
.contact-content-title .contact-h2 {
  font-weight: 600;
  color: #00071a;
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-inputs {
  width: 400px;
  height: 50px;
  /* border: none; */
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #00071a;
  border-radius: 5px;
}
.contact-textarea {
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: #00071a;
  padding-top: 10px;
  padding-left: 20px;
}
/* Team Member Page */
.team .team-members {
  background: linear-gradient(90deg, #000000, #4e0000);
  padding: 50px 0;
  margin: 4rem 0;
}
.team-members h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 5rem;
  color: #00071a;
}
.team-container {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  padding: 20px;
}
.team-member {
  /* background: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(10px); */
  color: white;
  /* border: 2px solid rgb(179, 255, 45); */
  background-color: #f4f8fe;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  height: 450px;
}
.team-member img {
  width: 90%;
  border-radius: 50%;
}
.team-member h3 {
  font-weight: 300;
  font-size: 1.5rem;
  margin: 10px 0;
  color: #00071a;
  /* text-transform: uppercase; */
}
.team-member p {
  font-size: 1.2rem;
  color: #00071a;
}
.team-member .add-icons {
  font-size: 2rem;
  color: #00071a;
}
.team-member .social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 10px;
}
.team-member .social-icons i {
  font-size: 2rem;
}
.feel_svg {
  position: absolute;
  /* top: 0; */
  right: 0;
  bottom: 0;
  width: 100%;
  height: 55px;
  filter: invert(1);
  /* color: #b3ff2d; */
}
.team-members svg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 450%);
  /* I want to make it white */
}
.btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 8px;
  border-radius: 5px;
  border: none;
}

/* Button of Contact Page */
.submit-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #00071a;
  font-size: 1.2rem;
  padding: 0.7vw 2vw;
  border: 2px solid #007bff;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
}

.arrow-contact {
  display: inline-block;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
@keyframes wiggle {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(5px) rotate(10deg);
  }
  50% {
    transform: translateX(0) rotate(-10deg);
  }
  75% {
    transform: translateX(5px) rotate(10deg);
  }
}
.submit-button:hover {
  background-color: #0039c8;
  color: #fff;
}
.submit-button:hover .arrow-contact {
  filter: invert(1);
  animation: wiggle 1s infinite;
}
/* Code Ends */

.arrow-icon {
  position: absolute;
  top: 15%;
  right: 120%;
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  border-radius: 9999px;
  border: 1px solid #374151; /* gray-700 */
  transform: rotate(45deg);
  transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  background-color: transparent;
}

.arrow-icon path {
  fill: #1f2937; /* gray-800 */
  transition: fill 0.3s ease;
}

/* why work with us  */
.section-work-container-main {
  /* display: flex; */
  /* justify-content: center; */
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.main-circle-container {
  /* width: 100%; */
  padding: 0 40px;
}
.top-circle-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.top-circle-container .circle-work-container {
  background-color: #f4f8fe;
  height: 200px;
  width: 200px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mid-circle-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.mid-circle-container .circle-work-container {
  background-color: #f4f8fe;
  height: 200px;
  width: 200px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bottom-circle-container {
  display: flex;
}
.bottom-circle-container .circle-work-container {
  background-color: #f4f8fe;
  /* background-color: rgba(255, 255, 255, 0.1); */
  height: 200px;
  width: 200px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.circle-work-container h3 {
  text-transform: capitalize;
  color: #00071a;
}
/* technology-we-work-with */
.technology-we-work-with {
  text-align: center;
}
.technology-we-work-with h1 {
  font-weight: 900;
  margin-bottom: 2rem;
}
.technology-we-work-with .tech-button {
  display: flex;
  justify-content: space-evenly;
}
.technology-we-work-with .tech-button a {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.head-container-circle {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-evenly;
  align-items: center;
  padding-right: 20px;
}
.head-container-circle .circle-container-right-img img {
  height: 400px;
  transform: scalex(-1);
}
.circle-work-container img {
  height: 50px;
}
/* Technology Page Styling */

.techno-main {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.techno-h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.tab.active,
.tab:hover {
  background-color: #0039c8;
  color: #fff;
}

.content {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.content.active {
  display: flex;
}

.apple {
  filter: invert(1);
}

.tech {
  text-align: center;
  font-size: 14px;
  padding: 1.5vw 1.5vw 3.5vw 1.5vw;
  width: 9vw;
  height: 9vw;
  color: #00071a;
}

.tech:hover {
  border-radius: 5px;
  box-shadow: 0 0 10px 5px #ffffff70;
}

.tech img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}
/* footer start */
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 80px;
  /* color: #fff; */
  border-top: 1px solid #c5b9b9;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.footer-logo span img {
  height: 30px;
}

.footer-logo span {
  color: #00071a;
  margin-right: 8px;
  display: flex;
  gap: 0.6vw;
  align-items: center;
}

.footer-desc {
  margin: 20px 0;
  font-size: 15px;
  max-width: 280px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 1px;
  color: #00071a;
}

.footer-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-icons i {
  font-size: 1.5rem;
  cursor: pointer;
  color: #00071a;
}

.footer-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links a {
  text-decoration: none;
  text-transform: capitalize;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.footer-contact i {
  font-size: 1.5rem;
  color: #00071a;
}
.footer-contact li a {
  color: #00071a;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #00071a;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 3px;
  filter: brightness(0) invert(1);
}

.footer-contact address {
  font-style: normal;
  line-height: 1.4;
}
/* 
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 40px;
  }
} */
