@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

:root {
  /* Updated colors based on the Shukla Enterprises logo */
  --primary-color: #2d3e59; /* Navy blue from logo */
  --secondary-color: #1a2433; /* Darker navy for contrast */
  --success-color: #198754;
  --warning-color: #f4b400;
  --danger-color: #dc3545;
  --light-color: #f9f9f9;
  --dark-color: #1a2433; /* Darker navy */
  --electric-orange: #f7941d; /* Orange from the logo sun */
  --electric-amber: #ffa726; /* Lighter orange/amber for gradients */
  --electric-gold: #ffb74d; /* Gold accent for highlights */
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Logo Styles */
.logo-container {
  position: relative;
  display: inline-block;
}

.rotating-logo {
  transition: all 0.3s ease;
}

/* Text Effects */
.electric-text {
  background: linear-gradient(45deg, var(--primary-color), var(--electric-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.electric-title {
  position: relative;
  display: inline-block;
}

.electric-letter {
  display: inline-block;
}

/* Navigation */
.electric-nav {
  position: relative;
  transition: all 0.3s ease;
}

.electric-nav::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-orange), var(--electric-amber));
  transition: width 0.3s ease;
}

.electric-nav:hover::before {
  width: 100%;
}

.electric-nav:hover {
  color: var(--electric-orange) !important;
  text-shadow: 0 0 5px var(--electric-orange);
}

/* Hero Section */
.hero-section-photo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("vender.jpg"); /* replace with your actual image path */
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  position: relative;
  padding: 4rem 0;
}

.hero-section-photo h1,
.hero-section-photo p {
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.electric-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.electric-btn:hover {
  box-shadow: 0 0 15px var(--electric-orange);
  border-color: var(--electric-orange);
  transform: translateY(-2px);
}

/* Cards */
.electric-card {
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  overflow: hidden;
}

.electric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(247, 148, 29, 0.2);
  border-color: var(--electric-orange);
}

/* Icons */
.electric-glow {
  transition: all 0.3s ease;
}

.electric-pulse {
  transition: all 0.3s ease;
}

.electric-glow:hover {
  color: var(--electric-orange);
  text-shadow: 0 0 10px var(--electric-orange);
}

/* Gallery */
.electric-gallery {
  position: relative;
  overflow: hidden;
}

/* Stats Section */
.electric-current-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(247, 148, 29, 0.1) 0%,
    rgba(45, 62, 89, 0.1) 50%,
    rgba(255, 183, 77, 0.1) 100%
  );
}

.electric-counter {
  text-shadow: 0 0 10px var(--electric-orange);
}

.electric-underline {
  width: 50px;
  height: 3px;
  background: linear-gradient(90px, var(--electric-orange), var(--electric-amber));
  margin: 10px auto;
}

/* Forms */
.electric-form-card {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(45deg, var(--electric-orange), var(--primary-color)) border-box;
}

.electric-input {
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.electric-input:focus {
  border-color: var(--electric-orange);
  box-shadow: 0 0 10px rgba(247, 148, 29, 0.3);
  outline: none;
}

/* Footer */
.electric-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(247, 148, 29, 0.05) 0%, rgba(45, 62, 89, 0.05) 100%);
}

.electric-hr {
  border-color: var(--electric-orange);
  box-shadow: 0 0 10px var(--electric-orange);
}

/* WhatsApp */
.electric-whatsapp {
  position: relative;
}

/* Hover Effects */
.electric-hover {
  transition: all 0.3s ease;
}

.electric-hover:hover {
  color: var(--electric-orange) !important;
  text-shadow: 0 0 10px var(--electric-orange);
  transform: scale(1.05);
}

/* Utility Classes */
.z-index-2 {
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .electric-title {
    font-size: 1.5rem;
  }
  .electric-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 575.98px) {
  .hero-section-photo h1 {
    font-size: 2rem;
  }
  .electric-letter {
    font-size: 1.8rem;
  }
}

/* Original styles preserved */
.logo-img {
  max-height: 50px;
  width: auto;
}

.logo-img-small {
  max-height: 60px;
  width: auto;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-card,
.why-choose-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-icon,
.why-choose-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  bottom: 0;
}

.gallery-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-preview-card:hover img {
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-size: 26px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--electric-orange);
  border-color: var(--electric-orange);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Footer Logo */
.logo-container-footer {
  position: relative;
  display: inline-block;
}

.rotating-logo-footer {
  transition: all 0.3s ease;
}

/* Additional Electric Effects for New Pages */
.electric-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(247, 148, 29, 0.1), rgba(45, 62, 89, 0.1));
}

.electric-input-icon {
  background: linear-gradient(45deg, var(--primary-color), var(--electric-orange));
  border-color: var(--electric-orange);
  color: white;
}

.electric-list-item {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.electric-list-item:hover {
  background: rgba(247, 148, 29, 0.05);
  border-color: var(--electric-orange);
  transform: translateX(5px);
}

/* Electric Profile Image */
.founder-image-container {
  position: relative;
  display: inline-block;
}

.electric-profile {
  transition: all 0.3s ease;
}

/* Electric Images */
.electric-image {
  transition: all 0.3s ease;
  position: relative;
}

/* Electric Team Images */
.team-image-container {
  position: relative;
  overflow: hidden;
}

.electric-team-image {
  transition: all 0.3s ease;
}

.team-image-container:hover .electric-team-image {
  transform: scale(1.05);
}

/* Electric Map */
.electric-map {
  position: relative;
}

/* Login Page Specific */
.login-logo-container {
  position: relative;
  display: inline-block;
}

/* Search Results */
.search-result-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.search-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(247, 148, 29, 0.2);
}

/* Vendor Registration Form */
.form-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(45deg, var(--electric-orange), var(--primary-color)) border-box;
}

/* Electric Subtitle */
.electric-subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Responsive Electric Effects */
@media (max-width: 767.98px) {
  .electric-letter {
    font-size: 1.2rem;
  }
}

/* Improve container spacing and layout for mobile */
@media (max-width: 767.98px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-section-photo {
    padding: 2rem 0;
    min-height: 40vh;
  }
  .electric-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  .electric-card {
    margin-bottom: 1.5rem;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .navbar-nav {
    text-align: center;
  }
  .electric-title {
    font-size: 1.25rem;
  }
}

/* For very small devices (phones) */
@media (max-width: 575.98px) {
  .hero-section-photo h1 {
    font-size: 1.5rem;
  }
  .hero-section-photo p {
    font-size: 1rem;
  }
  .electric-letter {
    font-size: 1rem;
  }
  .electric-subtitle {
    font-size: 0.9rem;
  }
  .gallery-card,
  .gallery-preview-card {
    aspect-ratio: 1 / 1;
  }
  .service-icon,
  .why-choose-icon {
    width: 50px;
    height: 50px;
  }
  .form-container {
    padding: 1rem;
  }
}
