/*NAV*/
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: none;
}

.b-bar{
background-color: rgba(55, 46, 46, 0.668);
}

.b-bar_content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_img{
    display: flex;
    align-items: center;
    column-gap: 10px;
    max-height: 70px;
}

.nav{
    transition: all 0.3s ease-in-out;
}

.nav_list{
    display: flex;
    column-gap: 40px;
}

.nav_link{
    color: #fff;
font-size: 16px;
    transition: all 0.2s;
}
.nav_link:hover,
.navlink:focus{
    color: #802424;
}

.btn{
    color: #fff;
    background-color: #851717;
    padding: 8px 20px;
    border-radius: 1000px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.btn:hover{
 background-color: #5314149e;
}

.hamburger{
    display: none;
}

.bar {
    height: 2px;
    width: 27px;
    background-color: #fff;
    margin: 5px 0;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    }

 /* FOR JS*/

    .nav--open {
        transform: translateX(0%) !important;
    }

    .hamburger--open .bar:nth-child(1){
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger--open .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger--open .bar:nth-child(3){
        transform: translateY(-7px) rotate(-45deg);
    }
/* NAV Media queries */
@media (max-width:900px) {
    .nav {
    position: fixed;
    top: 90px;
    background-color: #363534b0;
    border-radius: 2%;
    width: 90%;
    padding: 10px 0 25px;
    transform: translateX(-110%);
    }
    .nav_list {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
    .nav_link{
        font-size: 14px;
    }
    .btn{
        font-size: 11px;
        padding: 7px 17px;
        background-color: rgb(43, 88, 167);
    }
    .hamburger{
        display: block;
    }
  
}

/*marquee*/

.logomar_container{
padding: 0;
margin: 0;
}
.brandMarquee {
	display: flex ;
    justify-content: center;
	overflow: hidden ;
	white-space: nowrap ;
	width: 100%;
    height: 80px;
    background-color: black;
	}

.bm__item {
	animation-duration: 3s ;
	animation-iteration-count: infinite ;
	animation-name: marquee-content ;
	animation-timing-function: linear ;
	padding: 2px;
	}

.bm_logo{
    object-fit: cover;
    height: 70px;
    margin: 0 auto;
}
.brandMarquee:hover .bm__item {
	animation-play-state: paused ;
		}

@keyframes marquee-content {
	from {
		transform: translateX( 0% );
			}
			to {
		transform: translateX( -100% );
			}
		}







/* FOOTER BASE */
/* Parallax background */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 34.2% 44.3%, rgba(121, 4, 4, 0.65) 6.5%, #200c0e 100.2%);
  transform: translateY(0);
  transition: transform 0.3s ease-out;
  z-index: 0; /* behind content */
}

/* Move content above the parallax */
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}
.site-footer {
  background: radial-gradient(circle at 34.2% 44.3%, rgb(79, 7, 7) 6.5%, rgba(7, 7, 7, 0.337) 100.2%);
  color: #f5f5f5;
  font-family: 'Oswald', sans-serif;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h3,
.footer-column h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffb8b8;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0d4d4;
}

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

.footer-column ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffb8b8;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #cfcfcf;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom .footer-legal li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-legal li a:hover {
  color: #ffb8b8;
}

#backToTop {
  background: transparent;
  border: 1px solid #ffb8b8;
  color: #ffb8b8;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

#backToTop:hover {
  background: #ffb8b8;
  color: #2c1a1a;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  /* Branding stays full width */
  .footer-column:first-child {
    grid-column: 1/-1;
    width: 100%;
    flex: none;
    margin-bottom: 20px;
  }

  /* Grid for the remaining columns */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* always 2 columns */
    gap: 20px;
  }

  /* Footer bottom centered */
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-column:first-child {
    margin-bottom: 15px;
  }

  .footer-column h3 {
    font-size: 14px;
  }

  .footer-column h4 {
    font-size: 13px;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 11px;
    line-height: 1.4;
  }

  #backToTop {
    padding: 5px 10px;
    font-size: 11px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* keep 2 columns even on very small screens */
    gap: 15px;
  }

  .footer-bottom .footer-legal {
    flex-wrap: wrap;
    gap: 10px;
  }
}


/* Smooth scroll */
html {
  scroll-behavior: smooth;
}


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* HERO */

/* HERO */
.hero {
  position: relative;
  height: 85vh; /* almost full viewport */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* text left on desktop */
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* fill hero */
  object-fit: cover; /* cover entire section */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* text above image */
  max-width: 600px;
  color: white;
}

.hero h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffebeb;
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  color: #dccaca;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  margin: 30px 0;
  gap: 25px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 25px;
  position: relative;
  transition: 0.3s;
}

.btn-outline span {
  margin-right: 10px;
}

.btn-outline::after {
  content: '→';
  position: absolute;
  right: -30px;
  transition: right 0.3s;
}

.btn-outline:hover::after {
  right: 10px;
}

.btn-link {
  padding: 12px 28px;
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.btn-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: #fff;
  transition: width 0.3s;
  bottom: 0;
  left: 0;
}

.btn-link:hover::after {
  width: 100%;
}

/* MEDIA QUERIES */

/* Large Desktop */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }
  .hero-content {
    max-width: 500px;
  }
}

/* Tablets / iPad (1024px) */
@media (max-width: 1024px) {
  .hero {
    justify-content: center;
    text-align: center;
    height: 85vh;
    padding: 0 5%;
  }

  .hero-content {
    max-width: 80%;
  }

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

  .hero p {
    font-size: 24px;
  } 
  .hero-buttons {
    margin-top: 35px;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .btn-outline, .btn-link {
    background: radial-gradient(circle at 34.2% 44.3%, #312d2d7d 6.5%, rgb(111, 9, 9) 100.2%);
    padding: 15px 30px;
    font-size: 24px;
    justify-content: center;
    border-radius: 25px 25px 0px 0px;
  }
  .btn-outline:hover, .btn-link:hover {
  transform: scale(1.05);
  background: radial-gradient(circle at 34.2% 44.3%, #312d2d7d 6.5%, rgb(111, 9, 9) 100.2%);
}
}

/* Small Tablets / Large Phones (768px) */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85vh;
    padding: 0 5%;
  }

  .hero-bg {
    height: 100%;
  }

  .hero-content {
    max-width: 90%;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .btn-outline, .btn-link {
    padding: 10px 20px;
    font-size: 14px;
    justify-content: center;
  }
}

/* Extra Small Phones (280px) */
@media (max-width: 280px) {
  .hero {
    height: 100vh;
    padding: 0 5px;
  }

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

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

  .hero-buttons {
    gap: 8px;
  }

  .btn-outline, .btn-link {
    padding: 8px 16px;
    font-size: 12px;
  }
}


/*other*/
.page{
padding:60px 20px;
max-width:1000px;
margin:auto;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#fafafa;
padding:20px;
border-radius:10px;
}
/*Index.php non update items*/
/*brand review*/
.online-presence{
background: url("../images/Sections/BrandBack.png") no-repeat center;
padding:80px 20px;
text-align:center;
}

.presence-content{
    display: flex;
    flex-direction: column;
max-width:900px;
border-radius: 50px;
margin: 0 auto ;
}

/*Brand Strip*/

.Bgrid-strip{
display: flex;
flex-direction: row;
justify-content: space-between;
}

.Bgrid-card1,
.Bgrid-card2 {
background:rgba(127, 10, 10, 0.681);
color:white;
padding:90px;
margin-top:40px;
}
.Bgrid-card1{
 border-radius: 15px 50px 5px 30px;
}
.Bgrid-card {
text-align:center;
background:black;
color:white;
padding:40px;
margin-top:40px;
border-radius: 50px 50px 5px 5px;
}
.Bgrid-card h2 {
    font-size: 32px;
}
.Bgrid-card p {
    font-size: 20px;
}

.Bgrid-card2 {
    border-radius: 50px 5px 30px 5px;
}

/* Initial positions */
.Bgrid-card1 { transform: translateX(-80px) scale(0.9); opacity: 0.0; }
.Bgrid-card2 { transform: translateX(80px) scale(0.9); opacity: 0.0; }
.Bgrid-card  { transform: scale(0.9); opacity: 0.8; }

/* ACTIVE state — cards “fuse” */
.Bgrid-strip.active .Bgrid-card1 {
  transform: translateX(40px) scale(0.85);
  opacity: 0.2;
  transition-delay: 0.1s;
}

.Bgrid-strip.active .Bgrid-card2 {
  transform: translateX(-40px) scale(0.85);
  opacity: 0.1;
  transition-delay: 0.2s;
}

.Bgrid-strip.active .Bgrid-card {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition-delay: 0.3s;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .Bgrid-strip {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .Bgrid-card1,
  .Bgrid-card2,
  .Bgrid-card {
    width: 90%;
    transform: none !important;
    opacity: 1 !important;
    padding: 20px;
    margin: 0;
  }
}



/*white online box*/
.Btransbox {
    margin: 40px;
    padding: 10px;
    background-color: #ffffff76;
}
.Btransbox h2{
    color: #3d3d3d;
    font-size: 32px;
}
.Btransbox p{
    margin-top:10px;
    font-size:22px;
    color:#444;
}

/*Bfinal box*/
.presence-box{
display: flex;
flex-direction: column;
margin: 0 auto;
background:black;
color:white;
padding:26px;
margin-top:40px;
border-radius:6px;
text-align:center;
font-size: 18px;
}

.presence-box h3{
    text-align: left;
    font-size: 22px;
    font-weight: 600;
}
.presence-box ul{
margin-top:15px;
text-decoration-style: solid;
}

.presence-box li{
margin-bottom:8px;
}
/*presence media*/
@media (max-width: 768px) {
  .Btransbox p{
    font-size: 16px;
  }

  .presence-box{
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
  }
}




/*why section*/
.why-website{
background:#f5efe9;
padding:100px 20px;
text-align:center;
}

.why-container{
max-width:700px;
margin:auto;
}

.why-website h2{
font-size:36px;
color:#7b2d2d;
}

.cta-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#8b0000;
color:white;
text-decoration:none;
border-radius:25px;
}

.cta-btn:hover{
background:#a30000;
}
/*(Y) Booking*/
.booking{
background:#efe6df;
padding:100px 20px;
display:flex;
justify-content:center;
}

.booking-box{
background:#f5ece4;
padding:60px;
border-radius:25px;
text-align:center;
max-width:600px;
}

.apply-btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:#8b0000;
color:white;
text-decoration:none;
border-radius:25px;
font-weight:bold;
}

.note{
margin-top:20px;
font-style:italic;
}


/*.  Index store. */
/* SECTION */
.shop-section {
background-color: #f0d2b7;
  padding: 60px;
  overflow: hidden;

}

.Htxt h2{
  font-size: 58px;
  font-weight: 800;
  color: #520808;
  margin: 0;
} 
.Htxt p{
  font-size: 26px;
  color: #442929;
  margin-top: 9px;
} 



/* HORIZONTAL SCROLL */
.scards-strip {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 5%;
  scroll-behavior: smooth;
}

.scards-strip::-webkit-scrollbar {
  display: none;
}

/* CARD */
.scard {
  min-width: 280px;
  height: 380px;
  background: #3b3b3b;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* IMAGE (default state = contained) */
.scard img {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  width: 85%;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  z-index: 1;
}

/* HOVER IMAGE (pop out like your screenshot) */
.scard:hover img {
  transform: translateX(-50%) scale(1.15) translateY(-20px);
}

/* TEXT AREA WITH GRADIENT */
.card-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0)
  );
}

/* TEXT */
.card-text h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

/* OPTIONAL: subtle card hover lift */
.scard:hover {
  transform: translateY(-5px);
}

/*buttons*/
.ShopButton{
  display: flex;
  margin: auto 0;
}
.btn-link2 {
  font-weight: 300;
  font-size: 18px;
  margin: 0 auto;
  padding: 12px 28px;
  position: relative;
  display: inline-block;
  color: #442929;
  background-color: #ffffff76;
  border-radius: 20px 20px 0px 0px;
  text-decoration: none;
}

.btn-link2::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: #6e0303;
  transition: width 0.3s;
  bottom: 0;
  left: 0;
}

.btn-link2:hover::after {
  width: 100%;
}

/*secc*/

.topweb{
    height: 70px;
   /* From Uiverse.io by SomeTeaDude */ 
  position: relative;
  width: 100%;
  /* The SVG is also created by me */
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22ht%74p%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2284px%22%20height%3D%2254px%22%20viewBox%3D%22-10%20-10%2064%2034%22%3E%3Crect%20x%3D%2210%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2226%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2242%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2242%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2238%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2238%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2238%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2242%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2250%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2226%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2250%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E"),
    conic-gradient(
      #111 0.25turn,
      #333 0.25turn 0.5turn,
      #111 0.5turn 0.75turn,
      #111 0.75turn
    );
  background-color: #111;
  background-size:
    auto,
    4px 4px;
  background-repeat: repeat;
  animation: move404 4s linear infinite;
}

.topweb::after {
  --dark-purple: rgb(47, 0, 47);
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    -62.5deg,
    lime,
    green,
    green,
    green,
    green,
    lime,
    green,
    green,
    green,
    green,
    lime
  );
  mix-blend-mode: multiply;
  background-size: 400%;
  background-position: 10%;
  animation: move-light 5s infinite;
}

@keyframes move404 {
  from {
    background-position:
      0 0,
      0;
  }
  to {
    background-position:
      calc(84px * 4) calc(54px * 2),
      0;
  }
}
@keyframes move-light {
  0% {
    background-position: 10%;
  }
  50% {
    background-position: 90%;
  }
  100% {
    background-position: 90%;
  }
}




/*Why Section*/
.Ygrid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  grid-auto-rows: 300px;
  gap: 40px;
  align-items: center; /* Vertically centers content in each cell */
  max-width: 1200px;
  margin: 0 auto;
}

.Ygrid-container > div {
  height: 90%;
    overflow: hidden;
  border-radius: 20px; /* optional clean look */
}

.Ygrid-container img {
  width: 100%;             /* Makes the image half the size of the div */
  height: 100%;           /* Maintains original proportions */
  margin: 10px 0;         /* Adds a little space above/below the image */
  object-fit: cover;  
  display: block; 
}

.BKdiv1{
 position: relative; /* This keeps the floating image trapped inside this div */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns main text to the left like the image */
  text-align: left;
  padding-left: 100px;
  min-height: 300px; /* Gives the div enough height to breathe */
  justify-content: center;
  margin-right: 15px;

  /* To get that curved background look from the image */
  background: url('../images/Sections/whitesilk.svg') no-repeat center;
  background-size: auto;
  border-radius: 150px; /* High radius creates the pill/curved shape */
}


.BK-text-wrap h2{
    font-weight: 400;
}

.BK-text-wrap p{
    font-size: 22px;
    font-weight: 550;
    margin: auto 0;
}

.BKdiv2 {
  grid-row: span 2;
}

.BKdiv1:hover{
    transform: scale(.95);
    cursor: pointer;
}


/*div3*/
.BKdiv3 {
  position: relative;        /* Required to keep the image inside the box */
  width: 100%;
  min-height: 400px;         /* Adjust this to match your other divs */
  display: flex;             /* Centering the text on top */
  align-items: center;       /* Vertical center */
  justify-content: center;   /* Horizontal center */
  overflow: hidden;          /* Clips any image overflow */
  border-radius: 20px;       /* Optional: match your grid's aesthetic */
}

.BKdiv3 img {
  position: absolute;        /* Lifts image out of the flow */
  top: 0;
  left: 0;
  width: 110%;               /* Fills the container */
  height: 110%;              /* Fills the container */
  object-fit: cover;         /* Makes it act like a background-image (no stretching) */
  z-index: 1;                /* Puts it at the bottom layer */
  filter: brightness(50%); /* Dims the image slightly so text pops */
}

.BKdiv3 .BK-text-wrap {
  position: relative;        
  z-index: 2;                /* Puts it on the top layer */
  text-align: center;
  padding: 20px;
  color: #000000;            
  background-color: #cfa37951;/* Optional: dark overlay to make text readable */
  border-radius: 150px;
}
.BKdiv3 .BK-text-wrap p{
  position: relative;        
  z-index: 2;                /* Puts it on the top layer */
  text-align: center;
  padding: 20px;
  color: #000000;            
}
/*BK back*/
/* From Uiverse.io by satyamchaudharydev */ 
.BKdiv3 {
  border: none;
  color: #fff;
  z-index: 1;
  display: flex;
  background: #ffa8a800;
  position: relative;
  cursor: pointer;
}

.BKdiv3 p {
  margin: 0 auto;
  align-self: center;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.BKdiv3::after {
  position: absolute;
  content: "";
  width: 100%;
  z-index: -1;
  height: 10%;
  bottom: 0;
  clip-path: polygon(
    0% 74%,
    4% 75%,
    8% 76%,
    11% 77%,
    15% 78%,
    20% 78%,
    25% 77%,
    32% 77%,
    37% 75%,
    40% 74%,
    43% 74%,
    46% 73%,
    52% 72%,
    57% 72%,
    65% 74%,
    66% 75%,
    71% 78%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  background: #e3e3e3b7;
  transition: 0.2s ease;
}

.BKdiv3::before {
  position: absolute;
  content: "";
  /*   bottom: 80%; */
  transform: rotate(180deg);
  width: 100%;
  height: 10%;
  transition: 0.2s ease;
  /*   bottom:; */
  z-index: -1;
  clip-path: polygon(
    0% 74%,
    4% 75%,
    8% 76%,
    11% 77%,
    15% 78%,
    20% 78%,
    25% 77%,
    32% 77%,
    37% 75%,
    40% 74%,
    43% 74%,
    46% 73%,
    52% 72%,
    57% 72%,
    65% 74%,
    66% 75%,
    71% 78%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  background: #dea75ebf;
}

.BKdiv3:hover::after {
  clip-path: polygon(
    0 30%,
    9% 34%,
    7% 39%,
    11% 43%,
    13% 33%,
    17% 30%,
    24% 34%,
    25% 35%,
    30% 31%,
    30% 38%,
    39% 33%,
    35% 43%,
    43% 45%,
    55% 46%,
    65% 74%,
    67% 66%,
    81% 57%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  height: 100%;
}

.BKdiv3:hover::before {
  clip-path: polygon(
    0 30%,
    9% 34%,
    7% 39%,
    11% 43%,
    13% 33%,
    17% 30%,
    24% 34%,
    25% 35%,
    30% 31%,
    30% 38%,
    39% 33%,
    35% 43%,
    43% 45%,
    55% 46%,
    65% 74%,
    67% 66%,
    81% 57%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  height: 100%;
}


.greenCTA {
  position: relative;
  width: 100%;
  /* The SVG is also created by me */
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22ht%74p%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2284px%22%20height%3D%2254px%22%20viewBox%3D%22-10%20-10%2064%2034%22%3E%3Crect%20x%3D%2210%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2226%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2242%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2242%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2238%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2238%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2238%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2240%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2242%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2250%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2220%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2232%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2222%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2230%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2218%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2226%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2228%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2244%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2246%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2248%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2250%22%20y%3D%2220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E"),
    conic-gradient(
      #111 0.25turn,
      #333 0.25turn 0.5turn,
      #111 0.5turn 0.75turn,
      #111 0.75turn
    );
  background-color: #111;
  background-size:
    auto,
    4px 4px;
  background-repeat: repeat;
  animation: move404 4s linear infinite;
}

.greenCTA::after {
  --dark-purple: rgb(47, 0, 47);
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    -62.5deg,
    lime,
    green,
    green,
    green,
    green,
    lime,
    green,
    green,
    green,
    green,
    lime
  );
  mix-blend-mode: multiply;
  background-size: 400%;
  background-position: 10%;
  animation: move-light 5s infinite;
  pointer-events: none;
}






.BKdiv4 {
    grid-column: 1 / -1; 
    z-index: 3;
}

/* Force BKdiv5 to span across both columns */
.BKdiv5 {
  grid-column: 1 / -1; 
  text-align: center;
  padding: 60px 20px;
  /* To get that curved background look from the image */
  background: url('../images/Sections/whitesilk.svg') no-repeat center;
  background-size: auto;
  border-radius: 150px; /* High radius creates the pill/curved shape */
}



/* Basic styling for the Apply Now button */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  display: inline;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #3d3d3d;
  box-shadow: 0 0 0 2px #3d3d3d;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #00449c;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #880000;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #ebc9c9;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #06bd00;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #3d3d3d;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}




.BKdiv5 p,
.BKdiv5 h3,
.BKdiv5 h1{
    color: #520808;
}
.gren{
    color: #155113d0;
}

.BK-footer-content p{
    font-size: 20px;
}
.BK-footer-content h3{
    font-style: italic;
    
}
.BK-subtext {
    color: #6e0303;
}



/*Y grid media query*/
@media (max-width: 1024px) {
  .Ygrid-container {
    grid-template-columns: repeat(2, 1fr); /* keep 2 columns */
    grid-auto-rows: auto;
    gap: 15px; /* tighter spacing */
    padding: 0 15px;
    margin: 40px 0;
    height: 120%;
  }

  /* Remove big spans so layout stays compact */
  .BKdiv2 {
    grid-row: auto;
    grid-row: span 1;
  }

  .BKdiv4,
  .BKdiv5 {
    grid-column: span 2; /* keep these full width */
  }

  .Ygrid-container > div {
    min-height: 200px;
  }

  .BKdiv1 {
    padding: 5px 20px;
    border-radius: 60px;
    grid-column: 1 / -1;
    text-align: center;
    margin: auto;
  }

  .BKdiv3 {
    min-height: 260px;
  }

  .BKdiv5 {
    padding: 25px 25px;
    border-radius: 60px;
  }

  .BK-text-wrap h2 {
    font-size: 22px;
  }

  .BK-text-wrap p {
    font-size: 16px;
  }
}
