 :root {
      --primary: #000000;
      --secondary: #111111;
      --accent: #28A0B8;
      --accent-alt: #03c5ec;
      --text: #ffffff;
      --text-secondary: #cccccc;
      --arch_blue: #28A0B8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: var(--primary);
      color: var(--text);
      font-family: "Poppins", sans-serif;
      overflow-x: hidden;
      
    }

/* For Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

    .portfolio-scroller::-webkit-scrollbar {
  display: none;
}

.portfolio-scroller {
  scrollbar-width: none;
  -ms-overflow-style: none;
}


    /* Centered Portfolio Intro Section */
    .portfolio-section {
      position: relative;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 10%;
      overflow: hidden;
    }

    .portfolio-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/portfoliopage3.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -2;
      opacity: 0.8;
    }

    .portfolio-section::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
      z-index: -1;
    }

    .portfolio-text {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .portfolio-text h1 {
      font-size: 5.0rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--text);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.2;
    }

    .portfolio-text p {
      font-size: 1.9rem;
      margin-bottom: 30px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .portfolio-text a.btn {
      background: var(--arch_blue);
      color: #fff;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(40, 160, 184, 0.3);
      font-size: 1.1rem;
    }

    .portfolio-text a.btn:hover {
      background: var(--accent-alt);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(3, 197, 236, 0.4);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .portfolio-text h1 {
        font-size: 2.5rem;
      }
      
      .portfolio-text p {
        font-size: 1.1rem;
      }
      
      .portfolio-text a.btn {
        padding: 12px 30px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .portfolio-text h1 {
        font-size: 2rem;
      }
      
      .portfolio-text p {
        font-size: 1rem;
      }
      
      .portfolio-text a.btn {
        padding: 10px 25px;
        font-size: 0.9rem;
      }
    }



    

    /* Portfolio Showcase Section */
.portfolio-showcase {
  padding: 100px 10%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 60px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 0 auto;
}

.portfolio-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  height: 350px;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  padding: 30px;
  transform: translateY(100px);
  transition: all 0.3s ease;
  opacity: 0;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.portfolio-category {
  display: inline-block;
  background: rgba(40, 160, 184, 0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.portfolio-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}

.view-details {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.view-details:hover {
  color: var(--accent-alt);
}

.view-details i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-details:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-showcase {
    padding: 60px 5%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .portfolio-card {
    height: 300px;
  }
  
  .portfolio-overlay {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}



.portfolio-showcase {
  position: relative;
  padding: 100px 10%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/ai\ projects.jpg'); /* Change this image URL if you want */
  z-index: 1;
  overflow: hidden;
}

/* Optional: dark overlay to improve readability */
.portfolio-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.portfolio-showcase > * {
  position: relative;
  z-index: 1;
}







/* Portfolio Container */
.portfolio-container {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  padding-top: 80px;
  background: var(--primary);
}

/* Video Background */
.portfolio-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.portfolio-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.3;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Animated Background Elements */
.portfolio-bg-text {
  position: absolute;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(40, 160, 184, 0.03);
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  z-index: 0;
}

.portfolio-bg-text.layer1 {
  top: 10%;
  left: -100%;
  animation: floatPortfolioText 25s linear infinite;
}

.portfolio-bg-text.layer2 {
  top: 40%;
  left: -100%;
  animation: floatPortfolioText 30s linear infinite 5s;
  font-size: 6rem;
}

.portfolio-bg-text.layer3 {
  top: 70%;
  left: -100%;
  animation: floatPortfolioText 35s linear infinite 10s;
  font-size: 7rem;
}

@keyframes floatPortfolioText {
  0% {
    transform: translateX(-100%) rotate(-5deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw) rotate(5deg);
    opacity: 0;
  }
}

/* Filter Controls */
.portfolio-filters {
  /* position: fixed; */
  top: 100px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 100;
  padding: 55px 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--text);
}

/* Portfolio Scroller */
.portfolio-scroller {
  display: flex;
  align-items: center;
  padding: 0 10%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  scroll-snap-type: x mandatory;
}

.portfolio-item {
  min-width: 420px;
  height: 550px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  margin: 0 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
}

.portfolio-item:hover {
  transform: translateY(-15px);
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  position: relative;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  padding: 30px;
  transform: translateY(100px);
  transition: all 0.3s ease;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.portfolio-category {
  display: inline-block;
  background: rgba(40, 160, 184, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.portfolio-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

.portfolio-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.portfolio-link:hover {
  color: var(--accent-alt);
}

.portfolio-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.portfolio-link:hover i {
  transform: translateX(5px);
}

/* Portfolio Modal */
.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  background: var(--secondary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.portfolio-modal.active .modal-content {
  transform: scale(1);
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

.modal-info {
  padding: 20px;
  background: var(--secondary);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text);
}

.modal-description {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.modal-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-tag {
  background: rgba(40, 160, 184, 0.2);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.modal-links {
  display: flex;
  gap: 15px;
}

.modal-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.modal-link:hover {
  background: var(--accent-alt);
  transform: translateY(-2px);
}

.modal-link i {
  margin-right: 8px;
}

/* Position Indicator */
.position-indicator {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.position-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.position-dot.active {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(40, 160, 184, 0.8);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .portfolio-container {
    padding-top: 160px;
    height: 100vh;
  }

  .portfolio-filters {
    top: 70px;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-btn {
    padding: 5px 12px;
    font-size: 10px;
  }

  .portfolio-bg-text {
    font-size: 4rem;
  }

  .portfolio-bg-text.layer2 {
    font-size: 3rem;
  }

  .portfolio-bg-text.layer3 {
    font-size: 3.5rem;
  }

  .portfolio-scroller {
    padding: 0 20px;
    gap: 20px;
  }

  .portfolio-item {
    min-width: 280px;
    max-width: 280px;
    height: 400px;
    margin: 0 10px;
  }

  .portfolio-overlay {
    padding: 20px;
  }

  .portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .portfolio-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .portfolio-category {
    font-size: 11px;
    padding: 4px 12px;
  }

  .position-indicator {
    bottom: 20px;
    gap: 8px;
  }

  .position-dot {
    width: 8px;
    height: 8px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }

  .modal-info {
    padding: 15px;
  }

  .modal-title {
    font-size: 18px;
  }

  .modal-description {
    font-size: 14px;
  }

  .modal-links {
    flex-direction: column;
    gap: 10px;
  }

  .modal-link {
    padding: 8px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .portfolio-bg-text {
    font-size: 3rem;
  }

  .portfolio-bg-text.layer2 {
    font-size: 2.5rem;
  }

  .portfolio-bg-text.layer3 {
    font-size: 2rem;
  }

  .portfolio-item {
    min-width: 250px;
    max-width: 250px;
    height: 350px;
  }
}


/* Testimonial Section Styling */
.testimonial-section {
  background-color: #f9f9f9;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.testimonial-section .section-title {
  font-size: 2.5rem;
  color: #00bfe7;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  transition: all 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/* Enhanced Testimonials Section */
.client-testimonials {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(40, 160, 184, 0.2);
  border-bottom: 1px solid rgba(40, 160, 184, 0.2);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.testimonials-header::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
  margin: 1.5rem auto 0;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.testimonials-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 300;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.testimonial {
  display: none;
  animation: fadeIn 0.8s ease-out;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(40, 160, 184, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #28A0B8, #03c5ec);
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.quote-icon {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 5rem;
  color: rgba(40, 160, 184, 0.1);
  z-index: 0;
}

.testimonial-quote {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(40, 160, 184, 0.5);
  transition: transform 0.3s ease;
}

.testimonial:hover .author-avatar {
  transform: scale(1.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.author-role {
  color: rgba(204, 204, 204, 0.8);
  font-size: 1rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #28A0B8, #03c5ec);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dot.active {
  transform: scale(1.3);
}

.dot.active::after {
  opacity: 1;
}

/* Enhanced Partners Section */
.partners-showcase {
  padding: 8rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
              url('images/ourpartner1.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(40, 160, 184, 0.2);
  border-bottom: 1px solid rgba(40, 160, 184, 0.2);
}

.partners-wrapper {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.0rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.0rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 300;
}

.section-header::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
  margin: 2rem auto 0;
}

.partners-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
  animation: scroll 40s linear infinite;
  will-change: transform;
  width: calc(250px * 12);
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 180px;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(40, 160, 184, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.partner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
}

.partner-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: rgba(30, 30, 30, 0.8);
}

.partner-item img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
}

.partner-item span {
  font-size: 4.0rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-220px * 6)); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .testimonials-title, .section-header h2 {
    font-size: 3.5rem;
  }
  
  .testimonials-subtitle, .section-header p {
    font-size: 1.8rem;
  }
  
  .partner-item {
    min-width: 200px;
    height: 160px;
  }
}

@media (max-width: 992px) {
  .client-testimonials, .partners-showcase {
    padding: 6rem 2rem;
  }
  
  .testimonial {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-title, .section-header h2 {
    font-size: 2.8rem;
  }
  
  .testimonials-subtitle, .section-header p {
    font-size: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
  }
  
  .partner-item {
    min-width: 180px;
    height: 150px;
    padding: 1.5rem;
  }
  
  .partner-item img {
    max-height: 60px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .testimonials-title, .section-header h2 {
    font-size: 2.2rem;
  }
  
  .testimonials-subtitle, .section-header p {
    font-size: 1.2rem;
  }
  
  .testimonial {
    padding: 1.5rem;
  }
  
  .partner-item {
    min-width: 160px;
    height: 140px;
    padding: 1rem;
  }
  
  .partner-item span {
    font-size: 0.9rem;
  }
}


/* Enhanced Partners Section */
.partners-showcase {
  padding: 8rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
              url('../images/our\ partner.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.partners-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
  animation: scroll 30s linear infinite;
  will-change: transform;
  width: calc(250px * 12);
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 180px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.partner-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.logo-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.logo-container img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.partner-item:hover .logo-container img {
  transform: scale(1.1);
}

/* Maintain original logo colors by removing the invert filter */
.amazon img { filter: none; }
.microsoft img { filter: none; }
.ibm img { filter: none; }
.laravel img { filter: none; }
.react img { filter: none; }
.tailwind img { filter: none; }

.partner-item span {
  font-size: 1.0rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-220px * 6)); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .section-header h2 {
    font-size: 3.5rem;
  }
  
  .section-header p {
    font-size: 1.8rem;
  }
  
  .partner-item {
    min-width: 200px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .partners-showcase {
    padding: 6rem 0;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .section-header p {
    font-size: 1.5rem;
  }
  
  .partner-item {
    min-width: 180px;
    height: 150px;
    padding: 1.5rem;
  }
  
  .logo-container img {
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .section-header p {
    font-size: 1.2rem;
  }
  
  .partner-item {
    min-width: 160px;
    height: 140px;
    padding: 1rem;
  }
  
  .partner-item span {
    font-size: 0.9rem;
  }
}



/* Portfolio Showcase Heading Styles */
.portfolio-showcase {
  text-align: center; /* This ensures all child elements inherit center alignment */
}

.section-title {
  font-size: 4.5rem;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 auto 1.5rem; /* Centering with auto margins */
  font-weight: 700;
  display: block; /* Ensure it takes full width */
  width: 100%;
  text-align: center; /* Explicit center alignment */
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
  text-align: center;
  font-weight: 300;
  display: block; /* Ensure it takes full width */
  width: 100%;
}

/* Add decorative line */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* This ensures everything centers properly */
}

.section-header::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
  margin: 1.5rem auto 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .section-title {
    font-size: 3.5rem;
  }
  
  .section-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}



.filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(40, 160, 184, 0.2);
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  transition: width 0.4s ease;
  z-index: -1;
}

.filter-btn:hover::before {
  width: 100%;
}

.filter-btn:hover, .filter-btn.active {
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 160, 184, 0.4);
  border-color: transparent;
}

.filter-btn.active::before {
  width: 100%;
}

.filter-btn.active {
  color: var(--text);
  border-color: transparent;
}







/* Enhanced Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

/* Pricing Categories - Matching Filter Buttons */
.pricing-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.pricing-categories .category {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(40, 160, 184, 0.2);
}

.pricing-categories .category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  transition: width 0.4s ease;
  z-index: -1;
}

.pricing-categories .category:hover::before {
  width: 100%;
}

.pricing-categories .category:hover, 
.pricing-categories .category.active {
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 160, 184, 0.4);
  border-color: transparent;
}

.pricing-categories .category.active::before {
  width: 100%;
}

.pricing-categories .category.active {
  color: var(--text);
  border-color: transparent;
}

/* Pricing Container and Navigation */
.pricing-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.swipe-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(40, 160, 184, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -50px;
}

.swipe-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.swipe-left {
  left: 0;
}

.swipe-right {
  right: 0;
}

/* Pricing Plans and Cards */
.pricing-plans {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-plans::-webkit-scrollbar {
  display: none;
}

.pricing-card {
  flex: 0 0 calc(33.333% - 20px);
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(40, 160, 184, 0.2);
  scroll-snap-align: start;
  min-width: 300px;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 1px solid var(--accent);
  box-shadow: 0 15px 40px rgba(40, 160, 184, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 160, 184, 0.4);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
}

/* Card Content */
.plan-title {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 5px;
  font-weight: 600;
}

.plan-name {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #28A0B8, #03c5ec);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  color: #ccc;
  padding: 8px 0;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}

.plan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
}

.plan-actions {
  display: flex;
  gap: 10px;
}

.order-btn, .contact-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.order-btn {
  background: var(--accent);
  color: #fff;
}

.order-btn:hover {
  background: var(--accent-alt);
  transform: translateY(-3px);
}

.contact-btn {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.contact-btn:hover {
  background: rgba(40, 160, 184, 0.1);
}

/* Pagination Dots */
.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .pricing-header h2 {
    font-size: 3.5rem;
  }
  
  .pricing-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .pricing-header h2 {
    font-size: 2.8rem;
  }
  
  .pricing-categories .category {
    padding: 10px 20px;
    font-size: 11px;
  }
  
  .pricing-container {
    padding: 0 30px;
  }
  
  .swipe-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .pricing-header h2 {
    font-size: 2.2rem;
  }
  
  .pricing-card {
    flex: 0 0 100%;
  }
  
  .plan-price {
    font-size: 30px;
  }
  
  .pricing-container {
    padding: 0 20px;
  }
  
  .swipe-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin: 0 -15px;
  }
  
  .pricing-categories .category {
    padding: 8px 16px;
    font-size: 10px;
  }
}



/* Intro Section - Black Theme */
.intro-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/portfolio.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.8;
}

.intro-text, .intro-image {
  position: relative;
  z-index: 1;
}

.intro-text h1 {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.intro-text a.btn {
  background: var(--arch_blue);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(40, 160, 184, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.intro-text a.btn:hover {
  background: var(--accent-alt);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 197, 236, 0.4);
}

.intro-image img {
  max-height: 80vh;
  width: 65vh;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease-out 0.6s forwards;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Pulse animation for ongoing attention */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Add pulse animation to button after initial load */
.intro-text a.btn {
  animation: fadeInUp 1s ease-out 0.9s forwards, 
             pulse 2s ease-in-out 2s infinite;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
    padding: 180px 20px 0px 20px;
    text-align: center;
    gap: 30px;
  }

  .intro-section::before {
    background-attachment: scroll;
  }

  .intro-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .intro-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .intro-image img {
    max-height: 50vh;
    width: 100%;
    object-fit: contain;
  }
  
  /* Adjust animation timing for mobile */
  .intro-text h1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
  }
  .intro-text p {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    font-size: 1.4rem;
  }
  .intro-text a.btn {
    animation: fadeInUp 0.8s ease-out 0.6s forwards, 
               pulse 2s ease-in-out 1.5s infinite;
  }
  .intro-image img {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    padding: 0px 0px 180px 0px;

  }
}

@media (max-width: 480px) {
  .intro-text h1 {
    font-size: 2.2rem;
  }
}



/* Animation styles added inline as requested */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    /* Specific animation delays */
    .intro-text.animate-on-scroll {
      transition-delay: 0.3s;
    }

    .intro-image.animate-on-scroll {
      transition-delay: 0.6s;
    }

    .portfolio-showcase .section-header.animate-on-scroll {
      transition-delay: 0.2s;
    }

    .portfolio-showcase .portfolio-grid.animate-on-scroll {
      transition-delay: 0.4s;
    }

    .partners-showcase .section-header.animate-on-scroll {
      transition-delay: 0.2s;
    }

    .partners-showcase .partners-container.animate-on-scroll {
      transition-delay: 0.4s;
    }

    .pricing-section .pricing-header.animate-on-scroll {
      transition-delay: 0.2s;
    }

    .pricing-section .pricing-categories.animate-on-scroll {
      transition-delay: 0.3s;
    }

    .pricing-section .pricing-container.animate-on-scroll {
      transition-delay: 0.4s;
    }

    .portfolio-container .portfolio-filters.animate-on-scroll {
      transition-delay: 0.2s;
    }

    .portfolio-container .portfolio-scroller.animate-on-scroll {
      transition-delay: 0.4s;
    }

    .client-testimonials .testimonials-header.animate-on-scroll {
      transition-delay: 0.2s;
    }

    .client-testimonials .testimonials-container.animate-on-scroll {
      transition-delay: 0.4s;
    }





/* Footer Styles */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: static;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer {
    padding: 25px 0;
  }
  .footer-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 0;  
  }
  .footer-content p {
    font-size: 13px;
  }
}

/* Portfolio Showcase Section */
.portfolio-showcase {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  text-align: center;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  width: 100%;
}

.section-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 auto 20px;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.portfolio-card {
  width: 100%;
  max-width: 400px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  padding: 25px;
  transform: translateY(100px);
  transition: all 0.3s ease;
  opacity: 0;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.portfolio-category {
  display: inline-block;
  background: rgba(40, 160, 184, 0.2);
  color: #28A0B8;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.portfolio-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}

.view-details {
  color: #28A0B8;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.view-details:hover {
  color: #03c5ec;
}

.view-details i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-details:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .portfolio-showcase {
    padding: 80px 5%;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .portfolio-card {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase {
    padding: 60px 5%;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .portfolio-grid {
    gap: 20px;
  }
  
  .portfolio-card {
    height: 300px;
  }
  
  .portfolio-overlay {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-showcase {
    padding: 50px 5%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .portfolio-card {
    height: 280px;
    max-width: 100%;
  }
  
  .portfolio-title {
    font-size: 1.3rem;
  }
  
  .portfolio-description {
    font-size: 13px;
  }
}


.portfolio-card {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  position: relative;
}

/* Dark overlay by default */
.portfolio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  transition: all 0.3s ease;
}

/* Lighten overlay on card hover */
.portfolio-card:hover .portfolio-image::before {
  background: rgba(0, 0, 0, 0.3);
}

/* Center all content on hover */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

/* Show centered content on card hover */
.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Text styling */
.portfolio-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.portfolio-category {
  display: inline-block;
  background: rgba(40, 160, 184, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.portfolio-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 80%;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.view-details {
  color: white;
  background: rgba(40, 160, 184, 0.9);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.view-details:hover {
  background: rgba(40, 160, 184, 1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.view-details i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-details:hover i {
  transform: translateX(5px);
}



.portfolio-showcase {
  position: relative;
  padding: 100px 10%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/ai\ projects.jpg'); /* Change this image URL if you want */
  z-index: 1;
  overflow: hidden;
}


/* Tablet-specific intro section styles */
@media (min-width: 768px) and (max-width: 1180px) {
  .intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 160px 40px;
    min-height: 70vh;
    box-sizing: border-box;
    text-align: center;
  }

  .intro-text {
    order: 1;
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
  }

  .intro-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .intro-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .btn {
    order: 2;
    padding: 12px 30px;
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .intro-image {
    order: 3;
    width: 100%;
    max-width: 600px;
  }

  .intro-image img {
    width: 100%;
    height: auto;
  }
}

/* Adjustments for portrait tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .intro-text h1 {
    font-size: 2.2rem;
  }
  
  .intro-text p {
    font-size: 1.1rem;
  }
}


/* Tablet-specific styles for portfolio section - Maintain original box sizes */
@media (min-width: 768px) and (max-width: 1180px) {
  .portfolio-showcase {
    padding: 60px 40px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .portfolio-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the boxes */
    gap: 30px;
  }

  .portfolio-card {
    /* Maintain original box size */
    width: 600px; /* Or your original width */
    height: 400px; /* Or your original height */
  }

  /* Keep all original box styling */
  .portfolio-image {
    height: 100%; /* Maintain original image height */
  }

  .portfolio-overlay {
    /* Keep original overlay styling */
    padding: 25px;
  }

  /* Adjust text sizes if needed */
  .portfolio-title {
    font-size: 1.5rem;
  }
  
  .portfolio-description {
    font-size: 1rem;
  }
}

/* Portrait tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .portfolio-showcase {
    padding: 40px 20px;
  }
  
  /* Optionally slightly reduce box size only in portrait */
  .portfolio-card {
    width: 550px;
    height: 380px;
  }
}


/* Mobile and Tablet Logo Sizing Adjustments */
@media (max-width: 1180px) { /* Targets both tablets and mobiles */
  .partners-showcase .logo-container img {
    /* max-width: 180px; Decrease logo size */
    /* max-height: 40px; Maintain aspect ratio */
    object-fit: contain; /* Ensure logos fit properly */
    margin-top: 40px;
  }
  
  .partner-item span {
    /* font-size: 0.8rem; Decrease text size under logos */
    /* margin-top: 8px; Adjust spacing */
  }
}

/* Further adjustments for mobile */
@media (max-width: 768px) {
  .partners-showcase .logo-container img {
    /* max-width: 60px; Even smaller for mobile */
    /* max-height: 30px; */
  }
  
  .partner-item span {
    /* font-size: 0.7rem; */
  }
}