:root {
  --primary-bg: #0d0f10; /* Deep charcoal black */
  --accent-yellow: #ffb400; /* Bold warm yellow */
  --text-white: #ffffff;
  --text-gray: #c7c7c7;
  --text-dim: #9b9b9b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-bg);
  font-family: "Rajdhani", sans-serif;
  color: var(--text-white);
  overflow-x: hidden;
}
.container {
  max-width: 1300px;
  margin: auto;
}

/* ---------------- HEADER ---------------- */
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  padding: 18px 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo img {
  width: auto;
  height: 40px;
  color: var(--accent-yellow);
}

.desktop-nav {
  display: none;
  gap: 2.2rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent-yellow);
}

.mobile-menu-button {
  background: none;
  border: none;
  display: flex;
  cursor: pointer;
  color: white;
}
.mobile-menu-button i {
  color: #fff;
  font-size: 1.7rem;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

/* ---------------- MOBILE MENU ---------------- */
#mobile-menu {
  background-color: #000;
  display: none;
  padding: 1rem 2rem;
}

#mobile-menu a {
  display: block;
  padding: 0.8rem 0;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

#mobile-menu a:hover {
  color: var(--accent-yellow);
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  /* padding-top: 180px;
  padding-bottom: 100px; */
  /* padding-left: 2rem;
  padding-right: 2rem; */
  position: relative;
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
  padding: 100px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-yellow);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: "Rajdhani", sans-serif;
  max-width: 80%;
  position: relative;
  z-index: 2;
}

.highlight-badge {
  background: var(--accent-yellow);
  color: #000;
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  font-size: 2.8rem;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
    max-width: 100%;
  }
  .highlight-badge {
    font-size: 1.8rem;
  }
}

/* IMAGE BLOCK */
.hero-image {
  width: 100%;
  margin-top: 3rem;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.85);
}

.read-more-btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.read-more-btn:hover {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
}

/* services */

/* ✅ SECTION BASE */
.services-section {
  background: #0d0d0d;
  color: #ffffff;
  padding: 100px 20px;
}

/* ✅ LABEL */
.section-label {
  color: #ffb800;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ✅ TITLE */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 60px;
}

/* ✅ GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ✅ CARDS */
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  background: transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: #ffb800;
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.service-icon {
  width: 42px;
  height: auto;
  opacity: 0.9;
}

/* ✅ MARQUEE */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 80px;
  padding: 25px 0;
}

.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 18s linear infinite;
  font-size: 26px;
  font-weight: 600;
}

.marquee span {
  display: inline-block;
  color: var(--text-gray);
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #6c757d;
  letter-spacing: 2px;
}
.marquee span:hover {
  color: #ffffff;
  -webkit-text-stroke: 0;
  transition: 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ✅ RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
  .services-section {
    text-align: center;
    padding: 60px 20px;
  }
  .marquee span {
    font-size: 2rem;
  }
}

.icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}



/* about us */

.about-section {
  background: #0d0e0e;
  padding: 100px 20px;
  color: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
}

.about-images {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: end;
}

.about-images .img-1 {
  width: 360px;
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 240px;
}
.about-images .img-2 {
  width: 260px;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 140px;
}

.about-images .img-1 {
  background-image: url("../images/about2.webp");
}

.about-images .img-2 {
  background-image: url("../images/about1.webp");
}

.about-content {
  max-width: 540px;
}

.about-label {
  color: #f5a623;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 15px 0 20px;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-btn {
  background: #f5a623;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  color: #000;
  text-decoration: none;
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  gap: 60px;
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 700;
}

.stat-item p {
  font-size: 14px;
  color: #b3b3b3;
  margin-top: 5px;
}

/* ✅ RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about-images .img-1,
  .about-images .img-2 {
    width: 280px;
    height: 400px;
    border-radius: 200px;
  }

  .about-title {
    font-size: 2rem;
  }
  .about-section {
    padding: 60px 20px;
  }
}

/* why us */
.features-section {
  padding: 100px 20px;
  background: #0d0f10;
  color: #fff;
  position: relative;
}

/* subtle background like image */
.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  background: url("../images/feature.webp");
  /* background-size: 500px; */
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-label {
  color: #ffb400;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.features-header {
  max-width: 650px;
  margin-bottom: 80px;
}

.features-header h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
}

.see-more-btn {
  position: absolute;
  right: 6%;
  top: 120px;
  padding: 12px 26px;
  border: 1px solid #ffb400;
  color: #ffb400;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.see-more-btn:hover {
  background: #ffb400;
  color: #0d0f10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.feature-card {
  background: #0f1113;
  padding: 50px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: 0.3s;
}

.feature-card:hover {
  border-color: #ffb400;
  transform: translateY(-6px);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  background: #ffb400;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -60px auto 25px;
  font-size: 28px;
  color: #0d0f10;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .see-more-btn {
    position: static;
    margin-top: 25px;
    display: inline-block;
  }
.features-section {
  padding: 60px 20px;
  text-align: center;
}
.features-header h2 {
  font-size: 2rem;
}
}

/* ============== CONTACT SECTION ============== */
.contact-section {
  background: linear-gradient(135deg, #0d0f10 0%, #1a1d20 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 180, 0, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE - CONTENT */
.contact-content {
  max-width: 550px;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 15px 0 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #ffb400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description {
  font-size: 18px;
  color: #b3b3b3;
  line-height: 1.8;
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb400;
  font-size: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.info-item:hover .info-icon {
  background: rgba(255, 180, 0, 0.2);
  border-color: #ffb400;
  transform: translateY(-4px);
}

.info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14px;
  color: #999;
}

/* RIGHT SIDE - FORM */
.contact-form-wrapper {
  position: relative;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideInForm 0.6s ease;
}

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

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffb400;
  box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.1);
}

.form-input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb400' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

select.form-input option {
  background: #1a1d20;
  color: #ffffff;
}

.submit-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffb400 0%, #ff9500 100%);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(255, 180, 0, 0.2);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 180, 0, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* SUCCESS MESSAGE */
.success-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(13, 15, 16, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  z-index: 10;
  animation: successPop 0.4s ease;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-message.show {
  display: flex;
}

.success-content {
  text-align: center;
}

.success-icon {
  font-size: 60px;
  color: #ffb400;
  margin-bottom: 20px;
  animation: checkmark 0.6s ease;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.success-message h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Rajdhani", sans-serif;
}

.success-message p {
  font-size: 16px;
  color: #b3b3b3;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-btn {
  padding: 12px 28px;
  background: #ffb400;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}

.success-btn:hover {
  background: #ff9500;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-section::before {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-wrapper {
    gap: 40px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-info {
    gap: 20px;
  }

  .info-item {
    gap: 15px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .info-item h4 {
    font-size: 14px;
  }

  .quote-form {
    gap: 14px;
  }

  .form-input {
    padding: 14px 14px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ============== CTA SECTION ============== */
.cta-section {
  background: #0d0f10;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(10, 12, 15, 0.6) 100%
    ),
    url("../images/cta-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 180, 0, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 180, 0, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-title {
  font-size: 56px;
  font-weight: 800;
  font-family: "Rajdhani", sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #ffb400;
  margin-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-description {
  font-size: 16px;
  color: #c7c7c7;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 16px 42px;
  background: transparent;
  color: #ffb400;
  text-decoration: none;
  border: 2px solid #ffb400;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #ffb400;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 180, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-content {
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 44px;
  }

  .cta-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .cta-description {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 50px 20px;
  }

  .cta-content {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .cta-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .cta-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* ============== FOOTER SECTION ============== */
footer.footer {
  background: #0a0c0e;
  color: #c7c7c7;
  padding: 80px 20px 30px;
  position: relative;
  border-top: 1px solid rgba(255, 180, 0, 0.1);
}

footer.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 180, 0, 0.3) 50%,
    transparent 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column {
  animation: fadeInUp 0.6s ease;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-logo img {
  width: auto;
  height: 40px;
  color: #ffb400;
}

.footer-description {
  font-size: 16px;
  line-height: 1.8;
  color: #9b9b9b;
  margin-bottom: 25px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.footer-links a {
  color: #9b9b9b;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffb400;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: #ffb400;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  color: #9b9b9b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-item a {
  color: #c7c7c7;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #ffb400;
}

.contact-item p {
  font-size: 14px;
  color: #9b9b9b;
  margin: 0;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}
.footer-bottom-left a{
  color: #ffb400;
  text-decoration: none
}

/* RESPONSIVE FOOTER */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  footer.footer {
    padding: 60px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .footer-description {
    margin-bottom: 20px;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left {
    width: 100%;
  }
}

@media (max-width: 600px) {
  footer.footer {
    padding: 50px 15px 20px;
  }

  .footer-logo {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .footer-logo svg {
    width: 24px;
    height: 24px;
  }

  .footer-description {
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .footer-title {
    font-size: 14px;
    margin-bottom: 15px;
  }

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

  .footer-links a {
    font-size: 13px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item i {
    font-size: 16px;
  }

  .contact-label {
    font-size: 11px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 13px;
  }

  .footer-divider {
    margin-bottom: 25px;
  }

  .footer-bottom-left p {
    font-size: 12px;
  }
}

.contact-section-inner{
  padding: 100px 20px;
  position: relative;
  overflow: hidden;

  background:   url("../images/feature.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contact-section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

/* ============== SCROLL ANIMATIONS ============== */
html {
  scroll-behavior: smooth;
}

/* Fade in and slide up animation */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom in fade */
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to elements before they're visible */
.service-card,
.feature-card,
.about-content,
.contact-wrapper,
.cta-content,
.footer-column,
.hero h1,
.hero-image,
.about-images {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animate in class */
.service-card.animate-in,
.feature-card.animate-in,
.about-content.animate-in,
.contact-wrapper.animate-in,
.cta-content.animate-in,
.footer-column.animate-in,
.hero h1.animate-in,
.hero-image.animate-in,
.about-images.animate-in {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFromBottom 0.6s ease forwards;
}

/* Stagger animations for grid items */
.services-grid .service-card:nth-child(1),
.features-grid .feature-card:nth-child(1) {
  animation-delay: 0s;
}

.services-grid .service-card:nth-child(2),
.features-grid .feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.services-grid .service-card:nth-child(3),
.features-grid .feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(4),
.features-grid .feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.services-grid .service-card:nth-child(5),
.features-grid .feature-card:nth-child(5) {
  animation-delay: 0.4s;
}

.services-grid .service-card:nth-child(6),
.features-grid .feature-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Scroll fade effect for sections */
@keyframes fadeInSection {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

section {
  animation: fadeInSection 0.8s ease;
}

/* Parallax effect for hero */
.hero {
  background-attachment: fixed;
}

/* Number counter animation */
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stat-item h3 {
  animation: countUp 0.8s ease;
}

/* Navigation link hover animation */
.desktop-nav a,
.footer-links a {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
}

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

/* Smooth transitions for interactive elements */
button,
a,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* Hover lift effect */
.service-card:hover,
.feature-card:hover,
.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 180, 0, 0.1);
}

/* Text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

h1, h2, h3, .section-title {
  animation: slideInFromBottom 0.8s ease;
}

/* Loading skeleton animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Mobile optimizations */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  /* Reduce animation complexity on mobile for better performance */
  .service-card,
  .feature-card {
    animation-delay: 0 !important;
  }
}
