@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: 'MyCustomFont';
  src: url(../fonts/transcend-bold.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-dark: #121212;
  --bg-black: #000000;
  --bg-card: #1e1e1e;
  --text-light: #f5f5f5;
  --text-muted: #aaaaaa;
  --gold-start: #FFD700;
  --gold-end: #B8860B;
  --gold-gradient: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
  --gold-text: #FFD700;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-start);
}

/* Page Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-black);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 215, 0, 0.3);
  border-left-color: var(--gold-start);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
  background-color: rgba(18, 18, 18, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: background-color 0.3s ease, padding 0.3s ease;
  overflow: visible !important;
}

.navbar > .container,
.navbar > .container-fluid {
  overflow: visible !important;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.navbar-brand .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

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

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-black);
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-end) 0%, var(--gold-start) 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-gold:hover {
  color: var(--bg-black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-start);
  border: 2px solid var(--gold-start);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--bg-black);
  border-color: transparent;
}

/* Hero Slider */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex !important;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 6s ease-out;
  transform: scale(1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.swiper-slide-active .hero-bg {
  transform: scale(1.15); /* Zoom in effect */
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-subtitle {
  color: var(--gold-start);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-family: 'MyCustomFont', sans-serif;
  line-height: 1.1;
  margin-bottom: 30px;
}

/* Testimonials Slider */
.testimonial-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
  margin-top: 40px; 
  position: relative;
  color: #fff;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  /* transform: translateY(-5px); */
  border-color: rgba(255, 215, 0, 0.4);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold-start);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  background: var(--bg-black);
}

.testimonial-stars {
  color: var(--gold-start);
  margin-bottom: 15px;
  margin-top: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Base Form Background overrides for dark look */
.bg-card {
  background-color: var(--bg-card);
}


/* Section Basics */
.section-padding {
  padding: 100px 0;
}

.bg-dark-alt {
  background-color: var(--bg-black);
}

.bg-grid {
  background-color: var(--bg-black);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-gold {
  color: var(--gold-start) !important;
}

/* Badge */
.experience-badge {
  background: rgba(30, 30, 30, 0.8);
  border-left: 4px solid var(--gold-start);
  padding: 30px;
  backdrop-filter: blur(10px);
  display: inline-block;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-badge h2 {
  font-size: 3.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  line-height: 1;
}

/* Service Cards */
.service-card {
  background-color: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  position: relative;
}

.service-card .img-wrapper {
  overflow: hidden;
  height: 250px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, var(--bg-card) 80%, transparent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-black);
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: -60px;
  border: 4px solid var(--bg-card);
  position: relative;
  z-index: 3;
}

/* Features List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.feature-list i {
  color: var(--gold-start);
  margin-top: 5px;
  margin-right: 15px;
}

/* Swiper Controls */
.swiper-button-next, .swiper-button-prev {
  color: var(--gold-start) !important;
  background: rgba(0, 0, 0, 0.5);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid var(--gold-start);
  transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--gold-gradient);
  color: var(--bg-black) !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold-start) !important;
  opacity: 1 !important;
  width: 20px !important;
  border-radius: 5px !important;
}

/* Gallery Masonry */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-widget h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  /* color: var(--text-muted); */
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-start);
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--gold-start);
  margin-top: 5px;
  margin-right: 15px;
  font-size: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(131, 131, 131);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold-gradient);
  color: var(--bg-black);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Floating Elements */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: var(--bg-black);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #1ebc5a;
  color: #fff;
  transform: scale(1.1);
}

/* Offcanvas */
.offcanvas {
  background-color: var(--bg-dark);
  border-left: 1px solid rgba(255, 215, 0, 0.2);
}

.offcanvas-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
}

.offcanvas-body .nav-link {
  font-size: 1.2rem;
  padding: 15px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-body .nav-link::after {
  display: none;
}

.offcanvas-body .nav-link:hover {
  padding-left: 10px !important;
  transition: all 0.3s ease;
  color: var(--gold-start) !important;
}

/* Custom Forms */
.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-start);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* Glassmorphism & Modern UI */
.glass-panel {
  background: rgba(25, 25, 25, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.glass-input {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

.glass-input:focus {
  border-color: var(--gold-start) !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2) !important;
  background: rgba(0,0,0,0.4) !important;
}

.wcu-card {
  padding: 35px 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}

.wcu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(255,215,0,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wcu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(255,215,0,0.2);
}

.wcu-card:hover::after {
  opacity: 1;
}

.wcu-icon {
  font-size: 3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  display: inline-block;
}

.wcu-number {
  position: absolute;
  right: -5px;
  bottom: -25px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.wcu-card:hover .wcu-number {
  color: rgba(255,215,0,0.05);
}

/* Neo-Morphism for Contact Form */
.neo-morphism {
  background: #171717; /* specific slightly dark grey to afford shadows */
  border-radius: 30px;
  box-shadow: 12px 12px 24px #0c0c0c, -12px -12px 24px #222222;
  border: 1px solid rgba(255,255,255,0.02);
}

.glass-input-container {
  transition: all 0.3s ease;
}

.glass-input-container:hover {
  border-color: rgba(255, 215, 0, 0.4) !important;
}

.glass-input-container:focus-within {
  border-color: var(--gold-start) !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Fix Bootstrap 5 floating labels white background bug on dark inputs */
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent !important;
}

.form-floating>.form-select {
  padding-top: 0;
  padding-bottom: 0;
}

/* Neo Hover Effect */
.neo-hover {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.neo-hover:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.4) !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1), 12px 12px 24px #0c0c0c, -12px -12px 24px #222222 !important;
}
.neo-hover .service-icon {
  transition: transform 0.4s ease;
}
.neo-hover:hover .service-icon {
  transform: scale(1.1);
}

/* Marquee / Slow slide effect for portfolio Swiper */
.portfolio-swiper .swiper-wrapper {
  transition-timing-function: linear !important; 
}

/* Animated Gradient Background */
@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.anim-gradient-bg {
  animation: gradientAnim 15s ease infinite;
}

/* Hide hero navigation arrows on mobile */
@media (max-width: 767px) {
  .hero-prev,
  .hero-next {
    display: none !important;
  }

  /* Fix navbar toggler being cut off on mobile */
  .navbar .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    flex-wrap: nowrap;
    max-width: 100%;
  }
  /* .navbar-toggler {
    flex-shrink: 0;
    margin-right: 0 !important;
    padding: 6px 10px;
    position: relative;
    z-index: 100;
  } */
  .navbar-brand {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* Custom Accordion Styles for FAQ */
.faq-accordion .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-accordion .accordion-button {
  background-color: rgba(23, 23, 23, 0.8);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  font-size: 1.1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--bg-dark);
  color: var(--gold-start);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-accordion .accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(79%) sepia(50%) saturate(718%) hue-rotate(355deg) brightness(101%) contrast(106%); /* Approximates gold-start #FFD700 */
}

.faq-accordion .accordion-body {
  background-color: rgba(18, 18, 18, 0.9);
  color: var(--text-muted);
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}


.main-logo {
  width: auto;
  height: 90px;
}
@media (max-width: 1100px) {
  .main-logo {
    width: auto;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .main-logo {
    width: auto;
    height: 60px;
  }
} 

.mob-logo {
  width: auto;
  height: 70px;  
}

.footer-logo {
  width: auto;
  height: 70px;
  border-radius: 20px;
  border: 1px solid rgb(87, 87, 87);
}



.breadcrumb-item+.breadcrumb-item::before{
  color: white;
}

.why-bg {
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  border-top: 1px solid rgb(111, 111, 111);
  z-index: 0;
  pointer-events: none;
}



/* Autofill background override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #11161e inset !important; /* your bg color */
  -webkit-text-fill-color: #ffffff !important; /* text color */
  transition: background-color 5000s ease-in-out 0s;
}