* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #fefefe;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #555;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  /* reduce space between image and text */
  padding: 2rem 4rem;
  flex-wrap: wrap;
}

.hero img {
  border-radius: 0 0 180px 180px;
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-text {
  max-width: 500px;
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #2e60ff;
}

.hero-text p {
  margin-bottom: 1.5rem;
}

.highlight {
  color: #2e60ff;
  font-weight: bold;
}

.btn {
  background: #2e60ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  text-align: center;
}

.stats div {
  font-size: 1.2rem;
}

.portfolio {
  background: #f6f9ff;
  padding: 3rem 2rem;
  text-align: center;
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.portfolio p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns on desktop */
  gap: 2rem;
  width: 100%;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stats-clean {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 4rem 2rem;
  background-color: #fff;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat h2 {
  font-size: 3rem;
  color: #e49dad;
  /* Soft pink */
  margin: 0;
  font-weight: 600;
}

.stat-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.stat-text p {
  margin: 0;
  color: #2f2f2f;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .stats-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-text {
    align-items: center;
  }
}

.portfolio-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 2rem;
  background-color: #fff8f8;
  flex-wrap: wrap;
}

.portfolio-text {
  flex: 1;
  min-width: 300px;
  margin-right: 2rem;
}

.portfolio-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.portfolio-text h2 span {
  text-decoration: underline;
  text-decoration-color: #5e8eff;
  text-underline-offset: 0.4rem;
}

.portfolio-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  flex: 2;
  width: 100%;
}


.portfolio-gallery img {
  width: 300px;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.portfolio-item {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  text-align: left;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.portfolio-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.portfolio-item p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
  }
}

.portfolio-gallery {
  flex: 2;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;

  background-image: url('assets/loop.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  /* 🔥 This keeps it in place while scrolling */
  border-radius: 1rem;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  display: block;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

/* Slider */
.portfolio-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
}

.slider-track {
  display: flex;
  gap: 1rem;
  scroll-snap-align: start;
}

.slider-track .portfolio-item {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
}

.portfolio-slider {
  scroll-behavior: smooth;
}

.portfolio-slider::-webkit-scrollbar {
  height: 8px;
}

.portfolio-slider::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.portfolio-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}




/* New header styling */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: #2e60ff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2e60ff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.works-hero {
  background-color: #f5f7fa;
  padding: 4rem 2rem;
  text-align: center;
}

.works-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.works-hero p {
  font-size: 1.1rem;
  color: #555;
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 0;
}

.work-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.work-image {
  max-width: 400px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-content {
  flex: 1;
  min-width: 250px;
}

.work-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.work-content p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
}

.work-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  list-style-type: disc;
  color: #333;
}

.site-footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .work-item {
    flex-direction: column;
    align-items: center;
  }

  .work-image {
    max-width: 100%;
  }

  .work-content {
    text-align: center;
  }
}



footer.footer {
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  color: #444;
  font-size: 0.95rem;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left h3 {
  margin-bottom: 0.5rem;
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h4 {
  margin-bottom: 1rem;
}

.client-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.client-logos img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logos img:hover {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .client-logos {
    justify-content: center;
  }
}

.clients-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2e60ff;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  transition: transform 0.3s ease;
}

.client-logo img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.client-logo p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #444;
}

.btn {
  background: #2e60ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  /* ⬅️ Prevent underline */
  display: inline-block;
  /* Optional for layout consistency */
}




.btn:hover {
  background-color: #1d4ed8;
  text-decoration: none;
}


.clients-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}


.client-logo img:hover {
  filter: grayscale(0%);
}

.footer {
  background-color: #111;
  color: #ddd;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-branding h3 {
  margin: 0;
  font-size: 1.5rem;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #ddd;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 20px;
}


.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.about-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.about-photo {
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  max-width: 600px;
  line-height: 1.8;
}

.about-text .btn {
  margin-top: 20px;
  display: inline-block;
  background-color: #0077b5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.about-text .btn:hover {
  background-color: #005983;
}

.contact-section {
  padding: 80px 20px;
  background: #fdfdfd;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}

.contact-info {
  text-align: left;
  flex: 1;
  min-width: 250px;
}

.contact-info h3 {
  margin-top: 0;
  color: #333;
}

.contact-info a {
  color: #0077b5;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

