* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 35px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: absolute;
  top: 3px;
  left: -4px;
}
.logo img {
  height: 180px;
  /* padding-left: 20px; */
  /* border: 2px solid black; */
}
.payment-logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 150px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  /* font-weight: bold; */
  font-family:
    Verdana, Geneva, Tahoma, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nav-links a:hover {
  color: #ff7a00;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family:
    Verdana, Geneva, Tahoma, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* font-weight: bold; */
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  width: 230px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  color: #000;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.callimg {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}

.call-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: bold;
}

.call-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.call-item:hover {
  color: #e6007e; /* optional brand color */
}

/* Responsive */
@media (max-width: 600px) {
  .callimg {
    /* flex-direction: column;
    align-items: flex-start;
    gap: 14px; */
    display: none;
  }
  .navbar {
    position: relative;
  }
  .logo {
    position: absolute;
    top: 9px;
    left: 196px;
  }

  .call-item {
    font-size: 14px;
  }

  .call-item img {
    width: 18px;
    height: 18px;
  }
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  /* margin-left: -800px; */
  text-align: left;
  color: #fff;
  max-width: 450px;
  padding: 50px;
  animation: fadeUp 1s ease-out forwards;
  margin-top: 50px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0;
  animation: slideUp 0.9s ease-out forwards;
  animation-delay: 1s;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 28px;
  line-height: 1.6;
  opacity: 0;
  animation: slideUp 0.9s ease-out forwards;
  animation-delay: 0.5s;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #380137;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  font-weight: 600;
  border-radius: 4px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-btn:hover {
  background: #e86b00;
  transform: translateY(-2px);
}

/* Mobile height fix */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    height: calc(100vh - 80px);
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding-top: 30px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .hamburger {
    display: flex;
    float: right;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}
.process-section {
  width: 100%;
  background: #280137; /* orange */
}

.process-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-box {
  text-align: center;
  padding: 50px 20px;
  color: #fff;
  position: relative;
}

.process-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 2px;
  height: 60%;
  background: rgba(255, 255, 255, 0.7);
}

.process-box img {
  width: 60px;
  height: auto;
  margin-bottom: 16px;
}

.process-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .process-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-box:not(:last-child)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .process-wrap {
    grid-template-columns: 1fr;
  }

  .process-box {
    padding: 35px 15px;
  }
}
.categories-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.categories-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

/* CARD */
.category-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;

  opacity: 0;

  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;

  -webkit-animation: rotateInUpLeft 0.9s ease-out forwards;
  -moz-animation: rotateInUpLeft 0.9s ease-out forwards;
  animation: rotateInUpLeft 0.9s ease-out forwards;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    opacity: 0;
    -webkit-transform: rotate(45deg) translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0deg) translateY(0);
  }
}

@keyframes rotateInUpLeft {
  from {
    opacity: 0;
    transform: rotate(45deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
}
.category-card:nth-child(1) {
  animation-delay: 0.1s;
}
.category-card:nth-child(2) {
  animation-delay: 0.2s;
}
.category-card:nth-child(3) {
  animation-delay: 0.3s;
}
.category-card:nth-child(4) {
  animation-delay: 0.4s;
}
.category-card:nth-child(5) {
  animation-delay: 0.5s;
}
.category-card:nth-child(6) {
  animation-delay: 0.6s;
}
.category-card:nth-child(7) {
  animation-delay: 0.7s;
}
.category-card:nth-child(8) {
  animation-delay: 0.8s;
}
.category-card:nth-child(9) {
  animation-delay: 0.9s;
}
.category-card:nth-child(10) {
  animation-delay: 1s;
}
.category-card:nth-child(11) {
  animation-delay: 1.1s;
}
.category-card:nth-child(12) {
  animation-delay: 1.2s;
}
.hover-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.hover-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Overlay */
.hover-overlay {
  position: absolute;
  inset: 0;
  background: #280137; /* teal overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Text */
.hover-overlay h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

/* Button */
/* .hover-btn {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  font-size: 14px;
  transition: background 0.3s ease;
}

.hover-btn:hover {
  background: #fff;
  color: #000;
} */

/* Hover Effects */
.hover-box:hover img {
  transform: scale(1.05);
}

.hover-box:hover .hover-overlay {
  opacity: 1;
}

/* .category-card:nth-child(n) {
  animation-delay: calc(var(--i, 1) * 0.1s);
} */

.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.category-card span {
  display: block;
  background: #280137;
  color: #fff;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

/* Hover effect */
.category-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* Animation */
@keyframes flipUp {
  from {
    transform: rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.features-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* Feature box */
.feature-box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid #280137;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.feature-icon img {
  width: 60px;
  height: auto;
  margin-bottom: 16px;
}

/* Text */
.feature-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
/* Tablets */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small tablets / large mobiles */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-box {
    padding: 25px 18px;
  }

  .feature-box h4 {
    font-size: 17px;
  }

  .feature-box p {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-icon img {
    width: 50px;
  }

  .feature-box h4 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }
}

/* ORANGE CTA */
.cta-orange {
  background: #280137;
  padding: 50px 20px;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-inner h2 {
  color: #fff;
  font-size: 32px;
  margin: 0;
}

.cta-btn {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner h2 {
    font-size: 26px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
}

/* LEFT PANEL */
.contact-left {
  background: #280137;
  color: #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 26px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}
.contact-item img {
  position: absolute;
  bottom: 330px;
  left: 288px;
  height: 255px;
  z-index: 44;
  border: 2px solid #fff;
}
/* RIGHT PANEL */
.contact-right {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #fff;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 40px 8px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
  .contact-item img {
    bottom: 379px;
    left: 206px;
    height: 155px;
  }
}
.social-section {
  width: 100%;
  padding: 10px 15px;
}

.social-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  background: #fff;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
  .social-item {
    width: 40px;
    height: 40px;
  }
  .social-wrap {
    gap: 17px;
  }
}
.ct-section {
  padding: 80px 20px;
  background: #ffffff;
}

.ct-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.ct-header {
  text-align: center;
  margin-bottom: 50px;
}

.ct-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.ct-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* Content */
.ct-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Form */
.ct-form-wrap {
  background: #f8f8f8;
  padding: 40px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.ct-form textarea {
  resize: none;
  min-height: 120px;
}

.ct-form button {
  background: #280137;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* .ct-form button:hover {
  background: #e0238c;
} */

/* Info */
.ct-info-wrap {
  background: #111;
  color: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.ct-info-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ct-info-item span {
  font-size: 20px;
}

.ct-info-item p {
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .ct-content {
    grid-template-columns: 1fr;
  }

  .ct-form-wrap,
  .ct-info-wrap {
    padding: 30px 20px;
  }

  .ct-header h2 {
    font-size: 28px;
  }
}

.fb-bottom {
  background: #111;
  padding: 18px 10px;
  text-align: center;
}

.fb-bottom p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.3px;
}

.fb-bottom span {
  color: #fff;
  font-weight: 600;
}
.fb-bottom a {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 480px) {
  .fb-bottom p {
    font-size: 13px;
  }
}

.ct-info-wrap img {
  width: 200px;
}

.au-block {
  padding: 80px 20px;
  background-color: #ffffff;

  /* background-image: url("./assets/128-removebg-preview.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 400px auto; */

  position: relative;
}
.au-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/128-removebg-preview.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px auto;
  opacity: 0.08;
  pointer-events: none;
}
@media (max-width: 768px) {
  .au-block {
    background-size: 260px auto;
  }
}

.au-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Title */
.au-title {
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
}

.au-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #280137;
  display: block;
  margin: 12px auto 0;
}

/* Text */
.au-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
  font-weight: bold;
}

/* Button */
.au-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #280137;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.au-btn:hover {
  background: #280137;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .au-title {
    font-size: 28px;
  }

  .au-text {
    font-size: 15px;
  }
}
/* SIDEBAR */
.img-sidebar {
  position: fixed;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  /* gap: 14px; */
  z-index: 999;
}

/* ITEM */
.img-sidebar-item {
  position: relative;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: 0.4s ease;
  border: 1px solid #fff;
}

/* ICON */
.img-sidebar-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: 0.4s ease;
  border: 5px solid black;
}

/* LABEL 
.img-sidebar-item span {
  position: absolute;
  top: 0;
  right: -140px;
  height: 100%;
  width: 140px;
  background: #ff5f15;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  white-space: nowrap;
}

/* HOVER EFFECT
.img-sidebar-item:hover span {
  right: 64px;
}
*/
.img-sidebar-item:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .img-sidebar-item {
    width: 52px;
    height: 52px;
  }

  .img-sidebar-item:hover span {
    right: 52px;
  }
}

@media (max-width: 480px) {
  .img-sidebar {
    display: none;
  }
}
.testimonials {
  padding: 80px 20px;
  background-color: #000;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: white;
}

.subtitle {
  font-size: 16px;
  color: #aaaaaa;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #161616;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.quote {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #eaeaea;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #2a2a2a;
  padding-top: 15px;
}

.client-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
}

.client .name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.client .role {
  display: block;
  font-size: 13px;
  color: #888888;
}
