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

:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2a2a2a;
  --copper-gradient: linear-gradient(45deg, #ffd700, #ff8c00, #ff6f00);
  --copper-light: linear-gradient(45deg, #523303, #ae7915,  #d07728);
  --text-light: #ffffff;
  --text-muted: #cccccc;
  --text-secondary: #999999;
  --border-color: #333333;
  --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: black;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
/* Navigation Styles */
/* Initial Glassy Navbar */
/* Scrollable Initial Navbar (non-fixed) */
 .initial-navbar {
  position: absolute; /* make it float above the hero section */
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.3); /* darker but transparent */
  backdrop-filter: blur(8px);     /* adds soft blur */
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  z-index: 10; /* ensure it's above video and hero content */
}


/* Fixed Black Navbar (hidden initially) */
.fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

/* Show fixed navbar */
.fixed-navbar.visible {
  transform: translateY(0%);
}




.nav-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-right: 60px; /* This ensures space for the hamburger */
}


.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}


.nav-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  
}



.nav-list {
  display: flex;
  list-style: none;
  gap: 4rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-link2 {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 1000;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-link2 {
  margin-right: 500px;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(45deg, #523303, #e2ae4c,  #d07728);
   font-weight: bold;
  
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
       transition: cubic-bezier(0.215, 0.610, 0.355, 1);

 
}

.nav-link2:hover,
.nav-link2.active{
   background:linear-gradient(45deg, #523303, #e2ae4c,  #d07728);
   
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
 


}
.nav-link .dropdown-arrow {
  margin-left: 6px; /* Or try 8px, 10px as needed */
  font-size: 0.8em;
}
.nav-link2 .dropdown-arrow {
  margin-left: 6px; /* Or try 8px, 10px as needed */
  font-size: 0.8em;}


.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;

}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.nav-links:hover{
   background:linear-gradient(45deg, #523303, #ae7915,  #d07728);
  color: white;
  background-size: contain;
}


.dropdown-link:hover {
  background:linear-gradient(45deg, #523303, #ae7915,  #d07728);
  color: white;
}

/* Hamburger Button (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger .bar {
  width: 30px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
:root {
  --main-gradient: linear-gradient(45deg, #b47619, #dca136, #d07728);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 9999;
  transition: right 0.4s ease-in-out;
  padding: 1rem;
  overflow-y: auto;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
  right: 0;
}

.search-box {
  display: flex;
  align-items: center;
  background: #2a2a2a;
  padding: 0.5rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  outline: none;
  padding-left: 5px;
}

.search-box button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}
.suggestion-list {
  margin-top: 172px;
  background: rgba(226, 176, 176, 0.05); /* Light transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: white;
  list-style: none;
 
  padding: 0.5rem;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  z-index: 10000;
  width: calc(90% - 2rem);
  display: none;
}

.suggestion-list li {
  padding: 5px 10px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-list li:hover {
  background:linear-gradient(45deg, #523303, #ae7915,  #d07728);;
}


.sidebar-list {
  list-style: none;
  padding: 0;
}

.sidebar-list li {
  margin: 1rem 0;
}

.sidebar-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.sidebar-list a:hover {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* Parent link active style (e.g., About Us) */
.sidebar-list .dropdown.active > a {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Arrow rotation for dropdown */
.dropdown .arrow {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.dropdown.active .arrow {
  transform: rotate(180deg); /* makes it look like an up arrow ▴ */
}

/* Sub-menu style */
.dropdown-content {
  display: none;
   list-style: none;
  margin-top: 0.5rem;
  margin-left: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.05); /* optional separator */
}

.dropdown.active .dropdown-content {
  display: block;
}

.dropdown-content li {
  margin-bottom: 1rem;
}

.dropdown-content a {
  color: #ffffff;
  font-size: 0.95rem;
  padding-left: 0.25rem;
}







/* Optional: dark overlay */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}


/* Show hamburger only on mobile */


  .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
 
  opacity: 0.6; /* adjust for clarity */
}

/* Hero Section */
.hero-section {
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-shape,
.hero-shape-2 {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape {
  top: 10%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(205, 127, 50, 0.1), transparent 70%);
  transform: rotate(-20deg);
}

.hero-shape-2 {
  bottom: -20%;
  left: -20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(42, 42, 42, 0.8), transparent 70%);
  transform: rotate(20deg);
  animation-direction: reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-20deg);
  }
  50% {
    transform: translateY(-20px) rotate(-25deg);
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: 8px;
  background: var(--copper-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-separator {
  width: 150px;
  height: 2px;
  background: var(--copper-gradient);
  margin: 2rem auto;
  animation: expandWidth 1.5s ease-out 0.5s both;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--text-muted);
  animation: fadeInUp 1s ease-out 0.7s both;
}

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

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 150px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--copper-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #cd7f32;
}

/* Responsive Changes for Hamburger at 1421px */
@media (max-width: 1421px) {
 
  .hamburger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 1.1rem;
    z-index: 1001;
  }



  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    height: 100%;
    justify-content: flex-start;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    padding: 1rem 0;
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    background: var(--border-color);
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 200px;
  }
}

/* Extra small screen tweaks */
@media (max-width: 576px) {
  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-separator {
    width: 80px;
    margin: 1.5rem auto;
  }

  .nav-link,
  .nav-link2 {
    font-size: 0.85rem;
    margin-right: 0;
  }

  .dropdown-menu {
    min-width: 100%;
  }
}


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



.services-section {

  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 30vh;
  display: flex;
  align-items: center;
  
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
margin-top: -220px;


}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
 
}





.service-box {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;

  background-repeat: no-repeat;
}

.service-box[data-service="event"] {
  background-image: url(../img/box1.jpg);
  background-color: #1a1a2e;
}

.service-box[data-service="brand"] {
  background-image: url(../img/box2.jpeg);
  background-color: #2d2d2d;
}

.service-box[data-service="exhibition"] {
  background-image: url(../img/box3.jpeg);
  background-color: #1e3a5f;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  transition: all 0.3s ease;
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
 
}

.service-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
  flex-grow: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.read-more-btn {
  background:linear-gradient(45deg, #523303, #ae7915,  #d07728);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(45deg, #523303, #e2ae4c,  #d07728);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-box:hover .service-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    gap: 25px;
  }

  .service-box {
    height: 450px;
  }

  .service-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-box {
    height: 400px;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-content {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-box {
    height: 350px;
  }

  .service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .service-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .service-content {
    padding: 25px 20px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .service-box {
    height: 320px;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-content {
    padding: 20px 15px;
  }

  .read-more-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .service-box {
    height: 300px;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-description {
    font-size: 0.85rem;
  }
}

/* Animation for smooth loading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-box {
  animation: fadeInUp 0.6s ease forwards;
}

.service-box:nth-child(1) {
  animation-delay: 0.1s;
}

.service-box:nth-child(2) {
  animation-delay: 0.2s;
}

.service-box:nth-child(3) {
  animation-delay: 0.3s;
}
/* 🔶 Base Styles */
.experience-section {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background: #000000;
  color: #fff;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.experience-left {
  flex: 1 1 500px;
  max-width: 600px;
}

.experience-left h2 {
  font-size: 2.2rem;
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.experience-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.experience-right {
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  position: relative;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* 🔶 Badge */
.experience-badge {
  position: absolute;
  top: 25%;
  left: 37%;
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  color: #ff0000;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  z-index: 5;
  transition: all 0.3s ease;
}

.experience-badge strong {
  font-size: 1.2rem;
  color: #000;
}



/* ---------- Responsive Breakpoints ---------- */

@media (max-width: 1024px) {
  .experience-badge {
    width: 110px;
    height: 110px;
    top: 28%;
    left: 38%;
    font-size: 0.85rem;
  }

  .experience-badge strong {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .experience-badge {
    width: 95px;
    height: 95px;
   top: 36%;
        left: 40%;
    font-size: 0.75rem;
  }

  .experience-badge strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .experience-badge {
    width: 85px;
    height: 85px;
    top: 36%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
  }

  .experience-badge strong {
    font-size: 0.85rem;
  }
}

.view-more-btn {
  display: inline-flex;
  margin-top: 15px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ✅ Apply gradient ONLY to the .btn-text */
.view-more-btn:hover .btn-text {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ✅ Keep arrow solid, and add animation if needed */
.view-more-btn:hover .btn-arrow {
  transform: translateX(5px);
  transition: transform 0.3s ease;
  color: #e2ae4c; /* Optional: give a matching hover color */
}
.view-more-btn span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.view-more-btn:hover span {
  transform: translateX(4px);
}



.partners-section {
 
  padding: 2rem 1rem;
font-size: 1.2rem;
 background: #000;
  margin: 0 auto;
 padding-bottom: 4rem;
 padding-left: 12rem;
 padding-right: 12rem;
 
  
}
.partners-section h3{
 background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.partner-logos {
  overflow: hidden;
  position: relative;
  width: 100%;
  
 margin-top: 0.2rem;
  height: 100%;
  
}

.logos-track {
  display: flex;
  animation: scrollLoop 80s linear infinite;
  width: max-content;
}

.logo-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo-strip img {
  height: 90px;
  padding: 0.5rem;
  background: white;
 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

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

.projects-completed {
  
  padding: 3rem 1rem;
 
  text-align: center;
  margin: 0 auto;
  max-width: 6000px;
  background-color: #262626;
}

.projects-completed h2 {
  
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-align: center;
  
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  

}

.stat {
  font-size: 4rem;
  font-weight: bold;
  min-width: 140px;
 
}

.stat p {
  font-size: 1.5rem;

text-align: center;
   background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .logo-strip {
    gap: 1.2rem;
  }
  .logo-strip img {
    height: 40px;
  }
  .stat {
    font-size: 1.8rem;
    min-width: 120px;
  }
  .partners-section,
  .projects-completed {
    padding: 2rem 1rem;
  }
}
.why-choose-us-section {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  align-items: flex-start;
  justify-content: center;
  background: #000;
  gap: 5rem;
  padding: 2rem 2rem;
}

.container2 {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.why-text {
  flex: 1 1 500px;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.why-text p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.copper-btn {
  display: inline-flex;
  margin-top: 15px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.copper-btn:hover .btn-text {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}

.copper-btn:hover {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.copper-btn .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.why-video {
  flex: 1 1 500px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.responsive-iframe {
  position: absolute;
  top: 100px; left: 0;
  width: 100%;
  height: 70%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 149, 0, 0.4);
}

/* 🌐 RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .why-choose-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-video
  {
margin-bottom: -106px;
        margin-top: -106px;
        width: 100%;
  }
  .why-text {
    
    width: 100%;
  }

  .responsive-iframe {
    position: relative;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .copper-btn {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
  }

  .responsive-iframe {
    height: 200px;
  }
}

.our-work-section {
  padding: 40px;
  background-color: #000;
  text-align: center;
}

.work-heading {
  margin-bottom: 30px;
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
}

.work-gallery {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-right: 40px;
  padding-left: 40px;
}

/* -----------------------------------
   Work Row & Image Wrapper (base)
----------------------------------- */
.work-row {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 100%; /* remove fixed 980px */
}

.image-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
  will-change: transform;
}

/* -----------------------------------
   Image Styling (responsive)
----------------------------------- */
.work-row img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  margin: 0 10px;
  flex-shrink: 0;
}

/* -----------------------------------
   Responsive Grid Behavior
----------------------------------- */

/* Tablets (2 images visible) */
@media (max-width: 1024px) {
  .image-wrapper {
    justify-content: center;
  }

  .work-row img {
    max-width: 45%;
    height: auto;
    margin: 10px;
  }
}

/* Mobile Phones (1 image visible) */
@media (max-width: 600px) {
  .work-row {
    width: 100%;
    overflow: hidden;
  }

  .image-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .work-row img {
    width: 100%;
    max-width: 100%;     /* strictly 100% of container */
    margin: 0;           /* no spacing! */
    height: auto;
    flex-shrink: 0;      /* prevent images from shrinking */
  }
}


  .testimonial-container {
            background-color: #262626; /* Slightly lighter dark background for the card */
            /* Rounded corners */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow */
            max-width: 100%; /* Responsive width */
            width: 1350px; /* Max width for larger screens */
            padding: 2.5rem; /* Padding inside the card */
            color: #e0e0e0; /* Light text color */
            position: relative;
            overflow: hidden;
             margin: 0 auto; 
  }

        .testimonial-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out; /* Smooth slide animation */
        }

        .testimonial-item {
            min-width: 100%; /* Each item takes full width of its container */
            box-sizing: border-box;
            padding: 0 1rem; /* Padding for content inside each item */
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .quote-icon {
            background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Orange color for the icon */
            font-size: 6rem;
            margin-bottom: 1.5rem;
            line-height: 0.5; /* Adjust line height to bring icon closer */
            display: inline-block;
            transform: rotate(180deg); /* Rotate for top quote icon */
        }

        .quote-icon::before {
            content: "“"; /* Unicode for left double quotation mark */
        }

        .testimonial-text {
            font-size: 1.125rem; /* Larger text for readability */
            line-height: 1.75;
            margin-bottom: 1.5rem;
           width: fit-content;
            text-align: left;
            padding:2px 80px; /* Align text to left as per image */
        }

        .star-rating {
            background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Orange color for stars */
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .author-name {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: #ffffff; /* White for author name */
        }

        .company-logo {
            width: 80px; /* Adjust as needed */
            height: auto;
            margin-top: 1rem;
            filter: grayscale(100%) brightness(200%); /* Make it white/light as per image */
            opacity: 0.7; /* Slightly faded */
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
          
                 padding: 0.75rem 1rem;
            border-radius: 9999px; /* Fully rounded */
            cursor: pointer;
            font-size: 1.5rem; 
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
            z-index: 10;
            padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8); /* Ensure buttons are above content */
        }

       .nav-button:hover {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

       }
       .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-button:hover .arrow-icon {
  transform: scale(1.4); 
   background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;/* ✅ Zooms only arrow */
}


        .nav-button.left {
            left: 1rem;
        }

        .nav-button.right {
            right: 1rem;
        }
    

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .testimonial-container {
                padding: 1.5rem;
            }
            .testimonial-text {
                font-size: 1rem;
            }
            .quote-icon {
                font-size: 2.5rem;
            }
            .nav-button {
                padding: 0.5rem 0.75rem;
                font-size: 1.2rem;
            }
            .nav-button.left {
                left: 0.5rem;
            }
            .nav-button.right {
                right: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .testimonial-container {
                padding: 1rem;
            }
            .testimonial-text {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            .quote-icon {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            .star-rating {
                font-size: 1rem;
            }
            .author-name {
                font-size: 0.9rem;
            }
            .company-logo {
                width: 60px;
            }
            .nav-button {
                padding: 0.4rem 0.6rem;
                font-size: 1rem;
            }
        }

.site-footer {
  background: #262626;
  color: #ccc;
  padding: 60px;
    padding-right: 80px;
    padding-left: 167px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  margin-top: 60px;
 
}
.footer-content {
  display: flex;

  flex-wrap: wrap;
  gap: 2rem;
}
.footer-left,

.footer-right {
  flex: 1;
   
  min-width: 250px;
}
.footer-center{
   flex: 1;
      padding-left: 100px;
  min-width: 250px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
.footer-left h3,
.footer-center h3,
.footer-right h3 {
  color: white;
  margin-top: 20px;
}
.footer-center ul {
  list-style: none;
  padding: 0;
}
.footer-center ul li a {
  text-decoration: none;
  color: #ccc;
  line-height: 1.8;
  transition: color 0.3s;
}
.footer-center ul li a:hover {
 background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.call-icon {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.call-icon i {
  font-size: 30px;
  margin-right: 15px;
}
.call-number {
  color: white;
  font-weight: bold;
}
.map-area.star-perfect {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 45px 0px;
  background: transparent;
}

.dot {
  --angle: 0deg; /* custom per dot */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px; /* centers the dot */
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  border-radius: 50%;
  animation: glow 1.2s infinite ease-in-out;
  box-shadow: 0 0 10px #e2ae4c, 0 0 20px #d07728;
  transform: rotate(var(--angle)) translate(60px) rotate(calc(-1 * var(--angle)));
}




@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 15px #e2ae4c, 0 0 30px #d07728, 0 0 45px #e2ae4c;
  }
  50% {
    box-shadow: 0 0 25px #e2ae4c, 0 0 50px #d07728, 0 0 65px #e2ae4c;
  }
}


/* Default dot always shows label unless hovered */
.city-label {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  color: white;
  padding: 3px 6px;
  font-size: 15px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

/* Show default city label only if no dot is hovered */
.map-area:not(:hover) .dot.default .city-label {
  opacity: 1;
}

/* When any dot is hovered, show its label only */
.dot:hover .city-label {
  opacity: 1;
}





.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons i {
  background: #2a2a2a;
  padding: 12px;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: background 0.3s;
}
.social-icons i:hover {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);

}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}
.footer-bottom a {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn:hover {
  background: linear-gradient(45deg, #523303, #e2ae4c, #d07728);
  color: #111;
}

.scroll-top-btn svg.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.35s;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}
/* Small screens: Mobiles & small devices */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    padding-left: 0 !important;
    width: 100%;
  }

  .footer-logo {
    width: 120px;
  }

  .map-area.star-perfect {
    margin: 20px auto;
  }

  .scroll-top-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

/* Extra small screens: very small mobiles */
@media (max-width: 480px) {
  .site-footer {
    padding: 30px 15px;
  }

  .footer-logo {
    width: 100px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .call-icon i {
    font-size: 24px;
  }

  .call-number {
    font-size: 14px;
  }

  .city-label {
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .site-footer {
    padding: 30px 15px;
            padding-left: 264px;
  }

  .footer-logo {
    width: 100px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .call-icon i {
    font-size: 24px;
  }

  .call-number {
    font-size: 14px;
  }

  .city-label {
    font-size: 12px;
  }
}@media (min-width: 2000px) {
  .site-footer {
    padding: 30px 15px;
    padding-left: 350px;
  }

}

@media (min-width: 2170px) {
  .site-footer {
    padding: 30px 15px;
    padding-left: 400px;
  }

}
@media (min-width: 2350px) {
  .site-footer {
    padding: 30px 15px;
    padding-left: 450px;
  }

}@media (min-width: 2550px) {
  .site-footer {
    padding: 30px 15px;
    padding-left: 480px;
  }

}
@media (min-width: 2750px) {
  .site-footer {
    padding: 30px 15px;
    padding-left: 510px;
  }

}
@media (min-width: 3000px) {
  .site-footer {
    padding: 30px 15px;
    padding-left: 550px;
  }

}
@media screen and (min-width: 2080px) {
  .footer-bottom {
    font-size: 20px;
    margin-top: 60px;
 
    padding-right: 200px;
   
  }
}

@media screen and (min-width: 2700px) {
  .footer-bottom {
    font-size: 22px;
    margin-top: 70px;
   
    padding-right: 500px;
    max-width: 2200px;
  }
}





/* Responsive Design */
