/* ====================================
   Modern Custom Styles for HP Enterprise
   ==================================== */

:root {
  --primary-color: #0e91c5;
  --secondary-color: #7b7c80;
  --accent-color: #00d4ff;
  --dark-color: #0a192f;
  --light-color: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ====================================
   HERO SECTION STYLES
   ==================================== */

:root {
  --primary-blue: #0f82ba;
  --secondary-gray: #75767a;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark: #1a1a1a;
  --accent-gold: #daa520; /* Added for consistency */
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: var(--dark);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.slide-1 .slide-background {
  background: linear-gradient(135deg, rgba(15, 130, 186, 0.9) 0%, rgba(10, 90, 130, 0.9) 100%),
    url("img/carousel-1.jpg");
  background-size: cover;
  background-position: center;
}

.slide-2 .slide-background {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
    url("img/carousel-1.jpg");
  background-size: cover;
  background-position: center;
}

.slide-3 .slide-background {
  background: linear-gradient(135deg, rgba(15, 130, 186, 0.85) 0%, rgba(0, 51, 102, 0.85) 100%),
    url("img/carousel-1.jpg");
  background-size: cover;
  background-position: center;
}

/* Animated Particles */
.particles-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.particle-element:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-element:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.particle-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.particle-element:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

.particle-element:nth-child(5) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(30px) scale(1.1);
    opacity: 0.6;
  }
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.shape-element {
  position: absolute;
  opacity: 0.15;
  animation: rotate 20s linear infinite;
}

.shape-element.triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(255, 255, 255, 0.2);
  top: 15%;
  right: 20%;
}

.shape-element.square {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 25%;
  left: 15%;
  transform: rotate(45deg);
}

.shape-element.hexagon {
  width: 90px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  top: 50%;
  right: 10%;
}

.shape-element.hexagon:before,
.shape-element.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
}

.shape-element.hexagon:before {
  bottom: 100%;
  border-bottom: 26px solid rgba(255, 255, 255, 0.2);
}

.shape-element.hexagon:after {
  top: 100%;
  border-top: 26px solid rgba(255, 255, 255, 0.2);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.content-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.slide-text {
  color: white;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: slideInLeft 1s ease-out 0.3s backwards;
}

.slide-badge i {
  font-size: 18px;
}

.slide-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
  animation: slideInLeft 1s ease-out 0.5s backwards;
  color:#f3f4f7;
}

.slide-title .highlight {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.slide-description {
  font-size: 1.3rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 600px;
  animation: slideInLeft 1s ease-out 0.7s backwards;
}

.slide-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: slideInLeft 1s ease-out 0.9s backwards;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 25px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.feature-tag i {
  font-size: 18px;
  color: var(--accent-gold);
}

/* CTA Buttons */


.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.cta-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Slide Image */
.slide-image {
  position: relative;
  animation: slideInRight 1s ease-out 0.5s backwards;
  width: 90%;
}

.image-container {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 30px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.image-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a520 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

.floating-badge h4 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.floating-badge p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 5px 0 0 0;
  font-weight: 600;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Slide Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-navigation {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 15px;
}

.nav-dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.nav-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-dot:hover {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.6);
}

.nav-dot.active {
  width: 50px;
  border-radius: 10px;
  background: var(--white);
}

.nav-dot.active::before {
  width: 100%;
  height: 100%;
}

/* Arrow Navigation */
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 100;
  pointer-events: none;
}

.arrow-container {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}

.arrow-btn {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  color: var(--white);
  font-size: 24px;
}

.arrow-btn:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: scale(1.15);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.arrow-btn i {
  transition: transform 0.3s ease;
}

.arrow-btn:hover i {
  transform: translateX(-3px);
}

.arrow-btn.next:hover i {
  transform: translateX(3px);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 100;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--white) 0%, var(--primary-blue) 100%);
  width: 0;
  transition: width 0.3s linear;
}

.slide.active .progress-bar {
  animation: progress 6s linear;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .slide-title {
    font-size: 3rem;
  }

  .content-wrapper {
    gap: 60px;
  }
}

@media (max-width: 992px) {
      .hero-slider-section {
    height: auto;
  padding-top: 700px;
    min-height: 100vh;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .slide-image {
    order: -1;
  }

  .slide-title {
    font-size: 3.5rem;
  }

  .slide-description {
    font-size: 1.8rem;
  }

  .floating-badge {
    bottom: -20px;
    right: -20px;
    padding: 25px;
  }

  .floating-badge h4 {
    font-size: 2rem;
  }

  .arrow-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    height: auto;
    padding-top: 200px;
    min-height: 68vh;
  }

  .slide-content {
    padding: 100px 5% 80px;
  }

  /* Hide description paragraph on mobile screens */
  .slide-description {
    display: none;
  }

  .slide-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .slide-badge {
    font-size: 12px;
    padding: 12px 24px;
  }

  /* Ensure images display properly on mobile */
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .slide-image {
    order: -1;
    max-width: 100%;
  }

  .image-container {
    padding: 20px;
  }

  .image-container img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }

  .feature-tag {
    font-size: 13px;
    padding: 12px 22px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 16px 40px;
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .floating-badge {
    display: none;
  }

  .slider-navigation {
    bottom: 30px;
  }

  .arrow-container {
    padding: 0 20px;
  }

  .arrow-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .particle-element {
    display: none;
  }
}

@media (max-width: 576px) {
  .slide-title {
    font-size:25px;
    letter-spacing: -1px;
  }

   .hero-slider-section {
    height: auto;
    padding-top: 200px;
    min-height: 90vh;
  }

  /* Keep description hidden on small mobile */
  .slide-description {
    display: none;
  }

  .slide-features {
    flex-direction: column;
  }

  .image-container {
    padding: 15px;
  }

  .image-container img {
    max-height: 250px;
  }

  .floating-badge {
    display: none;
  }
}
@media (max-width: 450px) {
  .slide-title {
    font-size: 2rem;
    letter-spacing: -1px;
  }

   .hero-slider-section {
    height: auto;
    padding-top: 200px;
    min-height: 70vh;
  }

  /* Keep description hidden on small mobile */
  .slide-description {
    display: none;
  }

  .slide-features {
    flex-direction: column;
  }

  .image-container {
    padding: 15px;
  }

  .image-container img {
    max-height: 250px;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 375px) {
  .slide-title {
    font-size: 20px;
    letter-spacing: -1px;
  }

   .hero-slider-section {
    height: auto;
    padding-top: 200px;
    min-height: 100vh;
  }

  /* Keep description hidden on small mobile */
  .slide-description {
    display: none;
  }

  .slide-features {
    flex-direction: column;
  }

  .image-container {
    padding: 15px;
  }

  .image-container img {
    max-height: 250px;
  }

  .floating-badge {
    display: none;
  }
}


@media (max-width: 360px) {
  .slide-title {
    font-size: 25px;
    letter-spacing: -1px;
  }

   .hero-slider-section {
    height: auto;
    padding-top: 200px;
    min-height: 90vh;
  }

  /* Keep description hidden on small mobile */
  .slide-description {
    display: none;
  }

  .slide-features {
    flex-direction: column;
  }

  .image-container {
    padding: 15px;
  }

  .image-container img {
    max-height: 250px;
  }

  .floating-badge {
    display: none;
  }
}



@media (max-width: 350px) {
  .slide-title {
    font-size: 25px;
    letter-spacing: -1px;
  }

   .hero-slider-section {
    height: auto;
    padding-top: 200px;
    min-height: 70vh;
  }

  /* Keep description hidden on small mobile */
  .slide-description {
    display: none;
  }

  .slide-features {
    flex-direction: column;
  }

  .image-container {
    padding: 15px;
  }

  .image-container img {
    max-height: 250px;
  }

  .floating-badge {
    display: none;
  }
}
/* ====================================
   ABOUT SECTION STYLES
   ==================================== */

.about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.about-image-wrapper {
  position: relative;
  height: 600px;
}

.image-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  border-radius: 30px;
  z-index: 1;
}

.main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 160px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
  z-index: 3;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.badge-content {
  text-align: center;
  color: #ffffff;
}

.badge-content h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.badge-content p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.about-content {
  padding-left: 30px;
}

.section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 18px;
}

.feature-item span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--gradient-2);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
  color: #ffffff;
}

.custom-btn i {
  transition: transform 0.3s ease;
}

.custom-btn:hover i {
  transform: translateX(5px);
}

/* ====================================
   SERVICES SECTION STYLES
   ==================================== */

.services-section {
  padding: 120px 0;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%23ffffff" fill-opacity="0.05"/></svg>');
  background-size: 50px 50px;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.services-section .section-heading {
  color: #ffffff;
}

.service-card {
  position: relative;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.card-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--gradient-2);
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.service-card:hover .card-decoration {
  opacity: 0.2;
  transform: scale(1.2);
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
  transform: rotateY(360deg);
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: #ffffff;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.service-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

/* ====================================
   CATEGORIES SECTION STYLES
   ==================================== */

.categories-section {
  padding: 120px 0;
  background: #ffffff;
}

.category-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.category-card.large {
  height: 350px;
}

.category-card.tall {
  height: 100%;
  min-height: 714px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

.category-overlay h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* ====================================
   COUNTER SECTION STYLES
   ==================================== */

.counter-section {
  position: relative;
  padding: 100px 0;
  background: var(--gradient-1);
  overflow: hidden;
}

.counter-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></svg>');
  background-size: 100px 100px;
}

.counter-section .container {
  position: relative;
  z-index: 2;
}

.counter-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: all 0.4s ease;
}

.counter-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.counter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.counter-icon i {
  font-size: 2rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
}

/* ====================================
   PRODUCTS SECTION STYLES
   ==================================== */

.products-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.product-card {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.15);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  background: var(--gradient-2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.product-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.product-description {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.product-btn:hover {
  background: var(--gradient-1);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(5px);
}

.product-btn i {
  transition: transform 0.3s ease;
}

.product-btn:hover i {
  transform: translateX(5px);
}

/* ====================================
   SECTION HEADER STYLES
   ==================================== */

.section-header {
  margin-bottom: 60px;
}

/* ====================================
   BACK TO TOP BUTTON
   ==================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: black;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px #2ABECD;
}

/* ====================================
   OWL CAROUSEL CUSTOMIZATION
   ==================================== */

.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active {
  width: 40px;
  border-radius: 10px;
  background: #ffffff !important;
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .carousel-item {
    height: auto;
    min-height: 600px;
    padding: 60px 0;
  }

  .hero-image-container {
    margin-top: 40px;
  }

  .floating-card {
    padding: 15px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-image-wrapper {
    height: 450px;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .services-section,
  .categories-section,
  .products-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 18px;
  }

  .feature-tag {
    font-size: 12px;
    padding: 8px 15px;
  }

  .carousel-item {
    min-height: 500px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .about-image-wrapper {
    height: 350px;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
    bottom: 20px;
    right: 20px;
  }

  .badge-content h3 {
    font-size: 2rem;
  }

  .badge-content p {
    font-size: 12px;
  }

  .image-decoration {
    top: -10px;
    left: -10px;
  }

  .service-card {
    padding: 40px 25px;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-wrapper i {
    font-size: 2rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .counter-label {
    font-size: 1rem;
  }

  .category-card.large {
    height: 250px;
  }

  .category-card.tall {
    min-height: 350px;
  }

  .product-image-wrapper {
    height: 220px;
  }

  .product-content {
    padding: 25px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 10px;
  }

  .section-heading {
    font-size: 15px;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-btn {
    padding: 10px 15px;
    font-size: 5px;
    
  }

  .counter-card {
    padding: 30px 15px;
  }
}



@media (max-width: 340px) {
  .hero-title {
    font-size: 10px;
  }

  .section-heading {
    font-size: 15px;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-btn {
    padding: 10px 15px;
    font-size: 5px;
    
  }

  .counter-card {
    padding: 30px 15px;
  }
}
/* Landscape mode on mobile */
@media (orientation: landscape) and (max-height: 500px) {
  .carousel-item {
    height: 100vh;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .floating-card {
    padding: 10px;
  }
}

/* ====================================
   ANIMATIONS & UTILITIES
   ==================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wow {
  visibility: hidden;
}

.wow.fadeInUp,
.wow.zoomIn {
  animation-fill-mode: both;
}























