body {
    font-family: 'Century Gothic', sans-serif;
}
.uni-video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.uni-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire section */
}
/* ========== ABOUT SECTION ========== */
.uni-about-section {
  background: #F6F7F7 !important;
  padding: 60px 20px;
}

/* Flex container */
.uni-about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 150px;
  flex-wrap: wrap;
}
.uni-about-image {
  position: relative;
  display: inline-block;
  border-radius: 12px 12px 0 0;
  overflow: hidden; /* Ensures gradient stays inside the rounded corners */
}

.uni-about-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.uni-about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient(0deg, #2E4655 0%, #2E465500 43%);*/
  pointer-events: none; /* Keeps image clickable */
}

.uni-about-image {
    width: 36%;
}
/* Text content */
.about-heading{
  font-size: 45px;
font-family: 'Gothic A1', sans-serif;
  font-weight: 100 !important;
  text-transform: uppercase;
  color: black;
}
.uni-about-content {
  max-width: 545px;
  color: #31496B;
  font-size: 20px;
  font-family: 'Gothic A1', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
.uni-card-main {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.from-left {
  transform: translateX(-100px);
}

.from-right {
  transform: translateX(100px);
}

.uni-card-main.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Button */
.uni-about-btn {
        background: #0F0E9F;
    color: white;
    font-size: 15px;
    font-family: "Gothic A1", sans-serif;
    font-weight: 200;
    text-transform: capitalize;
    text-decoration: none;
    padding: 1.0em 1.2em 1.0em 1.2em;
    border-radius: 3px;
    margin-top: 28px;
    display: inline-block;
      transition: transform 0.3s ease;

}
.uni-about-btn:hover {
  transform: translateY(-5px);
}
.uni-about-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .uni-about-container {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .uni-about-container {
    flex-direction: column;
    text-align: center;
  }
  .uni-about-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .uni-about-content {
    font-size: 16px;
  }
  .uni-about-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ========== SCROLL ANIMATION ========== */

/* Initial hidden state */
.uni-about-image,
.uni-about-content {
  opacity: 0;
  transform: translateX(0);
  transition: all 1s ease;
}

.uni-about-image {
  transform: translateX(-80px); /* slide in from left */
}

.uni-about-content {
  transform: translateX(80px); /* slide in from right */
}

/* When section is visible */
.uni-about-show .uni-about-image,
.uni-about-show .uni-about-content {
  opacity: 1;
  transform: translateX(0);
}


 
.product-section {
  width: 100%;
  height: 478px; /* Adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url('<?php echo get_template_directory_uri(); ?>/Brushware-Products.jpg.bv'); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.product-content {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  padding: 20px 30px;
  max-width: 600px;
  text-align: start;
}

.product-heading {
  font-size: 45px;
  font-family: "Gothic A1", sans-serif !important;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0;
}
.product-btn-container{
  display: flex;
  justify-content: center;
  
}

.product-text {
  font-size: 16px;
  font-family: "Gothic A1", sans-serif;
  font-weight: 200;
  color:#5a5a5a;
  margin-bottom: 20px;
  line-height: 24px;
}

.product-btn {
  background: #0F0E9F;
  color: white;
  font-size: 15px;
  font-family: "Gothic A1", sans-serif;
  font-weight: 200;
  text-transform: capitalize;
  text-decoration: none;
  padding: 1.15em 2.1em 1.15em 2.1em;
  border-radius: 3px;
  display: inline-block;
    transition: transform 0.3s ease;

}

/* Responsive */
@media (max-width: 768px) {
  .product-section {
    height: auto;
    padding: 40px 15px;
    background-attachment: scroll; /* better for mobile performance */
  }
  .product-heading {
    font-size: 30px;
  }
}









 .brands-section {
  text-align: center;
  padding: 0px 20px 40px 20px;
  background: #fefefe;
}

.section-title {
  font-size: 38px;
  color: #000;
  font-weight: 100;
  font-family: 'gothic A1', sans-serif !important;
   margin-bottom: 40px;
}

.section-subtitle {
  font-size: 16px;
  color: #5a5a5a;
  /*margin-bottom: 40px;*/
  margin-bottom: 62px;
}
.brands-btn-container{
  padding-top: 55px;
}
.brands-btn {
  background: #0F0E9F;
  color: white;
  font-size: 15px;
  font-family: "Gothic A1", sans-serif;
  font-weight: 200;
  text-transform: capitalize;
  text-decoration: none;
  padding: 1.50em 2.1em;
  border-radius: 3px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.brands-btn:hover {
  transform: translateY(-5px);
}
.brands-btn:hover,
.product-btn:hover {
  transform: translateY(-5px);
}


.brands-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.brand-card {
  background: #F4F4F4;
  border-radius: 20px;
  padding: 20px;
  max-width: 251px;
  flex: 1 1 calc(25% - 20px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
}

.brand-card img {
  width: 215px;
  margin: 0 auto 10px;
  display: block;
}

.brand-title {
  font-size: 1.2rem;
  color: #8B8B8B;
  margin-bottom: 10px;
}

.brand-details {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #A5A5A5;
  font-size: 0.9rem;
}

.brand-details li {
  margin: 5px 0;
}

/* Initial hidden positions for animation */
.from-left {
  transform: translateX(-50px);
}

.from-bottom {
  transform: translateY(50px);
}

.from-right {
  transform: translateX(50px);
}

/* When in view */
.brand-card.visible {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1400px) {
  .brand-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .brand-card {
    flex: 1 1 100%;
  }
  .brands-container {
    overflow-x: auto;
    flex-wrap: "";
            padding: 23px !important;
  }
}











.uni-section {
  background: none;
  padding: 40px 20px;
}

.uni-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.uni-card {
  background: #fdfdfd;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.uni-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.uni-card-image {
  width: 100%;
  height: auto;
  display: block;
}

.uni-card-title {
      padding: 26px 12px;
    font-size: 20px;
    font-weight: 600;
    color: black;
    background: #fff;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .uni-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .uni-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .uni-card {
    flex: 1 1 100%;
  }
}
/* Initial hidden state */
.animate-left, .animate-right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
}

/* Start position for left side */
.animate-left {
  transform: translateX(-60px);
}

/* Start position for right side */
.animate-right {
  transform: translateX(60px);
}

/* When visible */
.animate-visible {
  opacity: 1;
  transform: translateX(0);
}
.blue-line {
      background: #0F0E9E;
    width: 65%;
    height: 8px;
    align-self: center;
    align-items: center;
    margin-left: 49px;
    margin-bottom: 15px;
}













.company-vision-section {
  padding: 20px 20px 60px 20px;
  background: #f8f8f8;
  text-align: center;
}

.company-vision-title {
font-size: 38px;
    color: #000;
    font-weight: 100;
    font-family: 'gothic A1', sans-serif !important;
    margin-bottom: 10px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.company-vision-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
      padding: 20px 0 124px 1px;
}

.vision-card {
  background:none;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 calc(33.33% - 30px);
  max-width: 351px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.vision-card {
  transition: transform 0.4s ease;
}

.vision-card:hover {
  transform: scale(1.10);
}


.vision-icon {
    width: 100px;
    height: auto;
    margin-bottom: 6px;
}

.vision-heading {
  font-size: 24px;
  margin-bottom: 0;
  color: black;
  font-weight: 200;
  font-family: 'Century Gothic', sans-serif;
}

.vision-text {
  font-size: 16px;
  color: #555;
  margin-top:7px;
  font-family: 'Gothic A1' !important;
  line-height: 1.6;
}

/* Animation start positions */
.animate-left { transform: translateX(-60px); }
.animate-right { transform: translateX(60px); }
.animate-bottom { transform: translateY(60px); }

/* When visible */
.animate-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .vision-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .vision-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
