/* ==== Global Reset ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Urbanist', sans-serif;
  background-color: #fff;
  color: #111;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

.main-container{
  display: flex;
}

/* ==== Sidebar Navigation ==== */
/* === Sidebar Defaults === */
.nav-panel {
  width: 100px;
  height: 100vh;
  background: #fff;
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  transition: width 0.3s ease;
  overflow: hidden;
}

/* Expanded Sidebar */
.nav-panel.expanded {
  width: 30vw;
}

/* Hide main nav by default */
.main-nav {
  display: none;
  width: 100%;
  text-align: center;
}

/* Show nav when expanded */
.nav-panel.expanded .main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.main-nav ul {
  list-style: none;
  padding: 0;
}

.main-nav li {
  margin: 1.2rem 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #111;
  font-weight: 500;
}

/* Icons container (hamburger & search) */
.nav-icons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: #111;
  align-items: right;
  margin-top: 1rem;
}

/* Move icons to right side inside sidebar */
.nav-top {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hide hamburger & search on expand */
.nav-panel.expanded .nav-icons {
  display: none;
}

/* Close icon (×) – hidden by default */
.close-btn {
  display: none;
  font-size: 1.5rem;
  color: #111;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav-panel.expanded .close-btn {
  display: block;
}

/* Vertical copyright text */
.nav-panel .copyright-text {
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  font-size: 1rem;
  color: #999;
  margin-bottom: 1rem;
}

/* Main content layout adjustment */
.main-content {
  margin-left: 100px; /* offset by sidebar */
  width: calc(100% - 100px);
  transition: margin-left 0.3s ease, width 0.3s ease;
}

/* When sidebar is expanded */
.nav-panel.expanded ~ .main-content {
  margin-left: 30vw;
  width: calc(100% - 30vw);
}
/* MOBILE SIDEBAR (collapsible) */
@media (max-width: 768px) {
  .nav-panel {
    width: 0;
    padding: 0;
    overflow-x: hidden;
    transition: width 0.3s ease;
  }

  /* Expanded state on mobile */
  .nav-panel.expanded {
    width: 70vw;
    padding: 1rem 0.5rem;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  }

  /* Hide copyright on mobile collapsed */
  .nav-panel .copyright-text {
    display: none;
  }

  /* Hide search icon on mobile */
  .search-icon {
    display: none !important;
  }

  /* Show hamburger top-right when collapsed */
  #menuToggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    color: white; /* white so it shows over dark bg */
    cursor: pointer;
    z-index: 2000;
    display: inline-block;
  }

  /* Adjust nav-icons (no search on mobile) */
  .nav-icons {
    position: absolute;
    top: 1rem;
    right: 1rem;
    flex-direction: row;
    gap: 1rem;
  }
  .nav-icons i {
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* Position menu items vertically */
  .main-nav {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
    transition: all 0.3s ease;
  }

  /* Push content when expanded */
  .nav-panel.expanded ~ .main-content {
    margin-left: 70vw;
  }

  /* Close button styling */
  .close-btn {
    display: block;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  /* Keep logo top-left */
  .hero-carousel .carousel-logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 100px;
    z-index: 2000;
  }

  #mobileHamburger {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 3000;
    font-size: 1.8rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
  }

  /* Hide on desktop */
  @media (min-width: 769px) {
    #mobileHamburger {
      display: none;
    }
  }

}


/* ==== Carousel ==== */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.custom-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.custom-slide.current {
  opacity: 1;
  z-index: 1;
}

.custom-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo inside carousel */
.hero-carousel .carousel-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  width: 120px;
}

.hero-carousel .carousel-logo img {
  width: 100%;
  height: auto;
}

/* Carousel Text Overlay */
.carousel-content {
  position: absolute;
  z-index: 2;
  color: white;
  top: 45%;
  left: 10%;
  max-width: 500px;
}

.carousel-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.carousel-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.carousel-content .hero-btn {
  background-color: #6a0dad;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 30%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.carousel-indicators span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.carousel-indicators .active {
  background-color: white;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 1.5rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel-content {
    left: 5%;
    top: 35%;
  }

  .hero-carousel .carousel-logo {
    width: 100px;
    top: 1rem;
    left: 1rem;
  }
}

/* WHO WE ARE section */
.who-we-are {
  padding: 4rem 2rem;
  background: #fff;
}

.who-we-are .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.who-we-are .text-col {
  flex: 1 1 50%;
}

.who-we-are .text-col h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.who-we-are .text-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #333;
}

.who-we-are .image-col {
  flex: 1 1 30%;
  text-align: center;
}

.who-we-are .image-col img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .who-we-are .content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .who-we-are .text-col,
  .who-we-are .image-col {
    flex: 1 1 100%;
  }

  .who-we-are .text-col h2 {
    font-size: 2rem;
  }

  .who-we-are .text-col p {
    font-size: 1rem;
  }
}

/* Our Work Section */
#work h6 {
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: #a077c7;
  position: relative;
}

#work h6::after,
#work h6::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #a077c7;
  margin: 0 10px;
}

.card.custom-width {
  max-width: 80%;
  margin: 0 auto; /* centers the card within the column */
}

.card.custom-width img{
  width: 100%;
  height: 250px; object-fit: cover;

}

/* AOS required override for smoother */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

.hover-effect img {
  transition: transform 0.3s ease;
}

.hover-effect:hover img {
  transform: scale(1.03);
}

.border-purple {
  border-color: #a077c7 !important;
}

/* Our Team Section */
.team-avatar {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 25px; /* curved edges */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* .team-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 25px;
  background-color: #e0e0e0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.client-logo {
  max-height: 220px;
  width: 300px;
  object-fit: contain;
  margin: 10px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* What we do */
.card ul {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}

.card-title {
  color: #333;
}

.border-purple {
  border-color: #a077c7 !important;
}

/* Contact Section Styles */
.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-section h3,
.contact-section p {
  color: #fff;
}

.contact-section .btn {
  background-color: #6f42c1;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
}

.contact-section .btn:hover {
  background-color: #5a32a3;
}

/* Portfolio */
/* GENERAL NAVBAR STYLE */
.navbar {
  padding: 1rem 0;
  height: 100px;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

/* NAVBAR BRAND LOGO */
.navbar-brand img {
  height: 45px;
  width: auto;
}

/* NAV LINKS STYLE */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #7c3aed; /* Purple hover */
}

.navbar-nav .nav-link.active {
  color: #ffc107 !important;  /* Bootstrap's warning yellow */
  font-weight: 600;
}

/* TOGGLER ICON STYLE */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 0.25rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    position: fixed;
    top: 70px; /* Adjust to the height of your navbar */
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 70px); /* prevent it from overflowing the screen */
    overflow-y: auto;
    z-index: 9999;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.75rem;
  }

  .navbar-nav .nav-link {
    display: block;
    color: #000;
  }

  body.nav-open {
    overflow: hidden;
  }
}

.hero-section {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* Background behind everything */
.hero-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('../images/logos.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

/* Left side image */
.hero-left {
  width: 45%;
  z-index: 2;
  background-color: rgba(111, 14, 190, 0.1);
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  
}

/* Right side text content */
.hero-right {
  width: 55%;
  z-index: 3;
  padding: 2rem;
  position: relative;
  background-color: rgba(111, 14, 190, 0.1);
}

/* Center content */
.hero-content {
  position: relative;
  z-index: 4;
 
} 
.hero-content small {
  position: absolute;
  bottom: 10rem;
  left: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    flex-direction: column;
  }

  .hero-left, .hero-right {
    width: 100%;
    clip-path: none;
  }

  .hero-left img {
    clip-path: none;
    height: auto;
  }

  .hero-right {
    padding: 2rem 1rem;
    text-align: center;
  }
}

.breadcrumb-text {
  font-size: 0.85rem;
  color: #888;
}


.portfolio-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.portfolio-card:hover {
   transform: scale(1.02);
}
.portfolio-card img { 
  height: 250px; object-fit: cover;
}
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
  background-color: #F5F0FA;
}

.process-card {
  background-color: #E9D8FB;
  border-left: 6px solid #7b4fd3;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  flex-direction: row; /* Keep items side-by-side */
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(123, 79, 211, 0.1);
  transition: transform 0.3s ease;
}

.process-card .icon {
  flex-shrink: 0;
  font-size: 24px;
  color: #7b4fd3;
  margin-right: 12px;
}

.process-card:hover {
  transform: translateY(-4px);
}

.process-card.left::before { left: 0; }
.process-card.right::before { right: 0; }

.process-card h5 {
  margin: 0 0 6px;
  font-weight: 600;
  color: #333;
}

.process-card p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  padding: 0 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .process-card {
    flex-direction: column;
    text-align: center;
  }
  .process-card.left::before,
  .process-card.right::before {
    left: calc(50% - 3px);
    right: auto;
  }
}

/* About */
.about-mission-section {
  background-color: #f8f1ff;
  height: auto;
}
.about-mission-section .move{
  margin-top: -10rex;
}
.image-stack {
  position: relative;
  width: max-content;
  margin: 0px 0px 10rem 0; /* align to left */
}

.stack-box {
  width: 280px;
  height: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(141, 110, 219, 0.2);
  overflow: hidden;
  position: absolute;
  transition: transform 0.3s ease;
}

.stack-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* First box (top left) */
.box-top {
  top: 0;
  left: 0;
  z-index: 1;
}

/* Second box (bottom right) */
.box-bottom {
  top: 80px;
  left: 250px;
  z-index: 2;
}


/* Responsive adjustments */
@media (max-width: 767.98px) {
  .about-mission-section {
    background-color: #f8f1ff;
    height: 900px;
}
  .image-stack {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-top: 500px;
    height: 300px;

  }

  .stack-box {
    position: relative;
    width: 70%;
    height: 150px;
    box-shadow: 0 10px 20px rgba(141, 110, 219, 0.15);
    margin-bottom: 1rem;
  }

  .stack-box img {
    width: 100%;
    height: 150px;
  }
  /* First box (top left) */
.box-top {
  top: 15px;
  left: 0;
  z-index: 1;
}

/* Second box (bottom right) */
.box-bottom {
  top: 0;
  left: 150px;
  z-index: 2;
}

  .mission-text {
    text-align: center;
  }
}

/* Contact */
.contact-section {
  background-color: #f8f4fc;
}

.circle-bg {
  width: 280px;
  height: 280px;
  background-color: #e0cfff;
  border-radius: 50%;
  position: relative;
}

.headset-icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
}

.floating-btn {
  position: absolute;
  background-color: #7927c5;
  color: white;
  padding: 13px 25px;
  border-radius: 25px;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  background-color: white;
  color: #7927c5;
  border: 1px solid #7927c5;
}

.top-left {
  top: 20px;
  left: -50px;
}

.top-right {
  top: 50px;
  right: -110px;
}

.bottom-left {
  bottom: 70px;
  left: -40px;
}

.bottom-right {
  bottom: 30px;
  right: -50px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .circle-bg {
    margin-bottom: 2rem;
  }

  .floating-btn {
    position: relative;
    display: block;
    margin: 0.5rem auto;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: auto !important;
  }
}
.coming-soon{
  filter: grayscale(100%);
  opacity: 0.8;
}
.coming-soon:hover{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}