* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  overflow-x: hidden;
}

/* Navbar Styling */
.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 11;
}

.navbar-nav {
  margin: auto;
}
.nav-item .dropdown-menu {
  background-color: #d1d1d1;
}
.dropdown-item {
  font-weight: 500;
}
.nav-link {
  font-weight: 700;
}

.nav-button {
  margin-left: auto;
}

.nav-cta-button {
  font-weight: 700;
  background: linear-gradient(135deg, rgb(252, 24, 23) 0%, rgb(0, 0, 0) 100%);
  border: none;
  color: #f1ebeb;
}

.nav-cta-button:hover {
  background-color: #850002;
  box-shadow: 0 4px 12px rgba(252, 24, 23, 0.5);
  color: #ffffff;
}

/* Hover Dropdown - Only on Desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .nav-item.dropdown .dropdown-toggle::after {
    transition: transform 0.2s ease-in-out;
  }

  .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 991.98px) {
  .nav-button {
    margin: 10px 0 0;
  }
}
/* Pre-header Responsive Tweak */
@media (max-width: 575.98px) {
  .pre-header .d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* hero section  */
.carousel-item {
  height: 100vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 1s ease-in-out;
}

.index-hero-carousel-btn {
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
}

.carousel-caption {
  bottom: 30%;
  z-index: 10;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
  font-size: 0.9rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* why choose us section  */

.why-choose-wrapper {
  background-color: #0a0a0a;
  color: white;
  padding: 60px 0;
}
.why-left {
  border-top: 5px solid #fc1817;
  border-bottom: 5px solid #fc1817;
  border-radius: 40px;
  padding: 40px 0px;
}

.why-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-left p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0 !important;
}

.number-circle {
  width: 60px;
  margin-bottom: 1rem;
  height: 60px;
  border: 0.4rem solid white;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.circle-1 {
  background-color: #20332f; /* same as left background */
}

.circle-2 {
  background-color: #66767a;
}

.circle-3 {
  background-color: #d4b440;
}
.circle-4 {
  background-color: #6e8af5;
}

.why-right .item {
  margin-bottom: 30px;
}

.why-us-item h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.why-us-item p {
  color: #cecece;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 767px) {
  .why-choose-wrapper {
    text-align: center;
  }

  .why-right {
    padding-top: 30px;
  }

  .why-left {
    padding-bottom: 20px;
  }
}

/* case study section  */
.case-studies-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 12px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* cursor: pointer; */
  height: 100%;
  background: white;
}

.case-study-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.case-study-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-content {
  transform: translateY(0);
}

.case-study-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.case-study-description {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 1;
  line-height: 1.5;
}

/* Height adjustments for different card sizes */
.large-card .case-study-image {
  height: 500px;
}

.medium-card .case-study-image {
  height: 240px;
}

.small-card .case-study-image {
  height: 240px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .large-card .case-study-image,
  .medium-card .case-study-image {
    height: 300px;
  }

  .small-card .case-study-image {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .case-studies-section {
    padding: 60px 0;
  }

  .case-study-content {
    padding: 30px 20px 20px;
  }

  .case-study-title {
    font-size: 1.3rem;
  }

  .case-study-description {
    font-size: 0.9rem;
  }
}

/*event hero carousel  */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel.owl-carousel .owl-item {
  height: 100vh;
}

.hero-carousel .item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-carousel .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slide-1 {
  background: url("images/professionals-present-financial-charts-meeting-min.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.slide-2 {
  background: url("images/StockCake-Luxury\ Oceanfront\ Living_1751458877.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.slide-3 {
  background: url("images/computer-screens-running-programming-code-empty-software-developing-agency-office-computers-parsing-data-algorithms-background-neural-network-servers-cloud-computing-data-room-min.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
.slide-4 {
  background: url("images/computer-screens-running-programming-code-empty-software-developing-agency-office-computers-parsing-data-algorithms-background-neural-network-servers-cloud-computing-data-room-min.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
.slide-5 {
  background: url("images/computer-screens-running-programming-code-empty-software-developing-agency-office-computers-parsing-data-algorithms-background-neural-network-servers-cloud-computing-data-room-min.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1800ac;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.8px;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-theme .owl-nav .owl-prev {
  left: 30px;
}

.owl-theme .owl-nav .owl-next {
  right: 30px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1);
}

/* dream destination event carousel  */
.custom-card {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.custom-card img {
  height: 250px;
  object-fit: cover;
}

.owl-carousel .item {
  padding: 10px;
  height: 100%;
}

/*top rated events  */
.event-card {
  background: linear-gradient(135deg, #fe1717 0%, #fe1717 100%);
  border-radius: 24px;
  padding: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px dashed #ffffff;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-1rem);
}

/*event Services Section */
.services {
  padding: 70px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-title .highlight {
  background: linear-gradient(135deg, #fe1717 0%, #fe1717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 3rem !important;
}
.small-para{
  font-size: 0.9rem;
  color: #64748b;
  /* max-width: 600px; */
  margin: 0 auto;
  margin-bottom: 3rem !important;
}
.service-card {
  background: white;
  border-radius: 24px;
  padding: 1rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #fe1717 0%, #fe1717 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #fe1717;
}

.service-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* core services  */

.section-subtitle-para {
  font-size: 1.2rem;
  color: #64748b;
  /* max-width: 600px; */
  margin: 0 auto;
  margin-bottom: 3rem !important;
}
.reputation-section {
  background-color: #0a0a0a;
}

.core-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  /* margin-bottom: 30px; */
}

.core-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #fe1717, #000000);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.core-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
}

.core-service-card:hover::before {
  transform: scaleX(1);
}
.core-services-btn{
  position: absolute;
  bottom: 50px;
}
.core-service-header {
  display: flex;
  /* align-items: center; */
  margin-bottom: 30px;
}

.core-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 15px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.core-service-card:hover .core-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.core-service-title {
  /* font-family: "Inter", sans-serif; */
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
  display: inline-block;
}

.core-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 60px;
}

.core-service-list li {
  padding: 10px 0;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: normal !important;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.core-service-list li:last-child {
  border-bottom: none;
}

.core-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fc1817;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.core-service-list li:hover {
  color: #1e293b;
  padding-left: 35px;
}

.core-service-list li:hover::before {
  transform: translateY(-50%) scale(1.3);
}

.core-service-icon {
  background: linear-gradient(135deg, #fe1717, #000000);
}

/* Responsive Design */

@media (max-width: 991px) {
  .reputation-section {
    padding: 80px 0;
  }

  .core-service-card {
    padding: 30px;
  }

  .core-service-header {
    flex-direction: column;
    text-align: center;
  }

  .core-service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .reputation-section {
    padding: 60px 0;
  }

  .core-service-card {
    padding: 25px 20px;
  }

  .core-service-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 575px) {
  .core-service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .core-service-list li {
    font-size: 0.95rem;
  }
}

/* Animation */
.core-service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.core-service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.core-service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.core-service-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* event planner section */

.rotating-section {
  padding: 80px 0;
  overflow: hidden;
  background-color: #000000;
}

.rotation-container {
  position: relative;
  width: 400px;
  height: 400px;
  /* margin: 0 auto; */
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  /* height: 200px; */
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  /* border: 4px solid #fff; */
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  /* transition: all 0.3s ease; */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-item:hover {
  /* transform: scale(1.1); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-item i {
  font-size: 24px;
  margin-bottom: 5px;
  color: #fe1717;
}

.card-item .card-title {
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  line-height: 1.2;
}

/* Position cards around the circle */
.card-center-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-center-title {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  /* animation: zigzag 2s linear alternate infinite;/ */
}
/* @keyframes zigzag {
  0% {
    transform: translate(10px, 10px);
  }
  33% {
    transform: translate(0px, -10px);
  }
  100% {
    transform: translate(-10px, -10px);
  }
} */
.card-1 {
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.card-2 {
  top: 10%;
  right: 10%;
  transform: translate(50%, -50%);
}

.card-3 {
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
}

.card-4 {
  bottom: 10%;
  right: 10%;
  transform: translate(50%, 50%);
}

.card-5 {
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.card-6 {
  bottom: 10%;
  left: 10%;
  transform: translate(-50%, 50%);
}

.card-7 {
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
}

.card-8 {
  top: 10%;
  left: 10%;
  transform: translate(-50%, -50%);
}

/* Counter-rotate card content to keep text readable */
.card-content {
  animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rotation-container {
    width: 300px;
    height: 300px;
  }

  .center-image {
    width: 250px;
    height: 250px;
  }

  .card-item {
    width: 60px;
    height: 60px;
  }

  .card-item i {
    font-size: 18px;
  }

  .card-item .card-title {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .rotation-container {
    width: 250px;
    height: 250px;
  }

  .center-image {
    width: 200px;
    height: 200px;
  }

  .card-item {
    width: 50px;
    height: 50px;
  }

  .card-item i {
    font-size: 16px;
  }

  .card-item .card-title {
    font-size: 7px;
  }
}

/* Pause animation on hover */
.rotation-container:hover {
  animation-play-state: paused;
}

.rotation-container:hover .card-content {
  animation-play-state: paused;
}

/* Contact CTA section  */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(
      rgba(110, 138, 248, 0.5),
      rgba(171, 187, 249, 0.5)
    ),
    url(images/260b4d57-1397-411a-9a15-8dabaa9c18f3-min.jpg) no-repeat center;
  background-size: cover;
}
.cta-btn {
  transition: all 0.5s ease;
}
.cta-btn:hover {
  transform: translateY(-5px);
  font-weight: 600;
}

/* solutions section  */
.solutions-section {
  padding: 70px 0 40px 0px;
  background-color: #f8f9fa;
}

.solution-card img {
  height: 200px;
  object-fit: cover;
}
.solution-card {
  transition: transform 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 40px 0px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text h3 {
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #64748b;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

/* career section  */
.career-section {
  background-color: #6e8af5;
  padding: 50px;
  border-radius: 0;
  margin-top: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.career-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30%, -30%);
  z-index: -1;
}

.career-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-30%, 30%);
  z-index: -1;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.feature-list li i {
  color: #ffffff;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* journey section  */
.branding-story-title {
  text-align: left;
  font-weight: 600;
}
.mastery-container {
  width: 100%;
  max-width: 900px;
  height: 550px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.journey-circle {
  border: 2px dashed #6e6e6e;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.journey-outer-circle {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
}

.journey-inner-circle {
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
}

.center-title {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 1;
}

.mastery-tags {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tag {
  position: absolute;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.tag.yellow {
  background-color: #fbe336;
  color: #000;
}
.tag.blue {
  background-color: #2196f3;
}
.tag.purple {
  background-color: #9c27b0;
}
.tag.red {
  background-color: #f06292;
}
.tag.green {
  background-color: #4caf50;
}
.tag.pink {
  background-color: #b085f5;
}
.tag.dark {
  background-color: #333;
}
.tag.faded {
  background-color: #e0e0e0;
  color: #000000;
}

.brand-label,
.product-label {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
}

.brand-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  margin-right: 6px;
}

.product-label::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  margin-left: 6px;
}

/* what we offer section  */

.service-offer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc1817, #8a0202);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-offer-card:hover::before {
  transform: scaleX(1);
}

.service-offer-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  display: block;
}

.service-offer-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.service-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-offer-list li {
  padding: 8px 0;
  color: #6c757d;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  transition: color 0.3s ease;
}

.service-offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fc1817;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-offer-list li:hover {
  color: #2c2c2c;
}

.service-offer-list li:hover::before {
  background: #000000;
  transform: translateY(-50%) scale(1.2);
}

.service-offer-card .service-offer-icon {
  color: #fc1817;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-title {
    font-size: 3rem;
  }

  .service-offer-card {
    padding: 35px 25px;
  }
}

@media (max-width: 991px) {
  .service-offer-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .service-offer-card {
    padding: 30px 20px;
  }

  .service-offer-title {
    font-size: 1.6rem;
  }

  .service-offer-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .service-offer-card {
    padding: 25px 20px;
  }

  .service-offer-title {
    font-size: 1.4rem;
  }
}

/* Animation for cards on scroll */
.service-offer-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-offer-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-offer-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-offer-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-offer-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* industries section  */
.industries-section {
  padding: 120px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-container {
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.industry-card {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid #333333;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  opacity: 0;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover {
  border-color: #fc1817;
  box-shadow: 0 30px 60px rgba(252, 24, 23, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-right: 20px;
  position: relative;
}

.industry-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.industry-services {
  margin-top: 25px;
}

.industry-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-service-list li {
  padding: 12px 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-service-list li:last-child {
  border-bottom: none;
}

.industry-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fc1817;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  transition: all 0.3s ease;
}

/* Industry-specific styling */
.real-estate .industry-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
}

.fashion .industry-icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
}

.hospitality .industry-icon {
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: white;
}

.jewellery .industry-icon {
  background: linear-gradient(135deg, #f59e0b, #eab308);
  color: white;
}

.luxury-services .industry-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .industries-section {
    padding: 100px 0;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .industries-section {
    padding: 80px 0;
  }
  .industry-card {
    padding: 40px 30px;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
  }

  .industry-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .industry-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 575px) {
  .industry-card {
    padding: 30px 20px;
  }

  .industry-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .industry-service-list li {
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 40px 0;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #e2e8f0;
  border-color: #fc1817;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  /* border-image: 
    linear-gradient(
      45deg, 
      red, 
      rgba(0, 0, 0, 0)
    ) 0 100%;
  border-width: 4px; */
  /* border-radius: 50%; */
  /* border-style: solid; */
  border: 4px solid #fc1817;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #64748b;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* partner section  */
.partner {
  background: linear-gradient(135deg, #fc1817 0%, #000000 100%);
  padding: 40px 0px;
}
.partners-carousel {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200rem * 14);
}

.partner-item {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.1);
}

.partner-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(50%) opacity(0.8);
  transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8));
  }
}

.carousel-track:hover {
  animation-play-state: paused;
}

.partner-stats-section {
  margin-top: 4rem;
}

.partner-stat-item {
  text-align: center;
  color: white;
  margin-bottom: 2rem;
}

.partner-partner-stat-label {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .partners-section {
    padding: 60px 0;
  }

  .partner-item {
    flex: 0 0 150px;
  }

  .carousel-track {
    width: calc(150px * 16);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 8));
    }
  }

  .partner-partner-stat-label {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .partner-item {
    flex: 0 0 120px;
    padding: 15px;
  }

  .carousel-track {
    width: calc(120px * 16);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 8));
    }
  }

  .partner-logo {
    max-width: 80px;
    max-height: 40px;
  }
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #fc1817 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23b)"/><circle cx="800" cy="800" r="200" fill="url(%23b)"/></svg>'); */
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-light {
  background: white;
  color: #000000;
  border: none;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: #000000;
  color: #fc1817;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 20px;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fc1817;
  transform: translateY(-3px);
}

/* contact page  */
.contact-page-body {
  background: rgb(233, 219, 219);
}
.contact-main-container {
  color: white;
  min-height: 100vh;
  /* background: rgba(255, 255, 255, 0.05); */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  padding: 40px;
  margin: 0 auto;
  max-width: 900px;
}

.contact-info-cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.info-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  text-align: center;
}

.award-badge {
  background: #fc1817;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.contact-icon {
  background: #fc1817;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.team-icon {
  background: #fc1817;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 3px;
  text-align: center;
  line-height: 30px;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
}

.social-icons .facebook {
  background: #3b5998;
}
.social-icons .instagram {
  background: #e4405f;
}
.social-icons .linkedin {
  background: #0077b5;
}
.social-icons .google {
  background: #dd4b39;
}
.social-icons .twitter {
  background: #1da1f2;
}

.form-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
}

.form-control {
  background: rgba(97, 77, 77, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgb(0, 0, 0);
  padding: 12px 15px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #1900ff;
  box-shadow: 0 0 0 0.2rem rgba(5, 0, 77, 0.25);
  color: rgb(0, 0, 0);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-label {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}

.btn-submit {
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 179, 66, 0.4);
}

@media (max-width: 768px) {
  .contact-info-cards {
    flex-direction: column;
  }

  .main-container {
    margin: 20px;
    padding: 20px;
  }
}

/* brand strategy page  */
.strategy-hero {
  height: 100vh;
  width: 100%;
  background: url("images/17.jpg") no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgb(255, 0, 0);
}
.strategy-hero-cta {
  border: 2px solid black;
  border-radius: 10px;
  transition: all 0.6s ease;
}
.strategy-hero-cta:hover {
  background-color: #fcb795;
  transform: scale(1.1);
}

/* strategy benefits  */
.benefits-section {
  background: #f8f9fa;
  padding: 60px 20px;
}
.strategy-benefit-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strategy-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}
.strategy-benefit-icon {
  font-size: 40px;
  color: #fe1716;
  margin-bottom: 20px;
}
.card-text {
  font-size: 0.9rem;
}
.card-title {
  font-weight: 600;
  margin-bottom: 15px;
}
.digital-solution-btn {
  color: #ffffff;
  border: none;
  background: linear-gradient(135deg, rgb(252, 24, 23) 0%, rgb(0, 0, 0) 100%);
}
.digital-solution-btn:hover {
  color: #ffffff !important;
  background-color: rgb(133, 1, 1);
  box-shadow: 0 6px 30px rgba(252, 24, 23, 0.5);
}
.core-service-explore-btn{
  display: grid;
  place-items: center;
}

/* strategy element  */
.brand-section {
  background: linear-gradient(135deg, rgb(182, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.brand-box {
  background: white;
  height: 90%;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.brand-box:hover {
  transform: translateY(-5px);
}
.brand-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* brand strategy process  */
.strategy-process-section {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(images/4397-min.jpg) no-repeat center;
  background-size: cover;
}

.step-title {
  font-weight: 600;
  margin-bottom: 14px;
}
.timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.timeline-content {
  background: #d1d1d1;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 60%;
  position: relative;
  z-index: 1;
}
.timeline-content p {
  margin-bottom: 0;
  font-weight: 500;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background-color: #fe1716;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.left .timeline-icon {
  left: -25px;
}

.right .timeline-icon {
  right: -25px;
}

.left .timeline-content {
  margin-left: 40px;
}

.right .timeline-content {
  margin-right: 40px;
}

@media (min-width: 768px) {
  .timeline-step {
    display: flex;
    align-items: flex-start;
  }

  .left {
    flex-direction: row;
  }

  .right {
    flex-direction: row-reverse;
  }
}

@media (max-width: 767.98px) {
  .timeline-icon {
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
  }

  .timeline-content {
    margin-top: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* timeline process  */
.timeline-tab {
  background-color: #0a0a0a;
}
.timeline-ul {
  display: grid;
  grid-template-columns: 0.25rem 1fr;
  grid-auto-columns: max-content;
  column-gap: 2rem;
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

/* line */
.timeline-ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(0.25rem / 2);
}

/* columns*/

/* row gaps */
.timeline-ul .timeline-li:not(:last-child) {
  margin-bottom: 2rem;
}

/* card */
.timeline-ul .timeline-li {
  grid-column: 2;
  margin-inline: 1.5rem;
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.timeline-ul .timeline-li .date {
  height: 3rem;
  margin-inline: calc(1.5rem * -1);
  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(3rem / 2) 0 0 calc(3rem / 2);
}

/* date flap */
.timeline-ul .timeline-li .date::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.timeline-ul .timeline-li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: rgba(245, 245, 245);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + 2rem + 0.25rem / 2);
}

/* title descr */
.timeline-ul .timeline-li .title,
.timeline-ul .timeline-li .descr {
  background: rgba(245, 245, 245);
  position: relative;
  padding-inline: 1.5rem;
}
.timeline-ul .timeline-li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 600;
}
.timeline-ul .timeline-li .descr {
  padding-block-end: 1.5rem;
  /* font-weight: 300; */
}

/* shadows */
.timeline-ul .timeline-li .title::before,
.timeline-ul .timeline-li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.timeline-ul .timeline-li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline-ul .timeline-li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline-ul {
    grid-template-columns: 1fr 0.25rem 1fr;
  }
  .timeline-ul::before {
    grid-column: 2;
  }
  .timeline-ul .timeline-li:nth-child(odd) {
    grid-column: 1;
  }
  .timeline-ul .timeline-li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .timeline-ul .timeline-li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline-ul .timeline-li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline-ul .timeline-li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + 2rem + 0.25rem / 2);
  }
  .timeline-ul .timeline-li:nth-child(odd) .date {
    border-radius: 0 calc(3rem / 2) calc(3rem / 2) 0;
  }
}
/* brand strategy tabs  */
/* .timeline-tab{
    background-color: #0a0a0a;
}
.fold-card {
  overflow: hidden;
  height: 60px;
  transition: all 0.5s ease;
}
.fold-card:hover {
  height: 100%;
}
.fold-process-card {
  height: 100px;
  background-color: bisque;
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.fold-process-card:hover {
  transform: scale(1);
}

.tabs-industry-section {
  padding: 50px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
} */

/* OOH nested dropdown  */
.demoChild {
  display: none !important;
  padding-left: 0 !important;
}
ul.demoChild {
  position: absolute;
  left: 101%;
  border-radius: 6px;
  top: 0;
  background-color: #d1d1d1;
  width: max-content;
}
#demo:hover + ul.demoChild,
ul.demoChild:hover {
  display: block !important;
}
.demoChild a {
  width: 100%;
  text-decoration: none;
}
.demoChild a li {
  color: #212529;
  font-weight: 500;
  padding-left: 0 !important;
}

/* startup branding page  */
.startup-branding-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/startup-business-progress-strategy-enterprise-min.jpg) no-repeat
      center;
  background-size: cover;
  border-bottom: none;
}
.startup-hero-cta {
  border: 2px solid black;
  border-radius: 10px;
  background-color: #f59667;
  transition: all 0.6s ease;
}
.startup-hero-cta:hover {
  background-color: #f59667;
  transform: scale(1.1);
}

/* steps to build startup  */
.startup-steps-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(images/businessmen-hands-wooden-table-with-documents-drafts-min.jpg)
      no-repeat center;
  background-size: cover;
}

/* startup brand packages  */
.branding-package {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.package-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.package-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.nav-tabs {
  border: none;
  margin-bottom: 2rem;
  background: white;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link {
  border: none;
  color: #6b7280;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.nav-tabs .nav-link:hover {
  background-color: rgba(99, 102, 241, 0.1);
  color: #000000;
}

.nav-tabs .nav-link.active {
  background: #fc1817;
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tab-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 450px;
}

.subsection {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #fc1817;
}

.subsection h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.subsection ul {
  margin: 0;
  padding-left: 1.5rem;
}

.subsection li {
  margin-bottom: 0.5rem;
  color: #000000;
}

.subsection li strong {
  color: #1f2937;
}

.nested-list {
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.nested-list li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.badge-optional {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  /* .nav-tabs {
                flex-direction: column;
            } */

  .nav-tabs .nav-link {
    text-align: center;
    margin: 0.25rem 0;
  }

  .tab-content {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .branding-package {
    padding: 1rem 0.5rem;
  }

  .subsection {
    padding: 1rem;
  }
}

/* corporate branding solutions  */
.corporate-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/tall-skyscraper-reflects-futuristic-city-skyline-dusk-generated-by-ai-min.jpg")
      no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.strategy-hero-cta {
  border: 2px solid black;
  border-radius: 10px;
  transition: all 0.6s ease;
  background-color: #ffffff;
  color: black !important;
}
.strategy-hero-cta:hover {
  color: white !important;
  background-color: #000;
  transform: scale(1.1);
}


.corporate-goals{
  background-color: rgb(255, 216, 216);
}

/* services offered by agencies  */
.fmea-section {
  /* padding: 60px 0; */
  background-color: #ffffff;
}

.fmea-item {
  text-align: center;
  background-color: #bfc0bf;
  padding: 15px;
  /* margin-bottom: 30px; */
  height: 100%;
  border-radius: 15px;
}

.gear-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gear-shape {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gear-shape::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  clip-path: polygon(
    50% 0%,
    60% 15%,
    85% 15%,
    85% 35%,
    100% 50%,
    85% 65%,
    85% 85%,
    60% 85%,
    50% 100%,
    40% 85%,
    15% 85%,
    15% 65%,
    0% 50%,
    15% 35%,
    15% 15%,
    40% 15%
  );
}

.gear-inner {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gear-letter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #292929;
}

.failure {
  color: #4a90e2;
}
.mode {
  color: #7cb342;
}
.effect {
  color: #ff7043;
}
.analysis {
  color: #26a69a;
}

.fmea-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .gear-icon {
    width: 100px;
    height: 100px;
  }

  .gear-inner {
    width: 60px;
    height: 60px;
  }

  .gear-letter {
    font-size: 2rem;
  }

  .fmea-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .fmea-section {
    padding: 40px 0;
  }

  .gear-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .gear-inner {
    width: 55px;
    height: 55px;
  }

  .gear-letter {
    font-size: 1.8rem;
  }
}

/* Need a tailored branding plan for your company */
.branding-form {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("images/fb8bb548-f49f-462b-911e-92ad1706c18a.jpg") no-repeat center;
  background-size: cover;
}

.branding-form-container {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.branding-form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: larger;
}
.form-icon {
  color: #fc1817;
}
.branding-form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #000000;
  padding: 0.75rem;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.branding-form-control:focus,
.form-select:focus {
  border-color: #464646;
  box-shadow: 0 0 0 0.2rem rgba(65, 65, 65, 0.25);
  outline: none;
}
.form-check-label {
  font-size: 0.9rem;
  color: #2d3748;
}
.form-check-input {
  margin-top: 0.3rem;
  border: 1px solid black;
}
.branding-form-btn-submit {
  background-color: #fc1817;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.branding-form-btn-submit:hover {
  background-color: #c90003;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.branding-main-container {
  padding: 0rem 1rem;
  max-width: 800px;
}
@media (max-width: 768px) {
  .branding-form-container {
    padding: 1.75rem;
  }
}
@media (max-width: 576px) {
  .branding-main-container {
    padding: 1rem 0.75rem;
  }

  .branding-form-container {
    padding: 1.25rem;
  }
}
#regions::placeholder {
  color: #000;
  opacity: 0.6;
}
#subBrands::placeholder {
  color: #000;
  opacity: 0.6;
}

/* Visual Brand Design and Identity Package */

.visual-border {
  border-bottom: 4px solid #fc1817;
  border-radius: 10px;
  padding: 0.5rem;
}

/* New product launch  */
.new-product-hero {
  height: 100vh;
  width: 100%;
  background: url("images/newproduct-hero.jpg") no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-bottom: 1px solid rgb(255, 0, 0); */
}

.product-step-one {
  background: url(images/bg-vectors-removebg-preview.png) no-repeat right bottom;
  background-size: cover;
}
.min-margin {
  margin-bottom: 0.5rem !important;
}
.step-card {
  padding: 1rem;
  border: 4px solid rgb(187, 27, 27);
  border-radius: 10px;
  height: 100%;
  background-color: #ffffff;
  color: #000000;
}
.product-step-two {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(images/4397-min.jpg) no-repeat center;
  background-size: cover;
}

/* public relation page  */
.public-relation-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/business-brain-storming-min.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: none;
}
.relation-hero-cta {
  border: 2px solid black;
  border-radius: 10px;
  background-color: #ffffff;
  color: #000000;
  transition: all 0.5s ease;
}
.relation-hero-cta:hover {
  background-color: #000000;
  color: white !important;
  transform: scale(1.1);
}

/* public relation services */
.pr-section {
  padding: 60px 0;
  background: url(images/bg-vectors-removebg-preview.png) no-repeat right;
  background-size: cover;
}
.pr-card {
  background-color: #e0e0e0;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
  transition: transform 0.3s ease;
}
.pr-card:hover {
  transform: translateY(-5px);
}
.pr-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fe1717;
  margin-bottom: 15px;
}
.pr-card p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pr-card h3 {
    font-size: 1.3rem;
  }
  .pr-card p {
    font-size: 0.9rem;
  }
}

/* content creation page  */
.content-creation-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/content-creation.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: none;
}

/* marketing and advertising page  */
.marketing-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/marketing-advertising.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: none;
}

/* design and branding page */
.designing-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/designing-red.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: none;
}

/* strategic growth page  */
.strategic-growth {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/future-visions-business-technology-concept-min.jpg) no-repeat
      center;
  background-size: cover;
  /* background-attachment: fixed; */
  border-bottom: none;
}
.market-analysis {
  background-color: rgb(0, 0, 0);
}
.market-analysis-img {
  width: 100%;
  height: auto;
}

/* influencer and social media page  */
.influencer-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(images/social-media-concept-with-device.jpg) no-repeat center;
  background-size: cover;
  /* background-attachment: fixed; */
  border-bottom: none;
}

.influence-modern-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: none;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.influence-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc1817, #700505);
}

.influence-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.influence-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: white;
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.influence-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.influence-card-1 .influence-card-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.influence-card-2 .influence-card-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}
.influence-card-3 .influence-card-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.influence-card-4 .influence-card-icon {
  background: linear-gradient(135deg, #75d49a, #40ac69);
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .influence-modern-card {
    margin-bottom: 30px;
    padding: 30px 25px;
  }

  .cards-section {
    padding: 40px 0;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* luxury branding page  */

.luxury-hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-background {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #e41919 0%,
    #e42929 25%,
    #f093fb 50%,
    #e6324a 75%,
    #4facfe 100%
  );
  background-size: 400% 400%;
  animation: luxury-rotate 20s linear infinite,
    gradientShift 15s ease-in-out infinite;
  z-index: -2;
}

.rotating-background::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.rotating-background::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 30%;
  height: 30%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 50%;
  animation: luxury-rotate 12s linear infinite reverse;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

/* .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        } */

/* .section-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        } */

.luxury-hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.luxury-btn-hero {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  color: white;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes luxury-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@media (max-width: 768px) {
  .luxury-btn-hero {
    padding: 10px 25px;
    font-size: 1rem;
    margin: 0 5px 10px 0;
  }
}

/* who we work with  */
.who-we-work-with {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.client-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc1817, #700505);
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.client-icon {
  font-size: 3rem;
  color: #fc1817;
  margin-bottom: 1.5rem;
  display: inline;
}

@media (max-width: 768px) {
  .client-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .who-we-work-with {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .client-icon {
    font-size: 2.5rem;
  }
}

/* branding process page  */
.branding-process-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/projects-delivered333.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* branding journey page  */

.branding-journey-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/problem-solving-concept-with-man-working-min.jpg") no-repeat top
      center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* enquiry form section  */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fc1817;
  border: 2px solid white;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(252, 24, 23, 0.15);
  transition: all 0.3s ease;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn:hover {
  background: #fc1817;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}
.invalid-feedback {
  color: #000;
}

.form-control::placeholder {
  color: #818181;
}
.form-select .option-selected {
  color: #818181;
}
.send-enquiry-arrow {
  margin-right: 10px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
  }
}

/* Modal animations */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

/* Custom form styling */
.enquiry-form {
  max-height: 80vh;
  overflow-y: auto;
}

.form-label {
  font-weight: 500;
  color: #495057;
}

.form-control:focus,
.form-select:focus {
  border-color: #fc1817;
  box-shadow: 0 0 0 0.2rem rgba(252, 24, 23, 0.25);
}

/* Loading animation */
.btn-loading {
  position: relative;
}

.btn-loading:disabled {
  pointer-events: none;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* digital service page  */
.digital-service-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/futuristic-smart-city-with-5g-global-network-technology\ \(1\)-min.jpg")
      no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-bottom: 1px solid rgb(255, 0, 0); */
}
.grid-container {
  width: min(75rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 2rem;
}
.digi-service-card {
  padding: 2.5rem;
  background-image: linear-gradient(to bottom left, #e0e4e5, #f2f6f9);
  border-radius: 2rem;
  gap: 1.5rem;
  display: grid;
  grid-template: "title icon" "content content" "bar bar" / 1fr auto;
  font-family: system-ui, sans-serif;
  color: #444447;
  box-shadow: inset -2px 2px hsl(0 0 100% / 1),
    -20px 20px 40px hsl(0 0 0 / 0.25);

  .digi-card-title {
    font-size: 1.5rem;
    grid-area: title;
    align-self: center;
    text-transform: uppercase;
    font-weight: 500;
    /* word-break: break-all; */
  }
  .digi-card-icon {
    grid-area: icon;
    font-size: 3rem;

    > i {
      color: transparent;
      background: linear-gradient(to right, rgb(252, 24, 23), rgb(95, 1, 1));
      background-clip: text;
    }
  }
  .digi-card-content {
    grid-area: content;
    & > *:first-child {
      margin-top: 0rem;
    }
    & > *:last-child {
      margin-bottom: 0rem;
    }
  }
  &::after {
    content: "";
    grid-area: bar;
    height: 2px;
    background-image: linear-gradient(90deg, rgb(252, 24, 23), rgb(95, 1, 1));
    /*     margin-inline: -1.5rem; */
  }
}

.digital-stats-section {
  background: #000000;
  color: white;
  padding: 60px 0;
}

.digital-stat-item {
  text-align: center;
  padding: 1rem;
}

.digital-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fc1817;
  display: block;
}

.digital-stat-label {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.8;
}

/* activities page  */
.activity-hero-section {
  background: linear-gradient(to right, #e0f7fa, #e9f1f8);
  padding: 100px 0;
  color: #343a40;
}
.activities-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  height: 100%; /* Ensure cards in a row have equal height */
}

.activities-card:hover {
  transform: translateY(-5px);
  /* border-top: 3px solid #fc1817; */
}
.activity-about-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.activity-about-section img,
.activity-hero-section img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Icon styling for placeholder */
.icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #e0f7fa;
  color: #fc1817;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* tv ads page  */
.tv-ads-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/man-watching-streaming-service-his-tv.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tv-card {
  background: linear-gradient(to right, rgb(0, 0, 0), rgb(252, 24, 23));
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out;
  /* height: 100%; */
}
.tv-card:hover {
  transform: translateY(-10px) rotate(2deg);
}
.ads-content {
  height: 80px;
  display: grid;
  place-items: center;
  text-align: center;
}
/* Tv vs OTT  */
.tv-vs-ott-section {
  background: linear-gradient(135deg, #000000 0%, #fc1817 100%);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.tv-vs-ott-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.tv-vs-ott-section .container {
  position: relative;
  z-index: 2;
}

.tv-vs-ott-comparison-card {
  height: 95%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tv-vs-ott-comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tv-vs-ott-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.tv-vs-ott-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tv-vs-ott-feature-list {
  list-style: none;
  padding: 0;
}

.tv-vs-ott-feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.tv-vs-ott-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

@media (max-width: 768px) {
  .tv-vs-ott-comparison-card {
    padding: 1.5rem;
  }
}

/* Radio ads page  */
.radio-ads-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/side-view-radio-microphone-with-copy-space-min.jpg") no-repeat
      center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* print ads page  */
.print-ads-hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/overhead-view-yellow-grey-cardboard-papers-blue-surface\ \(1\).jpg")
      no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* process section  */
.creative-tv {
  background: url(images/5594016.jpg) no-repeat center;
  background-size: cover;
}
.process-timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.process-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}

.process-timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.process-timeline-item:nth-child(odd) .process-timeline-content {
  margin-right: calc(50% + 40px);
  text-align: right;
}

.process-timeline-item:nth-child(even) .process-timeline-content {
  margin-left: calc(50% + 40px);
  text-align: left;
}

.process-timeline-marker {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.process-timeline-marker i {
  font-size: 1.5rem;
  color: #fc1817;
}

.process-timeline-content {
  background: rgba(228, 42, 42, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-step-number {
  display: inline-block;
  background: #fc1817;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.process-step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process-timeline:before {
    left: 30px;
  }

  .process-timeline-item:nth-child(odd) .process-timeline-content,
  .process-timeline-item:nth-child(even) .process-timeline-content {
    margin-left: 80px;
    margin-right: 0;
    text-align: left;
  }

  .process-timeline-marker {
    left: 30px;
    width: 50px;
    height: 50px;
  }

  .process-timeline-marker i {
    font-size: 1.2rem;
  }

  .process-timeline-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .process-timeline-content {
    padding: 15px;
  }

  .process-step-title {
    font-size: 1.2rem;
  }
}

/* ORM page  */
.orm-hero-section {
  background: url(images/geometric-background-with-copy-space-min.jpg),
    linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)) no-repeat
      center;
  background-size: cover;
  padding: 100px 0;
  color: #343a40;
}

.orm-services-section {
  /* background: linear-gradient(135deg, #000000 0%, #fc1817 100%); */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.orm-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.orm-services-section .container {
  position: relative;
  z-index: 2;
}

.orm-service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.orm-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #000000, #fc1817);
}

.orm-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.orm-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #000000, #fc1817);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.orm-service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.orm-service-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .orm-services-section {
    padding: 60px 0;
  }

  .orm-service-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .orm-service-card {
    padding: 1.5rem;
  }
}

/* branding page  */

.branding-hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #fc1817 100%);
  position: relative;
  overflow: hidden;
}

.branding-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.branding-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.branding-hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.branding-hero-subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
}

.branding-hero-cta-button {
  gap: 1rem;
}

.branding-hero-btn-custom {
  border: 2px solid white;
  color: white;
  padding: 13px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.branding-hero-btn-custom:hover {
  background: white;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.branding-hero-visual {
  position: relative;
  z-index: 2;
}

.branding-mockup-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.branding-mockup-placeholder {
  background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
  border-radius: 15px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #6b7280;
  position: relative;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .branding-hero-headline {
    font-size: 2.5rem;
  }

  .branding-hero-subheadline {
    font-size: 1.1rem;
  }

  .branding-hero-cta-button {
    flex-direction: column;
    align-items: center;
  }

  .branding-hero-btn-custom {
    width: 100%;
    max-width: 300px;
  }

  .branding-mockup-placeholder {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .branding-hero-headline {
    font-size: 2rem;
  }

  .branding-hero-section {
    min-height: auto;
    padding: 5rem 0;
  }
}

/* media page  */
.metro-hero-section {
  height: 80vh;
  background: linear-gradient(
      to top right,
      rgba(255, 255, 255, 0),
      rgba(87, 79, 79, 0.7)
    ),
    url(images/Our-Leadership-Main-banner.jpg) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}
.blur-content-bg {
  background: rgba(255, 255, 255, 0.2); /* or use rgba(0,0,0,0.3) for dark */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}

/* metro testimonial  */
.metro-testimonial-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.metro-testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 1rem;
  transition: transform 0.3s ease;
}
.metro-testimonial-card:hover {
  transform: translateY(-5px);
}
.metro-testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.metro-quote-icon {
  font-size: 2rem;
  color: #fc1817;
  margin-bottom: 1rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fc1817;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .metro-testimonial-card {
    padding: 1.5rem;
  }
  .metro-testimonial-img {
    width: 60px;
    height: 60px;
  }
}

.carousel-inner {
  position: relative;
}
.metro-carousel-btn {
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
}
.metro-testi-carousel {
  height: 100%;
}

/* railway page  */
.railway-hero-section {
  height: 80vh;
  background: linear-gradient(
      to top right,
      rgba(255, 255, 255, 0),
      rgba(87, 79, 79, 0.7)
    ),
    url(images/rail-wraps-outside.jpeg) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}

.index-cta-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.index-cta-form-title {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.trust-indicators {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.trust-indicators i {
  color: green;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .index-cta-form {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .index-cta-form {
    padding: 1.5rem;
  }
}

/* advertise by bus page   */
.bus-hero-section {
  height: 80vh;
  background: linear-gradient(
      to top right,
      rgba(255, 255, 255, 0),
      rgba(87, 79, 79, 0.7)
    ),
    url(images/bus-ads-hero.jpg) no-repeat left center;
  background-size: cover;
  padding: 100px 0;
}
.bus-hero-blur-content{
  background: rgba(255, 0, 0, 0.2); /* or use rgba(0,0,0,0.3) for dark */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}

/* bus shelter advertising  */
.bus-shelter-hero-section{
  height: 80vh;
  background: linear-gradient(
      to top right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.7)
    ),
    url(images/shelter-bus-hero.jpg) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}
.bus-shelter-hero-blur-content{
  background: rgba(0, 0, 0, 0.2); /* or use rgba(0,0,0,0.3) for dark */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}


/* shelter key benefits  */
.shelter-benefits-section {
            padding: 80px 0;
            background: white;
        }

        .shelter-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 25px;
            background: #f8fafc;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .shelter-benefit-item:hover {
            background: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateX(10px);
        }

        .shelter-benefit-icon {
            width: 50px;
            height: 50px;
            background: #fc1817;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }
        .specifications-section {
            padding: 80px 0;
            background: #f8fafc;
        }

        .shelter-spec-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }

        .shelter-spec-title {
            color: #fc1817;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .shelter-spec-list {
            list-style: none;
            padding: 0;
        }

        .shelter-spec-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
        }

        .shelter-spec-list li:last-child {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .shelter-benefits-section,
            .specifications-section {
                padding: 60px 0;
            }

            .shelter-benefit-item:hover {
                transform: none;
            }
        }