    /* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: white !important;
  color: #333;
  line-height: 1.6;
}

/* Brown Button Styles */
.btn-brown {
  background-color: #8B4513;
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-brown:hover {
  background-color: #A0522D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}


/* Floating Background Icons */
.floating-bg {
  position: relative;
  overflow: hidden;
  background-color: white !important;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  color: rgba(139, 69, 19, 0.08);
  font-size: 4rem;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
  opacity: 1;
  will-change: transform;
  display: block;
}

@keyframes float {
  0% { 
    transform: translateY(0px) translateX(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-25px) translateX(15px) rotate(8deg); 
  }
  50% { 
    transform: translateY(-40px) translateX(-10px) rotate(-5deg); 
  }
  75% { 
    transform: translateY(-20px) translateX(12px) rotate(3deg); 
  }
  100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg); 
  }
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 35%; left: 12%; animation-delay: 2s; }
.floating-icon:nth-child(4) { top: 50%; right: 15%; animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 65%; left: 8%; animation-delay: 4s; }
.floating-icon:nth-child(6) { top: 80%; right: 12%; animation-delay: 5s; }
.floating-icon:nth-child(7) { top: 25%; left: 25%; animation-delay: 1.5s; }
.floating-icon:nth-child(8) { top: 70%; right: 25%; animation-delay: 3.5s; }

/* Content Layer */
.content-layer {
  position: relative;
  z-index: 2;
  background-color: transparent;
}

/* Icon Hover Effects */
.icon-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-hover:hover {
  transform: scale(1.15) rotate(10deg);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1.15) rotate(10deg); }
  50% { transform: scale(1.2) rotate(-8deg); }
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  background-color: white;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
}

/* Brown Icon Background */
.bg-brown-500 {
  background-color: #8B4513;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    /*background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), */
                /*url('https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080') center/cover;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}


/* Section Spacing */
.section-padding {
    padding: 0px 0;
}

/* Product Cards */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

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

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

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.product-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .floating-icon {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

/* Ensure all sections have white background */
section {
  background-color: white !important;
}

.bg-light {
  background-color: white !important;
}

.bg-muted {
  background-color: white !important;
}

/* Ensure alternating sections have white backgrounds */
section:nth-child(even) {
  background-color: #ffffff !important;
}

section:nth-child(odd) {
  background-color: #ffffff !important;
}

/* Video Player Styles */
.btn-video-play:hover {
  transform: scale(1.1);
  background: #8B4513 !important;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-overlay {
  transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
  opacity: 0.9;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;   /* full screen height on desktop */
  overflow: hidden;
}

/* Video Styling */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* video fills section */
  transform: translate(-50%, -50%);
}

/* Tablet View */
@media (max-width: 1024px) {
  .hero-section {
    height: 80vh; /* a bit shorter */
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh; /* reduce video height on mobile */
  }
  .hero-video {
    object-fit: cover;  /* keeps video full */
  }
}

/* Extra Small Mobile (like 480px) */
@media (max-width: 480px) {
  .hero-section {
    height: 50vh; /* even smaller for small phones */
  }
  .hero-video {
    object-fit: cover;
  }
}

/* Global Section Spacing */
section {
  background-color: white !important;
  padding: 0px 0;       /* space inside each section */
  margin-bottom: 60px;   /* space between sections */
}

/* Smaller devices adjustments */
@media (max-width: 1024px) {
  section {
    padding: 60px 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 30px 0;
    margin-bottom: 20px;
  }
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  font-size: 4rem;
  opacity: 0.08;
  color: #b3003b;
  animation: float 12s infinite linear;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 8%; animation-delay: 4s; }
.floating-icon:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 6s; }
.floating-icon:nth-child(5) { top: 40%; left: 45%; animation-delay: 8s; }
.floating-icon:nth-child(6) { bottom: 40%; right: 40%; animation-delay: 10s; }

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

.accent-line {
  height: 4px;
  background-color: #dc3545;
  border-radius: 4px;
  width: 80px;
  margin: 0 auto;
}

/* CEO */
.ceo-image-wrapper {
  display: inline-block;
  position: relative;
}
.ceo-badge {
  top: 0;
  font-weight: 500;
}

/* ==============================
   Team Section Styling
============================== */

/* Team Card */
.team-card {
  background: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Team Image */
.team-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.07);
}

/* Card Body */
.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body h5 {
  font-weight: 600;
  color: #b3003b;
  margin-bottom: 0.3rem;
}

.card-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.card-body small {
  color: #666;
  font-size: 0.85rem;
}

/* ==============================
   Responsive Adjustments
============================== */

@media (max-width: 991px) {
  .ceo-image-wrapper img {
    max-width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .team-card {
    margin: 0 auto;
    max-width: 92%;
  }

  .team-img img {
    height: 220px;
  }

  .card-body h5 {
    font-size: 1.05rem;
  }

  .card-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .team-img img {
    height: 200px;
  }

  .card-body {
    padding: 1rem;
  }
}


/* Video Play Button */
.btn-video-play {
  background: rgba(179, 0, 59, 0.9);
  border: 4px solid white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-video-play i {
  color: white;
  font-size: 2rem;
  margin-left: 6px;
}

.btn-video-play:hover {
  background: #b3003b;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .btn-video-play {
    width: 70px;
    height: 70px;
  }

  .btn-video-play i {
    font-size: 1.5rem;
    margin-left: 4px;
  }

  .video-wrapper {
    border-radius: 12px;
  }

  .floating-icon {
    font-size: 2.5rem;
  }
}

.btn-video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-video-play:hover {
  background: #b3003b;
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .btn-video-play {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

.ceo-image-wrapper{transition:.4s ease-in-out;}
.ceo-image-wrapper:hover{transform:translateY(-6px);}
.ceo-glow-border{display:inline-block;padding:6px;
background:linear-gradient(135deg, #dc3545, #b3003b, #a8191857);
background-size:300% 300%;animation:glow 4s infinite alternate;border-radius:50%;}
@keyframes glow{0%{background-position:left top;}100%{background-position:right bottom;}}
.ceo-image{border:3px solid #fff;transition:.3s;box-shadow:0 0 10px rgba(0,0,0,.2);}
.ceo-image:hover{transform:scale(1.05);box-shadow:0 0 20px rgba(0,123,255,.4);}
.ceo-caption h4{color:#222;font-size:1.1rem;}
.ceo-caption p{color:#6c757d;}

footer a {
  color: #ffffff !important;
  text-decoration: none;
}

footer a:hover {
  color: #cccccc !important; /* optional – slightly lighter on hover */
}

