/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #000;
}

/* Header Styles */
.header-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px); */
}

.header-main .container-fluid,
.banerContent .container-fluid {
  padding: 0 4rem;
}
.banerContent {
  width: 100%;
}

/* Header Wrapper */
.header-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #fff;
}

.header-left,
.header-center,
.header-right {
  flex: 1;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-center {
  display: flex;
  justify-content: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

/* YouTube Icon */
.youtube-icon {
  width: 35px;
  height: 25px;
  /* background: #ff0000; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff;
  font-size: 1.3rem; */
  transition: all 0.3s ease;
  text-decoration: none;
}

.smtPhone {
  width: 20px;
  height: 20px;
}

.youtube-icon:hover {
  /* background: #cc0000;
  transform: scale(1.1);
  color: #fff; */
}

/* Logo */
.logo {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand:hover .logo {
  transform: scale(1.05);
}

/* Contact Info */
.contact-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
}

.contact-info .contact-item {
  gap: 0.2rem;
}
.contact-info .contact-item a {
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.contact-item i {
  color: #fff;
  font-size: 0.9rem;
}

/* Navigation Bar */
.navigation-bar {
  /* background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.navigation-bar .container-fluid {
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar-nav {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: auto;
}

.nav-item {
  text-align: center;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 1.2rem 1.5rem !important;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
  background: none !important;
}

/* .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #a4b841;
  transition: width 0.3s ease;
} */

.nav-link:hover,
.nav-link.active {
  color: #a4b841 !important;
  background: rgba(164, 184, 65, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  position: absolute;
  right: inherit;
  left: 0;
  top: -55px;
  /* transform: translateY(-50%); */
  background: transparent;
  border: none;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: #fff;
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle:hover span {
  background: #a4b841;
}

.mobile-menu-toggle:focus {
  outline: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 999;
  padding-top: 100px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.show {
  transform: translateX(0);
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 1.2rem 2rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(164, 184, 65, 0.1);
  color: #a4b841;
  padding-left: 2.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0px;
  overflow: hidden;
}
.p5 {
  padding-top: 5rem;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.animate-rtl {
  animation: slideInFromRight 1s ease-out forwards;
}

.animate-rtl.delay-1 {
  animation-delay: 0.3s;
}

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

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #9e993a;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-modA {
  line-height: 2.5rem;
  color: #fff;
  line-height: 2.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.btn-primary:hover {
  background: #8ea035;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(164, 184, 65, 0.3);
}

.btn-outline-light {
  border: 2px solid #fff;
  padding: 1rem 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #a4b841;
  width: 12px;
  border-radius: 50%;
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff0000;
  transform: scale(1.1);
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .header-main .container-fluid {
    padding: 0 1.5rem;
  }

  .navigation-bar .container-fluid {
    padding: 0 1.5rem;
  }

  .navbar-nav {
    display: none !important;
  }

  .contact-info {
    display: none;
  }

  .header-left {
    justify-content: flex-start;
    visibility: hidden;
  }

  .header-center {
    justify-content: center;
  }

  .header-right {
    justify-content: flex-end;
    min-width: 45px;
  }

  .logo {
    height: 50px;
  }

  .social-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .slider-indicators {
    bottom: 5rem;
  }

  .header-main .container-fluid {
    padding: 0 1rem;
  }

  .navigation-bar .container-fluid {
    padding: 0 1rem;
  }

  .banerContent .container-fluid {
    padding: 0 1rem;
  }
  .banerContent .container-fluid .hero-buttons {
    flex-direction: inherit;
  }
  .banerContent .container-fluid .hero-buttons .btn-primary {
    padding: 1rem 0.5rem;
    width: auto;
  }
  .banerContent .container-fluid .hero-buttons .btn {
    width: auto;
    font-size: 13px;
    padding: 7px 10px;
    height: auto;
    line-height: 24px;
  }
  .content-area {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .logo {
    height: 45px;
  }

  .youtube-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .mobile-menu-toggle {
    width: 25px;
    height: 20px;
  }
}

/*  */

.hero-section.ty02 {
  background-color: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  padding-bottom: 110px;
}

.main-headline {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 35px;
  color: #9e993a;
  letter-spacing: -0.5px;
}

.answer-text {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 35px;
  line-height: 1.6;
}

.answer-text strong {
  font-weight: 600;
}

.description-text {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 35px;
}

.highlight-stat {
  font-weight: 700;
}

.question-block {
  margin-top: 35px;
}

.question-intro {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0px;
}

.main-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.7;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}
.image-wrapper .hero-image {
  object-fit: cover;
  object-position: right;
}

.play-button {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #b0ab54 0%, #b0ab54 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.5);
}
.image-wrapper .play-button {
  position: absolute;
  bottom: -70px;
  right: 35px;
}

.play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.7);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 3px;
}

.content-area {
  padding-right: 4rem;
  padding-left: 6rem;
}

@media (max-width: 991px) {
  .main-headline {
    font-size: 2.2rem;
  }

  .content-area {
    padding-right: 15px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .main-headline {
    font-size: 1.2rem;
  }
  .hero-section.ty02 {
    padding: 2rem 0;
  }

  .answer-text,
  .description-text,
  .question-intro,
  .main-question {
    font-size: 0.95rem;
  }
  .answer-text {
    margin-bottom: 15px;
  }

  .content-area {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .image-wrapper {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}

/*  */

.about-section {
  background: linear-gradient(135deg, #9e993a 0%, #9e993a 100%);
  color: #1a1a1a;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #fff;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.company-name {
  font-weight: 700;
  color: #000;
}

.highlight {
  font-weight: 700;
  color: #000;
}

.nav-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background-color: #2d2d2d;
  transform: scale(1.1);
}

.nav-arrow i {
  color: #fff;
  font-size: 1.2rem;
}

.about-section .play-button {
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: linear-gradient(135deg, #000 0%, #000 100%);
}

.about-section .play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #9e993a;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .about-section {
    padding: 20px 0;
  }

  .nav-arrow {
    bottom: 20px;
    right: 20px;
  }
  .about-section .play-button {
    bottom: 7px;
    right: 10px;
  }
}

/*  */

.about-section.ty02 {
  background: #000;
}
.about-section.ty02 .about-content p {
  color: #fff;
}
.about-section.ty02 .about-content .highlight {
  color: #fff;
}
.about-section.ty02 .about-title::after {
  background-color: #9e993a;
}
.about-title-t1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0px;
  color: #fff;
}

.service-description {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4 !important;
  margin: 0 !important;
}

.video-production-card {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-production-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-production-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container.m4 {
  margin-left: -15px;
}
.container.m4 .mb5 {
  padding-bottom: 50px;
}
.about-section.ty02 .play-button {
  background: linear-gradient(135deg, #b0ab54 0%, #b0ab54 100%);
}
.about-section.ty02 .play-button::after {
  border-left: 8px solid #fff;
}
.about-section.ty03 {
  background: #fff;
}
.about-section.ty03 .about-title {
  color: #9e993a;
}
.about-section.ty03 .about-title::after {
  background-color: #9e993a;
}

@media (max-width: 767px) {
  .service-card,
  .video-production-card {
    height: 240px;
    margin-bottom: 20px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }
  .service-overlay {
    padding: 10px;
    height: 80px;
  }
  .service-card img {
    height: 210px;
  }
  .container.m4 .service-card {
    margin-bottom: 0;
    height: auto;
  }
  .container.m4 .mb5 {
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-card,
  .video-production-card {
    height: 260px;
  }
}

/*  */

.about-section.ty03 .service-card {
  background: #9e993a;
  border-radius: 20px;
  padding: 1.5rem 1.3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding-top: 0.6rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-section.ty03 .service-icon {
  font-size: 70px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-description {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.5;
  font-weight: 400;
}

.container-custom {
  max-width: 1400px;
}
.service-title1 {
  color: #fff;
  opacity: 0.95;
  font-weight: 300;
  text-align: left;
}
.service-title1 .highlight {
  font-weight: 700;
  color: #fff;
  opacity: 1;
}
.about-section.ty03 .service-card img {
  width: 4rem;
  height: auto;
}

.about-section.ty03 .container.m4 {
  margin-bottom: 2rem;
}

.about-section.ty03 .about-content p {
  line-height: 1.2;
}
.about-section.ty03 .play-button {
  background: linear-gradient(135deg, #b0ab54 0%, #b0ab54 100%);
}
.about-section.ty03 .play-button::after {
  border-left: 8px solid #fff;
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }

  .service-icon {
    font-size: 55px;
  }

  .service-title {
    font-size: 12px;
  }

  .service-description {
    font-size: 10px;
  }
  .about-section.ty02 .about-content p {
    font-size: 10px !important;
  }
  .container.m4 .mb5 .col-6 {
    padding: 5px !important;
  }
  .container.m4 {
    margin-left: 0;
  }
  .about-section.ty03 .about-content p {
    font-size: 0.9rem;
  }
  .about-section.ty03 .about-content .col-4 {
    padding: 5px;
  }
  .about-section.ty03 .service-title1 {
    font-size: 12px;
  }
  .about-section.ty03 .service-card {
    padding: 10px;
  }
  .about-section.ty03 .service-card img {
    width: 3rem;
  }
  .about-section.ty03 .service-icon {
    font-size: 20px;
  }
}

.works-section {
  padding: 60px 20px;
}

.works-section a {
  color: inherit;
  text-decoration: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: #c5a547;
  margin-bottom: 40px;
}

.work-card {
  /* background-color: #1a1a1a; */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(197, 165, 71, 0.3);
}

.work-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.work-info {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.play-icon {
  width: 24px;
  height: 24px;
  background-color: #9e993a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

.work-title {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .work-image {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .works-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

.works-section .play-button {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.works-section .section-title {
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  padding-bottom: 15px;
}
.works-section .section-title::after {
  background-color: #fff;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #9e993a;
}

/*  */

.footer-section {
  background-color: #000;
  /* border-top: 1px solid #333; */
  padding: 40px 0 20px;
  padding-top: 0;
}

.logo-container {
  margin-bottom: 20px;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-to {
  background-color: #a8b848;
  color: #000;
  padding: 5px 15px;
  border-radius: 50%;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.play-icon {
  color: #a8b848;
  font-size: 2rem;
  margin-left: 5px;
}

.company-subtitle {
  color: #a8b848;
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-top: -10px;
  margin-left: 5px;
}

.section-title {
  color: #9e993a;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info2 p {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 0.8rem;
}

.contact-info2 i {
  color: #fff;
  margin-right: 0px;
  width: 20px;
}

.contact-info2 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info2 a:hover {
  color: #a8b848;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
  font-size: 0.8rem;
}

.services-list li:before {
  content: "•";
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  line-height: 1;
}

.bdr1 {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-bottom {
  padding-top: 0px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #595959;
  font-weight: 400;
}

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

.footer-bottom a:hover {
  color: #a8b848;
}

.contact-info2 .smtPhone {
  width: 32px;
  height: 32px;
  margin-left: -10px;
}
.m5 {
  margin-left: -15px;
}

@media (max-width: 768px) {
  .footer-section .container {
    padding: 0 35px;
  }
  .logo-text {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-top: 30px;
  }

  .footer-section {
    padding: 30px 0 15px;
  }
  .works-section .play-button {
    bottom: 7px;
    right: 10px;
  }
  .m5 {
    margin-left: 0;
  }
  .works-section .section-title {
    font-size: 1.5rem;
    margin-top: 0;
  }
  .work-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.8rem;
  }

  .logo-to {
    font-size: 1.5rem;
    padding: 3px 12px;
  }

  .play-icon {
    font-size: 1.5rem;
  }
}

.hero-section .hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text1 {
  color: #fff;
  position: relative;
  z-index: 99;
  text-align: center;
  font-size: 1.4rem;
}
.text1 .highlight {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .text1 {
    font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}
