/* Fonts */
:root {
  --font-default: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-primary: "Playfair Display", serif;
  --font-secondary: "DM Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #0f172a;
  --color-primary: #f59e0b;
  --color-primary-light: #fbbf24;
  --color-secondary: #475569;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-bg-light: #f8fafc;
  --color-border: rgba(15, 23, 42, 0.05);
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
}

.header .logo img {
  max-height: 25px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 60px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 8px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 60px 0 10px 0;
    margin: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    border-left: 4px solid var(--color-primary);
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-right: 12px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary);
    padding-left: 32px;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    padding-right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .mobile-nav-show:hover {
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-primary);
    transform: scale(1.1);
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: all 0.3s ease;
    position: fixed;
    right: 24px;
    top: 24px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(245, 158, 11, 0.15);
  }

  .mobile-nav-hide:hover {
    background: rgba(245, 158, 11, 0.3);
    color: var(--color-primary);
    transform: rotate(90deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 998;
    pointer-events: none;
    backdrop-filter: blur(4px);
  }

  .mobile-nav-active::before {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .header.header-scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .mobile-nav-active .navbar {
    transform: translate3d(0, 0, 0);
  }

  .navbar li {
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  }

  .navbar a i {
    color: var(--color-primary);
    transition: all 0.3s ease;
    margin-right: 12px;
  }

  .navbar a:hover i,
  .navbar .active i {
    transform: scale(1.2) translateX(4px);
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .email-form {
    padding: 20px;
  }
}

.get-started .email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.get-started .email-form p {
  font-size: 14px;
}

.get-started .email-form input,
.get-started .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-started .email-form input:focus,
.get-started .email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .email-form input {
  padding: 12px 15px;
}

.get-started .email-form textarea {
  padding: 12px 15px;
}

.get-started .email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

/*--------------------------------------------------------------
# flagships Section
--------------------------------------------------------------*/
.flagships .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.flagships .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flagships .card-item .card-body {
  padding: 30px;
}

.flagships .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.flagships .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .about-img {
  min-height: 550px;
  background-size: cover;
  background-position: center;
  border: 10px solid #ebebeb;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: #0f1419;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
  display: block;
}

.footer:before {
  content: "";
  display: none;
}

.footer .footer-content {
  position: relative;
  z-index: 2;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal {
  background: inherit !important;
  padding: 0;
  position: relative;
  z-index: 2;
}

.footer .footer-legal .container {
  background: inherit !important;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: inherit !important;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Visual Refresh
--------------------------------------------------------------*/
:root {
  --color-default: #334044;
  --color-primary: #d9a31d;
  --color-secondary: #22302f;
  --color-accent: #0f766e;
  --color-muted: #66757a;
  --color-surface: #f6f8f7;
  --color-border: #e0e7e4;
  --shadow-soft: 0 18px 45px rgba(20, 35, 34, 0.09);
  --shadow-lift: 0 26px 60px rgba(20, 35, 34, 0.16);
}

body {
  background: #fff;
  line-height: 1.65;
}

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-primary);
}

section {
  padding: 96px 0;
}

.section-bg {
  background: linear-gradient(180deg, #f8faf9 0%, #edf3f1 100%);
}

.section-header {
  padding-bottom: 52px;
}

.section-header h2 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.section-header h2:before,
.section-header h2:after {
  display: none;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 4px;
}

.section-header p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.header {
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(13, 24, 24, 0.74), rgba(13, 24, 24, 0));
}

.header .logo img {
  max-height: 46px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

@media (min-width: 1280px) {
  .navbar > ul > li {
    padding-left: 34px;
  }

  .navbar a,
  .navbar a:focus {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .navbar > ul > li > a:before {
    bottom: -9px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #f6d36a);
    border-radius: 4px;
  }
}

@media (max-width: 1279px) {
  .navbar ul {
    background: rgba(11, 28, 27, 0.96);
  }

  .navbar a,
  .navbar a:focus {
    letter-spacing: 0;
  }
}

.hero .carousel {
  height: 100vh;
  min-height: 680px;
  padding: 74px 0 40px;
}

@supports (height: 100svh) {
  .hero .carousel {
    height: 100svh;
  }
}

.hero .carousel-item {
  transition-duration: 0.8s;
}

.hero .carousel-item::before {
  background:
    linear-gradient(90deg, rgba(13, 24, 24, 0.9) 0%, rgba(20, 38, 37, 0.72) 44%, rgba(8, 13, 13, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.56) 100%);
}

.hero .info {
  padding-top: 38px;
}

.hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f8d56f;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.hero .hero-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

.hero .info h1 {
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 820px;
  position: relative;
}

.hero .info h1::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin: 24px 0 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 4px;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 780px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero .info .btn-get-started,
.hero .info .btn-view-projects {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0;
  margin: 0;
  min-height: 48px;
  padding: 12px 24px;
  transition: 0.25s ease;
}

.hero .info .btn-get-started {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #162221;
  box-shadow: 0 16px 34px rgba(217, 163, 29, 0.3);
}

.hero .info .btn-view-projects {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.hero .info .btn-get-started:hover,
.hero .info .btn-view-projects:hover {
  transform: translateY(-2px);
}

.hero .info .btn-get-started:hover {
  background: #efbd3f;
  border-color: #efbd3f;
}

.hero .info .btn-view-projects:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero .hero-proof {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: inline-grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  margin-top: 34px;
  overflow: hidden;
}

.hero .hero-proof div {
  padding: 16px 22px;
}

.hero .hero-proof div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero .hero-proof strong,
.hero .hero-proof span {
  display: block;
}

.hero .hero-proof strong {
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 28px;
  line-height: 1;
}

.hero .hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: 7px;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

.get-started .content {
  padding: 12px 0;
}

.get-started .content h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: 34px;
  line-height: 1.22;
}

.get-started .content p,
.flagships .card-item p,
.services .service-item p,
.about .our-story p,
.team .member .member-info p {
  color: var(--color-muted);
  font-size: 15px;
}

.get-started .email-form {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.get-started .email-form::before {
  content: "";
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.get-started .email-form h3 {
  color: var(--color-secondary);
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.get-started .email-form input,
.get-started .email-form textarea {
  background: #fbfcfc;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-secondary);
  transition: 0.2s ease;
}

.get-started .email-form input:focus,
.get-started .email-form textarea:focus {
  background: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.11);
}

.get-started .email-form button[type="submit"] {
  background: var(--color-secondary);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  min-height: 46px;
  padding: 11px 28px;
}

.get-started .email-form button[type="submit"]:hover {
  background: var(--color-accent);
}

.flagships .card-item,
.services .service-item,
.testimonials .testimonial-item,
.stats-counter .stats-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.flagships .card-item {
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flagships .card-item:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.flagships .card-item .card-bg {
  min-height: 320px;
  position: relative;
}

.flagships .card-item .card-bg::after {
  background: linear-gradient(180deg, rgba(15, 24, 24, 0), rgba(15, 24, 24, 0.3));
  content: "";
  inset: 0;
  position: absolute;
}

.flagships .card-item h4 {
  color: var(--color-secondary);
  font-size: 19px;
  line-height: 1.35;
}

.services .service-item {
  border-top: 4px solid transparent;
  overflow: hidden;
  padding: 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services .service-item:hover {
  border-top-color: var(--color-primary);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.services .service-item .icon {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 28px;
  width: 64px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 34px;
  line-height: 1;
}

.services .service-item .icon:before {
  background: rgba(15, 118, 110, 0.11);
  height: 64px;
  right: -8px;
  top: 6px;
  width: 64px;
}

.services .service-item:hover .icon:before {
  background: rgba(217, 163, 29, 0.24);
}

.services .service-item h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  line-height: 1.25;
}

.services .service-item p {
  line-height: 1.75;
  text-align: left;
}

.projects .portfolio-flters {
  margin-bottom: 34px;
}

.projects .portfolio-flters li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  margin: 0 5px 10px;
  padding: 10px 15px;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

.projects .portfolio-content {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.projects .portfolio-content img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.projects .portfolio-content .portfolio-info {
  background:
    linear-gradient(180deg, rgba(12, 20, 20, 0.18), rgba(12, 20, 20, 0.84)),
    linear-gradient(90deg, rgba(15, 118, 110, 0.32), rgba(217, 163, 29, 0.16));
  padding: 20px;
}

.projects .portfolio-content .portfolio-info h4 {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 5px;
  color: var(--color-secondary);
  font-weight: 700;
}

.projects .portfolio-content .portfolio-info p {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  padding: 0 20px;
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  color: #fff;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.testimonials .testimonial-item {
  min-height: 230px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 8px;
}

.testimonials .testimonial-item h3 {
  color: var(--color-secondary);
}

.testimonials .testimonial-item p {
  color: var(--color-muted);
  line-height: 1.7;
}

.breadcrumbs {
  min-height: 34vh;
}

.breadcrumbs:before {
  background:
    linear-gradient(90deg, rgba(13, 24, 24, 0.88), rgba(13, 24, 24, 0.42)),
    rgba(0, 0, 0, 0.2);
}

.breadcrumbs h2 {
  font-family: var(--font-secondary);
  font-size: 50px;
  font-weight: 700;
}

.about .our-story {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.about .about-img {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.stats-counter .stats-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stats-counter .stats-item:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.stats-counter .stats-item i {
  color: var(--color-accent);
}

.team .member {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  padding: 28px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team .member:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.team .member .member-img {
  border: 5px solid #f3f6f5;
  height: 190px;
  margin: 0 auto 24px;
  width: 190px;
}

.team .member .member-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team .member .member-info {
  margin-top: 0;
}

.team .member .member-info h4 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.footer {
  background:
    linear-gradient(135deg, rgba(13, 24, 24, 0.96), rgba(25, 56, 52, 0.96)),
    #142422;
  padding: 76px 0 42px;
}

.footer:before {
  display: none;
}

.footer .footer-content .footer-info h3,
.footer .footer-content h4 {
  letter-spacing: 0;
}

.footer .footer-content .footer-info p,
.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.74);
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.scroll-top {
  border-radius: 8px;
}

@media (max-width: 991px) {
  section {
    padding: 76px 0;
  }

  .hero .carousel {
    height: auto;
    min-height: 100vh;
  }

  @supports (min-height: 100svh) {
    .hero .carousel {
      min-height: 100svh;
    }
  }

  .hero .info {
    padding: 96px 0 36px;
  }

  .hero .info h1 {
    font-size: 42px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .info h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .info p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-actions {
    justify-content: center;
  }

  .hero .hero-kicker::before {
    display: none;
  }

  .about .about-img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 31px;
  }

  .header .logo img {
    max-height: 38px;
  }

  .hero .info {
    align-items: flex-start !important;
    padding-top: 92px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero .hero-kicker {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero .info h1 {
    font-size: 31px;
    margin-bottom: 18px;
  }

  .hero .info h1::after {
    margin-top: 18px;
  }

  .hero .info p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .hero .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    text-align: center;
    width: min(100%, 340px);
  }

  .hero .hero-proof div {
    padding: 11px 8px;
  }

  .hero .hero-proof div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 0;
  }

  .hero .hero-proof strong {
    font-size: 22px;
  }

  .hero .hero-proof span {
    font-size: 11px;
    margin-top: 5px;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }

  .get-started .content h3 {
    font-size: 28px;
  }

  .flagships .card-item .card-bg {
    min-height: 240px;
  }

  .services .service-item {
    padding: 28px;
  }

  .projects .portfolio-flters li {
    font-size: 14px;
    padding: 9px 12px;
  }

  .testimonials .testimonial-item {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  section {
    padding: 64px 0;
  }

  .hero .info .btn-get-started,
  .hero .info .btn-view-projects {
    width: 100%;
  }

  .hero .hero-actions {
    width: 100%;
  }

  .get-started .email-form {
    padding: 26px 20px;
  }

  .breadcrumbs h2 {
    font-size: 38px;
  }
}

/* --- REFINE PREMIUM UI OVERRIDES --- */
:root {
  --color-primary: #c2a05d; /* Elegant Warm Gold */
  --color-primary-light: #dfcbb5; /* Champagne Accent */
  --color-secondary: #0b0f19; /* Deep Midnight Navy */
  --color-default: #1e293b; /* Slate Charcoal for body */
  --color-bg-light: #f8fafc; /* Clean background slate */
  --color-surface: #ffffff;
  --color-border: rgba(15, 23, 42, 0.06);
}

/* Header & Sticky Navigation */
.header {
  position: fixed !important;
  z-index: 999 !important;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 20px 0 !important;
}

.header-scrolled {
  background: rgba(11, 15, 25, 0.9) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 12px 0 !important;
}

.header .logo img {
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-scrolled .logo img {
  max-height: 22px !important;
}

/* Nav links styling */
.navbar a,
.navbar a:focus {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600 !important;
  transition: color 0.3s ease !important;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-primary) !important;
}

@media (min-width: 1280px) {
  .navbar > ul > li > a:before {
    background: var(--color-primary) !important;
    height: 2px !important;
  }
}

/* Hero Section Enhancements */
.hero .carousel-item::before {
  background: linear-gradient(to right, rgba(11, 15, 25, 0.85) 0%, rgba(11, 15, 25, 0.5) 50%, rgba(11, 15, 25, 0.25) 100%) !important;
}

.hero .info {
  background: transparent !important;
  padding: 0 !important;
}

.hero .info h1 {
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  font-size: 52px !important;
  letter-spacing: -1px !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  max-width: 700px !important;
}

.hero .hero-kicker {
  color: var(--color-primary) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
  margin-bottom: 16px !important;
}

.hero .hero-kicker::before {
  background: var(--color-primary) !important;
}

.hero .info h1::after {
  background: var(--color-primary) !important;
  width: 60px !important;
  height: 3px !important;
}

/* Unified Glassmorphic Stats Bar */
.hero-proof {
  display: inline-flex !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 10px !important;
  margin-top: 40px !important;
  gap: 0 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.hero-proof div {
  padding: 12px 30px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: left !important;
}

.hero-proof div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 0 !important;
}

.hero-proof div strong {
  display: block !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
}

.hero-proof div span {
  display: block !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 500 !important;
}

@media (max-width: 767px) {
  .hero .hero-proof {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    margin-top: 22px !important;
    text-align: center !important;
    width: 100% !important;
  }
  .hero-proof div {
    padding: 12px 8px !important;
    text-align: center !important;
  }
  .hero-proof div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 0 !important;
  }
  .hero-proof div strong {
    font-size: 22px !important;
  }
  .hero-proof div span {
    font-size: 10px !important;
  }
}

/* Premium Buttons */
.btn-get-started, button[type="submit"] {
  background: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-secondary) !important;
  border-radius: 4px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(194, 160, 93, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-get-started:hover, button[type="submit"]:hover {
  background: var(--color-primary-light) !important;
  border-color: var(--color-primary-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(194, 160, 93, 0.3) !important;
  color: var(--color-secondary) !important;
}

.btn-view-projects {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-view-projects:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

/* Cards (Services, Flagships, Projects) */
.service-item, .card-item, .portfolio-content, .testimonial-item, .stats-item {
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(15, 23, 42, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: #ffffff !important;
}

.service-item:hover, .card-item:hover, .portfolio-content:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(194, 160, 93, 0.2) !important;
}

.services .service-item {
  border-top: 4px solid transparent !important;
  padding: 40px 30px !important;
}

.services .service-item:hover {
  border-top-color: var(--color-primary) !important;
}

.services .service-item .icon {
  background: rgba(194, 160, 93, 0.08) !important;
  border-radius: 10px !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  position: relative !important;
}

.services .service-item .icon i {
  color: var(--color-primary) !important;
  font-size: 24px !important;
}

.services .service-item .icon:before {
  display: none !important;
}

.services .service-item h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
  margin-bottom: 12px !important;
}

.services .service-item p {
  color: var(--color-muted) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Get Started Email Form */
.get-started .email-form {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03) !important;
  padding: 40px !important;
}

.get-started .email-form::before {
  display: none !important;
}

.get-started .email-form h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
  margin-bottom: 12px !important;
}

.get-started .email-form p {
  font-size: 14px !important;
  color: var(--color-muted) !important;
  margin-bottom: 24px !important;
}

.get-started .email-form input,
.get-started .email-form textarea {
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  background: #fdfdfd !important;
}

.get-started .email-form input:focus,
.get-started .email-form textarea:focus {
  background: #ffffff !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(194, 160, 93, 0.15) !important;
}

.get-started .email-form button[type="submit"] {
  width: 100% !important;
  background: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: #ffffff !important;
}

.get-started .email-form button[type="submit"]:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-secondary) !important;
}

/* General Layout Accents */
.section-header h2 {
  font-size: 34px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
}

.section-header h2::after {
  background: var(--color-primary) !important;
  width: 60px !important;
  height: 3px !important;
}

/* Footer Luxury Grounding */
.footer {
  --footer-background: #070a12;
  background: var(--footer-background) !important;
}

.footer .footer-content,
.footer .footer-legal,
.footer .footer-legal .container,
.footer .footer-legal .copyright {
  background: var(--footer-background) !important;
}

.footer .footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* --- PHASE 2 ELITE UI UPGRADES --- */

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-primary) !important;
  z-index: 10000 !important;
  width: 0%;
  transition: width 0.1s ease-out !important;
}

/* Ken Burns Zoom Effect */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero .carousel-item {
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.8s ease-in-out !important;
}

.hero .carousel-item.active {
  animation: kenBurns 12s ease-out forwards !important;
}

/* Frosted-Glass Portfolio Hover Card Overlays */
.projects .portfolio-content {
  position: relative !important;
}

.projects .portfolio-info {
  background: rgba(11, 15, 25, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto auto auto !important;
  justify-content: center !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
  padding: 30px !important;
  opacity: 0 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1 !important;
}

.projects .portfolio-info h4 {
  grid-column: 1 / span 2 !important;
  grid-row: 1 !important;
  position: static !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--font-primary) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  padding: 0 !important;
}

.projects .portfolio-info p {
  grid-column: 1 / span 2 !important;
  grid-row: 2 !important;
  position: static !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}

.projects .portfolio-info .preview-link {
  grid-column: 1 !important;
  grid-row: 3 !important;
  justify-self: end !important;
  margin-right: 8px !important;
}

.projects .portfolio-info .details-link {
  grid-column: 2 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  margin-left: 8px !important;
}

.projects .portfolio-info .preview-link,
.projects .portfolio-info .details-link {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.projects .portfolio-info .preview-link:hover,
.projects .portfolio-info .details-link:hover {
  background: #ffffff !important;
  color: var(--color-secondary) !important;
  transform: scale(1.08) !important;
}

/* Testimonial quotation cards */
.testimonials .testimonial-item {
  position: relative !important;
  padding: 40px !important;
  border: 1px solid rgba(194, 160, 93, 0.08) !important;
  background: #ffffff !important;
  border-radius: 16px !important;
}

.testimonials .testimonial-item::after {
  content: "“" !important;
  position: absolute !important;
  top: 15px !important;
  right: 30px !important;
  font-size: 90px !important;
  line-height: 1 !important;
  color: rgba(194, 160, 93, 0.1) !important;
  font-family: Georgia, serif !important;
  pointer-events: none !important;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-primary) !important;
  font-size: 14px !important;
  margin-right: 2px !important;
}

.testimonials .testimonial-item h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
  margin: 10px 0 5px 0 !important;
}

.testimonials .testimonial-item .testimonial-img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  border: 2px solid var(--color-primary) !important;
}

/* Service Card Icon Rotation */
.services .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.services .service-item .icon i {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Input Fields Transition */
.get-started .email-form input,
.get-started .email-form textarea {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.get-started .email-form input:focus,
.get-started .email-form textarea:focus {
  transform: translateY(-1px) !important;
}

/* Carousel Control Arrows Upgrade */
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero .carousel-control-prev-icon::before,
.hero .carousel-control-next-icon::before {
  font-size: 20px !important;
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  transform: scale(1.05) !important;
}

/* --- MOBILE HERO + TESTIMONIAL POLISH --- */
.testimonials .testimonial-wrap {
  padding: 0 10px 34px !important;
}

.testimonials .swiper-slide {
  height: auto !important;
}

.testimonials .testimonial-item {
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  column-gap: 18px !important;
  align-items: center !important;
  height: 100% !important;
  min-height: 280px !important;
  overflow: hidden !important;
}

.testimonials .testimonial-item::after {
  content: "\201C" !important;
}

.testimonials .testimonial-item .testimonial-img {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  position: static !important;
  left: auto !important;
  width: 64px !important;
  height: 64px !important;
  object-fit: cover !important;
  background: #fff !important;
}

.testimonials .testimonial-item h3 {
  grid-column: 2 !important;
  margin: 0 40px 3px 0 !important;
  line-height: 1.25 !important;
}

.testimonials .testimonial-item .stars {
  grid-column: 2 !important;
  margin: 0 !important;
}

.testimonials .testimonial-item p {
  grid-column: 1 / -1 !important;
  color: #66757a !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin: 30px 10px 0 !important;
}

@media (max-width: 767px) {
  .header {
    padding: 14px 0 !important;
  }

  .header .container-fluid {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .header .logo {
    min-width: 0 !important;
  }

  .header .logo img {
    max-height: 34px !important;
    max-width: calc(100vw - 106px) !important;
    object-fit: contain !important;
  }

  .mobile-nav-show {
    padding-right: 0 !important;
  }

  .hero .carousel {
    height: auto !important;
    min-height: 780px !important;
    padding: 0 !important;
  }

  @supports (min-height: 100svh) {
    .hero .carousel {
      min-height: max(780px, 100svh) !important;
    }
  }

  .hero .carousel-item {
    background-position: 42% center !important;
  }

  .hero .carousel-item::before {
    background:
      linear-gradient(180deg, rgba(11, 15, 25, 0.78) 0%, rgba(11, 15, 25, 0.64) 44%, rgba(11, 15, 25, 0.8) 100%) !important;
  }

  .hero .info {
    align-items: center !important;
    padding: 92px 18px 32px !important;
  }

  .hero .info .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero .hero-kicker {
    display: none !important;
  }

  .hero .info h1 {
    font-size: 36px !important;
    letter-spacing: 0 !important;
    line-height: 1.14 !important;
    margin: 0 auto 16px !important;
    max-width: 360px !important;
  }

  .hero .info h1::after {
    margin: 18px auto 0 !important;
    width: 56px !important;
  }

  .hero .info p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin: 0 auto !important;
    max-width: 360px !important;
  }

  .hero .hero-actions {
    gap: 10px !important;
    margin: 22px auto 0 !important;
    max-width: 360px !important;
  }

  .hero .info .btn-get-started,
  .hero .info .btn-view-projects {
    min-height: 48px !important;
    padding: 11px 20px !important;
    width: 100% !important;
  }

  .hero .hero-proof {
    border-radius: 10px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    margin: 22px auto 0 !important;
    max-width: 360px !important;
    padding: 8px !important;
    width: 100% !important;
  }

  .hero-proof div {
    padding: 10px 6px !important;
  }

  .hero-proof div strong {
    font-size: 22px !important;
  }

  .hero-proof div span {
    font-size: 9px !important;
    letter-spacing: 0.6px !important;
    line-height: 1.25 !important;
  }

  .testimonials .testimonial-wrap {
    padding: 0 4px 28px !important;
  }

  .testimonials .testimonial-item {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    min-height: 0 !important;
    padding: 28px 22px !important;
  }

  .testimonials .testimonial-item::after {
    right: 18px !important;
    top: 12px !important;
    font-size: 68px !important;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 54px !important;
    height: 54px !important;
  }

  .testimonials .testimonial-item h3 {
    font-size: 17px !important;
    margin-right: 22px !important;
  }

  .testimonials .testimonial-item p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 24px 0 0 !important;
  }
}

@media (max-width: 380px) {
  .hero .carousel {
    min-height: 810px !important;
  }

  @supports (min-height: 100svh) {
    .hero .carousel {
      min-height: max(810px, 100svh) !important;
    }
  }

  .hero .info {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero .info h1 {
    font-size: 32px !important;
  }

  .hero .info p {
    font-size: 14px !important;
  }
}

/* ==========================================================================
   PHASE 3 ULTIMATE VISUAL POLISH OVERRIDES
   ========================================================================== */

/* Enhanced Hero Text Transitions */
.hero .info h1,
.hero .info p,
.hero .hero-actions,
.hero .hero-proof {
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Service Item Ultimate Hover Glow */
.services .service-item {
  position: relative !important;
  overflow: hidden !important;
}

.services .service-item::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.02) 0%, transparent 80%) !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
  pointer-events: none !important;
}

.services .service-item:hover::after {
  opacity: 1 !important;
}

.services .service-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.08) !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
}

/* Flagship Project Cards Scale Zoom */
.flagships .card-item {
  overflow: hidden !important;
}

.flagships .card-item .col-xl-5 {
  overflow: hidden !important;
  border-radius: 12px 0 0 12px !important;
}

@media (max-width: 1199px) {
  .flagships .card-item .col-xl-5 {
    border-radius: 12px 12px 0 0 !important;
  }
}

.flagships .card-item .card-bg {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.flagships .card-item:hover .card-bg {
  transform: scale(1.08) !important;
}

.flagships .card-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(245, 158, 11, 0.2) !important;
}

/* Portfolio Item Image Hover Zoom */
.projects .portfolio-content {
  overflow: hidden !important;
}

.projects .portfolio-content img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.projects .portfolio-content:hover img {
  transform: scale(1.08) !important;
}

/* Premium Team Profile Cards */
.team .member {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(15, 23, 42, 0.04) !important;
  overflow: hidden !important;
  padding: 0 0 24px 0 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.team .member:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(245, 158, 11, 0.15) !important;
}

.team .member .member-img {
  overflow: hidden !important;
  border-radius: 16px 16px 0 0 !important;
}

.team .member .member-img img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

.team .member:hover .member-img img {
  transform: scale(1.06) !important;
}

.team .member .member-info {
  padding: 24px 20px 0 20px !important;
}

.team .member h4 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
  margin-bottom: 4px !important;
}

.team .member span {
  color: var(--color-primary) !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 12px !important;
}

.team .member p {
  font-size: 14px !important;
  color: var(--color-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Floating Glass-Tinted Quote Form */
.get-started .email-form {
  border: 1px solid rgba(245, 158, 11, 0.1) !important;
  background: #ffffff !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08) !important;
  transition: border-color 0.4s ease !important;
}
    font-size: 17px !important;
    margin-right: 22px !important;
  }

  .testimonials .testimonial-item p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 24px 0 0 !important;
  }
}

@media (max-width: 380px) {
  .hero .carousel {
    min-height: 810px !important;
  }

  @supports (min-height: 100svh) {
    .hero .carousel {
      min-height: max(810px, 100svh) !important;
    }
  }

  .hero .info {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero .info h1 {
    font-size: 32px !important;
  }

  .hero .info p {
    font-size: 14px !important;
  }
}

/* ==========================================================================
   PHASE 3 ULTIMATE VISUAL POLISH OVERRIDES
   ========================================================================== */

/* Enhanced Hero Text Transitions */
.hero .info h1,
.hero .info p,
.hero .hero-actions,
.hero .hero-proof {
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Service Item Ultimate Hover Glow */
.services .service-item {
  position: relative !important;
  overflow: hidden !important;
}

.services .service-item::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.02) 0%, transparent 80%) !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
  pointer-events: none !important;
}

.services .service-item:hover::after {
  opacity: 1 !important;
}

.services .service-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.08) !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
}

/* Flagship Project Cards Scale Zoom */
.flagships .card-item {
  overflow: hidden !important;
}

.flagships .card-item .col-xl-5 {
  overflow: hidden !important;
  border-radius: 12px 0 0 12px !important;
}

@media (max-width: 1199px) {
  .flagships .card-item .col-xl-5 {
    border-radius: 12px 12px 0 0 !important;
  }
}

.flagships .card-item .card-bg {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.flagships .card-item:hover .card-bg {
  transform: scale(1.08) !important;
}

.flagships .card-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(245, 158, 11, 0.2) !important;
}

/* Portfolio Item Image Hover Zoom */
.projects .portfolio-content {
  overflow: hidden !important;
}

.projects .portfolio-content img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.projects .portfolio-content:hover img {
  transform: scale(1.08) !important;
}

/* Premium Team Profile Cards */
.team .member {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(15, 23, 42, 0.04) !important;
  overflow: hidden !important;
  padding: 0 0 24px 0 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.team .member:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(245, 158, 11, 0.15) !important;
}

.team .member .member-img {
  overflow: hidden !important;
  border-radius: 16px 16px 0 0 !important;
}

.team .member .member-img img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

.team .member:hover .member-img img {
  transform: scale(1.06) !important;
}

.team .member .member-info {
  padding: 24px 20px 0 20px !important;
}

.team .member h4 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
  margin-bottom: 4px !important;
}

.team .member span {
  color: var(--color-primary) !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 12px !important;
}

.team .member p {
  font-size: 14px !important;
  color: var(--color-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Floating Glass-Tinted Quote Form */
.get-started .email-form {
  border: 1px solid rgba(245, 158, 11, 0.1) !important;
  background: #ffffff !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08) !important;
  transition: border-color 0.4s ease !important;
}

.get-started .email-form:hover {
  border-color: rgba(245, 158, 11, 0.25) !important;
}

/* Refined Section Headers Line Glow */
.section-header h2::after,
.section-header h2::before {
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4) !important;
}

/* ==========================================================================
   ULTIMATE MAIN SITE REFINEMENTS (ANTIGRAVITY DESIGN SYSTEM)
   ========================================================================== */

/* 1. Gold Metallic Title Gradients */
.hero .info h1 {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-primary-light) 75%, var(--color-primary) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2) !important;
}

.section-header h2 {
  background: linear-gradient(135deg, var(--color-secondary) 50%, var(--color-primary) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  padding-bottom: 5px !important;
}

/* 2. Premium Navbar Transitions */
@media (min-width: 1280px) {
  .navbar > ul > li > a:before {
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent) !important;
    height: 3px !important;
    border-radius: 2px !important;
    box-shadow: 0 0 10px rgba(194, 160, 93, 0.8) !important;
    bottom: -8px !important;
  }
}

/* 3. Refined Input Form Styling */
.get-started .email-form input,
.get-started .email-form textarea {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: #fcfcfc !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-size: 14.5px !important;
}

.get-started .email-form input:focus,
.get-started .email-form textarea:focus {
  background: #ffffff !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(194, 160, 93, 0.12) !important;
  transform: translateY(-2px) !important;
}

/* 4. Elegant Project Pill Filters */
.projects .portfolio-flters li {
  background: rgba(15, 23, 42, 0.03) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 30px !important;
  color: var(--color-default) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 8px 22px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  box-shadow: 0 6px 16px rgba(194, 160, 93, 0.25) !important;
}

/* 5. Custom Swiper Slider Pagination Glow */
.testimonials .swiper-pagination-bullet {
  background: var(--color-secondary) !important;
  opacity: 0.25 !important;
  transition: all 0.3s ease !important;
  height: 8px !important;
  width: 8px !important;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 8px var(--color-primary) !important;
}

/* 6. Glowing Link Hover Effects in Footer */
.footer .footer-content .footer-links ul a {
  position: relative !important;
  display: inline-block !important;
  transition: color 0.3s ease !important;
}

.footer .footer-content .footer-links ul a::after {
  content: "" !important;
  position: absolute !important;
  width: 100% !important;
  height: 2px !important;
  bottom: -4px !important;
  left: 0 !important;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent) !important;
  visibility: hidden !important;
  transform: scaleX(0) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary) !important;
}

.footer .footer-content .footer-links ul a:hover::after {
  visibility: visible !important;
  transform: scaleX(1) !important;
}

/* 7. Key People Detail Spacing */
.team .member .member-info p {
  border-top: 1px solid rgba(15, 23, 42, 0.05) !important;
  padding-top: 14px !important;
  margin-top: 14px !important;
  opacity: 0.95 !important;
}

/* 8. Global Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(194, 160, 93, 0.4);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(194, 160, 93, 0.7);
}
