body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
}
.navbar {
  background: #000;
  color: #fff;
  z-index: 1;
  /* padding: 1em 2em; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar a {
  margin: 5px;
  color: #fff;
  text-decoration: none;
}
.navbar a:hover {
  color: #ff6400;
}
.logo {
  position: static;
  left: auto;
  transform: none;
  z-index: 2;
  font-weight: bold;
  font-size: 1.5em;
}
.logo img {
  width: 170px;
  
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 6px;
}
@media (max-width: 900px) {
  .logo img {
    width: 210px !important;
    height: auto !important;
    max-width: 210px !important;
    max-height: 104px !important;
    top: 0;
    left: 0;
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 190px !important;
        height: auto;
        max-width: 190px !important;
    top: 0;
    left: 0;
  }
}
.nav-links {
  margin-left: auto;
}
.portfolio-link {
  color: #000000;
}
.subtitle{
  justify-content: center;
  text-align: center;
}
.hero {
  height: 90vh;
  background: url('https://wallpapers.com/images/featured/graphic-design-background-5yvbycsmy8guek49.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text {
  background: rgba(255, 255, 255, 0.5);
  padding: 2em;
  color: #000000;
  text-align: center;
}
.section {
  padding: 4em 2em;
}
.section.light {
  background-color: #f4f4f4;
}
h2 {
  color: #ff6400;
  text-align: center;
}
.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  border: 2px solid #000;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
input, textarea {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background-color: #ff6400;
  color: #fff;
  padding: 1em;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #000;
}
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1em;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.slide-in {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in.visible {
  opacity: 1;
  transform: none;
}
button:active {
  transform: scale(0.97);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    height: 9vh;
    background: url('https://wallpapers.com/images/featured/graphic-design-background-5yvbycsmy8guek49.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }
  .navbar ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
  }
  .logo {
    margin-bottom: 0.5em;
  }
  .hero {
    height: 60vh;
    padding: 2em 0;
  }
  .section {
    padding: 2em 1em;
  }
  .gallery {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .gallery img {
    max-width: 90vw;
  }
  form {
    max-width: 100%;
    padding: 0 0.5em;
  }
  .portfolio-grid,
  .services-grid,
  .why-choose-grid,
  .testimonials-grid,
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
  .why-choose-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1em;
  }
  .navbar ul.nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100vw;
    max-width: 100vw;
    padding: 2.5em 1.2em 2em 1.2em;
    display: none;
    background: #000;
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    z-index: 15;
    box-shadow: -2px 0 16px rgba(0,0,0,0.13);
    transition: right 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  }
  .navbar ul.nav-links.active {
    display: flex;
    right: 0;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 1em;
    top: 1.2em;
    margin-left: 0;
    z-index: 20;
  }
}
@media (max-width: 480px) {
  .hero {
    background: url('https://i.pinimg.com/736x/2e/9d/68/2e9d684fa24a4b881105a5b99c95c0a2.jpg') center/cover no-repeat;
    background-size: contain;
    background-color: #c64c27;
  }
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.1em;
  }
  .hero-text {
    padding: 1em;
  }
  .navbar {
    padding: 0.5em;
  }
  .logo {
    font-size: 1.1em;
  }
  .portfolio-grid,
  .services-grid,
  .why-choose-grid,
  .testimonials-grid,
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
  .why-choose-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.7em;
  }
  .navbar ul.nav-links {
    width: 100vw;
    max-width: 100vw;
    padding: 2.5em 1.2em 2em 1.2em;
    top: 0;
    right: -100vw;
    height: 100vh;
  }
  .navbar ul.nav-links.active {
    right: 0;
  }
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: #ff6400;
  color: #fff;
  padding: 1em 2em;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5em;
  box-shadow: 0 4px 16px rgba(255,100,0,0.1);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.cta-btn:hover {
  background: #000;
  color: #ff6400;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.portfolio-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,100,0,0.13);
}
.portfolio-info {
  padding: 1em;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  margin-top: 2em;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2em 1em;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,100,0,0.13);
}
.service-icon {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.service-icon img {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: 0.5em;
  filter: grayscale(0%) brightness(0) invert(0.1);
}
.service-img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5em auto;
}

/* About Section */
.about-container {
  display: flex;
  gap: 2em;
  align-items: center;
  flex-wrap: wrap;
}
.about-image img {
  width: 600px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.about-content {
  flex: 1;
  min-width: 220px;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  gap: 2em;
  margin-top: 2em;
  flex-wrap: wrap;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 1.2em 2em;
  min-width: 180px;
}
.contact-card h4 {
  margin: 0 0 0.5em 0;
  color: #ff6400;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1em;
}
.hamburger span {
  
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .testimonials-grid, .clients-grid {
    gap: 1em;
  }
  .testimonial-card, .client-logo {
    min-width: 80vw;
    max-width: 90vw;
  }
}

/* Clients Grid */
.clients-grid {
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  gap: 2em;
  margin-top: 2em;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  animation: none !important;
  will-change: auto;
  align-items: center;
  justify-items: center;
}
.client-logo {
  flex: 0 0 320px;
  min-width: 280px;
  max-width: 90vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 1em;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.client-logo:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255,100,0,0.13);
}
.client-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.7em;
  max-width: 100%;
  max-height: 80px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.client-logo p {
  color: #333;
  font-size: 1em;
  margin: 0;
}
.autoscroll {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
@media (max-width: 900px), (max-width: 768px) {
  .client-logo {
    min-width: 56vw !important;
    max-width: 70vw !important;
    padding: 0.7em !important;
  }
}

/* Social Bar */
.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px 0 0 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 12px 8px 12px 10px;
  z-index: 1000;
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.social-bar a:hover {
  background: #ff6400;
}
.social-bar img {
  width: 24px;
  height: 24px;
  display: block;
  filter: grayscale(0%) brightness(0.2) invert(0.1);
}
@media (max-width: 600px) {
  .navbar {
    height: 44px;
    min-height: 44px;
    padding: 0.3em 0.5em;
    width: 100vw;
    margin: 0;
    box-sizing: border-box;
  }
  .logo {
    font-size: 1em;
    top: 0.5em;
  }
  .hamburger {
    top: 0.5em;
    right: 0.5em;
  }
  body {
    padding-top: 44px;
  }
}

/* Orange Title */
.orange-title {
  color: #ff6400;
}

@media (max-width: 500px) {
  .navbar {
    position: fixed;
        top: 0px;
    height: 68px;
    min-height: 58px;
    padding: 0.5em 0.7em;
  }
  .logo {
    font-size: 1.1em;
    top: 0.7em;
  }
  .hamburger {
    top: 0.7em;
    right: 0.7em;
  }
  body {
    padding-top: 48px;
  }
}

@media (min-width: 501px) and (max-width: 900px) {
  .navbar {
    height: 70px;
    min-height: 70px;
    padding: 0.8em 1.2em;
    width: 100vw;
    box-sizing: border-box;
  }
  .logo {
    font-size: 1.3em;
    top: 1em;
  }
  .hamburger {
    top: 1em;
    right: 1.2em;
  }
  body {
    padding-top: 52px;
  }
}

/* Illustrator Design styles */
.about-image {
  position: relative;
}
.illustrator-design {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.illustrator-design img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.illustrator-design span {
  color: #ff6400;
  font-weight: 600;
  font-size: 1em;
}

.clients-testimonials-col {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

#testimonials, #clients {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 2em;
  margin: 5%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  animation: none !important;
  will-change: auto;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.10);
  padding: 1em;
  text-align: center;
  margin: 5%;
  min-width: 280px;
  max-width: 90vw;
  height: 320px;
  position: relative;
}
.testimonial-quote {
  font-style: italic;
  color: #333;
  font-size: 1.1em;
  margin-bottom: 1.2em;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  width: 100%;
}
.testimonial-bottom {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.testimonial-name {
  font-weight: bold;
  color: #ff6400;
  margin-bottom: 0.2em;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.testimonial-role {
  color: #888;
  font-size: 0.98em;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
@media (max-width: 900px) {
  .testimonials-grid, .clients-grid {
    gap: 1em;
  }
  .testimonial-card, .client-logo {
    min-width: 80vw;
    max-width: 90vw;
  }
}
.fade-in, .slide-in {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body {
  overflow-x: hidden;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  right: 1em;
  top: 1.2em;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-toggle:focus,
.menu-toggle:hover {
  background: #222;
  color: #ff6400;
}
.menu-close {
  display: none;
  position: absolute;
  top: 1.2em;
  left: 1em;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  z-index: 1003;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-close:focus,
.menu-close:hover {
  background: #222;
  color: #ff6400;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed !important;
    left: -100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5em;
    padding: 4em 1em 2em 1em;
    z-index: 1001;
    transition: left 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    display: flex;
    box-shadow: 2px 0 16px rgba(0,0,0,0.13);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.4em;
    color: #fff;
    padding: 0.7em 0;
    display: block;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover {
    background: #222;
    color: #ff6400;
  }
  .nav-links.active ~ .menu-toggle {
    display: none;
  }
  .nav-links.active ~ .menu-close {
    display: block;
  }
  .menu-close {
    display: block;
  }
}

/* About Us Section Styles */
:root {
  --primary: #5d9eff;
  --secondary: #f6f8fa;
  --white: #fff;
  --text: #222;
  --light: #e5eaff;
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  padding: 40px 0;
  gap: 0;
  background: var(--secondary);
}
.about-img {
  flex: 1 1 400px;
  min-width: 300px;
  background: #eee;
  border-radius: 32px 0 0 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  animation: flip-in-x 1s 0.2s cubic-bezier(.77,0,.18,1) forwards;
  transition: border-radius 0.3s;
}
.about-img img, .about-img svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin: 0 auto;
  min-height: 180px;
}
.about-content {
  flex: 1 1 400px;
  min-width: 300px;
  background: transparent;
  color: var(--text);
  border-radius: 0 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 32px 48px 32px;
  max-width: 700px;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  transform: perspective(800px) rotateY(-90deg);
  animation: flip-in-x 1s 0.8s cubic-bezier(.77,0,.18,1) forwards;
  transition: border-radius 0.3s;
}
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
  opacity: 0;
  transform: perspective(600px) rotateX(90deg);
  animation: flip-in-y 0.8s 1.4s cubic-bezier(.77,0,.18,1) forwards;
  color: #ff6400;
}
.about-content p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  transform: perspective(600px) rotateX(-90deg);
  animation: flip-in-y 0.8s 1.6s cubic-bezier(.77,0,.18,1) forwards;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 16px;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  transform: perspective(600px) rotateY(90deg);
  animation: flip-in-x 1s 1.8s cubic-bezier(.77,0,.18,1) forwards;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border: 1.5px solid #e5eaff;
}
.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 1px;
  color: #ff6400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.stat-label {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #222;
}
@keyframes flip-in-x {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes flip-in-y {
  from {
    opacity: 0;
    transform: perspective(600px) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg);
  }
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
  }
  .about-img, .about-content {
    border-radius: 32px 32px 0 0;
    max-width: 100vw;
  }
  .about-img {
    border-radius: 32px 32px 0 0;
  }
  .about-content {
    border-radius: 0 0 32px 32px;
  }
}
@media (max-width: 600px) {
  .about-content {
    padding: 28px 4vw;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-content p {
    font-size: 1.15rem;
  }
  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .stat-block {
    width: 160px;
    min-width: 160px;
    max-width: 90vw;
    margin: 0 auto;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 1rem;
  }
  .about-img img, .about-img svg {
    max-width: 480px;
    min-height: 100px;
  }
}
@media (max-width: 400px) {
  .about-content {
    padding: 16px 2vw;
  }
  .about-content h2 {
    font-size: 1.2rem;
  }
  .about-content p {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 1.2rem;
  }
}

/* WHY CHOOSE US? Section Styles */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  margin-top: 2em;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2em 1em 1.5em 1em;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #ff640010;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,100,0,0.13);
  border-color: #ff6400;
}
.why-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1em;
}
.why-card h3 {
  margin: 0.5em 0 0.3em 0;
  color: #ff6400;
  font-size: 1.1em;
  letter-spacing: 1px;
  font-weight: 700;
}
.why-card p {
  color: #333;
  font-size: 1em;
}
@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
}
@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .why-card {
    padding: 1.2em 0.5em 1em 0.5em;
  }
}

/* Consistent Card Shadow for All Cards */
.portfolio-card, .service-card, .why-card, .testimonial-card, .client-logo, .stat-block, .about-img {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.07);
}

.client-logo, .testimonial-card {
  box-shadow: 0 6px 28px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.10);
  margin: 5%;
}
.testimonials-grid, .clients-grid {
  margin: 5%;
}

@media (max-width: 600px) {
  .portfolio-grid,
  .services-grid,
  .why-choose-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1em;
  }
}

.clients-grid, .testimonials-grid {
  gap: 1px !important;
}
.client-logo {
  width: 160px;
  height: 160px;
  min-width: 120px;
  min-height: 120px;
  max-width: 15vw;
  max-height: 15vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
 
}
@media (max-width: 600px) {
  .client-logo {
    width: 120px;
    height: 120px;
    min-width: 90px;
    min-height: 90px;
    max-width: 40vw;
    max-height: 40vw;
  }
}

.portfolio-grid a, .portfolio-card a {
  text-decoration: none !important;
}
a[href*="pot/index.html"] {
  text-decoration: none !important;
}
