* {
  font-family: 'TASA Orbiter', 'Segoe UI', Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(to right, #1a1a1a, #c9a14a, #f5d98e, #c9a14a, #1a1a1a);
  color: #fff;
  font-size: 14px;
}

.top-right a {
  color: #fff;
  margin-left: 14px;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.top-right a:hover {
  color: #1a1a1a;
}

/* ===== LOGO ===== */
.logo-img {
  height: 85px;
  width: auto;
}

.logo-text h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  line-height: 1.1;
}

.logo-text p {
  font-size: 11px;
  color: #777;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ===== NAV LINKS ===== */
.nav-link {
  color: #1a1a1a !important;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #c9a14a;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #c9a14a !important;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  background: linear-gradient(to right, #c9a14a, #f5d98e);
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,161,74,0.5);
  color: #1a1a1a;
}

/* ===== CUSTOM HAMBURGER ===== */
.navbar-toggler {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  z-index: 1101;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-collapse {
  flex-grow: unset;
}
/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}

.overlay.active {
  display: block;
}

/* --------------------------------- */

/* ===== HERO SLIDER ===== */
.hero-slider, .hero-slider .slick-list, .hero-slider .slick-track {
  /* height: 600px; */
}
 
.hero-slide {
  position: relative;
  width: 100%;
  height:100%;
}
 
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
 
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%);
}
 
.hero-caption {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 750px;
  text-align: center;
  color: #fff;
  z-index: 2;
}
 
.hero-caption h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
 
.hero-caption h2 span {
  color: #f5d98e;
}
 
.hero-caption p {
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 22px;
  opacity: 0.9;
}
 
/* Entrance animations - default hidden, triggered on active slide via JS */
.animate-title,
.animate-text,
.animate-btn {
  opacity: 0;
  transform: translateY(25px);
}
 
.hero-slide .slick-active .animate-title {
  animation: fadeUp 0.9s ease forwards 0.4s;
}
 
.hero-slide .slick-active .animate-text {
  animation: fadeUp 0.9s ease forwards 0.65s;
}
 
.hero-slide .slick-active .animate-btn {
  animation: fadeUp 0.9s ease forwards 0.9s, pulseGlow 2.5s ease-in-out infinite 2.5s;
}
.hero-slide .slick-dotted.slick-slider{
    margin-bottom: 0;
}
 
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(245,217,142,0); }
  50% { box-shadow: 0 0 18px rgba(245,217,142,0.6); }
}
 
/* Subtle zoom on slide image */
.hero-img {
  transform: scale(1.08);
  transition: transform 6s ease;
}
 
.slick-active .hero-img {
  transform: scale(1);
}
 
/* Slick dots */
.hero-slider .slick-dots {
  bottom: 20px;
}
 
.hero-slider .slick-dots li button:before {
  font-size: 10px;
  color: #fff;
  opacity: 0.6;
}
 
.hero-slider .slick-dots li.slick-active button:before {
  color: #f5d98e;
  opacity: 1;
}
 
/* Slick arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  z-index: 3;
  width: 45px;
  height: 45px;
}
 
.hero-slider .slick-prev {
  left: 25px;
}
 
.hero-slider .slick-next {
  right: 25px;
}
 
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
}
 
.hero-slider .slick-prev:before {
  content: "\f053";
}
 
.hero-slider .slick-next:before {
  content: "\f054";
}
 
.hero-slider .slick-prev:hover:before,
.hero-slider .slick-next:hover:before {
  background: #c9a14a;
  border-color: #c9a14a;
  transform: scale(1.1);
}
 
/* Slick fade transition smoothing */
.hero-slider .slick-slide {
  transition: opacity 1s ease;
}


/* About-css */

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #faf9f6;
  padding: 80px 0;
}
 
.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
 
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
 
.about-img-wrap:hover .about-img {
  transform: scale(1.05);
}
 
.about-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}
 
/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
 
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(201,161,74,0.25);
}
 
.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: #F2EBE0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}
.feature-icon i{
    color: #5F462C;
}
 
.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}
 
.feature-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}
 
.feature-underline {
  display: block;
  width: 32px;
  height: 3px;
  background-color: #DDCCB3;
  border-radius: 2px;
  transition: width 0.4s ease;
}
 
.feature-card:hover .feature-underline {
  width: 55px;
}
.cmn-heading{
    margin-bottom: 15px;
}
 .cmn-heading span{
     font-family: "TASA Orbiter", sans-serif;
     background-color:#FFE5B4;
     padding: 11px 26px;
     margin-bottom: 25px;
     font-size: 16px;
     display:inline-block;
     border-radius: 4px;
 }
 .cmn-heading h2{
    font-family: "Red Hat Display", sans-serif;
    font-weight: 500;
    font-size: 40px;
 }
.about-right{
    padding-left: 25px;
}


/* ===== SERVICES SECTION ===== */
.services-section {
  background: #1D1D1D;
  padding: 80px 0;
}
 
.light-heading {
  color: #fff;
}
 
.services-section .section-badge {
  background: linear-gradient(to right, #c9a14a, #f5d98e);
}
 
.service-card {
  background: #1d2025;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid #5E5E5E;
}
 
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(201,161,74,0.2);
  border-color: rgba(201,161,74,0.4);
}
 
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
 
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
 
.service-card:hover .service-img-wrap img {
  transform: scale(1.1);
}
 
.service-icon {
  position: absolute;
  bottom: 11px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
 
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #f5d98e, #c9a14a);
  transform: rotate(360deg) scale(1.1);
}
 
.service-card h6 {
  color: #fff;
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size:21px;
  padding: 32px 0 18px 0;
  margin: 0 10px;
  transition: color 0.3s ease;
  border-bottom: 1px solid #5E5E5E;
}
 
.service-card:hover h6 {
  color: #f5d98e;
}
 
.service-card p {
  color: #9a9ea5;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 18px 22px;
  margin-top: 10px;
}
.services-section .cmn-heading h2{
    color: #fff;
}
.services-section .cmn-heading {
    text-align: center;
    margin-bottom: 48px;
}
 
.service-icon svg{
  width: 33px;
}


/* ===== WHY CHOOSE US SECTION ===== */
.whyus-section {
  background: #0e0f12;
  padding: 80px 0;
}
.whyus-section .cmn-heading span{
  background-color: unset;
  color:#FFE5B4;
  border: 1px solid #FFE5B4;
  border-radius: 50px;
}
 
.whyus-subtitle {
  color: #9a9ea5;
  font-size: 0.95rem;
  margin-top: 14px;
}
 
.whyus-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 18px;
}
 
.whyus-num {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-size: 85px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: -webkit-text-stroke 0.4s ease, color 0.4s ease;
}
 
.whyus-item:hover .whyus-num {
  -webkit-text-stroke: 1.5px #f5d98e;
}
 
.whyus-item h6 {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(245,217,142,0.5);
  display: inline-block;
  transition: border-color 0.4s ease, color 0.4s ease, padding-bottom 0.4s ease;
  margin: 0;
}
 
.whyus-item:hover h6 {
  border-color: #f5d98e;
  color: #f5d98e;
}
 
@media (max-width: 767.98px) {
  .whyus-num {
    font-size: 2.4rem;
  }
  .whyus-item h6 {
    font-size: 0.95rem;
  }
}
 
@media (max-width: 575.98px) {
  .whyus-section {
    padding: 50px 0;
  }
}

.whyus-section .cmn-heading{
    text-align: center;
    margin-bottom:60px;
}
.whyus-section .cmn-heading h2{
  color: #fff;
  font-weight: 800;
}
.whyus-section .cmn-heading p{
  color:#939393;
}

.whyus-item{
  margin-top: 50px;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #faf9f6;
  padding: 80px 0;
}
 
.contact-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
 
/* Left side */
.contact-left {
  position: relative;
  min-height: 460px;
}
 
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
 
.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.1) 55%);
}
 
.contact-left-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
  z-index: 2;
}
 
.contact-left-content .section-badge {
  font-size: 12px;
  padding: 5px 14px;
}
 
.contact-left-content h3 {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 14px 0 20px;
}
 
.contact-info-row {
  display: flex;
  gap: 35px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
  flex-wrap: wrap;
}
 
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
 
.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, #f5d98e, #c9a14a);
  transform: scale(1.1) rotate(10deg);
}
 
.contact-info-item h6 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
  color: #D5C5B0;
}
 
.contact-info-item p {
  font-size: 0.85rem;
  margin: 0;
  color: #d9d9d9;
}
.contact-info-item p a{
  color: #fff;
  text-decoration: none;
}
 
/* Right side - Form */
.contact-right {
  background: #1d2025;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.form-title {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
 
.form-subtitle {
  color: #9a9ea5;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}
 
.appointment-form .form-control {
  background: #25282e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
 
.appointment-form .form-control::placeholder {
  color: #8a8d93;
}
 
.appointment-form .form-control:focus {
  border-color: #f5d98e;
  box-shadow: 0 0 0 3px rgba(245,217,142,0.15);
  background: #25282e;
  color: #fff;
  outline: none;
}
 
.submit-btn {
  background: linear-gradient(to right, #c9a14a, #f5d98e);
  color: #1a1a1a;
  border: none;
  padding: 8px 8px 8px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201,161,74,0.4);
}
 
.submit-btn i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:#faf9f6;
  color: #f5d98e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.3s ease;
}
 
.submit-btn:hover i {
  transform: rotate(45deg);
}
 
/* Responsive */
@media (max-width: 991.98px) {
  .contact-left {
    min-height: 380px;
  }
  .contact-right {
    padding: 35px 25px;
  }
}
 
@media (max-width: 575.98px) {
  .contact-section {
    padding: 50px 0;
  }
  .contact-left {
    min-height: 320px;
  }
  .contact-left-content h3 {
    font-size: 1.3rem;
  }
  .contact-info-row {
    gap: 20px;
  }
  .contact-right {
    padding: 30px 18px;
  }
  .form-title {
    font-size: 1.3rem;
  }
}



/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #faf9f6;
  padding: 80px 0;
}
 
.contact-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
 
/* Left side */
.contact-left {
  position: relative;
  min-height: 460px;
}
 
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
 
.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.1) 55%);
}
 
.contact-left-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
  z-index: 2;
}
 
.contact-left-content .section-badge {
  font-size: 12px;
  padding: 5px 14px;
}
 
.contact-left-content h3 {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 14px 0 20px;
}
 
.contact-info-row {
  display: flex;
  gap: 35px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
  flex-wrap: wrap;
}
 
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
 
.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, #f5d98e, #c9a14a);
  transform: scale(1.1) rotate(10deg);
}
 
.contact-info-item h6 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}
 
.contact-info-item p {
  font-size: 0.85rem;
  margin: 0;
  color: #d9d9d9;
}
 
/* Right side - Form */
.contact-right {
  background: #1d2025;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.form-title {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
 
.form-subtitle {
  color: #9a9ea5;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}
 
.appointment-form .form-control {
  background: #25282e;
  border: 1px solid #D5C5B0;
  color: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
 
.appointment-form .form-control::placeholder {
  color: #8a8d93;
}
 
.appointment-form .form-control:focus {
  border-color: #f5d98e;
  box-shadow: 0 0 0 3px rgba(245,217,142,0.15);
  background: #25282e;
  color: #fff;
  outline: none;
}
 
.submit-btn {
  background: linear-gradient(to right, #c9a14a, #f5d98e);
  color: #1a1a1a;
  border: none;
  padding: 8px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201,161,74,0.4);
}
 
.submit-btn i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #f5d98e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.3s ease;
}
 
.submit-btn:hover i {
  transform: rotate(45deg);
}
 
/* Responsive */
@media (max-width: 991.98px) {
  .contact-left {
    min-height: 380px;
  }
  .contact-right {
    padding: 35px 25px;
  }
}
 
@media (max-width: 575.98px) {
  .contact-section {
    padding: 50px 0;
  }
  .contact-left {
    min-height: 320px;
  }
  .contact-left-content h3 {
    font-size: 1.3rem;
  }
  .contact-info-row {
    gap: 20px;
  }
  .contact-right {
    padding: 30px 18px;
  }
  .form-title {
    font-size: 1.3rem;
  }
}
 
/* ===== FOOTER ===== */
.footer {
  background: #14161a;
  padding: 60px 0 0;
  color: #b5b8bd;
}
 
.footer-heading {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}
 
.footer-subheading {
  font-family: 'Red Hat Display', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}
 
.footer p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #fff;
}

.footer p a{
  color: #fff;
  text-decoration: none;
}
 
.footer-label {
  color: #f5c570;
  font-weight: 600;
}
 
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.footer-links li {
  margin-bottom: 12px;
}
 
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size:17px;
  margin-bottom: 16px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
 
.footer-links a i {
  margin-right: 6px;
  color: #f5c570;
  transition: transform 0.3s ease;
}
 
.footer-links a:hover {
  color: #f5d98e;
  padding-left: 5px;
}
 
.footer-links a:hover i {
  transform: translateX(3px);
}
 
.footer-socials {
  display: flex;
  gap: 12px;
}
 
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25282e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
 
.footer-socials a:hover {
  background: linear-gradient(135deg, #f5d98e, #c9a14a);
  color: #1a1a1a;
  transform: translateY(-4px);
}
 
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 45px;
  padding: 20px 0;
  text-align: center;
}
 
.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
  color: #9a9ea5;
}
 
.footer-bottom a {
  color: #f5d98e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
 
.footer-bottom a:hover {
  color: #fff;
}
 
@media (max-width: 991.98px) {
  .footer {
    text-align: left;
  }
}
 
@media (max-width: 575.98px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer-bottom {
    margin-top: 30px;
  }
}
 
.animate-title,
.animate-text,
.animate-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide:not(.first-loaded) .animate-title,
.hero-slide:not(.first-loaded) .animate-text,
.hero-slide:not(.first-loaded) .animate-btn {
  opacity: 1;
  transform: translateY(0);
}

.top-left a{
  color: #fff;
  text-decoration: none;
}

/* whats-app-css */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}