/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');
:root {
    --primary: #0f427d;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.about-heading{
    font-family: "Nunito",sans-serif !important;
    font-size: 52px !important;
    font-weight: 900;
}

.carousel-item video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
*{
    margin: 0;
    padding: 0;
      font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-style: normal;
  
}
p{
    color: #070505!important;
}
.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    backdrop-filter: blur(6px); /* Elite glass effect */
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}


.call{
margin-left: 30px;
}

.email{
margin-left: 30px;
}


.elite-spinner {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.7);

    animation: pulseScale 1.4s infinite ease-in-out;
}

.elite-spinner i {
    font-size: 2.3rem;
    color: #0f427d;
}

@keyframes pulseScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
    .elite-spinner {
        width: 55px;
        height: 55px;
    }
    .elite-spinner i {
        font-size: 1.9rem;
    }
    .about-section{
    height: 526px !important;
}
.about-heading{
  font-size: 45px !important;
}
}

@media (max-width: 480px) {
    .elite-spinner {
        width: 45px;
        height: 45px;
    }
    .elite-spinner i {
        font-size: 1.6rem;
    }
}


.about-section{
    height: 650px;
}
/* search bar */
.example {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 15px auto;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  border: 1.5px solid #ccc;
}

.example input[type="text"] {
  flex: 1;
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  outline: none;
}

.example button {
  background: #0f427d;
  border: none;
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.example button:hover {
  background: #0f427d;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px; 
    text-decoration: none;
}

.navbar-brand img {
    height: 84px; 
    width: auto;
    object-fit: contain;
}

.navbar-brand h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: #0f427d; /* Matches text-primary */
    line-height: 1;
    letter-spacing: 0.5px;
}

.about-para{
    font-family: "Nunito",sans-serif !important;

}

.about-button{
    border-radius: 50px;
}

.about-cont{
    margin-top: 30px;
}

.about-para strong{
    font-family: "Nunito",sans-serif !important;
    /* font-size: 17px; */

}

.navbar-light .navbar-nav .nav-link {
     /* font-family: "Arvo", serif; */
    font-family: "Nunito",sans-serif !important;

  font-style: normal;
    position: relative;
    margin-right: 33px;
    padding: 35px 0;
    color: #070505 !important;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #0f427d !important;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        width: 100%;
        top: 0%;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
    .about-container{
      height: 409px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
  
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 23px;
        left: 50%;
        background: #0f427d;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .1), rgba(20, 20, 31, .1)), url(../img/about-banner.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/*** Hero Header ***/
.bathroom-banner {
    background: linear-gradient(rgba(20, 20, 31, .1), rgba(20, 20, 31, .1)), url(../img/about-banner.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* drainer-banner */
/*** Hero Header ***/
.drainer-banner {
    background: linear-gradient(rgba(20, 20, 31, .1), rgba(20, 20, 31, .1)), url(../img/drainer-banner.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}
.shawer-banner{
  background: linear-gradient(rgba(20, 20, 31, .1), rgba(20, 20, 31, .1)), url(../img/shower-img-banner.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.faucets-banner{
    background: linear-gradient(rgba(20, 20, 31, .1), rgba(20, 20, 31, .1)), url('https://wgassets.duravit.cloud/photomanager-duravit/file/8a8a818d7f754d39017f8d48b7085374/zencha_2.jpg?derivate=width~1920');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}
/* https://www.shutterstock.com/image-illustration/3d-render-modern-design-rain-260nw-2140664501.jpg */

/*** Section Title ***/
.about-heading{
    /* width: ; */
    font-size: 45px;
    line-height: 55px;
}

.about-container{
  height: 550px;
  width: 550px;
}

.about-content p{
    font-size: 17.5px;
}
.about-content p strong{
    font-size: 18.2px;
}
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    /* font-family: "Bungee Spice", sans-serif; */
  font-weight: 800 !important;
  font-style: normal;
  color: var(--primary) ;
  font-size: 30px;
}
.bathroom-acc{
    font-size: 30px;
}
.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.01);
}


/*** Package ***/
.package-item {
    height: 650px;
   box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.05);
}

@media (max-width:991px) {

  .package-item{
    height: 610px;
  }
}


/* why choose */

/* Why Choose Us - Custom Classes */

.nyle-why-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 20px;
  align-items: center;
  margin: 0 auto;
}

.nyle-why-image img {
  width: 100%;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: nyleFadeUp 1s ease forwards;
}

@keyframes nyleFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.nyle-why-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #004aad;
  opacity: 0;
  animation: nyleFadeIn 1s .3s forwards;
}

@keyframes nyleFadeIn {
  to { opacity: 1; }
}

.nyle-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nyle-why-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px !important;
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateX(-20px);
  animation: nyleSlideIn .7s ease forwards;
}

.nyle-why-list li:nth-child(1) { animation-delay: .3s; }
.nyle-why-list li:nth-child(2) { animation-delay: .45s; }
.nyle-why-list li:nth-child(3) { animation-delay: .6s; }
.nyle-why-list li:nth-child(4) { animation-delay: .75s; }

@keyframes nyleSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.nyle-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nyle-why-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .nyle-why-content h2 {
    font-size: 30px;
  }

  .nyle-why-list li {
    font-size: 16px;
  }
  .drainer-banner{
    height: 260px;
  }
  .shawer-banner{
    height: 387px;
  }
  .faucets-banner{
    height: 367px;
  }
}

@media (max-width: 768px) {
  .nyle-why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .nyle-why-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .nyle-why-list li {
    font-size: 16px;
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .nyle-why-content h2 {
    font-size: 24px;
  }

  .nyle-why-list li {
    font-size: 14px;
    padding: 12px 15px;
  }

  .nyle-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}


/*  */

 /* Certificate Grid */
.cert-wall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.certi-head{
    font-size: 35px;
}

/* Certificate Card */
.cert-card {
  width: 480px;
  height: 680px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  transition: 0.35s ease;
}

/* Certificate Image */
.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.cert-card:hover {
  border-color: #0B427F;
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(11,66,127,0.25);
}

/* Fade Up Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Tablet */
@media (max-width: 992px) {
  .cert-card {
    width: 100%;
    height: 460px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cert-wall-grid {
    grid-template-columns: 1fr;
  }

  .cert-card {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}


/* faq */
.faq-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.accordion-button {
    font-size: 17px;
    font-weight: 600;
}

.accordion-body {
    font-size: 15px;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-img {
        margin-bottom: 20px;
    }
    .accordion-button {
        font-size: 16px;
    }
    .section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Bungee Spice", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #1375e5 !important;
    font-size: 15px;
}
}
/* ========================= FOOTER WRAPPER ========================= */
/* ========================= FOOTER WRAPPER ========================= */
.footer {
    position: relative;
    /* background: url("../images/footer.jpg") center/cover no-repeat; */
    background-color: #737577;
    color: #ffffff !important;
    overflow: hidden;
     font-family: "Nunito",sans-serif;
}

/* Glassmorphic overlay */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(45, 45, 45, 0.45);
    z-index: 1;
}

/* Ensure content stays above overlay */
.footer > .container,
.footer-policies,
.footer-copyright {
    position: relative;
    z-index: 5;
    color: #ffffff;
}

/* ========================= HEADING STYLE ========================= */
.footer h4 {
    font-size: 22px;
    font-weight:bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: headingFadeIn 1.2s ease forwards;
    color: #ffffff !important; /* BLUE HEADING */
}

@keyframes headingFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Underline animation */
.footer h4::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 3px;
    background: #0f427d;
    width: 0%;
    border-radius: 10px;
    animation: underlineGrow 1.6s ease forwards;
}

@keyframes underlineGrow {
    0% { width: 0%; }
    100% { width: 45%; }
}

/* ========================= LINKS ========================= */
.footer .btn-link {
    display: block;
    color: #ffffff;
    padding: 4px 0;
    text-decoration: none;
    transition: 0.4s;
}

.footer .btn-link:hover {
    color: #0f427d;
    transform: translateX(6px);
}

/* ========================= SOCIAL ICONS ========================= */
.btn-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: 0.5s;
}

.btn-social:hover {
    background: #0f427d;
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 0 12px #0f427d;
}

/* ========================= MAP ========================= */
.footer iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 0;
}

/* ========================= POLICIES ========================= */
.footer-policies {
    border-top: 1px solid rgba(255,255,255,0.25);
     border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 22px 0;
    text-align: center;
    margin-top: 25px;
}

.footer-policies a {
    color: #ffffff;
    margin: 0 14px;
    text-decoration: none;
    transition: 0.3s;
}

ul li{
    color: #070505;
}
.footer-policies a:hover {
    color: #0f427d;
    text-shadow: 0 0 8px #0f427d;
}

/* ========================= COPYRIGHT FULL WIDTH ========================= */
.footer-copyright {
    background: #070707; /* BLUE BACKGROUND */
    padding: 12px 0;
    color: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 768px) {
    .footer { text-align: center; }
    .btn-social { margin: 6px; }
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section{
        text-align: justify;
    }
}


/* abouts us our core value */

/* Google Font */


/* video section */
/* Section */
.collage-section {
  padding: 80px 6vw;
  background: #ffffff;
}

/* Container */
.collage-container {
  max-width: 1300px;
  margin: auto;
}

/* Title */
.collage-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0F4282;
}

/* Masonry Grid */
.collage-grid {
  columns: 4;
  column-gap: 20px;
}

/* Each item box */
.c-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: .4s;
  border: 1px solid #d9d9d9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  background: #fff;
}

/* Video styling */
.c-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 9/16; /* Perfect for portrait videos */
}

/* Hover effect */
.c-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* Responsive */
@media(max-width:1000px){
  .collage-grid { columns: 3; }
}

@media(max-width:700px){
  .collage-grid { columns: 2; }
  .collage-title{ font-size: 30px; }
}

@media(max-width:480px){
  .collage-grid { columns: 1; }
  .collage-title{ font-size: 26px; }
}


/* our core  */
/* SECTION */
.core-values.bold-theme {
  background: #134d91;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  border-radius: 50px;
}

/* CONTAINER */
.bold-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.bold-heading h2 {
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(40px);
  animation: titleUp 1s ease forwards;
}

/* GRID */
.bold-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 35px;
}

/* CARD */
.bold-card {
  background: #fff;
  color: #0F427D;
  padding: 38px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0px 16px 45px rgba(0,0,0,0.22);
  transform-style: preserve-3d;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.45s ease;
  animation: cardIn 1s ease forwards;
}

/* Different entry directions */
.bold-card.from-left    { animation: cardLeft 1s ease forwards; }
.bold-card.from-right   { animation: cardRight 1s ease forwards; }
.bold-card.from-top     { animation: cardTop 1s ease forwards; }
.bold-card.from-bottom  { animation: cardBottom 1s ease forwards; }

/* Hover */
.bold-card:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0px 25px 65px rgba(255,255,255,0.2);
}

/* ICON */
.bold-icon {
  font-size: 45px;
  margin-bottom: 14px;
  color: #0F427D;
}

/* TEXT */
.bold-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.bold-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  font-family: "Nunito",sans-serif ;
}

/* ANIMATIONS */

@keyframes titleUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes cardLeft {
  0% { opacity: 0; transform: translateX(-80px) rotateX(10deg); }
  100% { opacity: 1; transform: translateX(0) rotateX(0deg); }
}

@keyframes cardRight {
  0% { opacity: 0; transform: translateX(80px) rotateX(10deg); }
  100% { opacity: 1; transform: translateX(0) rotateX(0deg); }
}

@keyframes cardBottom {
  0% { opacity: 0; transform: translateY(100px) rotateX(10deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes cardTop {
  0% { opacity: 0; transform: translateY(-100px) rotateX(10deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bold-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .bold-heading h2 {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  .bold-grid {
    grid-template-columns: 1fr;
  }
  .bold-heading h2 {
    font-size: 32px;
  }
}

/*  */
/* mission & vission */

.mv-premium {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #e9f1ff, #eef4ff);
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* MAIN CONTAINER */
.mv-wrapper {
  width: min(1150px, 92%);
  margin: auto;
  position: relative;
}

/* FLOATING SHAPES */
.mv-shape {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(15,66,125,0.2);
  border-radius: 40px;
  filter: blur(60px);
  animation: floaty 9s infinite ease-in-out alternate;
}

.mv-shape.s1 { top: -60px; left: -70px; }
.mv-shape.s2 { bottom: -70px; right: -60px; }
.mv-shape.s3 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); }

@keyframes floaty {
  0% { transform: translateY(0) translateX(0) rotate(0); }
  100% { transform: translateY(-40px) translateX(20px) rotate(6deg); }
}

/* GLASS CARD */
.mv-card {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(22px);
  border-radius: 28px;
  padding: 40px 70px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  gap: 55px;
  position: relative;
  z-index: 2;
}

/* COLUMNS */
.mv-block {
  width: 50%;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

/* When in viewport */
.mv-block.show {
  opacity: 1;
  transform: translateY(0);
}

.mv-block h2 {
  font-size: 35px;
  font-weight: 800;
  color: #0F427D;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mv-block ul {
  padding-left: 18px;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
  display: grid;
  gap: 8px;

}

.mv-block ul li{
   font-family: "Nunito",sans-serif

}

/* CENTER DIVIDER */
.mv-divider {
  width: 2px;
  background: linear-gradient(180deg, transparent, #0F427D, transparent);
  animation: glowline 3s infinite ease-in-out alternate;
}

@keyframes glowline {
  0% { box-shadow: 0 0 0px #0F427D; }
  100% { box-shadow: 0 0 15px #0F427D; }
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mv-card {
    flex-direction: column;
    padding: 40px;
  }

  .mv-block {
    width: 100%;
  }

  .mv-divider {
    display: none;
  }
}


/*  */
/* ============================
   MAIN WRAPPER
============================ */
.nyle-layout-wrapper {
  width: 100%;
  padding: 20px 0;
  background: #f4f6fe;
  font-family: "Poppins", sans-serif;
}

/* ============================
   FEATURE BLOCK
============================ */
.nyle-feature-block {
  width: min(1100px, 92%);
  margin: 55px auto;
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 45px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,0.10);
  opacity: 0;
  transform: translateY(90px);
  transition: 0.8s ease;
}

/* reverse layout */
.nyle-block-reverse {
  flex-direction: row-reverse;
}

/* ============================
   IMAGE
============================ */
.nyle-feature-image img {
  width: 380px;
  height: 380px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: 0.35s;
}
.nyle-feature-image img:hover {
  transform: scale(1.04);
}

/* ============================
   TEXT
============================ */
.nyle-feature-text h2 {
  font-size: 37px;
  text-transform: uppercase;
  font-weight: 800;
  color: #063a7e;
  margin-bottom: 15px;
}
.nyle-feature-text p {
  line-height: 1.7;
  font-size: 19px;
  width: 88%;
  color: #333;
   font-family: "Nunito",sans-serif
}

/* ============================
   ENTRY ANIMATIONS
============================ */
.nyle-enter-left {
  transform: translateX(-120px);
}
.nyle-enter-right {
  transform: translateX(120px);
}
.nyle-animate-active {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   RESPONSIVE
============================ */
@media(max-width: 900px) {
  .nyle-feature-block,
  .nyle-block-reverse {
    flex-direction: column;
    padding: 30px;
  }
  .nyle-feature-image img {
    width: 100%;
    height: 300px;
  }
}


/* why choose */
.why-nyle-royal {
  padding: 100px 0;
  background: linear-gradient(120deg, #ffffff, #e7f1ff, #ffffff);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.why-nyle-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: min(1200px, 95%);
  margin: auto;
  gap: 50px;
  position: relative;
}

/* LEFT – Content Glass Panel */
.why-nyle-content {
  flex: 1;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 50px 45px;
  border: 1px solid rgba(0,47,111,0.08);
  box-shadow: 0 18px 40px rgba(39,96,231,0.12);
  transform: translateX(-80px);
  opacity: 0;
  transition: 0.7s ease;
}

.why-nyle-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #08306b;
  margin-bottom: 30px;
}

.why-nyle-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-nyle-content ul li {
  margin-bottom: 26px;
  padding-left: 45px;
  position: relative;
  opacity: 0;
  transform: translateX(-45px);
  transition: 0.6s ease;
}

/* Bullet Circle */
.why-nyle-content ul li::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 0;
  top: 8px;
  background: #0f427d;
  border-radius: 50%;
}

/* Text styling */
.why-nyle-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #08306b;
  margin-bottom: 3px;
}

.why-nyle-content p {
  font-size: 14px;
  color: #33527c;
  line-height: 1.6;
}

/* RIGHT – Animated Shapes */
.why-nyle-graphics {
  flex: 1;
  position: relative;
  min-height: 500px;
  opacity: 0;
  transform: translateX(80px);
  transition: 0.8s ease;
}

/* Floating shapes */
.shape-1,
.shape-2,
.shape-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
  animation: float 8s infinite ease-in-out;
}

.shape-1 {
  width: 220px;
  height: 220px;
  background: #0f427d;
  right: 60px;
  top: 40px;
  animation-delay: 0s;
}

.shape-2 {
  width: 130px;
  height: 130px;
  background: #72afff;
  right: 180px;
  bottom: 50px;
  animation-delay: 1.5s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: #aacbff;
  left: 50px;
  top: 210px;
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0px); }
}

/* Reveal class on scroll */
.why-show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Responsive */
@media(max-width: 900px) {
  .why-nyle-inner {
    flex-direction: column-reverse;
  }
  .why-nyle-graphics {
    min-height: 300px;
  }
}


/* bathroroom */
.bathroom-para{
  font-size: 19px;
}


/* key featured */


.features-section {
  padding: 110px 20px;
  background: linear-gradient(135deg, #e7efff, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.features-title {
  font-size: 36px;
  text-align: center;
  font-weight: 800;
  color: #133b74;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeDown 1.2s ease forwards;
}

@keyframes fadeDown {
  0%   { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* GRID */
.features-container {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  z-index: 2;
}

/* CARD */
.feature-box {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 25px 20px;
  color: #1b2c48;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-left: 6px solid #0f427d;
  box-shadow: 0 15px 40px rgba(15,66,125,0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  animation: fadeCard 1s ease forwards;
  transition: .4s;
}

/* CARD ANIMATION */
@keyframes fadeCard {
  0%   { opacity: 0; transform: translateY(40px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* STAGGER ANIMATION */
.feature-box:nth-child(1) { animation-delay: .2s; }
.feature-box:nth-child(2) { animation-delay: .4s; }
.feature-box:nth-child(3) { animation-delay: .6s; }
.feature-box:nth-child(4) { animation-delay: .8s; }
.feature-box:nth-child(5) { animation-delay: 1s; }
.feature-box:nth-child(6) { animation-delay: 1.2s; }

/* HOVER */
.feature-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(15,66,125,.25);
}

/* ANIMATED LIGHT GRADIENT BACKGROUND */
.features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #7eb3ff, transparent);
  border-radius: 50%;
  filter: blur(100px);
  animation: floatBG 8s infinite alternate ease-in-out;
  opacity: .35;
}

.features-section::before {
  top: -120px;
  left: -80px;
}

.features-section::after {
  bottom: -140px;
  right: -90px;
  animation-delay: 3s;
}

.row-card p{
  font-family:"Nunito",sans-serif ;
}

@keyframes floatBG {
  0%   { transform: translate(0,0); }
  100% { transform: translate(30px,20px); }
}

/* RESPONSIVE */
@media(max-width: 550px){
  .features-title {
    font-size: 26px;
  }

  .feature-box {
    font-size: 14px;
    padding: 20px;
  }
}


/*  */


/* why choose */
/* Section Container */
.why-row-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg,#eef5ff,#ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  font-family: "Nunito", sans-serif;
}

/* Background blobs */
.bg-blob {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: floaty 12s ease-in-out infinite alternate;
  z-index: 0;
}
.blob1 { background:#0f427d; top:-100px; left:-100px; }
.blob2 { background:#7cb0ff; bottom:-100px; right:-100px; animation-delay:4s; }

@keyframes floaty{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(25px); }
  100%{ transform: translateY(0); }
}

/* Section Title */
.row-section-title {
  position: relative;
  z-index:2;
  font-size:36px;
  font-weight:800;
  color:#0f427d;
  text-align:center;
  margin-bottom:50px;
  animation: fadeDown 1s ease forwards;
}
@keyframes fadeDown {
  0%{opacity:0; transform:translateY(-30px);}
  100%{opacity:1; transform:translateY(0);}
}

/* Cards Wrapper */
.row-cards-wrapper {
  display: flex;
  justify-content: space-between;
  gap:20px;
  width:100%;
  max-width:1200px;
  z-index:2;
  position: relative;
}

/* Individual Card */
.row-card {
  flex:1;
  background: rgba(255,255,255,0.85);
  border-radius:18px;
  padding:30px 20px;
  text-align:center;
  box-shadow:0 20px 50px rgba(15,66,125,0.18);
  backdrop-filter: blur(12px);
  display:flex;
  flex-direction: column;
  align-items: center;
  gap:15px;
  opacity:0;
  transform: translateY(40px) scale(0.95);
  animation: cardFade 1.2s ease forwards;
}

/* Hover Effect */
.row-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:0 35px 70px rgba(15,66,125,0.25);
  transition: all 0.4s ease;
}

/* Card Icons */
.card-icon {
  font-size:50px;
  color:#0f427d;
}

/* Staggered Card Animation */
.row-card:nth-child(1){ animation-delay:0.1s;}
.row-card:nth-child(2){ animation-delay:0.3s;}
.row-card:nth-child(3){ animation-delay:0.5s;}
.row-card:nth-child(4){ animation-delay:0.7s;}
.row-card:nth-child(5){ animation-delay:0.9s;}

@keyframes cardFade{
  0%{opacity:0; transform: translateY(40px) scale(0.95);}
  100%{opacity:1; transform: translateY(0) scale(1);}
}

/* Responsive Design */
@media(max-width:1024px){
  .row-cards-wrapper{
    flex-wrap: wrap;
    justify-content: center;
  }
  .row-card{
    flex:0 0 45%;
    margin-bottom:20px;
  }
}

@media(max-width:600px){
  .row-card{
    flex:0 0 90%;
  }
}



