/* Color Variables */
:root {
  --primary-color: #004d40;
  /* Dark Green */
  --secondary-color: #ff9800;
  /* Orange */
  --accent-color: #03a9f4;
  /* Sky Blue */
  --background-color: #f5f5f5;
  /* Light Gray */
  --text-color: #000000;
  /* Black */
  --text-muted: #212121;
  /* Dark Gray */
  --white: #ffffff;
  /* Light Gray */
  --muted-foreground: #6b7280;

  /* whatsapp Color */
  --whatapp-color: #25d366;
}

/* Custom Bootstrap Color Classes */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary:hover {
  background-color: #003d32 !important;
  border-color: #003d32 !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.border-secondary {
  border-color: var(--secondary-color) !important;
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: white !important;
}

.btn-secondary:hover {
  background-color: #e6840e !important;
  border-color: #e6840e !important;
  color: white !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

/* Body and Typography */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--background-color) 0%, #ffffff 100%);
  min-height: 75vh;
  position: relative;
}

.hero-bg-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 20,
    var(--accent-color) 20
  );
  border-radius: 2rem;
  transform: rotate(3deg);
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  height: 600px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  z-index: 3;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

/* Equipment Cards */
.equipment-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.equipment-image {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image {
  transform: scale(1.1);
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.icon-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-all-btn:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
  border-color: var(--primary-color) !important;
}

/* Testimonial Cards */
.testimonial-card {
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Navigation */
.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Buttons */
.btn {
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Hover Effects */
.hover-secondary:hover {
  color: var(--secondary-color) !important;
  transition: color 0.3s ease;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(3, 169, 244, 0.25);
}

/* Cards */
.card {
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/**** GLOBAL CSS START  ****/
.fs18 {
  font-size: 18px;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.btn-whatsapp {
  width: 100%;
  background-color: #25d366;
  color: white;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
}
.btn-whatsapp:hover {
  background-color: #128c7e;
  color: white;
}

/* button 1 start */

.btn--svg {
  position: relative;
  height: 44px;
  width: 190px;
  overflow: hidden;
  display: inline-block;
}

.btn--svg__label {
  font-family: sans-serif;
  font-weight: bold;
  text-align: center;
  z-index: 3;
  width: 100%;
  transition: color 0.5s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn--svg__circle circle {
  transition: transform 0.5s ease-in-out;
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

.btn--svg__border--left path,
.btn--svg__border--right path {
  stroke-dasharray: 61.8204345703 61.8204345703;
  transition: stroke-dashoffset 0 ease-in-out 0.5s;
}

.btn--svg__border--left path {
  stroke-dashoffset: -61.8204345703;
}

.btn--svg__border--right path {
  stroke-dashoffset: 61.8204345703;
}

.btn--svg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn--svg:hover .btn--svg__circle circle {
  transform: scale(0);
}

.btn--svg:hover .btn--svg__label {
  color: var(--secondary-color);
}

.btn--svg:hover .btn--svg__border--left path,
.btn--svg:hover .btn--svg__border--right path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s ease-in-out 0.25s;
}

.btn-color-1 .btn--svg__border--left path,
.btn-color-1 .btn--svg__border--right path,
.hover-color-1:hover .btn--svg__border--left path,
.hover-color-1:hover .btn--svg__border--right path {
  stroke: var(--secondary-color);
}

.btn-color-1 .btn--svg__circle circle,
.hover-color-1:hover .btn--svg__circle circle {
  fill: var(--secondary-color);
}

.btn-color-1 .btn--svg__label {
  color: #fff;
}

.hover-color-1:hover .btn--svg__label {
  color: var(--secondary-color);
}

.wd-btn {
  text-align: center;
  font-weight: bold;
  display: inline-block;
  transition: 0.4s all ease-in-out;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 20px;
}

.wd-btn.btn-medium {
  line-height: 2em;
  padding: 11px 50px 11px;
  font-size: 15px;
}

.wd-btn.btn-none {
  border-radius: 0;
}
/* button 1 end */

/** BUTTON 2 **/

.btn-color-3 .btn--svg__border--left path,
.btn-color-3 .btn--svg__border--right path {
  stroke: #25d366;
}

.btn-color-3 .btn--svg__circle circle {
  fill: #25d366;
}

.btn-color-3 .btn--svg__label {
  color: #fff;
}

.hover-color-4:hover .btn--svg__border--left path,
.hover-color-4:hover .btn--svg__border--right path {
  stroke: #25d366;
}

.hover-color-4:hover .btn--svg__circle circle {
  fill: #25d366;
}

.hover-color-4:hover .btn--svg__label {
  color: #25d366;
}

:root {
  --woocommerce: var(--primary-color);
}
/** BUTTON 2 **/

/* mouse cursor effect css start */

.cursor {
  pointer-events: none;
}
.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}
.cursor__ball circle {
  fill: #f7f8fa;
}

.right {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.right {
  background: #fff;
}
.right a {
  border-bottom: 2px solid #004d40;
}

.right a {
  color: #004d40;
}

/* mouse cursor effect css end start */

/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp i {
  color: white;
  font-size: 32px;
  position: absolute;
  right: 8px !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments for floating icon */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp i {
    font-size: 28px;
    right: 5px !important;
  }
}

/* Floating WhatsApp Icon end */

/**************/

.slider {
  position: relative;
  max-width: 40rem;
  height: 26.625rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}
.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 26.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
}
.slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button {
  background: none;
  border: none;
}
button .fas {
  color: rgba(255, 255, 255, 0.5);
}
.btn-slide {
  position: absolute;
  top: 50%;
  z-index: 10;

  height: 5.5rem;
  width: 5.5rem;
  cursor: pointer;
}
.prev {
  display: none !important;
  left: 3rem;
  transform: translate(-50%, -50%);
}
.next {
  display: none !important;
  right: 3rem;
  transform: translate(50%, -50%);
}
.dots-container {
  /* display: flex; */
  display: none !important;
  justify-content: center;
  align-items: center;
  position: relative;
}
.dot {
  width: 25px;
  height: 5px;
  margin: 15px 5px;
  border-radius: 0.5rem;
  background: rgba(39, 39, 39, 0.5);
  cursor: pointer;
}
.dot.active {
  background: #272727;
}
/**************/

/* image flip css start */
/* Flip Card Container */
.flip-card {
  perspective: 1000px;
  width: 100%;
  height: 100%;
}

/* Inner wrapper */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip on hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back sides */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide backside when not flipped */
  top: 0;
  left: 0;
}

.flip-card-front {
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
}
/* image flip css end */

.schedulebg {
  border: 1px solid #333333;
  padding: 40px 25px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 40px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 1000;
  opacity: 1;
}


/** call to action button css start **/

.cta .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    overflow: hidden;
    height: 3rem;
    background-size: 300% 300%;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121), 
                      linear-gradient(137.48deg, #ff9800 10%, #ff9800 45%, #ff9800 67%, #ff9800 87%);
                      
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.cta #container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

.cta strong {
    z-index: 2;
    /* font-family: 'Poppins', sans-serif; */
    font-size: 16px;
    letter-spacing: 3px;
    color: #FFFFFF;
    text-shadow: 0 0 4px rgb(0, 0, 0);
}

.cta #glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.cta .circle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
}

.cta .circle:nth-of-type(1),
.cta .circle:nth-of-type(2) {
    background: rgba(0, 0, 186, 0.936);
}

.cta .btn:hover #container-stars {
    z-index: 1;
    background-color: #212121;
}

.cta .btn:hover {
    transform: scale(1.1);
}

.cta .btn:active {
    border: double 4px #FE53BB;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.cta .btn:active .circle {
    background: #FE53BB;
}

.cta #stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

.cta #stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

.cta #stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Animations */
@keyframes animStar {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-135rem);
    }
}

@keyframes animStarRotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


/** call to action button css end **/

/**** GLOBAL CSS END  ****/

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-image {
    height: 400px;
  }

  .floating-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .equipment-image {
    height: 180px;
  }

  .hero-bg-decoration {
    display: none;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003d32;
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), #006b5a);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #f57c00);
}

.shadow-soft {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.border-radius-lg {
  border-radius: 1rem;
}

.border-radius-xl {
  border-radius: 1.5rem;
}

/* Print Styles */
@media print {
  .btn,
  .navbar,
  footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none !important;
  }
}
