body{
    font-family:Poppins,sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* ================= NAVBAR ================= */
.main-header{
    /*background-image: url("../img/black-bg.jpg"); /* tomar image path 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    background-color: #000;

   padding-bottom: 100px;
}
.logo-img{
  width: 225px;
}
.navbar{
  padding:25px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*background: #000;*/
  z-index: 1000;
}

.glass-menu{
  background:#1a1a1a;
  /* background:#edab15ad; */
  backdrop-filter:blur(14px);
  border-radius:50px;
  padding:10px 40px;
  border: 1px solid #3d3d3d;
}

/* UL RESET */
.nav-list{
  list-style:none;
  display:flex;
  gap:35px;
  margin:0;
  padding:0;
}

.nav-list li{
  position:relative;
}

.nav-list a{
  color:#F5D27A;
  text-decoration:none;
  font-weight:500;
  font-size: 16px;
}

.nav-list a:hover{
  color:#d4a017;
}

/* ================= DROPDOWN ================= */

.custom-dropdown{
    position:absolute;
    top:140%;
    left:0;
    width: 335px;
    padding:18px;
    border-radius:28px;

    /* OUTER LIGHT BOX */
    background: linear-gradient(145deg,#2a2a2a,#1c1c1c);
    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 25px 60px rgba(0,0,0,.8),
        0 0 0 1px rgba(255,255,255,0.05) inset;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition: all .35s ease;

    z-index:999;
}

/* INNER DARK BOX */
.custom-dropdown ul{
    list-style:none;
    padding:15px;
    margin:0;

    background:#0b0b0b;
    border-radius:20px;

    border:1px solid rgba(255,255,255,.05);
}

.custom-dropdown li{
    border-bottom:1px solid rgba(255,255,255,.06);
}

.custom-dropdown li:last-child{
    border:none;
}

/* LIST STYLE */
.custom-dropdown a{
    display:block;
    padding:5px 14px;
    color:#9e9e9e;
    text-decoration:none;
    font-size:15px;
    transition: all .25s ease;
	
}

/* HOVER EFFECT */
.custom-dropdown a:hover{
    color:#fff;
    padding-left:20px;
}

/* SHOW CLASS */
.show-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Contact button */
.contact-btn{
	color: #000 !important;
    padding: 6px 30px;
    font-size: 17px;
    border-radius: 40px;
    font-weight: 400;
    text-decoration:none;

    /* gradient background */
/*     background: linear-gradient(
        145deg,
        #f5f5f5 0%,
        #dcdcdc 40%,
        #bfbfbf 100%
    ); */
	background: linear-gradient(155deg, #F5D27A, #FFD580);

    color:#000;

    border:1px solid rgba(255,255,255,0.4);

    box-shadow:
        0 4px 10px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.6);

    transition: all .3s ease;
}
.contact-btn:hover{
  color:#000 !important;
  text-decoration: none !important;
}
.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:2px;
    background:#fff;
}


/* HERO */

.hero-section {
    background-image: url("../img/bg-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /*position: fixed;
    top: 15px;
    left: 0;*/
    width: 100%;
    height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2%;

 z-index: 1;
 transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

/* Scroll effect */ 
.hero-section.scroll-effect, .second-section.scroll-effect { 
  transform: translateY(-80px) scale(0.95); 
  filter: blur(8px); 
  opacity: 0.7;
   }
/* REAL 3D PILL */
.hero-pill {
    display: inline-block;
    padding: 5px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 60px;
    color: #000;
    position: relative;

    /* 3D gradient surface */
    /* background: linear-gradient(
        145deg,
        #1a1a1a 0%,
        #0e0e0e 40%,
        #000000 100%
    ); */
    background: linear-gradient(135deg, #F2E5C4, #E8D3A3);

    border: 1px solid rgba(255,255,255,0.06);

    /* Multi-layer depth shadow */
    box-shadow:
        0 5px 10px rgba(80,80,80,0.4),
        0 15px 30px rgba(120,120,120,0.3),
        0 35px 60px rgba(150,150,150,0.15),
        inset 0 2px 4px rgba(255,255,255,0.05),
        inset 0 -4px 8px rgba(0,0,0,0.8);

    transform: translateY(0);
    transition: all 0.3s ease;
}




.hero-title {
    font-size: 4rem;
    font-weight: 400;
}

.typing {
    color: #aaa;
    border-right: 2px solid #aaa;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

/* Cursor Blink */
@keyframes blink {
    0% { border-color: #aaa; }
    50% { border-color: transparent; }
    100% { border-color: #aaa; }
}

  /* SECTION BACKGROUND */
.second-section {
    background-image: url("../img/safety-home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;

    margin-top: 5vh;
    z-index: 2;
    padding: 120px 0;
    margin-left: 15px;
    margin-right: 15px;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    box-shadow: 0 -40px 80px rgba(0,0,0,0.5);
}

/* TEXT STYLES */
.product-label{
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    color: #edab15;
}

.hero-title{
    font-size:64px;
    font-weight:600;
    margin-bottom:10px;
    color: #FFD580;
}

.hero-tagline{
    font-size:22px;
    font-weight:400;
    color:#fff;
    margin-bottom:25px;
}

.hero-description{
    font-size:16px;
    line-height:1.8;
    max-width:650px;
    color: #fff;
}

/* RIGHT SIDE IMAGE DESIGN */
.prisma-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* top 2 images */
.top-row {
    display: flex;
    gap: 20px;
}

/* bottom image center */
.bottom-row {
    display: flex;
    justify-content: center;
}

/* image style */
.prisma-right img {
    width: 100%;
    max-width: 250px;
    border-radius: 14px;
    transition: 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* hover */
.prisma-right img:hover {
    transform: translateY(-6px) scale(1.05);
}
/* ================= THIRD ================= */
/* 3rd Section (Overlay Section) */
   .third-section {
      background-image: url("https://uniseven.co/wp-content/uploads/2026/04/home-bg-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
  
    margin-top: 5vh;

    /*background: #fff;*/
    z-index: 2;
    padding: 120px 0;
margin-left: 15px;
margin-right: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    box-shadow: 0 -40px 80px rgba(0,0,0,0.5);
   
}
/* IMAGE LAYOUT */
.nexa-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nexa-gallery .top-row {
    display: flex;
    gap: 20px;
}

.nexa-gallery .bottom-row {
    display: flex;
    justify-content: center;
}

/* IMAGE STYLE */
.nexa-gallery img {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
    transition: 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* HOVER */
.nexa-gallery img:hover {
    transform: translateY(-6px) scale(1.05);
}

/* nova */
/* SECTION */
.hero-nova{
  height:100vh;
  background:url('https://uniseven.co/wp-content/uploads/2026/04/nova-bg.jpg') center/cover no-repeat;

  display:flex;
  align-items:center;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  position: relative;
  min-height: 100vh;
  margin-top: 5vh;
  z-index: 2;
  padding: 120px 0;

  margin-left: 15px;
  margin-right: 15px;

  box-shadow: 0 -40px 80px rgba(0,0,0,0.5);
}

/* TEXT */
.nova-title{
  font-size:50px;
  font-weight:500;
  color:#FFD580;
  margin-bottom:15px;
}

.nova-description{
  font-size:17px;
  line-height:1.7;
  color:#fff;
  max-width:550px;
}

/* IMAGE LAYOUT */
.nova-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* top row */
.nova-top {
    display: flex;
    gap: 20px;
}

/* bottom row */
.nova-bottom {
    display: flex;
    justify-content: center;
}

/* IMAGE STYLE */
.nova-gallery img {
    width: 100%;
    max-width: 270px;
    border-radius: 14px;
    transition: 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* hover */
.nova-gallery img:hover {
    transform: translateY(-6px) scale(1.05);
}

/* core */
.hero-core{
  height:100vh;
  background:url('https://uniseven.co/wp-content/uploads/2026/04/core-bg.jpg') center/cover no-repeat;

  display:flex;
  align-items:center;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  position: relative;
  min-height: 100vh;
  margin-top: 5vh;
  z-index: 2;
  padding: 120px 0;

  margin-left: 15px;
  margin-right: 15px;

  box-shadow: 0 -40px 80px rgba(0,0,0,0.5);
}

/* TEXT */
.core-title{
  font-size:50px;
  font-weight:500;
  color:#FFD580;
  margin-bottom:15px;
}

.core-description{
  font-size:17px;
  line-height:1.7;
  color:#fff;
  max-width:550px;
}

/* IMAGE LAYOUT */
.core-images {
    position: relative;
    height: 420px;
}

/* common */
.core-images img {
    position: absolute;
    max-width: 250px;
    border-radius: 12px;
    transition: 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

/* slight offset */
.core-img-top {
    top: 40px;
    left: 0;
    z-index: 2;
}

.core-img-bottom {
    bottom: 40px;
    right: 0;
    z-index: 1;
}

/* hover */
.core-images img:hover {
    transform: scale(1.06) translateY(-6px);
}

/* SECTION */
.hero-luxury{
  height:100vh;
  background:url('https://uniseven.co/wp-content/uploads/2026/04/bg-5.jpg') center/cover no-repeat;

  display:flex;
  align-items:center;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  position: relative;
  min-height: 100vh;
  margin-top: 5vh;
  z-index: 2;
  padding: 120px 0;

  margin-left: 15px;
  margin-right: 15px;

  box-shadow: 0 -40px 80px rgba(0,0,0,0.5);
}

/* TEXT */
.luxury-title{
  font-size:50px;
  font-weight:500;
  color:#FFD580;
  margin-bottom:15px;
}

.luxury-description{
  font-size:17px;
  line-height:1.7;
  color:#fff;
  max-width:550px;
}

/* IMAGE LAYOUT */
.luxury-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* top row */
.luxury-top {
    display: flex;
    gap: 20px;
}

/* bottom row */
.luxury-bottom {
    display: flex;
    justify-content: center;
}

/* IMAGE STYLE */
.luxury-gallery img {
    width: 100%;
    max-width: 270px;
    border-radius: 14px;
    transition: 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

/* hover */
.luxury-gallery img:hover {
    transform: translateY(-6px) scale(1.05);
}



.hero-aura{
  height:100vh;
  background:url('https://uniseven.co/wp-content/uploads/2026/04/aura-bg-2.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
   border-top-left-radius: 10px;
    border-top-right-radius: 10px;
position: relative;
    min-height: 100vh;
    margin-top: 5vh;
    /*background: #fff;*/
    z-index: 2;
    padding: 120px 0;
margin-left: 15px;
margin-right: 15px;
    box-shadow: 0 -40px 80px rgba(0,0,0,0.5);
}

/* TEXT STYLING */
.aura-title{
  font-size:50px;
  font-weight:500;
  color:#FFD580;
  margin-bottom:15px;
}

.aura-tagline{
  font-size:20px;
  font-weight:500;
  color:#fff;
  margin-bottom:25px;
}

.aura-description{
  font-size:17px;
  line-height:1.7;
  color:#fff;
  max-width:550px;
}
/* IMAGE SECTION */
.aura-images {
    position: relative;
    height: 420px;
}

/* common */
.aura-images img {
    position: absolute;
    max-width: 260px;
    border-radius: 12px;
    transition: 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

/* top image */
.img-top {
    top: -30px;
    right: -60px;
    z-index: 2;
}

/* bottom image */
.img-bottom {
    bottom: 0;
    left: 40px;
    z-index: 1;
}

/* hover */
.aura-images img:hover {
    transform: scale(1.06) translateY(-6px);
}

.smart-solutions-section {
  /* background: radial-gradient(circle at top right, #1b2c45, #000); */
      background: radial-gradient(circle at center, #F6F1E9 0%, #E8D8B0 60%, #C9A24A 100%);
  padding: 100px 0;
  color: #fff;
  margin: 20px;
}

/* LEFT IMAGE */
.tech-left-image {
  position: relative;
  height: 618px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 50px;
}

/* Background Image */
.tech-left-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/left-image.jpeg") center/cover no-repeat;
  filter: blur(2px);
  transform: scale(1.1);
  z-index: 1;
}

/* Dark Overlay */
.tech-left-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.tech-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 450px;
}

.tech-title {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #e3a20e;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 28px;
  position: relative;
}

/* Custom Check Icon */
.tech-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f2c45e;
  font-weight: bold;
}

/* GLASS PANEL */
.glass-panel {
/*   backdrop-filter: blur(25px);
  background: linear-gradient(135deg, rgba(30,45,70,0.7), rgba(0,0,0,0.6)); */
background: rgba(43, 43, 43, 0.75);
backdrop-filter: blur(10px);
color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}


/* ACCORDION */
.faq-item {
      border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5px;
    padding: 5px 10px;
}


.faq-item .faq-header {
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
}

.faq-header:hover {
  color: #ccc;
}

.faq-body {
  padding-bottom: 20px;
/*   color: #aaa; */
	color: #dcd8d8;
	font-size: 15px;
}

/* PLUS MINUS ICON */
.faq-header .icon {
  font-size: 22px;
  transition: 0.3s;
}
.split-section {
  height: 80vh;
  overflow: hidden;
}

.split-wrapper {
  display: flex;
  height: 100%;
}

/* Base */
.split {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 12px;
  border-radius: 14px;
}

/* Background demo */
.left { background: url("https://uniseven.co/wp-content/uploads/2026/04/smart-lock-p.jpg") center/cover no-repeat; }
.right { background: url("../img/smart-light.jpg") center/cover no-repeat;  }

/* DEFAULT 70 / 30 */
.active-left .left {
  flex: 7;
}
.active-left .right {
  flex: 3;
}

.active-right .left {
  flex: 3;
}
.active-right .right {
  flex: 7;
}

/* Typography */
/*.product-name {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  /*opacity: 0.7;*
  margin-bottom: 15px;
  color: #fff;
}*/

.tagline {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 25px;
	color: #FAE7B5;
}

/*.description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  /*opacity: 0.9;*
  color: #fff;
}*/
.about-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("../img/indoor-p.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

/* Content wrapper */
.about-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

/* Top badge */
.badge-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
/*   background: rgba(255,255,255,0.1); */
	background: #E6C065;
	color: #000;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  margin-bottom: 25px;
}

/* Heading */
.about-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Paragraph */
.about-content p {
  font-size: 18px;
  line-height: 1.8;
  /*opacity: 0.9;*/
  margin-bottom: 30px;
  color: #fff;
}

/* Button */
.hero-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
	background: linear-gradient(135deg, #F5D27A, #FFD580);
}
.hogar-slider-section {
  padding: 2px 0;
  background: #0f0f0f;
}

.hogar-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.hogar-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.6s ease;
}

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

.card-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
}

.card-overlay h3 {
  font-size: 26px;
  font-weight: 600;
}
.card-overlay h3 a{
/*   color: #fff; */
	color: #d4a017;
}

.card-overlay h3 a:hover{
  color: #fff;
}

/* Dark gradient overlay */
.hogar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.counter-section {
  background: #000;
  color: #fff;
}

.counter-box h2 {
  font-size: 60px;
  font-weight: 500;
	color: #d4a017;
}

.counter-box p {
  font-size: 16px;
/*   color: #ccc; */
	color: #d4a017;
  margin-top: 10px;
}

 .news-block .image-box .overlay-box{
/*   background-color: #ff9900 !important; */
	 background-color: #F5D27A !important;
 }
 .main-footer .footer-bottom .inner-container:before, .main-footer .footer-bottom .copyright-text{
  background-color: #fff !important;
 }
.main-footer .footer-bottom .copyright-text:before{
      border-bottom-color: #fff !important;
 }

    

/* ================= MOBILE DESIGN ================= */

@media(max-width:992px){

    .navbar{
        background:#000;
        padding:20px;
        position:relative;
        z-index:1000;
    }

    /* hide desktop contact button */
    .contact-btn{
        display:none;
    }

    /* hamburger show */
    .hamburger{
        display:flex;
        flex-direction:column;
        gap:6px;
        cursor:pointer;
    }

    .hamburger span{
        width:25px;
        height:2px;
        background:#fff;
        transition:.3s;
    }

    /* FULLSCREEN MENU */
    .glass-menu{
        position:fixed;
        top:0;
        left:-100%;
        width:100%;
        height:100vh;
        background:#000;
        padding:120px 30px 40px;
        border-radius:0;
        display:flex;
        justify-content:flex-start;
        align-items:flex-start;
        transition:.4s ease;
    }

    .glass-menu.active{
        left:0;
    }

    /* vertical menu */
    .nav-list{
        flex-direction:column;
        gap:25px;
        width:100%;
    }

    .nav-list a{
        font-size:18px;
        color:#fff;
    }

    /* Submenu mobile style */
    .custom-dropdown{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        margin-top:20px;
        padding-left:20px;
        border-left:1px solid #333;
        background:none;
        box-shadow:none;
        border:none;
    }

    .custom-dropdown ul{
        background:none;
        padding:0;
    }

    .custom-dropdown a{
        font-size:16px;
        color:#ccc;
        padding:10px 0;
    }

    .custom-dropdown a:hover{
        color:#fff;
        padding-left:5px;
    }

    .custom-dropdown.show-menu{
        display:block;
    }
   /*  .aura-title{
    font-size:48px;
  }*/
.hero-section {
    margin-top: -75px;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("your-background.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

/* Content wrapper */
.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

/* Top badge */
.badge-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  margin-bottom: 25px;
}

/* Heading */
.hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Paragraph */
.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
}
.hogar-card img {
    height: 280px;
  }
}
/* responsive */
@media (max-width: 992px) {

    .top-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .prisma-right img {
        max-width: 130px;
    }
	  .nexa-gallery .top-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nexa-gallery img {
        max-width: 130px;
    }
	
	.nova-title{
        font-size:36px;
    }

    .nova-top {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nova-gallery img {
        max-width: 130px;
    }

    .nova-gallery {
        margin-top: 40px;
    }

    .nexa-gallery {
        margin-top: 40px;
    }
	  .aura-title{
        font-size:36px;
    }

    .aura-images {
        height: auto;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .aura-images img {
        position: static;
        max-width: 150px;
    }
	  .core-title{
        font-size:36px;
    }

    .core-images {
        height: auto;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .core-images img {
        position: static;
        max-width: 150px;
    }
	
	 .luxury-title{
        font-size:36px;
    }

    .luxury-top {
        justify-content: center;
        flex-wrap: wrap;
    }

    .luxury-gallery img {
        max-width: 130px;
    }

    .luxury-gallery {
        margin-top: 40px;
    }
}
/* Responsive */
@media (max-width: 768px) {
  .glass-menu{
        z-index: -1;
  }
  .hero-section {
    top: 19%;
  }
   .hero-section h1{
        font-size: 32px;
      }
       .hero-section.shrink{
     transform: scale(0.95);
     filter: blur(4px);
  }

  .second-section{
     border-top-left-radius: 25px;
     border-top-right-radius: 25px;
  }
	
    .top-row {
        flex-direction: column;
        align-items: center;
    }

    .prisma-right img {
        max-width: 150px;
    }
    .hero-pill {
        padding: 12px 28px;
        font-size: 12px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
	  .nexa-gallery .top-row {
        flex-direction: column;
        align-items: center;
    }

    .nexa-gallery img {
        max-width: 150px;
    }
	
	  .nova-top {
        flex-direction: column;
        align-items: center;
    }

    .nova-gallery img {
        max-width: 150px;
    }
	
    .hero-aura{
    text-align:center;
    padding:40px 0;
  }

  .aura-title{
    font-size:36px;
  }

  .aura-tagline{
    font-size:18px;
  }

  .aura-description{
    font-size:15px;
    margin:0 auto;
  }
 .split-wrapper {
    flex-direction: column;
  }

  .split {
    flex: unset !important;
    height: 50vh;
  }
  .tagline {
    font-size: 26px;
  }
	 .core-title{
        font-size:28px;
    }

    .core-description{
        font-size:15px;
    }
	
	 .luxury-top {
        flex-direction: column;
        align-items: center;
    }

    .luxury-gallery img {
        max-width: 150px;
    }
}

