/* .video-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.content {
  position: relative;
  z-index: 2;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}
.btn-view {
  background-color: #9b42cb;
  color:white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid white;
}

.btn-view:hover {
    background-color: rgb(206, 93, 206);
    color: black;
} */


.video-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    top: 0;
    left: 0;
    z-index: 1;
}

/* TEXT CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  width: 100%;
  padding: 0 20px;
}

/* BUTTON */
.btn-view {
  background-color: #83249d;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  border: 1px solid white;
  text-decoration: none;
}
.btn-view:hover {
    background: #931baf;
    border: 1px solid white;
}


.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #e7e7e761;
}

.product-card img {
  width: 100%;
  transition: 0.5s;

}

/* HOVER ZOOM */
.product-card:hover img {
  transform: scale(1.1);
}

/* CONTENT OVER IMAGE */
.product-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
     background: rgb(0 0 0 / 37%);
  color: #fff;
}

/* TEXT STYLE */
.product-content h4 {
  margin: 0;
}

.product-content p {
  font-size: 14px;
}

.btn-product {
    /* background-color:#6610f2; */
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid white;
}

.btn-product:hover {
  background-color: #9b42cb;
  color: #fff;
}


/* SECTION */
.sector-grid {
    padding: 22px 0;
    font-family: Arial, sans-serif;
}
/* CARDS */
.sector-card {
    border: 1px solid #eee;
    padding: 6px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    color: black;
    font-weight: bold;
}
.sector-card:hover {
  transform: translateY(-5px);
  border-color: white;
}

.sector-card.active {
  background: #7839ca;
  color: #fff;
}

/* CONTENT AREA */
.sector-display {
  margin-top: 40px;
  background: #f5f5f5;
  padding: 40px;
}

.sector-display img {
  width: 100%;
  border-radius: 10px;
}

/* TEXT */
.sector-display h2 {
  color:#550bb3;
}

.sector-display p {
  color: #555;
}

/* BUTTON */
.view-btn {
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.view-btn span {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 50%;
}

.view-btn:hover span {
  background: #a47bda;
  color: #fff;
}


/* SECTION */
.section {
    max-width: 1201px;
    margin: auto;
    padding: 30px 26px;
    position: relative;
}
/* decorative background */
/* .section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
   
    border-radius:50%;
    top:-50px;
    left:-50px;
    z-index:0;
}

.section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(0,0,0,0.05);
    border-radius:50%;
    bottom:-50px;
    right:-50px;
    z-index:0;
} */

/* ROW */
/* .row{
    display:flex;
    align-items:center;
    gap:50px;
    margin-bottom:80px;
    flex-wrap:wrap;
    position:relative;
    z-index:1;
} */
.custom-row{
    display:flex;
    align-items:center;
    gap:50px;
    margin-bottom:80px;
    flex-wrap:wrap;
}

/* glass card style */
.row-box{
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.row-box:hover{
    transform:translateY(-6px);
}

/* reverse */
.row.reverse{
    flex-direction:row-reverse;
}

/* TEXT */
.text{
    flex:1;
}

.text h3{
    font-size:26px;
    margin-bottom:15px;
    background:linear-gradient(90deg,#0d6efd,#0056b3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.text p{
    font-size:15.5px;
    line-height:1.8;
    color:#555;
}

/* IMAGE */
.image{
    flex:1;
    overflow:hidden;
    border-radius:15px;
    position:relative;
}

.image img{
    width:100%;
    transition:0.5s ease;
    display:block;
}

/* overlay effect */
.image::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(transparent, rgba(0,0,0,0.2));
}

.image:hover img{
    transform:scale(1.1);
}

/* CARDS */
.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:30px;
    position:relative;
    z-index:1;
}

.card{
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.4);
}

.card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* gradient top line */
.card::before {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #1f1dab, #59b7d3);
    margin-bottom: 15px;
    border-radius: 5px;
}

.card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#111;
}

.card p{
    /* font-size:14.8px; */
    font-size: 19px;
    color:black;
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
    .row{
        flex-direction:column;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .circle-box {
        flex-direction: column;
        margin-left: 175px;
    }
}
/* SECTION */
.spm-section-wrapper{
    max-width:1000px;
    margin:auto;
    padding:60px 20px;
}

/* CARD WITH BACKGROUND */
.spm-card-box{
    background:linear-gradient(135deg,#2e2bec,#a1b6d3);
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* HEADING */
.spm-title{
    text-align:center;
    font-size:28px;
    margin-bottom:40px;
    color:#fff !important;
}

/* 2 COLUMN */
.spm-list-grid{
    column-count:2;
    column-gap:50px;
}

/* ITEM */
.spm-list-item{
    font-size:15px;
    color:#f1f1f1;
    margin-bottom:16px;
    padding:10px 12px;
    border-radius:6px;
    transition:0.3s;
    break-inside:avoid;
}

/* HOVER */
.spm-list-item:hover{
    background:rgba(255,255,255,0.15);
    color:#fff;
    transform:translateX(5px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .spm-list-grid{
        column-count:1;
    }
}

:root {
   
    --ux-accent-blue: #007aff;
    --ux-accent-glow: rgba(0, 122, 255, 0.5);
    --ux-text-primary: #ffffff;
    --ux-border-subtle: #2d334a;
}

*{box-sizing:border-box;}



/* HEADER */
#uxHeaderWrap{
    text-align:center;
    padding:80px 20px;
}

#uxHeaderWrap h1{
    font-size:36px;
    font-weight:800;
    margin:0;
    text-transform:uppercase;
}

#uxHeaderWrap span{
    color:#5135df;
}

/* CONTAINER */
#uxMainContainer{
    max-width:1400px;
    margin:auto;
    padding:0 40px 100px;
}

/* GRID */
#uxCardGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.uxCardBox{
    background:var(--ux-card-bg);
    border:1px solid var(--ux-border-subtle);
    border-radius:12px;
    overflow:hidden;
    transition:0.4s;
}

/* IMAGE */
.uxCardImg{
    height:180px;
    overflow:hidden;
}

.uxCardImg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.8;
    transition:0.5s;
}

/* BODY */
.uxCardBody{
    padding:24px;
}

.uxCardBody h3{
    margin:0;
    font-size:18px;
    color:#3d51eb;
}

/* HOVER */
.uxCardBox:hover{
    transform:translateY(-10px);
    border-color:var(--ux-accent-blue);
    box-shadow:0 15px 35px rgba(0,0,0,0.5),0 0 15px var(--ux-accent-glow);
}

.uxCardBox:hover img{
    transform:scale(1.15);
    opacity:1;
}

/* RESPONSIVE */
@media(max-width:1100px){
    #uxCardGrid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:768px){
    #uxCardGrid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:480px){
    #uxCardGrid{grid-template-columns:1fr;}
    #uxHeaderWrap h1{font-size:28px;}
}

/* SECTION */
.eq-main{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
}

/* HEADING */
.eq-heading{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:50px;
    color:#725ebf;
  }

/* SPLIT LAYOUT */
.eq-columns{
    display:flex;
    gap:40px;
}

/* EACH COLUMN */
.eq-col{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* ITEM */
.eq-box{
    background:#fff;
    padding:16px 20px;
    border-radius:8px;
    font-size:15px;
    color:#333;
    position:relative;
    box-shadow:0 5px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

/* LEFT BORDER STYLE */
.eq-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#6219c2;
    border-radius:8px 0 0 8px;
}

/* HOVER */
.eq-box:hover{
    transform:translateX(8px);
    color:#0d6efd;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* NUMBER */
.eq-box span{
    font-weight:700;
    margin-right:10px;
    color:#0d1641;
}

/* RESPONSIVE */
@media(max-width:768px){
    .eq-columns{
        flex-direction:column;
    }
}


  /* Main container */
/* #bowl-feeder-container {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
  
} */

  /* Left column - images */
  /* .bf-left-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    align-items: center;
  } */

  /* .bf-image-card {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #e6f2ff, #cce0ff);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
  }

  .bf-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  } */

  /* .bf-image-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  } */

  /* Right column - types list */
  /* .bf-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .bf-types-list h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3c17d1;
  }

  .bf-types-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  } */

  /* .bf-type-badge {
    padding: 12px 20px;
    background: #5d43c1;
    color: #fff;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
  }

  .bf-type-badge:hover {
    transform: translateX(10px);
    background: #8374bb;
  } */

  /* Responsive */
  /* @media (max-width: 900px) {
    #bowl-feeder-container {
      flex-direction: column;
      align-items: center;
    }
    .bf-left-column, .bf-right-column {
      align-items: center;
      text-align: center;
    }
  } */


/* Image Card */
.bf-image-card{
    width:220px;
    height:220px;
    border-radius:20px;
    overflow:hidden;
    background:linear-gradient(145deg,#e6f2ff,#cce0ff);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.4s;
}

.bf-image-card img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.bf-image-card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* Badge */
.bf-type-badge{
    padding:12px 20px;
      background: linear-gradient(45deg, #a900ff, transparent);
    color:#fff;
    font-weight:600;
    border-radius:12px;
    transition:0.3s;
    cursor:pointer;
}

.bf-type-badge:hover{
    transform:translateX(10px);
    background:#8374bb;
}



/* Wrapper */
.sf-wrapper{
    background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
    color:#fff;
    /* min-height:65vh !important; */
    position:relative;
}

/* Glow */
.sf-wrapper::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background: radial-gradient(circle at top right, rgba(99,102,241,0.2), transparent 40%),
                radial-gradient(circle at bottom left, rgba(59,130,246,0.2), transparent 40%);
    z-index:0;
}

.sf-wrapper > *{
    position:relative;
    z-index:1;
}

/* Top Bar */
.sf-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.sf-title{
    font-size:30px;
    font-weight:700;
    /* margin-right:545px; */
}

.sf-title span{
    color:#8b5cf6;
}

.sf-btn{
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

/* Footer Layout */
.sf-footer {
    padding: 34px ;
    /* display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px; */
}

/* Logo */
.sf-logo img{
    width:100px;
}

/* Text */
.sf-text{
    margin:20px 0;
    color:#cbd5e1;
    line-height:1.6;
    font-size: 19px;
}

/* Newsletter */
.sf-newsletter{
    display:flex;
    margin-top:20px;
}

.sf-input{
    flex:1;
    padding:14px;
    border:none;
    border-radius:6px 0 0 6px;
    outline:none;
    background:#1e293b;
    color:#fff;
}

.sf-subscribe{
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border:none;
    padding:14px 20px;
    color:#fff;
    font-weight:600;
    border-radius:0 6px 6px 0;
    cursor:pointer;
}

/* Headings */
.sf-heading{
    margin-bottom:20px;
    color:white;
}

/* Links */
.sf-list{
    list-style:none;

}

.sf-list li{
    margin-bottom:12px;
    cursor:pointer;
}

.sf-list li a{
    color:white;
    font-size: 19px;
}

.sf-list li a:hover{
    color:#8b5cf6;
    cursor:pointer;
}

/* Contact */
.sf-contact p{
    margin-bottom:15px;
    font-size: 18px;
}

.sf-contact i{
    color:#8b5cf6;
    margin-right:10px;
}

/* Responsive */
@media(max-width:900px){
    .sf-footer{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .sf-footer{
        grid-template-columns:1fr;
    }
    .sf-topbar{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}

/* Section */
.abt4-section {
    padding: 26px 0;
    background: rgb(235 227 227 / 36%);
}

/* Left Content */
.abt4-content{
    border-left:4px solid #8b08b8;
    padding-left:25px;
    transition:0.4s;
}

/* 🔥 Hover effect for text */
.abt4-content:hover{
    transform:translateX(10px);
}

/* Title */
.abt4-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

.abt4-title span{
    color: #7b00c5;

}

/* Text */
.abt4-text{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
    font-size: 19px;
}

/* Button */
.abt4-btn {
    background: #9f01ff;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
}

/* 🔥 Button hover */
.abt4-btn:hover{
    background:#933ae1;
    box-shadow:0 8px 20px rgba(99,102,241,0.4);
    transform:translateY(-3px);
}

/* Image Section */
.abt4-img-box{
    text-align:center;
    overflow:hidden;
}

/* Image */
.abt4-img-box img{
    width:85%;
    max-width:420px;
    border-radius:12px;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.5s;
}

/* 🔥 Image hover */
.abt4-img-box:hover img{
    transform:scale(1.08);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:768px){
    .abt4-content{
        margin-bottom:40px;
        text-align:center;
        border-left:none;
    }

    .abt4-content:hover{
        transform:none;
    }

    .abt4-img-box img{
        width:100%;
    }
}

