body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-image: url(img/hero/img\ bg.png);
}

/* NAVBAR */
/* Modern Navbar Styles */
.nav-hover-group {
  position: relative;
  display: inline-block;
}

.modern-navbar {
  /* ...existing styles... */
  opacity: 0;
  transform: translateY(-40px);
  animation: navbarFadeInUp 0.8s cubic-bezier(0.4, 2, 0.3, 1) forwards;
  animation-delay: 0.2s;

}

@keyframes navbarFadeInUp {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-hover-preview {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(45, 156, 219, 0.1);
  padding: 1rem 1.2rem;
  z-index: 999;
  font-size: 1rem;
  color: #222;
  animation: fadeIn 0.18s;
}
.nav-hover-preview::before {
  content: "";
  display: flex;
  position: absolute;
  top: -8px;
  left: 20px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.nav-preview-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}



.nav-preview-col {
  min-width: 220px;
  max-width: 260px;
}

.nav-preview-col strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff7f3f;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.nav-preview-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.nav-preview-col ul li {
 text-decoration: none;
  font-size: 1rem;
  color: #222;
  margin-bottom: 0.3rem;
  font-family: "Poppins", sans-serif;
}

.nav-preview-col ul li a {
   text-decoration: none;
  color: #2d9cdb;

  font-size: 0.98rem;
}


.nav-preview-col ul li:last-child {
  margin-bottom: 0;
}
.nav-hover-group:hover .nav-hover-preview,
.nav-hover-group:focus-within .nav-hover-preview {
  display: flex;
  flex-direction: row;
  width: 800px;
  position:absolute;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-shrink: unset;
  min-width: 0;
  z-index: 10;
  gap: 0.5rem;

  animation-fill-mode: forwards;
  justify-content: flex-start;
    list-style: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .nav-hover-preview {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-preview-col {
    min-width: 140px;
    max-width: 100%;
  }
  .nav-hover-preview {
    flex-direction: row;
    gap: 1.2rem;
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff6b1a #fff;
    padding-bottom: 0.5rem;
  }
  .nav-preview-col {
    min-width: 180px;
    max-width: 220px;
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: top;
  }
  /* Optional: style the scrollbar for better UX */
  .nav-hover-preview::-webkit-scrollbar {
    height: 6px;
    background: #fff;
  }
  .nav-hover-preview::-webkit-scrollbar-thumb {
    background: #ff6b1a;
    border-radius: 4px;
  }
}
@media (max-width: 600px) {
  .nav-hover-preview {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    
  }
  .nav-hover-preview {
    flex-direction: row;
    gap: 1.2rem;
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff6b1a #fff;
    padding-bottom: 0.5rem;
  }
  .nav-preview-col {
    min-width: 180px;
    max-width: 220px;
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: top;
  }
  /* Optional: style the scrollbar for better UX */
  .nav-hover-preview::-webkit-scrollbar {
    height: 6px;
    background: #fff;
  }
  .nav-hover-preview::-webkit-scrollbar-thumb {
    background: #ff6b1a;
    border-radius: 4px;
  }
}

@media (max-width: 700px) {
  .nav-hover-preview {
    flex-direction: row;
    gap: 1.2rem;
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff6b1a #fff;
    padding-bottom: 0.5rem;
  }
  .nav-preview-col {
    min-width: 180px;
    max-width: 220px;
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: top;
  }
  /* Optional: style the scrollbar for better UX */
  .nav-hover-preview::-webkit-scrollbar {
    height: 6px;
    background: #fff;
  }
  .nav-hover-preview::-webkit-scrollbar-thumb {
    background: #ff6b1a;
    border-radius: 4px;
  }
}

.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #fff; /* Or your navbar background color */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
body {
  padding-top: 93px; /* Adjust to your navbar height */
}
.modern-navbar {
  background: linear-gradient(90deg, #fafafa 50%, #ff6b1a 50%);
  border-radius: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0.5rem auto;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", serif;
}

.modern-logo {
  color: #222121;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
}

.logo-img {
  padding-left: 1rem;
  height: 40px;
  width: auto;
  display: block;
}

.modern-nav-group {
  background: #232323;
  border-radius: 32px;
  display: flex;
  align-items: center;
  padding: 4px 12px;
  gap: 8px;
}

.modern-nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 26px;
  border-radius: 24px;
  transition: background 1s, color 0.18s;
  background: transparent;
  display: inline-block;
}

.modern-nav-link.active,
.modern-nav-link:hover {
  background: #fff;
  color: #181818;
}

.modern-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.modern-signup-btn {
  background: #fff;
  color: #181818;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 10px 26px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 1s, color 0.18s;
  border: none;
  display: inline-block;
}

.modern-signup-btn:hover {
  background: #232323;
  color: #fff;
}

@media (max-width: 800px) {
  .modern-navbar {
    flex-direction: column;
    gap: 8px;
    padding: 8px 8px;
  }
  .modern-nav-group {
    margin: 12px 0;
  }
}
/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 20;
}
.nav-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #232323;
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.7s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }
  .modern-navbar {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    padding: 8px 8px;
  }
  .modern-nav-group {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #232323;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    display: none;
    z-index: 10;
  }
  .modern-nav-group.nav-open {
    display: flex;
  }
  .modern-nav-link {
    margin: 0.5rem 0;
    width: 100%;
    font-size: 1.15rem;
    padding: 12px 0;
    border-radius: 6px;
  }
  .modern-actions {
    margin-left: auto;
    margin-top: 0.5rem;
  }
}

/* Hero image fade-in animations */
/* Hero image fade-in animations (no bounce, stop at 0) */
.hero-img-left,
.hero-img-right {
  opacity: 0;
  transform: translateX(0);
}

.hero-img-left.fade-in-left {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInLeftHero 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-img-right.fade-in-right {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRightHero 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInLeftHero {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.hero-alt-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInHeroAlt 1.5s cubic-bezier(0.4, 2, 0.3, 1) forwards;
  animation-delay: 0.9s;
}

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

.hero-footer {
  /* ...existing styles... */
  opacity: 0;
  transform: translateY(40px);
  animation: footerFadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.2s;
}

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

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 2rem;
}

.card {
  background-color: #ffffff;
  color: #181818;
  padding: 2rem;
  border-radius: 6px;
  transition: transform 1.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card.orange-bg {
  background-color: #ff6b1a;
  color: #fff;
}

.card.grey {
  background-color: #cacaca;
  color: #181818;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 95%;
  max-width: 1402px;
  margin: 0 auto;
  border: #111 solid 1px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

.hero-img-left,
.hero-img-right {
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  object-position: center;
  filter: brightness(0.75);
}

.hero-img-left {
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 34, 34, 0.32) 0%,
    rgba(34, 34, 34, 0.18) 100%
  );
  z-index: 2;
}

.hero-alt-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 1150px;
  color: linear-gradient(90deg, #ff6b1a 60%, #ff9a3c 100%);
  line-height: 1.2;
  font-family: "Poppins", Arial, sans-serif;
}

.hero-alt-content h1 {
  font-size: 4rem;
  font-weight: 200;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  font-weight: 500;
}

.hero-alt-content p {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #ffffff 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
}

.hero-alt-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6b1a 60%, #ff9a3c 100%);
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.1);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  letter-spacing: 0.06em;
  font-family: "Poppins", Arial, sans-serif;
}

.hero-alt-btn:hover {
  background: linear-gradient(90deg, #ff9a3c 60%, #ff6b1a 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 107, 26, 0.13);
}

@media (max-width: 700px) {
  .hero-alt-content h1 {
    font-size: 2rem;
  }
  .hero-alt-content p {
    font-size: 1rem;
  }
}

.hero-footer {
  background: #fff;
  border-radius: 0 0 28px 28px;
  margin: 0 auto 2rem auto;
  width: 95%;
  max-width: 1370.5px;
  text-align: center;
  padding: 0.5rem 1rem 2.5rem 1rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
}

.hero-footer-new {
  font-size: 4rem;
  color: #111;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-footer-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -2px;
  color: #111;
  line-height: 1.05;
  font-family: "Poppins", Arial, sans-serif;
}

@media (max-width: 700px) {
  .hero-footer-title {
    font-size: 2.2rem;
  }
  .hero-footer-new {
    font-size: 1.1rem;
  }
  .hero{
    margin-top: 2rem;
  }
}

/* ABOUT SECTION */
a {
  text-decoration: none;
  color: inherit;
}

.intro {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInintro 1.5s cubic-bezier(0.4, 2, 0.3, 1) forwards;
  animation-delay: 3.2s;
}

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

.about-animated-text {
  display: flex;
  gap: 0.08em;
  justify-content: start;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  color: #ff6b1a;
  font-family: "Poppins", sans-serif;
}

.about-animated-text span {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}

/* Staggered delays for each letter */
.about-animated-text span:nth-child(1) {
  animation-delay: 0s;
}
.about-animated-text span:nth-child(2) {
  animation-delay: 0.08s;
}
.about-animated-text span:nth-child(3) {
  animation-delay: 0.16s;
}
.about-animated-text span:nth-child(4) {
  animation-delay: 0.24s;
}
.about-animated-text span:nth-child(5) {
  animation-delay: 0.32s;
}
.about-animated-text span:nth-child(6) {
  animation-delay: 0.4s;
}
.about-animated-text span:nth-child(7) {
  animation-delay: 0.48s;
}
.about-animated-text span:nth-child(8) {
  animation-delay: 0.56s;
}
.about-animated-text span:nth-child(9) {
  animation-delay: 0.64s;
}

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

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

.about-animated-text span,
.tiltle span {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}
.top-bar {
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
}

.menu {
  cursor: pointer;
}

.about-section {
  background-image: url(/img/hero/img\ bg.png);
  padding: 30px 30px;
  max-width: 1400px;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.about-section h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  color: #2d9cdb;
  font-family: "Poppins", Arial, sans-serif;
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.intro p {
  flex: 1;
  max-width: 800px;
  font-size: 1.3rem;
  color: #444;
  font-family: "Poppins", Arial, sans-serif;
}

.cta-button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.about-images {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.about-images img {
  flex: 1;
  border-radius: 12px;
  object-fit: cover;
  max-height: 300px;
  width: 100%;
}

.philosophy {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  margin-top: 30px;
  font-family: "Poppins", Arial, sans-serif;
}

.highlight {
  color: #2d9cdb;
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
}

@media (max-width: 700px) {
  .about-section {
    padding: 24px 6px;
    border-radius: 10px;
  }
  .about-section h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
  }
  .intro {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 18px;
    text-align: start;
  }
  .intro p {
    font-size: 1.05rem;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 10px 0;
    border-radius: 8px;
    margin: 0 auto 10px auto;
  }
  .about-images {
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
  }
  .about-images img {
    max-height: 180px;
    width: 100%;
    border-radius: 10px;
  }
  .philosophy {
    font-size: 1rem;
    margin-top: 18px;
    text-align: center;
    padding: 0 4px;
  }
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
}

.left-content {
  flex: 1 1 40%;
  margin-left: 2rem;
  margin-right: 3rem;
}

.subtitle {
  color: #ff6b1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #ff6b1a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.right-content {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 8rem;
}

.feature-box {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.feature-box::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-top: 5px solid #ff6b1a;
  border-left: 5px solid #ff6b1a;

  top: -10px;
  left: -10px;
  border-radius: 2px;
}

.feature-box .number {
  color: #ff6b1a;
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-box h3 {
  font-size: 1.1rem;
  color: #111;
  margin: 0.5rem 0;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us .container {
    flex-direction: column;
  }

  .right-content {
    grid-template-columns: 1fr;
  }
}

.info-cards {
  opacity: 0;
  transform: translatey(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-cards.fade-in-right {
  opacity: 1;
  transform: translateY(0);
}
/* ABOUT SECTION END */

/* service */

/* Timeline animation */

.process-section {
  background-image: url(/img/hero/img\ bg.png);
  padding: 1rem;
  padding-top: 1rem;
  font-family: "Poppins", Arial, sans-serif;
  margin: 1rem;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.process-container {
  max-width: 1200px;
  justify-content: center;
}

.sub-heading {
  color: #2d9cdb;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-intro {
  color: #555;
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 2.6;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.timeline-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
}
.timeline-block-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
  max-width: 1100px;
}

.timeline-block:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-img,
.timeline-content {
  width: 50%;
  object-fit: contain;
}

.timeline-img img {
  max-width: 90%;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-left: 40px;
  object-fit: contain;
}
img .timeline-content {
  background: #ffffff;
  padding: 1.5rem;
  border-left: 4px solid #e65b10;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  object-fit: contain;
}

.step-number {
  color: #e65b10;
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.timeline-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .timeline {
    gap: 2rem;
  }
  .timeline-block,
  .timeline-block-left {
    flex-direction: column !important;
    flex-grow: 1;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(45, 156, 219, 0.06);
    border-radius: 10px;
    background: #fff;
    padding-left: 0rem 0.5rem;
  }
  .timeline-img,
  .timeline-content {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .timeline-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 1rem 0;
    border-radius: 8px;
  }
  .timeline-content {
    border-left: none;
    border-top: 4px solid #e65b10;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    padding: 1rem 0.5rem;
    background: #f9f9f9;
  }
  .step-number {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
/* service */

.service-hero-content h2 span.letter,
.service-hero-content h1 span.letter {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}

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

.service-hero {
  background: linear-gradient(90deg, #ff6b1a, #ff7f3f, #ff8f55, #ff6b1a);
  padding: 100px 30px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

.service-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.service-hero-content h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
}

.service-hero-content h2 span {
  font-weight: 700;
  color: #fff;
}

.bg-text {
  font-size: 100px;
  font-weight: 700;
  opacity: 0.48;
  margin: 0;
  line-height: 1;
  bottom: 30px;
  left: 30px;
  color: #ffffff;
}

/* Service Section */
.services {
  padding: 20px 0;
  background: #f9f9f9;
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
  background-image: url(/img/nav-logo/ChatGPT\ Image\ Jul\ 9\,\ 2025\,\ 10_51_47\ PM.png);
}

.section-title {
  font-size: 42px;
  margin-bottom: 40px;
}

.section-title span {
  color: #ff6b1a;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 280px;
  transition: 0.3s;
  cursor: pointer;
}

.service-box i {
  color: #ff6b1a;
  margin-bottom: 15px;
}

.service-box h4 {
  margin: 15px 0 10px;
}

.service-box.active,
.service-box:hover {
  background: #ff6b1a;
  color: #fff;
}

.service-box.active i,
.service-box:hover i {
  color: #fff;
}

/* Expertise Section */
.expertise {
  padding: 30px 0;
  text-align: center;
  background: #fff;
  background-image: url(/img/hero/img\ bg.png);
  font-family: "Poppins", Arial, sans-serif;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.expert-box {
  flex: 1 1 280px;
}

.expert-box img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.expert-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0;
  color: #ff6b1a;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .section-title {
    font-size: 24px;
  }

  .service-hero-content h1 {
    letter-spacing: -0.06em;
  }

  .service-box,
  .expert-box {
    flex: 1 1 100%;
  }
}

/* product */

.product-section {
  padding: 1rem 2rem;
  font-family: "Poppins", Arial, sans-serif;
  background-image: url(img/nav-logo/ChatGPT\ Image\ Jul\ 9\,\ 2025\,\ 10_51_47\ PM.png);
}

.container {
  margin: auto auto;
  padding: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  text-align: start;
}
.container p {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
  font-family: "Poppins", Arial, sans-serif;
}
.tiltle {
  font-size: 4.7rem;
  font-weight: 700;
  margin: 0.5rem;
  color: #898888;
}

.box {
  padding: 10px;
  border-radius: 10px;
  color: #111;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.box h2 {
  color: #2d9cdb;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.tagline h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #d60087;
}

.tagline h2 span {
  color: #7000ff;
}

.wedding {
  grid-column: span 3;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

.box.convocations {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}
.box.sports {
  grid-column: span 1;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

.tagline {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parties {
  grid-column: span 4;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}
.parties {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}
.parties {
  grid-column: span 3;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

@media (max-width: 768px) {
  body {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  @media (max-width: 700px) {
    .container {
      grid-template-columns: 1fr; /* Show one box per row */
    }
    .box,
    .box.wedding,
    .box.convocations,
    .box.sports,
    .box.tagline,
    .box.parties {
      grid-column: span 1 !important;
    }
  }
  h2 {
    font-size: 2rem;
    letter-spacing: 0.01em;
    word-break: normal;
    white-space: normal;
    text-align: center;
    margin: 1rem 0;
  }
  .tiltle span {
    font-size: inherit;
    letter-spacing: inherit;
    word-break: normal;
    white-space: normal;
  }

  .container p {
    font-size: 1.2rem;
    text-align: center;
    margin: 0.5rem 0;
  }

  .tagline h2 {
    font-size: 1.6rem;
  }

  .box {
    padding: 20px;
  }
}

.product-category {
  padding: 20px 10px;
  background: #fefefe;
  font-family: "Segoe UI", sans-serif;
  color: #222;
}
.product-title {
  color: #ff6b1a;
  font-size: 4.4rem;
  font-weight: 700;
  margin: 1.5rem;
}
.category-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.category-nav button {
  padding: 10px 18px;
  background: #eee;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-nav .active,
.category-nav button:hover {
  background: #222;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.product-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-card h4 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

.product-card:hover {
  transform: translateY(-6px);
}

.pagination {
  text-align: center;
  margin-top: 50px;
}

.pagination span {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 6px;
  border-radius: 50%;
  background: #ddd;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.pagination .active,
.pagination span:hover {
  background: #222;
  color: #fff;
}

.product-img-slider {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-slider img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.4s;
}
.product-img-slider img.active {
  display: block;
  position: relative;
  opacity: 1;
}
.product-img-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 0.2em 0.6em;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
}
.product-img-slider .prev-img {
  left: 8px;
}
.product-img-slider .next-img {
  right: 8px;
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.product-card {
  flex: 1 1 calc(25% - 1.2rem); /* 4 per row desktop */
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .product-card {
    flex: 1 1 calc(50% - 1.2rem); /* 2 per row mobile */
  }
}

.work-testimonials-title span.letter {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.work-testimonials-titles span.letter {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: inline-block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Work Info Animation */
.work-info-left,
.work-info-right {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-info-left.fade-in-down {
  opacity: 1;
  transform: translateY(0);
}

.work-info-right.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Initial state for animation */
.work-info-left {
  transform: translateY(60px);
}
.work-info-right {
  transform: translateY(-60px);
}

.work-section {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem 1rem 1rem;
  max-width: 1500px;
  margin: 3rem auto 3rem auto;
  border-radius: 8px;
  background-image: url(/img/hero/img\ bg.png);
}

.work-stats-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.work-stat-card {
  background: #f7f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 1.2rem 2.2rem;
  text-align: center;
  min-width: 120px;
}

.work-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e65b10;
  margin-bottom: 0.3rem;
}

.work-stat-label {
  font-size: 1rem;
  color: #888;
}

.work-info-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.work-info-left,
.work-info-right {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-info-img img {
  width: 350px;
  height: 320px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: none;
}

.work-info-desc {
  color: #252525;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.2rem;
  background: #ffffff;
  border-radius: 8px;
}

.work-testimonials-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 1rem;
  color: #2d9cdb;
}
.work-testimonials-titles {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 1rem;
  color: #2d9cdb;
}

.work-testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.work-testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 1.5rem 1.2rem;
  min-width: 220px;
  align-items: flex-start;
}

.work-testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.work-testimonial-person img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.work-testimonial-name {
  font-weight: 700;
  color: #232323;
  font-size: 1rem;
}

.work-testimonial-role {
  color: #888;
  font-size: 0.95rem;
}

.work-testimonial-main {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 2rem 2.5rem;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.work-testimonial-main .work-testimonial-person {
  margin-bottom: 1.2rem;
}

.work-testimonial-quote {
  font-size: 1.25rem;
  color: #232323;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.work-testimonial-quote-icon {
  font-size: 2.5rem;
  color: #2d9cdb;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-family: serif;
}

.work-testimonial-main {
  position: relative;
  min-height: 220px;
}
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  position: relative;
}

@media (max-width: 900px) {
  .work-info-row,
  .work-testimonials {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .work-testimonial-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .work-section {
    padding: 1rem 0.2rem 2rem 0.2rem;
    border-radius: 6px;
  }
  .work-stats-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .work-stat-card {
    min-width: 0;
    width: 90vw;
    max-width: 340px;
    padding: 1rem 0.5rem;
  }
  .work-info-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
  }
  .work-info-left,
  .work-info-right {
    max-width: 100%;
    width: 100%;
    padding: 0 0.5rem;
  }
  .work-info-img img {
    width: 98vw;
    max-width: 340px;
    height: 180px;
    margin-bottom: 0.7rem;
  }
  .work-info-desc {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    padding: 0 0.2rem;
  }
  .work-testimonials-title {
    font-size: 4.3rem;
    margin: 2rem 0 1rem 0;
  }
  .work-testimonials {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }

  .work-testimonials-titles {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    word-break: normal;
    white-space: normal;
    text-align: center;
    margin: 1rem 0;
  }
  .work-testimonials-title span {
    font-size: inherit;
    letter-spacing: inherit;
    word-break: normal;
    white-space: normal;
  }
  .work-testimonials-titles span {
    font-size: inherit;
    letter-spacing: inherit;
    word-break: normal;
    white-space: normal;
  }
  .work-testimonial-list,
  .work-testimonial-main {
    min-width: 0;
    width: 98vw;
    max-width: 340px;
    padding: 1rem 0.7rem;
  }
  .work-testimonial-quote {
    font-size: 1.05rem;
  }
  .work-testimonial-quote-icon {
    font-size: 2rem;
    right: 1rem;
    bottom: 0.5rem;
  }
}

.footer-section {
  background: #fff;
  color: #e65b10;
  font-family: "Segoe UI", sans-serif;
  padding: 60px 20px 30px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Poppins", Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  font-family: poppins, Arial, sans-serif;
}

.footer-logo img {
  max-height: 100px;
}

.footer-links {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 40px;
}

.footer-column h3 {
  color: #2d9cdb;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a,
.footer-column a {
  text-decoration: none;
  color: #e65b10;
  font-weight: 500;
  transition: 0.3s;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column p {
  line-height: 1.6;
}

.social-icons a {
  margin-right: 15px;
  font-size: 20px;
  color: #e65b10;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #333;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #666;
}

.footer-bottom a {
  color: #e65b10;
  text-decoration: none;
  font-weight: 500;
}

.footer-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .footer-section {
    padding: 2rem 0 1rem 0;
    font-size: 1rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  .footer-logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
  }
  .footer-column {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  .footer-column ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }
  .footer-column ul li {
    margin: 0.3rem 0;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  .social-icons {
    margin-top: 0.5rem;
    justify-content: center;
    gap: 1rem;
    display: flex;
  }
  .footer-section img {
    max-width: 120px;
    height: auto;
  }
}
