:root {
  --primary-color: #0e8ce0;
  --secondary-color: #1d4ed8;
  --text-color: #333;
  --light-text: #fff;
}

body {
 
font-family: Arial, sans-serif;
/* font-weight: 400; */
font-style: normal;

}

.phone { 
font-family: 'Arial', sans-serif,monospace !important; 
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  margin-top: -56px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light-text);
  max-width: 600px;
  padding: 2rem;
  margin-left: 10%;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1s ease;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease 0.3s;
}

.hero-content .btn {
  animation: fadeIn 1s ease 0.6s;
}

/* Swiper Navigation */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--light-text);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
}

/* Navbar Styles */
.navbar {
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  padding: 0.5rem 1rem !important;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Section Styles */
.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}
/* About Section */
.about-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  z-index: 1;
}

.about-card:hover::before {
  top: -25%;
  left: -25%;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

/* Stats Section */
.stats-container {
  text-align: center;
  background-size: cover;
  position: relative;
  padding: 4rem 0;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.stat-card {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.stat-card h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
/* Categories Section */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  padding: 0;
}

.category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(14, 140, 224, 0.8);
  color: var(--light-text);
  padding: 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

/* Products Section */
.product-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgb(0 88 169 / 32%) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  z-index: 1;
}

.product-card:hover::before {
  top: -25%;
  left: -25%;
}

.product-card.featured {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 3rem 2rem;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.product-card.featured .product-icon {
  color: var(--light-text);
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

.product-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features li:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #333;
  color: var(--light-text);
  padding: 3rem 0;
}

.social-icons a {
  color: var(--light-text);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--light-text);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: var(--secondary-color);
}

.list-unstyled li a{ text-decoration:none;
list-style-type: disc; margin-bottom: 5px;color: white; } 


/* Animations */
@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Construction-themed elements */
.construction-element {
  position: absolute;
  z-index: 10;
}

.crane {
  top: 10%;
  right: 5%;
  width: 100px;
  height: 200px;
  background: url('https://www.svgrepo.com/show/14783/crane.svg') no-repeat;
  background-size: contain;
  animation: swingCrane 10s infinite alternate;
}

@keyframes swingCrane {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(5deg);
  }
}

.blueprint {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 150px;
  height: 100px;
  background: url('https://www.svgrepo.com/show/273635/blueprint.svg') no-repeat;
  background-size: contain;
  opacity: 0.5;
  transform: rotate(-15deg);
}

.brands-container {
width: 100%;
overflow: hidden;
position: relative;
}

.brands-scroll {
display: flex;
animation: scroll 20s linear infinite;
}

.brand-card {
flex: 0 0 auto;
width: 200px;
margin: 0 20px;
padding: 15px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.brand-card:hover {
transform: translateY(-5px);
}

.brand-card img {
max-height: 100px;
width: auto;
}

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

@media (max-width: 768px) {
.brand-card {
width: 250px;
margin: 10px 10px;
}

.brand-card img {
max-height: 80px;
}
}



#sticky-header{
position: sticky;
top: 0;
width: 100%;
background-color: rgb(255, 12, 12);
z-index: 10000;
padding: 10px 0;
margin-top: 0;
}

.top-bar {
position: relative;
z-index: 1030;
font-size: 15px;
background-color: #333 !important;
padding: 8px 0;
}

.top-bar .container-fluid {
position: relative;
}

.top-bar .contact-info {
display: flex;
align-items: center;
justify-content: center;
}

.top-bar .email-info {
white-space: nowrap;
}

.navbar {
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
padding: 0;
}

.nav-link {
padding: 0.5rem 1rem !important;
}

@media (max-width: 991.98px) {
.navbar-collapse {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav {
text-align: center;
}

.btn-primary {
margin-top: 1rem;
width: 100%;
}
}

@media (min-width: 992px) {
.navbar-nav {
gap: 1rem;
}
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .hero-content p {
      font-size: 1.25rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .stat-card {
      margin-bottom: 1rem;
  }
  
  .stat-card h4 {
      font-size: 2rem;
  }
  
  .product-card.featured {
      padding: 2rem;
  }

  .crane {
      display: none;
  }

  .blueprint {
      display: none;
  }
}