/* Font and Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #fefef9;
  color: #111;
}


/* chat bot  */
#chatbot-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  padding: 18px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease;
}
#chatbot-icon:hover {
  transform: scale(1.1);
}

#chatbot-box {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 320px;
  max-height: 500px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
  font-family: 'manrope', sans-serif;
}

.chat-header {
  background-color: #000;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'manrope', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header button {
  background: none;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
  background-color: #f9f9f9;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}
.chat-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
}
.chat-input button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.bot-msg, .user-msg {
  padding: 10px 14px;
  margin: 6px 0;
  border-radius: 16px;
  max-width: 85%;
  word-wrap: break-word;
}
.bot-msg {
  background-color: #eee;
  align-self: flex-start;
}
.user-msg {
  background-color: #000;
  color: #fff;
  align-self: flex-end;
  text-align: right;
}

.typing span {
  animation: blink 1s infinite;
}
.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* back to top button  */
#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

#backToTop:hover {
  background-color: #000;
  transform: scale(1.1);
}

#backToTop svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  #backToTop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
  }

  #backToTop svg {
    width: 20px;
    height: 20px;
  }
}



/* Root Theme */
:root {
  --bg: white;
  --fg: black;
  /* font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320)); */
}

/* Preloader Container */
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Loader Styles */
.pl,
.pl__worm {
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.pl {
  animation-name: bump;
  animation-timing-function: linear;
  width: 5em;
  height: 5em;
}
.pl__ring {
  stroke: rgba(0, 0, 0, 0.1);
}
.pl__worm {
  stroke: black;
  animation-name: worm;
  animation-timing-function: cubic-bezier(0.42, 0.17, 0.75, 0.83);
}

/* Animations */
@keyframes bump {
  from,
  42%, 46%, 51%, 55%, 59%, 63%, 67%, 71%, 74%, 78%, 81%, 85%, 88%, 92%, to {
    transform: translate(0, 0);
  }
  44% { transform: translate(1.33%, 6.75%); }
  53% { transform: translate(-16.67%, -0.54%); }
  61% { transform: translate(3.66%, -2.46%); }
  69% { transform: translate(-0.59%, 15.27%); }
  76% { transform: translate(-1.92%, -4.68%); }
  83% { transform: translate(9.38%, 0.96%); }
  90% { transform: translate(-4.55%, 1.98%); }
}

@keyframes worm {
  from { stroke-dashoffset: 10; }
  25% { stroke-dashoffset: 295; }
  to { stroke-dashoffset: 1165; }
}



/* Top Header */
.top-header {
  background-color: #000;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social-links i {
  font-size: 14px;
}



/* Navbar Base */
header {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  padding: 20px 5%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: -0.9rem;
}

.logo {
  /* font-size: 36px; */
  /* font-weight: 700; */
  color: #1c1c1c;
  line-height: 1;
  text-decoration: none;
  /* margin-top: -2rem; */
}
.logo img{
  width: 20rem;
  margin-left: -2.8rem;
}

/* .logo.gradient-text {
  background: linear-gradient(90deg, #7b5dfd, #f6416c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  white-space: nowrap;
}

.nav-links li a {
  text-decoration: none;
  color: #1c1c1c;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease-in-out;
}

.nav-links li a:hover {
  color: #4caf50;
  transform: scale(1.1);
  /* font-size: 18px; */
  /* transition: all 0.3s ease in-out; */
}


/* Hamburger Icon */
.hamburger {
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  display: none;
}

.hamburger i {
  font-size: 22px;
  color: #1c1c1c;
}



/* video */
/* Hero Video Wrapper */
.hero-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  z-index: 0;
  overflow: hidden;
  border-radius: 50%; /* Optional: same ColabX effect */
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep hero text above video */
.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}

/* Optional dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* Optional: soften video */
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-video-wrapper {
    width: 250px;
    height: 250px;
  }
  .logo img{
    width: 15rem;
    margin-left: -2rem;
    margin-top: -0.6rem;
  }
}





/* Hero Section */

.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px 82px;
  background: transparent;
  z-index: 1;
}


.hero h1 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}

/* Nav Links (mobile layout) */
.nav-links li {
  padding: 10px 0;
  text-align: center;
  width: 100%;
  /* border-bottom: 1px solid #ddd; */
}

.nav-links li:last-child {
  border-bottom: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .top-header-content {
    padding: 0 3%;
  }
  
  .contact-info {
    gap: 20px;
  }
  
  .contact-info span:first-child {
    display: none;
  }

  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
}


/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
  }

  .logo {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 1001;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

}

/* buttons  */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px 50px;
  flex-wrap: wrap;
}

/* Discover Button */
.btn-solid {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-solid:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Contact Button */
.btn-outline {
  border: 2px solid #000;
  color: #000;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Shared Button Styling */
.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn i {
  font-size: 14px;
}


#typewriter::after {
  content: '|';
  animation: blink 1s infinite;
  font-weight: bold;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* Product Showcase Section */
.product-showcase {
  display: flex;
  flex-wrap: wrap;
  margin: 60px 0;
}

.product-box {
  position: relative;
  width: 50%;
  height: 400px;
  overflow: hidden;
  text-decoration: none;
}

.product-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-box:hover img {
  transform: scale(1.05);
}

.product-label {
  position: absolute;
  bottom: 30px;
  left: 50px;
  background: white;
  color: #111;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(-150%);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.product-label.visible {
  transform: translateX(0);
  opacity: 1;
}

.product-box:hover .product-label {
  background: black;
  color: #fff;
  cursor: pointer;
}



.product-box.scroll-effect img {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

@media (max-width: 768px) {
  .product-box {
    width: 100%;
    height: 300px;
  }

  .product-label {
    font-size: 16px;
    padding: 12px 18px;
    bottom: 20px;
    left: 30px;
  }
}


.our-products {
  padding: 80px 0;
  background-color: #fefef9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Products Wrapper */
.products-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.products-container {
  overflow: hidden;
  width: 100%;
}

.products-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

/* Product Card */
.product-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Quick View Overlay */
.quick-view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .quick-view {
  opacity: 1;
}

.quick-view-btn {
  background: #fff;
  color: #1c1c1c;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: #4caf50;
  color: #fff;
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  padding: 24px 20px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-category {
  display: inline-block;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #e5e5e5;
  color: #1c1c1c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
}

.nav-btn:disabled:hover {
  background: #fff;
  color: #1c1c1c;
  border-color: #e5e5e5;
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

.nav-btn i {
  font-size: 16px;
}

/* View All Button */
.view-all-container {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .product-card {
    flex: 0 0 250px;
  }
  
  .products-track {
    gap: 20px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
  }
  
  .prev-btn {
    left: -20px;
  }
  
  .next-btn {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .our-products {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .product-card {
    flex: 0 0 220px;
  }
  
  .products-track {
    gap: 15px;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-info {
    padding: 20px 16px;
  }
  
  .product-info h3 {
    font-size: 16px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .nav-btn i {
    font-size: 14px;
  }
  
  .prev-btn {
    left: -15px;
  }
  
  .next-btn {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .product-card {
    flex: 0 0 200px;
  }
  
  .products-track {
    gap: 12px;
  }
  
  .product-image {
    height: 160px;
  }
  
  .product-info {
    padding: 16px 12px;
  }
  
  .product-info h3 {
    font-size: 15px;
  }
  
  .product-info p {
    font-size: 13px;
  }
  
  .nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .nav-btn i {
    font-size: 12px;
  }
  
  .prev-btn {
    left: -10px;
  }
  
  .next-btn {
    right: -10px;
  }
}

/* Animation for product cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for the track */
.products-track {
  scroll-behavior: smooth;
}


/* Products Page Specific Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Active Navigation Link */
.nav-links a.active {
  color: #4caf50;
  font-weight: 600;
}

/* Statistics Section */
.stats-section {
  padding: 80px 0;
  background: #fefef9;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #2196f3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 32px;
  color: #333;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-icon i {
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}

.stat-number::after {
  content: '+';
  color: #4caf50;
  margin-left: 4px;
}

.stat-item[data-count="3"] .stat-number::after {
  content: '';
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Products Main Section */
.products-main {
  padding: 80px 0;
  background: white;
}

/* Search and Filter Controls */
.products-controls {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.search-box, .filter-box {
  position: relative;
  background: white;
  border: 2px solid black;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-box:focus-within, .filter-box:focus-within {
  border-color: #4caf50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.search-box {
  flex: 1;
  max-width: 400px;
}

.filter-box {
  min-width: 200px;
}

.search-box i, .filter-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  z-index: 1;
}

.search-box input, .filter-box select {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border: none;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  background: transparent;
}

.filter-box select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path fill="%23999" d="M6 8L0 2h12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 50px;
}

/* Products Carousel */
.products-carousel {
  position: relative;
  margin-bottom: 40px;
}

.products-container {
  overflow: hidden;
  border-radius: 16px;
  padding: 0 60px;
}

.products-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
}

/* Product Cards */
.product-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

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

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: float 3s ease-in-out infinite;
}

.product-info {
  padding: 24px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 8px;
  margin-left: 12px;
}

.product-rating i {
  color: #ffc107;
  font-size: 12px;
}

.product-rating span {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.product-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-category {
  display: inline-block;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.learn-more-btn {
  width: 100%;
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.learn-more-btn:hover {
  background: #4caf50;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.learn-more-btn i {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(4px);
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: #1c1c1c;
  color: white;
  border-color: #1c1c1c;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
  background: white;
  color: #999;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #1c1c1c;
  transform: scale(1.2);
}

.indicator:hover {
  background: #4caf50;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.no-results i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #333;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');;
  animation: float 20s linear infinite;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Product Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-modal.active {
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.product-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  transition: all 0.3s ease;
  z-index: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.modal-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 16px;
}

.modal-rating span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.modal-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-header h1 {
    font-size: 40px;
  }
  
  .stats-grid {
    gap: 30px;
  }
  
  .products-container {
    padding: 0 50px;
  }
  
  .product-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 20px 60px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .page-header p {
    font-size: 16px;
  }
  
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .products-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .search-box {
    max-width: 100%;
  }
  
  .products-container {
    padding: 0 40px;
  }
  
  .product-card {
    flex: 0 0 250px;
  }
  
  .products-track {
    gap: 20px;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-image {
    height: 300px;
    border-radius: 20px 20px 0 0;
  }
  
  .modal-info {
    padding: 30px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .cta-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .products-container {
    padding: 0 30px;
  }
  
  .product-card {
    flex: 0 0 220px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .modal-info {
    padding: 20px;
  }
  
  .modal-info h3 {
    font-size: 24px;
  }
}

/* about us section  */
.about-section-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 20px;
  background: #fff;
  color: #000;
  font-family: 'Manrope', sans-serif;
  max-width: 1200px;
  margin: auto;
}

.about-left-custom {
  flex: 1 1 500px;
}

.about-img-box-custom {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img-box-custom img {
  width: 100%;
  display: block;
  transition: 0.3s ease;
}

.about-img-box-custom:hover img {
  transform: scale(1.05);
}

.about-badge-custom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.about-badge-custom i {
  font-size: 20px;
}

.about-badge-custom strong {
  font-size: 20px;
  display: block;
}

.about-desc-custom {
  margin: 25px 0;
  font-size: 16px;
  line-height: 1.6;

}


.about-buttons-custom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  
}

.about-buttons-custom a {
  text-decoration: none;
}

.btn-custom-primary {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-custom-primary:hover {
  background: #333;
}

.btn-custom-secondary {
  background: #f1f1f1;
  color: #000;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.btn-custom-secondary:hover {
  background: #e0e0e0;
}

.about-right-custom {
  flex: 1 1 500px;
  text-align: left;
}

.about-label-custom {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 14px;
  display: inline-block;
}

.about-label-custom i {
  margin-right: 6px;
}

.about-right-custom h2 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-right-custom h2 span {
  color: #000;
  /* border-bottom: 3px solid #000; */
}

.about-side-img-custom {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-side-img-custom img {
  width: 100%;
  display: block;
  transition: 0.3s;
}

.about-side-img-custom:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about-section-custom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about-left-custom,
  .about-right-custom {
    flex: 1 1 100%;
  }

  .about-buttons-custom {
    justify-content: center;
  }

  .about-right-custom {
    text-align: center;
    
  }
  .about-right-custom h2 {
    font-size: 36px;
  }
}

/* footer  */
/* Font Awesome CDN Required in HTML <head>:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
*/

.farhanpharma-footer {
  background: linear-gradient(to right, #0c0c0c, #1e1e1e);
  color: #e4e4e4;
  padding: 50px 20px 20px;
  font-family: 'Manrope', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h2 {
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.footer-about h2 span {
  color: whitesmoke;
}

.footer-about p {
  margin: 15px 0;
  line-height: 1.6;
  color: #bbb;
}

.footer-address i {
  color: whitesmoke;
  margin-right: 8px;
}

.footer-links h3,
.footer-social h3 {
  color: white;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: burlywood;
  translate: scale(1.2);
  transition: all 0.3s ease in-out;
}

.footer-social .social-icons a {
  margin-right: 15px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: burlywood;
  translate: scale(1.2);
  transition: all 0.3s ease in-out;
}

.footer-social .dev-credit {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.footer-social .dev-credit span {
  color: whitesmoke;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    margin-bottom: 30px;
  }

  .footer-social .social-icons a {
    margin: 0 10px;
  }
}


/* core guiding principles section  */

 :root {
            /* Dark theme color palette */
            --bg-primary: #0f0f0f;
            --bg-secondary: #1a1a1a;
            --bg-card: #1e1e1e;
            --bg-muted: #2a2a2a;
            
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-muted: #666666;
            
            --accent-primary: #ffffff;
            --accent-glow: #f0f0f0;
            
            --border-color: #333333;
            --border-hover: #555555;
            
            /* Enhanced gradients for dark theme */
            --gradient-primary: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
            --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
            --gradient-border: linear-gradient(135deg, #333333 0%, #666666 100%);
            --gradient-hover: linear-gradient(135deg, #ffffff 0%, #888888 100%);
            
            /* Shadows for dark theme */
            --shadow-base: 0 4px 20px rgba(0,0,0,0.4);
            --shadow-hover: 0 10px 40px rgba(0,0,0,0.6);
            --shadow-glow: 0 0 30px rgba(255,255,255,0.1);
            
            /* Transitions */
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

          .principles-hero-section-container {
            min-height: 100vh;
            padding: 4rem 1rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
        }

        .principles-hero-section-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            pointer-events: none;
        }

        .container1 {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .header-section {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: rgb(26, 24, 24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .highlight-text {
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .subtitle {
            font-size: 1.25rem;
            color: gray;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .principles-hero-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-base);
            opacity: 0;
            transform: translateY(40px);
            transform-style: preserve-3d;
        }

        .principles-hero-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-card);
            opacity: 0;
            transition: var(--transition-smooth);
            border-radius: inherit;
        }

        .principles-hero-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--gradient-border);
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .principles-hero-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }

        .principles-hero-card:hover::before {
            opacity: 1;
        }

        .principles-hero-card:hover::after {
            opacity: 1;
            background: var(--gradient-hover);
        }

        .principles-floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .principles-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            opacity: 0;
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .principles-icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            border: 1px solid var(--border-color);
            transition: var(--transition-bounce);
            position: relative;
            overflow: hidden;
        }

        .principles-icon-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition-smooth);
            border-radius: inherit;
        }

        .principles-hero-card:hover .principles-icon-container {
            transform: scale(1.15) rotate(8deg);
            box-shadow: var(--shadow-glow);
            border-color: var(--border-hover);
        }

        .principles-hero-card:hover .principles-icon-container::before {
            opacity: 1;
        }

        .icon-svg {
            width: 36px;
            height: 36px;
            stroke: var(--text-primary);
            transition: var(--transition-smooth);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .principles-hero-card:hover .icon-svg {
            stroke: #ffffff;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
        }

        .principles-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: var(--transition-smooth);
        }

        .principles-hero-card:hover .principles-title {
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .principles-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
            transition: var(--transition-smooth);
        }

        .principles-hero-card:hover .principles-description {
            color: black;
        }

        .hover-indicator {
            margin-top: 1.5rem;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition-smooth);
        }

        .principles-hero-card:hover .hover-indicator {
            opacity: 1;
            transform: translateY(0);
        }

        .indicator-line {
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: var(--transition-smooth);
        }

        .principles-hero-card:hover .indicator-line {
            width: 60px;
            background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
            box-shadow: 0 2px 8px rgba(255,255,255,0.3);
        }

        .footer-section {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 1s forwards;
        }

        .discover-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: black;
            transition: var(--transition-smooth);
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .discover-more a{
            text-decoration: none;
            color: inherit;
        }

        .discover-more:hover {
            color: var(--text-primary);
            background: black;
        }

        .discover-text {
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .discover-line {
            width: 30px;
            height: 1px;
            background: currentColor;
            transition: var(--transition-smooth);
        }

        .discover-more:hover .discover-line {
            width: 45px;
        }

        .pulse-effect {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            opacity: 0;
            transition: var(--transition-smooth);
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .principles-hero-card:hover .pulse-effect {
            opacity: 1;
            animation: pulseAnimation 2s infinite ease-in-out;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0;
            }
            50% {
                transform: translateY(-25px) rotate(180deg);
                opacity: 1;
            }
        }

        @keyframes pulseAnimation {
            0%, 100% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.02);
                opacity: 0.15;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .principles-hero-card {
                padding: 2rem;
            }
            
            .principles-hero-section-container {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .principles-hero-card {
                padding: 1.5rem;
            }
        }

/* Sexy Black Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000; /* Full black background */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg, #444, #666); /* Stylish grey gradient */
  border-radius: 10px;
  border: 2px solid #000; /* Border to blend with track */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(145deg, #666, #888); /* Lighter on hover */
}

/* Firefox (optional) */
* {
  scrollbar-width: thin;
  scrollbar-color: #555 #000;
}
