* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    "Helvetica Neue",
    sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

/* ========== ADVANCED ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(244, 180, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 180, 0, 0);
  }
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Ruler Strip Decorative */
.ruler-strip {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #f2f2f2 0%, #e8e8e8 100%);
  border-bottom: 2px solid #f4b400;
  border-top: 1px solid #ddd;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: flex-start;
}

.ruler-ticks {
  display: flex;
  align-items: flex-start;
  height: 100%;
  flex-shrink: 0;
  min-width: 100%;
}

.tick {
  width: 10px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tick span {
  display: block;
  width: 1px;
  height: 10px;
  background: #b0b0b0;
}

.tick.mid span {
  height: 20px;
  background: #888;
}

.tick.big span {
  height: 30px;
  background: #f4b400;
  width: 2px;
}

.ruler-strip::-webkit-scrollbar {
  height: 0px;
  display: none;
}

/* Logo Slider */
.logo-slider-section {
  background: linear-gradient(135deg, #f5a800 0%, #e69500 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.logo-track {
  display: inline-block;
  animation: slideLeft 30s linear infinite;
  white-space: nowrap;
}

.logo-track img {
  height: 70px;
  width: auto;
  margin: 0 35px;
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.cta-text h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.btn-contact {
  background-color: #1a1a1a;
  color: #fff;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  text-decoration: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-contact:hover:before {
  left: 100%;
}

.btn-contact:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Top Bar */
.top-bar {
  background: #111;
  color: #aaa;
  font-size: 12.5px;
  padding: 8px 0;
}

.top-bar a {
  color: #f4b400;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icons-top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-left: 6px;
  color: #ccc;
  font-size: 12px;
  transition: all 0.3s ease;
}

.social-icons-top a:hover {
  background: #f4b400;
  color: #111;
  transform: translateY(-3px) rotate(360deg);
}

/* Middle Header */
.middle-bar {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.logo-img {
  height: 60px;
  width: auto;
  max-height: 60px;
  object-fit: contain;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border-left: 1px solid #eee;
  transition: all 0.3s;
}

.info-box:hover {
  transform: translateX(5px);
}

.info-box .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.info-box:hover .icon-wrap {
  background: #f4b400;
  transform: scale(1.1);
}

.info-box .icon-wrap i {
  color: #f4b400;
  font-size: 16px;
  transition: all 0.3s;
}

.info-box:hover .icon-wrap i {
  color: #111;
}

.info-box .text strong {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: #888;
}

.info-box .text span {
  font-size: 12px;
  color: #222;
  font-weight: 600;
}

/* Navbar */
.main-navbar {
  background: #0a0c10;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link {
  color: #ddd !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 18px 16px !important;
  transition: 0.25s;
  border-bottom: 2px solid transparent;
  position: relative;
}

.navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f4b400;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f4b400 !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #0a0c10;
    padding: 1rem;
    border-radius: 16px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    text-align: center;
    padding: 12px 0 !important;
  }

  .info-section-wrapper {
    display: none !important;
  }
}

/* Hero Slider */
.carousel-item {
  height: 86vh;
  min-height: 500px;
  background-size: cover;
  background-position: center 30%;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    98deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    transparent 100%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 3;
  max-width: 680px;
  padding: 0 5%;
}

.slide-tag {
  display: inline-block;
  background: #f4b400;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
  opacity: 0;
}

.carousel-item.active .slide-tag {
  animation:
    fadeInLeft 0.6s forwards,
    pulseGlow 2.5s infinite;
}

.carousel-item.active .slide-content h1 {
  animation: fadeInLeft 0.8s forwards;
}

.carousel-item.active .slide-content p {
  animation: fadeInLeft 1s forwards;
}

.slide-content h1 {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
}

.slide-content p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  opacity: 0;
}

.btn-custom-primary {
  background: #f4b400;
  color: #111;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 40px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-custom-primary:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-custom-primary:hover:after {
  left: 100%;
}

.btn-custom-primary:hover {
  background: #ffcd4a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 40px;
  transition: all 0.3s;
}

.btn-outline-light-custom:hover {
  border-color: #f4b400;
  background: rgba(244, 180, 0, 0.2);
  color: #f4b400;
  transform: translateY(-3px);
}

/* Stats */
.stats-bar {
  background: linear-gradient(135deg, #f4b400 0%, #e6a800 100%);
}

.stat-item {
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  display: inline-block;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #f4b400;
  border-radius: 3px;
  transition: width 0.3s;
}

.section-title:hover:after {
  width: 100px;
}

.section-subtitle {
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Project Cards */
.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.project-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s;
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  padding: 20px;
  color: white;
  transition: 0.4s;
}

.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(244, 180, 0, 0.95),
    rgba(0, 0, 0, 0.7)
  );
}

.project-overlay h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
  border-color: #f4b400;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: #f4b400;
  transform: scale(1.1) rotate(360deg);
}

.service-icon i {
  font-size: 38px;
  color: #f4b400;
  transition: all 0.4s;
}

.service-card:hover .service-icon i {
  color: #111;
}

/* Why Choose Us */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fff8e1, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #f4b400;
  transition: all 0.4s;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  background: #f4b400;
}

.why-icon i {
  font-size: 32px;
  color: #f4b400;
  transition: all 0.4s;
}

.why-card:hover .why-icon i {
  color: #111;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  padding: 80px 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border: 1px solid #f4b400;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f4b400;
}

/* Footer - Improved */
.footer-dark {
  background: #b6ed12;
  color: #b0b3b8;
  padding: 55px 0 0;
}

.footer-title {
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  background: #ffffff;
  transition: width 0.3s;
}

.footer-title:hover:after {
  width: 80px;
}

.footer-logo-img {
  height: 55px;
  width: auto;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.newsletter-box {
  display: flex;
  background: #1a1d23;
  border-radius: 60px;
  overflow: hidden;
}

.newsletter-box input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: white;
  outline: none;
}

.newsletter-box button {
  background: #f4b400;
  border: none;
  padding: 0 22px;
  transition: all 0.3s;
  cursor: pointer;
}

.newsletter-box button:hover {
  background: #ffcd4a;
  transform: scale(1.05);
}

.footer-contact {
  background: #07090c;
  padding: 30px 0;
  margin-top: 45px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0f1117;
  padding: 14px 18px;
  border-radius: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  border: 1px solid #f4b400;
  background: #1a1d23;
}

.contact-card i {
  font-size: 28px;
  color: #f4b400;
}

.contact-card div h6 {
  color: white;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-card div p {
  margin: 0;
  font-size: 13px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1a1d23;
  border-radius: 50%;
  color: #ccc;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #000000;
  color: #a33ac7;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-title {
    display: block;
    text-align: center;
  }
}

/* about page code */

/* ========== UNIQUE ANIMATIONS ========== */
@keyframes revealRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Decorative Divider */
.ornament-divider {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #f5b042,
    #f5b042 20px,
    #e0e0e0 20px,
    #e0e0e0 40px
  );
}

/* Hero Section */
.about-hero {
  background: linear-gradient(105deg, #0f1115 0%, #1a1e26 100%);
  padding: 100px 0 90px;
  position: relative;
  isolation: isolate;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.08;
  z-index: -1;
}

.hero-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 176, 66, 0.12);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 60px;
  color: #f5b042;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 176, 66, 0.3);
}

.about-hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-stats-group {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-badge span {
  font-size: 28px;
  font-weight: 800;
  color: #f5b042;
  margin-right: 8px;
}

.stat-badge label {
  color: #ccc;
  font-weight: 500;
}

/* Section Container */
.about-section {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5b042;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(245, 176, 66, 0.1);
  padding: 5px 14px;
  border-radius: 30px;
}

.section-heading {
  font-size: 2.3rem;
  font-weight: 800;
  color: #131313;
  margin-bottom: 20px;
}

.accent-line {
  width: 70px;
  height: 3px;
  background: #f5b042;
  border-radius: 4px;
  margin: 20px 0 25px;
}

/* Story Image Frame */
.story-image-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.story-image-frame:hover {
  transform: scale(1.01);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mission Vision Cards */
.mv-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 30px;
  transition: all 0.35s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(245, 176, 66, 0.08);
  border-color: #f5b042;
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: #fef4e6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.mv-icon i {
  font-size: 32px;
  color: #f5b042;
}

.mv-card h3 {
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 1.7rem;
}

/* Value Pillars */
.pillar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 22px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #f1f1f1;
}

.pillar-card:hover {
  border-color: #f5b042;
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
  width: 75px;
  height: 75px;
  background: #fff7ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pillar-icon i {
  font-size: 34px;
  color: #f5b042;
}

.pillar-card h4 {
  font-weight: 800;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .hero-stats-group {
    justify-content: center;
  }

  .about-section {
    padding: 60px 0;
  }
}

/* contact page css code */

/* Simple Banner */
.simple-banner {
  background: linear-gradient(135deg, #f5b042 0%, #e69500 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.simple-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.simple-banner p {
  font-size: 1.1rem;
  color: #2c2c2c;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative Divider */
.ornament-divider {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #f5b042,
    #f5b042 20px,
    #e0e0e0 20px,
    #e0e0e0 40px
  );
}

/* Section Container */
.contact-section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5b042;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(245, 176, 66, 0.1);
  padding: 5px 14px;
  border-radius: 30px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #131313;
  margin-bottom: 15px;
}

.section-subheading {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info Cards */
.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
  text-align: center;
}

.info-card:hover {
  border-color: #f5b042;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 65px;
  height: 65px;
  background: #fff7ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.info-icon i {
  font-size: 28px;
  color: #f5b042;
}

.info-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.info-card p {
  color: #555;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* Contact Form */
.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
}

.form-control-custom {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  transition: all 0.3s;
  background: #fefefe;
  font-size: 0.9rem;
}

.form-control-custom:focus {
  outline: none;
  border-color: #f5b042;
  box-shadow: 0 0 0 3px rgba(245, 176, 66, 0.1);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  background: #f5b042;
  color: #1a1a1a;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: all 0.3s;
  width: 100%;
  font-size: 0.95rem;
}

.btn-submit:hover {
  background: #e69500;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 176, 66, 0.3);
}

/* Business Hours */
.hours-card {
  background: #fefcf8;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid #f5b04220;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0e6d0;
  font-size: 0.9rem;
}

.hours-list li span:first-child {
  color: #444;
  font-weight: 500;
}

.hours-list li span:last-child {
  color: #f5b042;
  font-weight: 600;
}

/* Map Container */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* Social Icons */
.social-icon-circle {
  background: #fff7ed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #f5b042;
  font-size: 20px;
  text-decoration: none;
  margin: 0 6px;
}

.social-icon-circle:hover {
  background: #f5b042;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .simple-banner h1 {
    font-size: 1.8rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .contact-section {
    padding: 50px 0;
  }

  .form-card {
    padding: 25px;
  }
}

/* project page css code */

/* ========== PREMIUM BANNER ========== */
.premium-banner {
  position: relative;
  background: linear-gradient(115deg, #0a0c10 0%, #1a1d23 100%);
  padding: 100px 0 90px;
  overflow: hidden;
}

.premium-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.premium-banner::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(244, 180, 0, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 180, 0, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px 22px;
  border-radius: 60px;
  color: #f4b400;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(244, 180, 0, 0.4);
}

.premium-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.premium-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.banner-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.banner-stat {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 12px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-stat span {
  font-size: 28px;
  font-weight: 800;
  color: #f4b400;
  margin-right: 8px;
}

.banner-stat label {
  color: #ccc;
  font-weight: 500;
}

/* Decorative Divider */
.ornament-divider {
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #f4b400,
    #f4b400 25px,
    #e8e8e8 25px,
    #e8e8e8 50px
  );
}

/* Section Container */
.projects-section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #f4b400;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(244, 180, 0, 0.1);
  padding: 5px 16px;
  border-radius: 30px;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #131313;
  margin-bottom: 15px;
}

.section-subheading {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Category Filter Buttons - Premium */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e8e8e8;
  padding: 10px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: pointer;
  color: #555;
}

.filter-btn:hover {
  border-color: #f4b400;
  color: #f4b400;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #f4b400;
  border-color: #f4b400;
  color: #1a1a1a;
  box-shadow: 0 5px 15px rgba(244, 180, 0, 0.3);
}

/* Project Cards - Premium Design */
.project-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.project-img-wrapper {
  position: relative;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-overlay a:hover {
  color: #f4b400;
}

.project-info {
  padding: 22px;
}

.project-category {
  display: inline-block;
  background: rgba(244, 180, 0, 0.15);
  color: #f4b400;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.project-info p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.project-location {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-location i {
  color: #f4b400;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0a0c10 0%, #1a1d23 100%);
  padding: 65px 0;
  text-align: center;
}

.btn-cta {
  background: #f4b400;
  color: #1a1a1a;
  padding: 14px 42px;
  border-radius: 60px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-cta:hover {
  background: #e6a800;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(244, 180, 0, 0.35);
  color: #111;
}

@media (max-width: 768px) {
  .premium-banner {
    padding: 60px 0;
  }

  .premium-banner h1 {
    font-size: 1.8rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .projects-section {
    padding: 50px 0;
  }

  .filter-btn {
    padding: 6px 18px;
    font-size: 0.75rem;
  }

  .banner-stats {
    gap: 15px;
  }

  .banner-stat span {
    font-size: 20px;
  }

  .banner-stat {
    padding: 8px 18px;
  }
}

/* service page css  */

/* ========== PREMIUM BANNER ========== */
.premium-banner {
  position: relative;
  background: linear-gradient(115deg, #0a0c10 0%, #1a1d23 100%);
  padding: 100px 0 90px;
  overflow: hidden;
}
.premium-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.premium-banner::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(244, 180, 0, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 180, 0, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px 22px;
  border-radius: 60px;
  color: #f4b400;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(244, 180, 0, 0.4);
}
.premium-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.premium-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative Divider */
.ornament-divider {
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #f4b400,
    #f4b400 25px,
    #e8e8e8 25px,
    #e8e8e8 50px
  );
}

/* Section Container */
.services-section {
  padding: 80px 0;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #f4b400;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(244, 180, 0, 0.1);
  padding: 5px 16px;
  border-radius: 30px;
}
.section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #131313;
  margin-bottom: 15px;
}
.section-subheading {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: #f4b400;
  box-shadow: 0 20px 35px rgba(244, 180, 0, 0.12);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: #f4b400;
  transform: scale(1.1);
}
.service-icon i {
  font-size: 36px;
  color: #f4b400;
  transition: all 0.3s;
}
.service-card:hover .service-icon i {
  color: #1a1a1a;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Why Choose Us Cards */
.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #f0f0f0;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.why-icon {
  width: 65px;
  height: 65px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.why-icon i {
  font-size: 28px;
  color: #f4b400;
}
.why-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  color: #666;
  font-size: 0.85rem;
}

/* Package Cards */
.package-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f4b400;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.package-card:hover::before {
  transform: scaleX(1);
}
.package-card:hover {
  transform: translateY(-10px);
  border-color: #f4b400;
  box-shadow: 0 20px 35px rgba(244, 180, 0, 0.12);
}
.package-badge {
  display: inline-block;
  background: rgba(244, 180, 0, 0.15);
  color: #f4b400;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.package-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.package-feature {
  text-align: left;
  margin: 15px 0;
  padding-left: 10px;
}
.package-feature p {
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.package-feature i {
  color: #f4b400;
  margin-right: 8px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0a0c10 0%, #1a1d23 100%);
  padding: 65px 0;
  text-align: center;
}
.btn-cta {
  background: #f4b400;
  color: #1a1a1a;
  padding: 14px 42px;
  border-radius: 60px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  font-size: 1rem;
}
.btn-cta:hover {
  background: #e6a800;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(244, 180, 0, 0.35);
  color: #111;
}

@media (max-width: 768px) {
  .premium-banner {
    padding: 60px 0;
  }
  .premium-banner h1 {
    font-size: 1.8rem;
  }
  .section-heading {
    font-size: 1.6rem;
  }
  .services-section {
    padding: 50px 0;
  }
  .package-card h3 {
    font-size: 1.3rem;
  }
}
.construction-image {
  position: relative;
  background: url("assets/images/bg.png") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}

.construction-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88); /* light overlay */
  z-index: 1;
}

.construction-image .container {
  position: relative;
  z-index: 2;
}
/* contCT PAGE START */

/* contCT PAGE END */
