html,
body,
.scroll-container {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
}

.intro-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 3rem;
}

.scroll-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: hidden;
}

.sticky-wrapper,
.motion-wrapper {
  display: flex;
  position: relative;
  /* z-index: 1; */
  height: auto;
}

.scroll-item {
  position: relative;
  padding: 50px;
  flex: 0 0 500px;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  background-color: transparent;
}

.scroll-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

:root {
  /* Color Palette */
  --color-primary-dark: #5b5a36;
  --color-primary-light: #a4a073;
  --color-background: #5b5a36;
  --color-text-primary: #18191a;
  --color-text-secondary: rgba(24, 25, 26, 0.75);
  --color-text-muted: rgba(24, 25, 26, 0.5);
  --color-grid-overlay: rgba(24, 25, 26, 0.025);
  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --letter-spacing: -0.02em;
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  /* Grid */
  --grid-columns: 12;
  --grid-gap: 1rem;
  /* Circle Sizes */
  --circle-size-desktop: 500px;
  --circle-size-tablet: 300px;
  --circle-size-mobile: 240px;
  /* Z-Index */
  --z-index-background: 1;
  --z-index-main: 10;
  --z-index-overlay: 2;
  --z-index-preloader: 9999;
  /* Transitions */
  --transition-default: 0.3s ease;
  --transition-slow: 1s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: var(--letter-spacing);
}

body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.spacer,
.wrapper {
  width: 100%;
  min-height: 50px;
}

.wrapper {
  padding-bottom: 10px;
  /* border-top: dashed 2px var(--color-primary-light);
                                                                                    border-bottom: dashed 2px var(--color-primary-light); */
}

.card-wrapper {
  width: 100%;
  perspective: 500px;
  margin-bottom: 50px;
}

.card-wrapper:last-child {
  margin-bottom: 0;
}

.cards {
  width: 70%;
  margin: 0 auto;
  padding: 0 50px;
}

.card {
  width: 100%;
  height: 500px;
  /* Increased height */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background-color: var(--color-primary-dark);
  color: var(--color-primary-light);
  will-change: transform;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: none;
  filter: contrast(1.1) brightness(0.85);
}

.welcome-header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
}

h2.welcome-text {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 245, 0.95);
  font-weight: 300;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg) var(--spacing-lg) calc(var(--spacing-lg) * 1.5);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(91, 90, 54, 0),
    rgba(51, 50, 30, 0.85)
  );
}

.card-title {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 245, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.card-text {
  font-size: 1rem;
  max-width: 85%;
  line-height: 1.5;
  color: rgba(255, 255, 245, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-tag {
  font-size: 0.85rem;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 245, 0.9);
  border: 1px solid rgba(255, 255, 245, 0.4);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.05);
}

.card-dots {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  display: flex;
}

.dot {
  display: none;
}

/* Visual enhancements */
.card-number {
  position: absolute;
  bottom: calc(var(--spacing-lg) * 0.7);
  right: var(--spacing-lg);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 245, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-line {
  position: absolute;
  left: var(--spacing-lg);
  bottom: calc(var(--spacing-lg) * 0.7);
  width: 30px;
  height: 3px;
  background-color: rgba(255, 255, 245, 0.7);
}

.dotted-line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted rgba(255, 255, 245, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .cards {
    width: 85%;
    padding: 0 30px;
  }

  .card-title {
    font-size: 2rem;
  }

  h2.welcome-text {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .cards {
    width: 90%;
    padding: 0 20px;
  }

  .card {
    height: 350px;
  }

  .card-title {
    font-size: 1.75rem;
  }

  .card-text {
    font-size: 1rem;
    max-width: 90%;
  }

  h2.welcome-text {
    font-size: 3rem;
  }
}

/* Define the animation */
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

/* Apply the animation to the heading */
.animated-heading {
  display: inline-block;
  font-size: 2em;
  /* Adjust as needed */
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

/* Large desktops (1200px and above) */
@media (min-width: 1200px) {
  .cards {
    width: 75%;
    padding: 0 50px;
  }

  .card-title {
    font-size: 3rem;
  }

  .card-text {
    font-size: 1rem;
  }
}

/* Standard desktops (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .cards {
    width: 80%;
    padding: 0 40px;
  }

  .card-title {
    font-size: 2.5rem;
  }

  .card-text {
    font-size: 1rem;
  }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .cards {
    width: 85%;
    padding: 0 30px;
  }

  .card-title {
    font-size: 2rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .card {
    height: 400px;
  }
}

/* Small tablets and large phones (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .cards {
    width: 90%;
    padding: 0 20px;
  }

  .card-title {
    font-size: 1.75rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .card {
    height: 350px;
  }

  h2.welcome-text {
    font-size: 2.5rem;
  }
}

/* Phones (up to 575px) */
@media (max-width: 575px) {
  .cards {
    width: 100%;
    padding: 0 15px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.6rem;
  }

  .card {
    height: 320px;
  }

  .card-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  h2.welcome-text {
    font-size: 2rem;
    text-align: center;
  }
}

.industries-clean {
  background: linear-gradient(to bottom, #f8f9fb, #ffffff);
}

.industry-item {
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.industry-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.industry-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  background: #f4f6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.industry-icon img {
  width: 100px;
}

.industry-item:hover .industry-icon {
  transform: scale(1.1);
}

.industry-item h6 {
  font-weight: 600;
  margin-top: 10px;
}
:root {
  --bg-color: #f4f1ea;
  --text-dark: #1a1a1a;
  --text-grey: #6e6e6e;
  --accent: #d4a373;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  font-family: var(--font-sans);
  color: var(--text-dark);
}

.spacer {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-grey);
}

#projects {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

.project-left {
  width: 40%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.project-title em {
  color: var(--accent);
}

.project-description {
  max-width: 350px;
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-arrow {
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: 0.3s;
}

.btn-arrow:hover {
  color: var(--accent);
}

.project-right {
  width: 60%;
  height: 100vh;
  overflow: hidden;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 6rem 4rem 150px 0;
}

.project-card {
  cursor: pointer;
}

.img-wrapper {
  aspect-ratio: 4/4;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.project-card:hover img {
  transform: scale(1.05);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.meta-left h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.meta-left p {
  font-size: 0.85rem;
  color: var(--text-grey);
}

@media (max-width: 1024px) {
  #projects {
    flex-direction: column;
  }

  .project-left,
  .project-right {
    width: 100%;
    height: auto;
    padding: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.alopna-about-section {
  padding: 90px 20px;
  background: #f4f7ff;
  font-family: "Segoe UI", sans-serif;
}

.alopna-wrapper {
  max-width: 1200px;
  margin: auto;
}

.alopna-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE SIDE */

.alopna-about-media {
  flex: 1 1 500px;
}

.alopna-media-box {
  position: relative;
}

.alopna-about-image {
  width: 100%;
  /* border-radius: 20px; */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.alopna-experience-tag {
  position: absolute;
  bottom: -25px;
  left: 30px;
  background: linear-gradient(135deg, #f72f20, #f72f20);
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.alopna-experience-tag h3 {
  margin: 0;
  font-size: 28px;
}

/* CONTENT SIDE */

.alopna-about-content {
  flex: 1 1 500px;
}

.alopna-about-subtitle {
  color: #b3180d;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}

.alopna-about-title {
  font-size: 36px;
  margin: 15px 0 20px;
  font-weight: 700;
  color: #111;
}

.alopna-about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* FEATURES */

.alopna-feature-list {
  margin-bottom: 30px;
}

.alopna-feature-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.alopna-feature-card:hover {
  transform: translateY(-8px);
}

.alopna-feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f72f20, #f72f20);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}

/* BUTTONS */

.alopna-btn-main {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #f72f20, #f72f20);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  margin-right: 12px;
  transition: 0.3s ease;
}

.alopna-btn-main:hover {
  opacity: 0.9;
}

.alopna-btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #f72f20;
  color: #f72f20;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.alopna-btn-outline:hover {
  background: #f72f20;
  color: #fff;
}

/* CTA SECTION */

.alopna-cta-section {
  margin-top: 80px;
}

.alopna-cta-box {
  background: linear-gradient(135deg, #f72f20, #f72f20);
  padding: 35px 50px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.alopna-cta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .alopna-grid {
    flex-direction: column;
  }

  .alopna-cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.marquee-section {
  background: #f72f20;
  padding: 20px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 5s linear infinite;
}

.marquee-track span {
  color: #111111;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

/* Perfect smooth scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.as-why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.as-container {
  padding-right: 40px;
}

/* Left text align */
.as-header.text-left {
  text-align: left;
}

.as-btn-wrapper.text-left {
  text-align: left;
  margin-top: 40px;
}

/* Grid for 2x2 cards */
.as-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Image Styling */
.as-image-wrapper {
  text-align: center;
}

.as-image-wrapper img {
  max-width: 100%;
  transition: 0.4s ease;
}

.as-image-wrapper img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .as-card-grid {
    grid-template-columns: 1fr;
  }

  .as-container {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.prodev-wrapper {
  padding: 130px 5%;
  display: flex;
  gap: 60px;
}

/* TAB MENU */
.prodev-sidebar {
  width: 260px;
}

.prodev-tab-btn {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 12px;
  background: rgb(22, 31, 50);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.prodev-tab-btn i {
  font-size: 18px;
}

.prodev-tab-btn:hover,
.prodev-tab-btn.prodev-active {
  background: linear-gradient(90deg, #172133, #f8483b);
  /* transform: translateX(10px); */
}

/* CONTENT */
.prodev-content-area {
  flex: 1;
  position: relative;
}

.prodev-tab-panel {
  display: none;
  animation: prodevFade 0.5s ease;
}

.prodev-tab-panel.prodev-active {
  display: block;
}

@keyframes prodevFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prodev-content-area h2 {
  font-size: 40px;
  margin-bottom: 20px;
  background: #172133;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prodev-content-area p {
  color: #172133;
  margin-bottom: 35px;
  max-width: 700px;
  line-height: 1.8;
}

/* TECH GRID */
.prodev-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 25px;
}

.prodev-tech-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 15px;
  text-align: center;
  border-radius: 18px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.prodev-tech-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.prodev-tech-card:hover {
  transform: translateY(-10px);
  /* background: linear-gradient(145deg, #1e40af, #0ea5e9); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .prodev-wrapper {
    flex-direction: column;
  }

  .prodev-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .prodev-tab-btn {
    white-space: nowrap;
    margin-right: 15px;
  }
}

.alopna-about-section {
  background: #ffffff;
  /* or your theme color */
}

.alopna-about-section a {
  color: #111827;
  font-weight: 500;
}

.alopna-about-section a:hover {
  color: #2563eb;
}

.alopna-about-section h1,
.alopna-about-section h2,
.alopna-about-section h3 {
  color: #111827;
}
