/* Global Styles */
:root {
  --primary-color: #FF6B00; /* Orange */
  --secondary-color: #FFFFFF; /* White */
  --text-color: #000000; /* Black */
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: upDown 2s infinite ease-in-out;
}

@keyframes upDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.underline {
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 0 auto;
  position: relative;
  animation: stretch 1.5s ease forwards;
}

@keyframes stretch {
  0% { width: 0; }
  100% { width: 80px; }
}

.underline::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: -3.5px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.3); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* US Safety Nets Stamp Styles */
.us-stamp {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  text-align: center;
  animation: stampPop 2s ease forwards;
}

.us-stamp .stamp-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: stampRotate 2s infinite linear;
}

.us-stamp .stamp-text h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  animation: textGlow 1.5s infinite;
}

.us-stamp .stamp-text p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  animation: fadeInSlow 2s ease forwards;
}

@keyframes stampPop {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes stampRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 5px rgba(255, 107, 0, 0.5); }
  50% { text-shadow: 0 0 15px rgba(255, 107, 0, 1); }
}

@keyframes fadeInSlow {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Loader Styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.bird-animation {
  width: 50px;
  height: 50px;
  background: url('bird.png') no-repeat center;
  background-size: contain;
  animation: fly 2s infinite;
}

@keyframes fly {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Header Styles */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slideDownHeader 0.5s ease forwards;
}

@keyframes slideDownHeader {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-animation {
  display: flex;
  align-items: center;
  animation: logoBounce 1.5s ease;
}

@keyframes logoBounce {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.logo {
  height: 60px;
  margin-right: 15px;
  animation: rotateOnce 1.5s ease forwards; /* Updated to rotate once */
}

.company-name h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  animation: textSlideIn 1s ease forwards;
}

.company-name p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  animation: textSlideIn 1.2s ease forwards;
}

@keyframes textSlideIn {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  display: flex;
}

nav ul li {
  margin: 0 15px;
  transition: var(--transition);
}

nav ul li a {
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 10px 0;
}

nav ul li a:hover {
  color: var(--primary-color);
  animation: wobble 0.5s ease;
}

@keyframes wobble {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
  animation: grow 0.3s ease forwards;
}

@keyframes grow {
  0% { width: 0; }
  100% { width: 100%; }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-color);
  border: 1px solid #eee;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownFade 0.5s ease forwards;
}

@keyframes dropdownFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu li a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  animation: slideRight 0.3s ease;
}

@keyframes slideRight {
  0% { transform: translateX(0); }
  50% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

nav ul li.dropdown {
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
  .us-stamp {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
    animation: slideDown 0.5s ease forwards;
  }

  @keyframes slideDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: var(--light-gray);
    padding: 10px;
  }
  .dropdown-menu li a { z-index: 1002; }

  .dropdown-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  nav ul li.dropdown {
    position: relative;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  nav ul li.dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.5s ease forwards;
  }
}
/* Hero Slider Styles */
.hero-slider {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  z-index: 10;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  animation: zoomInSlide 1.5s ease forwards;
}

@keyframes zoomInSlide {
  0% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cloth-hanger-section {
  background-image: url('../images/cloth-hanger-bg.jpg');
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--secondary-color);
  z-index: 2;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.scroll-animate {
  animation: slideUpFade 1s ease forwards;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.btn:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.book-service-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: 600;
  margin-left: 20px;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  opacity: 0;
  transform: translateY(20px);
}

.book-service-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--secondary-color);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 3;
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--primary-color);
  animation: arrowShake 0.5s ease;
}

@keyframes arrowShake {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  25% { transform: translateY(-50%) translateX(-3px); }
  50% { transform: translateY(-50%) translateX(3px); }
  75% { transform: translateY(-50%) translateX(-3px); }
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  animation: dotGrow 0.5s ease;
}

.dot:hover {
  transform: scale(1.2);
}

@keyframes dotGrow {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* Social Media Bar */
.social-media-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 5px 0;
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.social-icon.whatsapp {
  background-color: #25D366;
}

.social-icon.call {
  background-color: #FF4500;
}

.social-icon.instagram {
  background-color: #E1306C;
}

.social-icon:hover {
  transform: translateX(-10px);
  animation: socialWiggle 0.5s ease;
}

@keyframes socialWiggle {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px) rotate(-5deg); }
  50% { transform: translateX(5px) rotate(5deg); }
  75% { transform: translateX(-5px) rotate(-5deg); }
}

/* Exact Services Section */
.exact-services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  animation: swing 2s infinite ease-in-out;
}

@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

.heading-line {
  height: 3px;
  width: 100px;
  background-color: var(--primary-color);
  margin: 15px auto;
  position: relative;
  animation: expand 1s ease forwards;
}

@keyframes expand {
  0% { width: 0; }
  100% { width: 100px; }
}

.heading-line::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: -3.5px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceDot 1.5s infinite;
}

@keyframes bounceDot {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
}

.service-box.visible {
  opacity: 1;
}

.service-box:hover {
  transform: translateY(-10px);
  animation: hoverShake 0.5s ease;
}

@keyframes hoverShake {
  0%, 100% { transform: translateY(-10px); }
  25% { transform: translateY(-10px) translateX(-3px); }
  50% { transform: translateY(-10px) translateX(3px); }
  75% { transform: translateY(-10px) translateX(-3px); }
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-box:hover .service-img img {
  transform: scale(1.1);
  animation: zoomPulse 1s ease;
}

@keyframes zoomPulse {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.15); }
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-box:hover .service-overlay {
  opacity: 1;
  animation: overlayFade 0.5s ease;
}

@keyframes overlayFade {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.overlay-content {
  text-align: center;
  color: var(--secondary-color);
  padding: 20px;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  animation: slideInLeft 0.5s ease;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  animation: slideInRight 0.5s ease;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

.service-btn:hover {
  transform: translateX(5px);
  animation: arrowMove 0.5s ease;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(5px);
}

.service-info {
  padding: 20px;
  text-align: center;
}

.service-info .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  animation: iconSpin 2s infinite linear;
}

@keyframes iconSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-info h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  animation: textPulse 1.5s infinite;
}

@keyframes textPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Animations for Service Boxes */
.animate-flip {
  animation: flipIn 0.8s ease forwards;
}

@keyframes flipIn {
  0% { transform: perspective(400px) rotateY(90deg); opacity: 0; }
  100% { transform: perspective(400px) rotateY(0deg); opacity: 1; }
}

/* Updated Service Boxes with Rotate Once Animation */
.exact-services:nth-child(1) .service-box {
  animation: slideInLeft 1s ease forwards, rotateOnce 1s ease forwards;
}

.exact-services:nth-child(2) .service-box {
  animation: zoomInBounce 1s ease forwards, rotateOnce 1s ease forwards 0.2s;
}

.exact-services:nth-child(3) .service-box {
  animation: fadeInScale 1s ease forwards, rotateOnce 1s ease forwards 0.4s;
}

.exact-services:nth-child(4) .service-box {
  animation: rotateInBounce 1s ease forwards, rotateOnce 1s ease forwards 0.6s;
}

.exact-services:nth-child(5) .service-box {
  animation: slideInUp 1s ease forwards, rotateOnce 1s ease forwards 0.8s;
}

@keyframes slideInLeft {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes zoomInBounce {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInScale {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes rotateInBounce {
  0% { transform: rotate(-90deg); opacity: 0; }
  60% { transform: rotate(20deg); opacity: 1; }
  100% { transform: rotate(0deg); opacity: 1; }
}

@keyframes slideInUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: slideInLeft 1s ease forwards;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.about-content p:hover {
  animation: textShake 0.5s ease;
}

@keyframes textShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

.animate-fade {
  animation: fadeIn 1s ease forwards;
}

/* About Section Animation */
.about .about-image img {
  animation: slideInRight 1.2s ease forwards, rotateOnce 1s ease forwards, float 3s infinite ease-in-out;
}

.about .about-content p {
  animation: fadeInUp 1s ease forwards, rotateOnce 1s ease forwards 0.2s;
}

@keyframes slideInRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  animation: zoomWiggle 1s ease;
}

@keyframes zoomWiggle {
  0%, 100% { transform: scale(1.1); }
  25% { transform: scale(1.1) rotate(-2deg); }
  50% { transform: scale(1.1) rotate(2deg); }
  75% { transform: scale(1.1) rotate(-2deg); }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  animation: overlayPop 0.5s ease;
}

@keyframes overlayPop {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.gallery-overlay h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
  animation: slideInUp 0.5s ease;
}

.gallery-view-btn {
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.gallery-view-btn:hover {
  transform: scale(1.2);
  animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1.2); }
  50% { transform: scale(1.5); }
}

.gallery-bubbles {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.bubble {
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 5px;
  animation: bubblePulse 2s infinite;
}

.bubble:nth-child(2) {
  animation-delay: 0.3s;
}

.bubble:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes bubblePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.animate-flow {
  animation: flowIn 1s ease forwards;
}

@keyframes flowIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Gallery Section Animation */
.gallery-section .gallery-item {
  animation: popIn 0.8s ease forwards, rotateOnce 1s ease forwards;
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Video Section */
.video {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.video-wrapper {
  flex: 1 1 500px;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  animation: slideInLeft 1s ease forwards, rotateOnce 1s ease forwards;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
  animation: fadeInSlow 0.5s ease;
}

.play-button {
  width: 60px;
  height: 60px;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

.video-content {
  flex: 1 1 400px;
}

.video-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  animation: slideInRight 1s ease forwards;
}

.video-content p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  animation: fadeInUp 1s ease forwards;
}

/* Video Section Animation */
.video .video-wrapper {
  animation: slideInLeft 1s ease forwards, rotateOnce 1s ease forwards;
}

.video .video-content {
  animation: slideInRight 1s ease forwards, rotateOnce 1s ease forwards 0.2s;
}

/* Clients Section */
.clients {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.testimonials {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-card:hover {
  animation: cardLift 0.5s ease;
}

@keyframes cardLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.client-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  animation: rotateOnce 1s ease forwards;
}

.client-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  animation: slideInLeft 0.5s ease forwards;
}

.client-info span {
  font-size: 1rem;
  color: var(--dark-gray);
  animation: slideInRight 0.5s ease forwards;
}

.rating {
  margin: 10px 0;
  color: var(--primary-color);
}

.rating i {
  font-size: 1rem;
  animation: starBlink 1.5s infinite;
}

.rating i:nth-child(2) { animation-delay: 0.2s; }
.rating i:nth-child(3) { animation-delay: 0.4s; }
.rating i:nth-child(4) { animation-delay: 0.6s; }
.rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  animation: fadeInUp 1s ease forwards;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.prev-btn,
.next-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--dark-gray);
  animation: buttonWobble 0.5s ease;
}

@keyframes buttonWobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

/* Clients Section Animation */
.clients .testimonial-card {
  animation: fadeInScale 1s ease forwards, rotateOnce 1s ease forwards;
}

/* Percentage Bar */
.percentage-bar {
  margin-top: 50px;
  text-align: center;
}

.percentage-bar h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: slideInUp 1s ease forwards;
}

.bar-container {
  max-width: 600px;
  margin: 0 auto;
}

.bar {
  margin-bottom: 20px;
}

.bar span {
  display: block;
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 5px;
  animation: fadeIn 1s ease forwards;
}

.progress {
  width: 100%;
  height: 10px;
  background: var(--light-gray);
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary-color);
  width: 0;
  transition: width 1s ease;
  animation: fillGrow 1.5s ease forwards;
}

@keyframes fillGrow {
  0% { width: 0; }
  100% { width: inherit; }
}

/* Percentage Bar Animation */
.percentage-bar .bar {
  animation: slideInUp 1s ease forwards, rotateOnce 1s ease forwards;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  animation: slideInLeft 1s ease forwards;
}

.section-title h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  animation: slideInRight 1s ease forwards;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.side-image {
  flex: 1 1 300px;
}

.side-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s infinite ease-in-out;
}

.features-container {
  flex: 2 1 500px;
}

.feature-box {
  display: flex;
  align-items: center;
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  animation: hoverWobble 0.5s ease;
}

@keyframes hoverWobble {
  0%, 100% { transform: translateY(-5px); }
  25% { transform: translateY(-5px) rotate(-3deg); }
  50% { transform: translateY(-5px) rotate(3deg); }
  75% { transform: translateY(-5px) rotate(-3deg); }
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
  animation: iconBounce 1.5s infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  animation: slideInLeft 0.5s ease forwards;
}

.feature-content p {
  font-size: 1rem;
  color: var(--dark-gray);
  animation: slideInRight 0.5s ease forwards;
}

.call-now-box {
  text-align: center;
  margin-top: 30px;
}

.call-now-box h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  animation: swing 2s infinite ease-in-out;
}

.call-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.call-button:hover {
  background-color: var(--dark-gray);
  animation: pulse 0.5s ease;
}

.call-button i {
  margin-right: 10px;
  animation: phoneRing 1.5s infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

/* Why Choose Us Section (Second) */
.why-us {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  animation: cardShake 0.5s ease;
}

@keyframes cardShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-icon.pulse-animate {
  animation: pulse 1.5s infinite;
}

.feature-icon.bounce-animate {
  animation: bounce 1.5s infinite;
}

.feature-icon.spin-animate {
  animation: spin 3s infinite linear;
}

.feature-icon.float-animate {
  animation: float 3s infinite ease-in-out;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  animation: slideInUp 0.5s ease forwards;
}

.feature-card p {
  font-size: 1rem;
  color: var(--dark-gray);
  animation: fadeIn 1s ease forwards;
}

.hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .hover-effect {
  opacity: 1;
  animation: overlayFade 0.5s ease;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--secondary-color);
  padding: 50px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo img {
  width: 100px;
  height: 150px;
  margin-bottom: 15px;
  animation: logoBounce 1.5s ease;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  animation: slideInLeft 1s ease forwards;
}

.footer-col p {
  font-size: 1rem;
  margin-bottom: 15px;
  animation: fadeIn 1s ease forwards;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  animation: socialWiggle 0.5s ease;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  animation: slideInUp 1s ease forwards;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 1rem;
  transition: var(--transition);
  animation: rotateOnce 1s ease forwards; /* Added rotate once for footer links */
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  animation: slideRight 0.3s ease;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  animation: fadeIn 1s ease forwards;
}

.contact-info i {
  font-size: 1.2rem;
  color: var(--primary-color);
  animation: iconBounce 1.5s infinite;
}

.map {
  margin-top: 20px;
}

.map iframe {
  width: 100%;
  height: 150px;
  border-radius: 10px;
}

.animate-map {
  animation: mapZoom 1s ease forwards, rotateOnce 1s ease forwards;
}

@keyframes mapZoom {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  animation: fadeIn 1s ease forwards;
}

/* New Rotate Once Animation */
@keyframes rotateOnce {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}





















/* Global Styles */
:root {
  --primary-color: #FF6B00; /* Orange */
  --secondary-color: #FFFFFF; /* White */
  --text-color: #000000; /* Black */
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: upDown 2s infinite ease-in-out;
}

@keyframes upDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.heading-line {
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 0 auto;
  position: relative;
  animation: stretch 1.5s ease forwards;
}

@keyframes stretch {
  0% { width: 0; }
  100% { width: 80px; }
}

.heading-line::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: -3.5px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.3); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* US Safety Nets Stamp Styles */
.us-stamp {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  text-align: center;
  animation: stampPop 2s ease forwards;
}

.us-stamp .stamp-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: stampRotate 2s forwards;
}

.us-stamp .stamp-text h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  animation: textGlow 1.5s forwards;
}

.us-stamp .stamp-text p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  animation: fadeInSlow 2s ease forwards;
}

@keyframes stampPop {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes stampRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes textGlow {
  0% { text-shadow: 0 0 5px rgba(255, 107, 0, 0.5); }
  100% { text-shadow: 0 0 15px rgba(255, 107, 0, 1); }
}

@keyframes fadeInSlow {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Loader Styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.bird-animation {
  width: 50px;
  height: 50px;
  background: url('bird.png') no-repeat center;
  background-size: contain;
  animation: fly 2s forwards;
}

@keyframes fly {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0; }
}

/* Header Styles (Shared Across All Pages) */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slideDownHeader 0.5s ease forwards;
}

@keyframes slideDownHeader {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-animation {
  display: flex;
  align-items: center;
  animation: logoBounce 1.5s ease forwards;
}

@keyframes logoBounce {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.logo {
  height: 60px;
  margin-right: 15px;
  animation: rotateOnce 1.5s ease forwards;
}

@keyframes rotateOnce {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.company-name h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  animation: textSlideIn 1s ease forwards;
}

.company-name p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  animation: textSlideIn 1.2s ease forwards;
}

@keyframes textSlideIn {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  display: flex;
}

nav ul li {
  margin: 0 15px;
  transition: var(--transition);
}

nav ul li a {
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 10px 0;
}

nav ul li a:hover {
  color: var(--primary-color);
  animation: wobble 0.5s ease;
}

@keyframes wobble {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
  animation: grow 0.3s ease forwards;
}

@keyframes grow {
  0% { width: 0; }
  100% { width: 100%; }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-color);
  border: 1px solid #eee;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownFade 0.5s ease forwards;
}

@keyframes dropdownFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu li a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  animation: slideRight 0.3s ease;
}

@keyframes slideRight {
  0% { transform: translateX(0); }
  50% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

nav ul li.dropdown {
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
  .us-stamp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
    animation: slideDown 0.5s ease forwards;
  }

  @keyframes slideDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: var(--light-gray);
    padding: 10px;
  }

  .dropdown-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  nav ul li.dropdown {
    position: relative;
  }
}

/* Footer Styles (Shared Across All Pages) */
footer {
  background-color: var(--dark-gray);
  color: var(--secondary-color);
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  animation: footerLogoFade 1s ease forwards;
}

@keyframes footerLogoFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.footer-logo img {
  height: 50px;
  margin-right: 15px;
  animation: rotateOnce 1.5s ease forwards;
}

.footer-logo h3 {
  font-size: 1.5rem;
}

.footer-col p {
  margin-bottom: 20px;
  animation: fadeInSlow 1.5s ease forwards;
}

.social-links a {
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  transition: var(--transition);
  animation: socialIconsPop 1s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}

.social-links a:hover {
  color: var(--primary-color);
  animation: bounce 0.5s ease;
}

@keyframes socialIconsPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  animation: fadeInSlow 1s ease forwards;
}

.footer-col ul li {
  margin-bottom: 10px;
  animation: fadeInSlow 1s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  animation: slideRight 0.3s ease;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.map iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 5px;
  animation: mapFade 1s ease forwards;
}

@keyframes mapFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 0.9rem;
  animation: fadeInSlow 1s ease forwards;
}

/* Page-Specific Styles */

/* Hero Slider Styles (Base for All Pages) */
.hero-slider {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  z-index: 10;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--secondary-color);
  z-index: 2;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.scroll-animate {
  animation: slideUpFade 1s ease forwards;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.btn, .book-service-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  margin: 5px;
}

.btn:hover, .book-service-btn:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  animation: bounce 0.5s ease;
}

/* Exact Services Section (Base for All Pages) */
.exact-services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.services-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.service-box:hover .service-overlay {
  opacity: 1;
}

.overlay-content {
  color: var(--secondary-color);
  text-align: center;
  padding: 20px;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.service-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  animation: shake 0.5s ease;
}

.service-btn i {
  margin-left: 5px;
}

.service-info {
  padding: 20px;
}

.service-info .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-info h3 {
  font-size: 1.3rem;
}

/* Page-Specific Animations */

/* Safety Nets Page */
body.safety-nets .slide.active {
  animation: zoomInSlide 1.5s ease forwards;
}

@keyframes zoomInSlide {
  0% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

body.safety-nets .service-box:nth-child(1) {
  animation: slideFromLeft 1s ease forwards;
}

body.safety-nets .service-box:nth-child(2) {
  animation: slideFromRight 1s ease forwards;
}

@keyframes slideFromLeft {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideFromRight {
  0% { transform: translateX(100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Invisible Grills Page */
body.invisible-grills .slide.active {
  animation: fadeInRotate 1.5s ease forwards;
}

@keyframes fadeInRotate {
  0% { transform: rotate(-10deg); opacity: 0; }
  100% { transform: rotate(0deg); opacity: 1; }
}

body.invisible-grills .service-box:nth-child(1) {
  animation: popIn 1s ease forwards;
}

body.invisible-grills .service-box:nth-child(2) {
  animation: popIn 1s ease forwards 0.2s;
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Cloth Hangers Page */
body.cloth-hangers .slide.active {
  animation: slideDownFade 1.5s ease forwards;
}

@keyframes slideDownFade {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

body.cloth-hangers .service-box {
  animation: swing 1.5s ease forwards;
}

body.cloth-hangers .service-box:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes swing {
  0% { transform: rotate(0deg); opacity: 0; }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); opacity: 1; }
}

/* Monkey Nets Page */
body.monkey-nets .slide.active {
  animation: bounceIn 1.5s ease forwards;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  75% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

body.monkey-nets .service-box:nth-child(1) {
  animation: flipInX 1s ease forwards;
}

body.monkey-nets .service-box:nth-child(2) {
  animation: flipInX 1s ease forwards 0.2s;
}

@keyframes flipInX {
  0% { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

/* Car Parking Page */
body.car-parking .slide.active {
  animation: slideFromLeft 1.5s ease forwards;
}

body.car-parking .service-box:nth-child(1) {
  animation: fadeInUp 1s ease forwards;
}

body.car-parking .service-box:nth-child(2) {
  animation: fadeInUp 1s ease forwards 0.2s;
}

@keyframes fadeInUp {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Cricket Nets Page */
body.cricket-nets .slide.active {
  animation: rotateIn 1.5s ease forwards;
}

@keyframes rotateIn {
  0% { transform: rotate(-90deg); opacity: 0; }
  100% { transform: rotate(0deg); opacity: 1; }
}

body.cricket-nets .service-box:nth-child(1) {
  animation: bounceIn 1s ease forwards;
}

body.cricket-nets .service-box:nth-child(2) {
  animation: bounceIn 1s ease forwards 0.2s;
}

/* Coconut Safety Net Page */
body.coconut-safety-net .slide.active {
  animation: zoomInRotate 1.5s ease forwards;
}

@keyframes zoomInRotate {
  0% { transform: scale(0.5) rotate(0deg); opacity: 0; }
  100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

body.coconut-safety-net .service-box:nth-child(1) {
  animation: slideFromTop 1s ease forwards;
}

body.coconut-safety-net .service-box:nth-child(2) {
  animation: slideFromBottom 1s ease forwards;
}

@keyframes slideFromTop {
  0% { transform: translateY(-100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideFromBottom {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Duct Area Page */
body.duct-area .slide.active {
  animation: fadeInScale 1.5s ease forwards;
}

@keyframes fadeInScale {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

body.duct-area .service-box:nth-child(1) {
  animation: slideFromLeft 1s ease forwards;
}

body.duct-area .service-box:nth-child(2) {
  animation: slideFromRight 1s ease forwards;
}

/* Construction Safety Nets Page */
body.construction-safety-nets .slide.active {
  animation: slideFromRight 1.5s ease forwards;
}

body.construction-safety-nets .service-box:nth-child(1) {
  animation: fadeInScale 1s ease forwards;
}

body.construction-safety-nets .service-box:nth-child(2) {
  animation: fadeInScale 1s ease forwards 0.2s;
}

/* Building Safety Nets Page */
body.building-safety-nets .slide.active {
  animation: bounceIn 1.5s ease forwards;
}

body.building-safety-nets .service-box:nth-child(1) {
  animation: swing 1.5s ease forwards;
}

body.building-safety-nets .service-box:nth-child(2) {
  animation: swing 1.5s ease forwards 0.3s;
}





/* contact page */
  /* Contact Section Styles */
  .contact-section {
    padding: 100px 0 50px;
    background-color: var(--secondary-color);
    margin-top: 80px;
  }

  .contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    animation: fadeIn 1s ease forwards;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  .contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    animation: slideUp 1s ease forwards;
  }

  @keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }

  .contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
  }

  .contact-form h3, .contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(0.2s * var(--i));
  }

  .contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 107, 0, 0.3);
  }

  .contact-form textarea {
    resize: vertical;
    height: 150px;
  }

  .contact-form button {
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    animation: bounceIn 1s ease forwards;
  }

  .contact-form button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    animation: shake 0.5s ease;
  }

  @keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    75% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
  }

  .contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(0.2s * var(--i));
  }

  .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
  }

  /* Map Section */
  .map-section {
    margin-top: 50px;
  }

  .map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    animation: mapFade 1s ease forwards;
  }

  @keyframes mapFade {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }



  
  /* More Safety Net Services Section Styles */
.more-safety-services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.more-safety-services .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.more-safety-services .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  animation: upDown 2s infinite ease-in-out;
}

.more-safety-services .orange-divider {
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 0 auto;
  position: relative;
  animation: stretch 1.5s ease forwards;
}

.more-safety-services .orange-divider::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: -3.5px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseDot 1.5s infinite;
}

.more-safety-services .service-description {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-top: 10px;
  /* opacity: 0; */
  transform: translateY(20px);
  animation: slideUpFade 1s ease forwards;
}

.services-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.safety-service-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 1;
  transform: scale(1);
}

.safety-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: hoverLift 0.5s ease;
}

.service-image-container {
  position: relative;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.safety-service-card:hover .service-image {
  transform: scale(1.1);
  animation: zoomIn 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: var(--transition);
}

.safety-service-card:hover .image-overlay {
  opacity: 1;
  animation: fadeInOverlay 0.5s ease;
}

.service-details {
  padding: 20px;
  text-align: center;
}

.service-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-details p {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.service-cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.service-cta:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  animation: bounceBtn 0.5s ease;
}

.service-cta i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-cta:hover i {
  transform: translateX(5px);
  animation: slideRight 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .more-safety-services .section-header h2 {
    font-size: 2rem;
  }

  .more-safety-services .service-description {
    font-size: 1rem;
  }

  .safety-service-card {
    min-width: 280px;
  }

  .service-image {
    height: 180px;
  }

  .service-details h3 {
    font-size: 1.2rem;
  }

  .service-details p {
    font-size: 0.9rem;
  }

  .service-cta {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Animation Classes */
.animate-zoom {
  /* opacity: 0; */
  transform: scale(0.9);
  transition: var(--transition);
}

.animate-zoom.visible {
  opacity: 1;
  transform: scale(1);
}



/* Mobile Navbar Styles */
@media (max-width: 768px) {
  .logo-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
  }
  
  .menu-toggle {
      display: block;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary-color);
      z-index: 1001;
  }
  
  nav ul {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--secondary-color);
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
  }
  
  nav ul.active {
      display: block;
      animation: slideDown 0.3s ease forwards;
  }
  
  @keyframes slideDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
  }
  
  nav ul li {
      margin: 15px 0;
      text-align: center;
  }
  
  nav ul li a {
      font-size: 1.1rem;
      padding: 10px;
      display: block;
  }
  
  .dropdown-menu {
      position: static;
      display: none;
      background-color: rgba(255, 107, 0, 0.1);
      padding: 0;
      margin-top: 10px;
      box-shadow: none;
      border-radius: 5px;
  }
  
  .dropdown-menu.active {
      display: block;
      animation: fadeIn 0.3s ease;
  }
  
  .dropdown-menu li {
      margin: 10px 0;
  }
  
  .dropdown-menu li a {
      font-size: 1rem;
      padding: 8px;
  }
  
  .dropdown.active > a {
      color: var(--primary-color);
  }
  
  .dropdown > a i {
      transition: transform 0.3s ease;
  }
  
  .dropdown.active > a i {
      transform: rotate(180deg);
  }
}

.my-comp{
  background: #79FF68;
background: linear-gradient(to left, #4df437 14%, #f73f3c 78%);
color: #000000;
}
