* {
  box-sizing: border-box;
  
}



html, body {
    overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 10px; /* your header height */
}

body {
    font-family: 'Poppins', sans-serif;
  
}
/* Initial hidden state */
/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(60px); /* larger movement */
  transition: all 1.4s cubic-bezier(0.22, 0.61, 0.36, 1); /* slower + smoother */
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}








/* ---------- CASE STUDY ---------- */

.case-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: #060a1a;
    color: #fff;
    gap: 50px;
     background: 
    radial-gradient(circle at 15% 47%, rgba(68,113,245,0.2), transparent 27%),
    radial-gradient(circle at 80% 60%, rgba(68,113,245,0.15), transparent 25%),
    #060a1a;
}

/* Left Content */
.case-hero-content h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 30px;
}

.case-btn {
    padding: 10px 25px;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    transition: .3s;
}

.case-btn:hover {
    background: #1d4ed8;
}

/* Right Image Slider */
.case-hero-image {
    position: relative;
    width: 80%;
    
}

/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.4);
    
}


/* Slides Wrapper */
.slides {
    display: flex;
    transition: transform 0.5s ease;
    
   
}

/* Each Slide Image */
.slides img {
    width: 100%;
  
}

/* Dots */
.slider-dots {
    margin-top: 12px;
    text-align: center;
}

.slider-dots .dot {
    height: 10px;
    width: 10px;
    background: #777;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media(max-width: 900px){
    .case-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 8%;
    }

    .case-hero-image,
    .case-hero-content {
        width: 100%;
    }
}
.slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
}

/* Content inside overlay */
.slider .overlay .overlay-content {
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(10px);
  transition: .4s ease;
  z-index: 1000;
}

/* Circle icon */
.slider .overlay .overlay-content .circle {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #000;
  margin: 0 auto 8px;
  font-weight: bold;
  cursor: pointer;
}

.slider .overlay.overlay-content p {
  font-size: 14px;
  font-weight: 600;
}

 
.slider:hover .overlay {
  opacity: 1;
}


.slider:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}
/* ---------- FULLSCREEN GALLERY MODAL ---------- */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
}

/* Close button */
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

/* Modal inner content */
.modal-content {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
}

.modal-slide {
    display: none;
    text-align: center;
}

.modal-slide img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    padding: 15px;
    border-radius: 4px;
    user-select: none;
    transform: translateY(-50%);
}

.prev { left: 0; }
.next { right: 0; }

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.1);
}

/* ---------- PROJECT OVERVIEW ---------- */

.project-overview {
    padding: 80px 8%;
    background: #060a1a;
    color: #fff;
}

.po-container {
    max-width: 1300px;
    margin: auto;
}

.po-title {
    font-size: 36px;
    color: #3B82F6;
    margin-bottom: 28px;
    font-weight: 600;
}

.po-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #c7c7c7;
    max-width: 1200px;
    margin-bottom: 50px;
}

/* Details Row */
.po-details {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.po-detail-item {
    font-size: 16px;
    color: #e5e5e5;
}

.po-detail-item span {
    font-weight: 600;
    color: #ffffff;
}

/* Services */
.po-services {
    font-size: 16px;
    color: #e5e5e5;
}

.po-services span {
    font-weight: 600;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .po-title {
        font-size: 28px;
    }
    .po-desc {
        font-size: 16px;
    }
    .po-details {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .po-services {
       
        font-size: 16px;
    }
}
/* ---------- CLIENT NEED SECTION ---------- */

.client-need {
    padding: 80px 10%;
    text-align: center;
    background: #060a1a; /* same background as your case page */
    color: #d1d5db; /* soft light gray */
    
}

.client-need h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #ffffff;
}

.client-need p {
    max-width: 1100px;
    margin: 0 auto 20px auto;
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
}

/* Responsive */
@media (max-width: 900px) {
    .client-need {
        padding: 60px 6%;
    }

    .client-need h2 {
        font-size: 28px;
    }

    .client-need p {
        font-size: 16px;
    }
}
/* Solution Section */
.solution-section {
  background: #060a1a;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* Container */
.solution-container {
  background: #060a1a;
  max-width: 920px;
  text-align: center;
}

/* Title */
.solution-title {
  color: #4d7dff; /* matching the blue color from screenshot */
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* Paragraph Text */
.solution-text {
  color: #d0d0d5; /* soft light grey */
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .solution-title {
    font-size: 32px;
  }

  .solution-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .solution-title {
    font-size: 28px;
  }

  .solution-text {
    font-size: 16px;
  }
}
.tech-section {
    background-color: #060a1a;
    padding: 80px 150px;
    text-align: center;
    color: white;
    
  }

  .tech-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
  }

  .swiper {
    width: 100%;
    padding-bottom: 40px;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    padding: 10px;
  }

  .tech-icon {
    font-size: 50px;
    transition: 0.3s ease;
  }

  

  .swiper-pagination-bullet {
    background: #666 !important;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: white !important;
  }
  /* Image-based tech icons */
.tech-img {
  width: 60px;              /* SAME visual size as devicon */
  height: auto;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}

/* Hover effect – same as icon 
.tech-img:hover {
  transform: scale(1.15);
}
.swiper-slide:hover {
  transform: scale(1.15);
}*/
/* Tooltip base */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}

/* Tooltip text */
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Show tooltip on hover */
[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Responsive sync with icons */
@media (max-width: 900px) {
  .tech-img {
    width: 45px;
  }
}

  @media (max-width: 900px) {
 .tech-section {
    padding: 60px 50px;
  }
  .tech-title {
    font-size: 30px;
  }

}
/* ===== UNIFIED TECH HOVER SCALE ===== */

.swiper-slide {
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.15);
}

/* Ensure icons & images scale nicely */
.tech-icon,
.tech-img {
  transition: transform 0.3s ease;
}

/* Section Background */
.results-section {
    background-color: #060a1a;
  padding: 80px 8%;
  width: 100%;
}

/* Content Container */
.results-container {
  max-width: 1200px;
  margin: auto;
  line-height: 1.7;
}

/* Title */
.results-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.results-text {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .results-title {
    font-size: 32px;
  }

  .results-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .results-title {
    font-size: 28px;
  }

  .results-text {
    font-size: 16px;
  }
}
