﻿/* RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 110px;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
/* HEADER */
.header {
    height: 110px;
    background: #143e6e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
     padding-right: 22px; 
      position: fixed;
    top: 0;
    left: 0;
    width: 100%;
 
}

/* ===== LEFT CURVE EXACT ===== */
.logo-shape {

      width: 320px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px;
        border: 1px solid #143e6e;
    /* MAGIC CURVE */
      border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
}

/* LOGO */
.logo-shape img {
       width: 220px;
    height: 100px;
}

/* NAV */
.nav {
    display: flex;
    gap: 30px;
    margin-right: 40px;
     margin-right: 20px; 
    align-items: center;
}
.register-btn {
    background: linear-gradient(135deg, #143e6e, #2f6fb3);
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
   font-size:18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
     margin-left: 25px;
       text-decoration: none;
}

.register-btn:hover {
    background: #1f4f88;
    color:#fff;
}

.nav a {
    text-decoration: none;
    color: #fff;
font-size: 20px;
    position: relative;
}


/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    margin-right: 20px;
    cursor: pointer;
}
   .forgetpasslink {
         display: none;
}
  

/* RESPONSIVE */
@media(max-width:768px){
    .highlight {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}
    .logo-shape {
     width: 82%;
    height: 100%;
   
}
    .nav {
      margin-right: 0px;
        right:100%;            /* hidden state */
              position: fixed;
        top: 0;
        right: 100%;
        width: 100%;
        height: 70vh;
        background: #fff;
        flex-direction: column;
        padding: 57px 0px 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: 0.4s ease;
        z-index: 9999;          
    }

    .nav.active {
        right: 0;                
    }

    .nav a {
        padding: 12px 0;
        color: #1b3f6b;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        z-index: 10000;
        position: relative;
    }


/* REGISTER HIDE */
.register-btn {
    display: none;
}
}

/* HERO BACKGROUND */
.hero {
    position: relative;
    height: 700px;
    background: url('/Content/client-UI/OneWorldBeds/images/b1.jpg') center/cover no-repeat;

    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    color: white;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
   width: 100%;
    height:350px;
   background: 
        linear-gradient(rgba(20,62,110,0.7), rgba(20,62,110,0.7)),
        url('/images/hero.jpg') center/cover no-repeat;
    top: 0;
    left: 0;
}

/* LEFT CONTENT */
.hero-left {
    position: relative;
    animation: slideLeft 1s ease forwards;
}


/* HERO CENTER ALIGN */
.hero-left {
    text-align: center;
}

/* ARROW */
.scroll-down {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    cursor: pointer;

    margin: 40px auto 0;
    transition: 0.3s;
}

/* HOVER */
.scroll-down:hover {
    background: #2fa3c7;
    border-color: #2fa3c7;
}

/* BOUNCE EFFECT */
.scroll-down {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.main-text {
        text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;   /* IMPORTANT FIX */
    color: #fff;
}

.highlight {
        text-align: center;
    font-size: 40px;
    font-weight: 600;
}

.accent {
        text-align: center;
    color: #2fa3c7;
    font-weight: 600;   /* FIX: thoda halka */
}
.main-text span:not(.highlight):not(.accent) {
    font-weight: 600;
}

.sub-text {
    margin-top:60px;
        text-align: center;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.8);
}
.primary {
    background: #2fa3c7;
    color: white;
}

.outline {
    border: 1px solid white;
    color: white;
}

/* RIGHT FORM */
/* ===== HERO FORM (MAIN CARD) ===== */

/* ===== MAIN CARD ===== */
.hero-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
     flex-wrap: wrap;
    gap: 20px;
    flex-wrap: nowrap;   /* 🔥 sab ek line me */

    padding: 25px 40px;
    border-radius: 60px;

    background: #fff;
    backdrop-filter: none;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-top:20%;
}
/* 🔥 FORCE INLINE LOGIN */
.wrapper-innerlogin form {
    display: flex !important;
    align-items: center;
    gap: 15px;
     flex-wrap: wrap;
}

/* sab wrapper div hata effect */
.wrapper-innerlogin form > div {
    display: contents;
}

/* input fix */
.wrapper-innerlogin input {
    width: 250px !important;
    display: inline-block;
}

/* button inline */
.wrapper-innerlogin button,
.wrapper-innerlogin .btnlogin {
    width: 185px !important;
    white-space: nowrap;
}



/* forgot inline */
.forgetlik {
    display: inline-block;
    margin-left: 15px;
}
/* ===== HEADING ===== */
.formheading h6 {
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 20px;
    margin-top: 25px;
}
.textfield em.invalid {
    display: block;          /* niche aayega */
    margin-top: 6px;         /* spacing */
    font-size: 12px;
    color: #ff4d4f;
    font-style: normal;
}

/* ===== INPUT ===== */
.hero-form input,
.hero-form .inputfield {
    margin-left:30px;
    padding: 10px;
    border-radius: 14px;

    background: #f5f7fa !important;  /* 🔥 soft grey */
    border: 1px solid #e6e9ef !important;

    color: #222 !important;
    font-size: 15px;

    transition: 0.3s;
}

/* FOCUS */
.hero-form input:focus {
    border-color: #2fa3c7 !important;
    background: #fff !important;

    box-shadow: 0 0 0 3px rgba(47,163,199,0.2);
}

/* ===== BUTTON ===== */
.hero-form .btnlogin {
    width: 100%;
    border-radius: 35px;
    padding: 12px;
    border-radius: 35px;
    margin-top: 10px;
    margin-left: 24px;
    background: linear-gradient(135deg, #1f4c7a, #143e6e); /* 🔥 rich blue */
    color: #fff;

    font-weight: 600;
    font-size: 16px;

    border: none;
    transition: 0.3s;
}

/* HOVER */
.hero-form .btnlogin:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===== FORGOT ===== */
.hero-form .forgetlik {
    text-align: center;
    color: #666;
    margin-top: 18px;
}

.hero-form .forgetlik a {
    color: #2fa3c7;
    font-weight: 500;
}
.forgetlink-with-model {
    display: none; /* hidden by default */
}
/* 🔥 FORGOT SECTION INLINE */
.forgetlink-with-model form {
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.forgetlink-with-model form > div {
    display: contents;
    color: #0e0f29;
}

/* input style */
.forgetlink-with-model input {
    width: 260px !important;
    padding: 14px 18px;

    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);

    background: #eef2f7;
    color: #333;
}

/* button style */
.forgetlink-with-model button,
.forgetlink-with-model .btnlogin {
    width: auto !important;
    padding: 12px 28px;

    border-radius: 30px;
    background: #244a73;
    color: #fff;

    border: none;
    white-space: nowrap;
}

/* नीचे वाला link */
.forgetlink-with-model a {
    display: block;
    margin-top: 0px;
    color: #2fa3c7;
}
.login-box {
    display: flex;
}

.login-box.hide {
    display: none;
}

.forgetlink-with-model {
    display: none;
}

.forgetlink-with-model.show {
    display: block;
}
a#Proceed {
    margin-top: 0px;
}
.forgetpasslink {
         display: none !important;
        
}
/* 🔥 ANIMATIONS */
@keyframes slideLeft { 
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media(max-width:768px){
   
    .footer-item i {
        display: none;
    }
    .footer-about {
        text-align:center;
}
    .footer-logo {
     display: block !important;
     gap: 0px;
}
   a#Proceed {
    margin-top: 10%;
}
    .hero-form input, .hero-form .inputfield {
    margin-left: 0px;
    margin-top: 10%;
        }
    .hero-form .forgetlik {
    text-align: center; 
    color: #666;
    margin-top: 0;
      display: none;
}
    .forgetlink-with-model form {
    display:block !important;
   
}
    p.text-black.btlogin.forgetlik {
        display:block !important;
}
    .d-flex {
    display: block !important;
}
    .forgetpasslink {
         display: block !important;
         color:#000;
}
    .wrapper-innerlogin form {
        display: block !important;
    }
.wrapper-innerlogin form > div {
   display: block;
}
.forgetlik {
    display: none;
    margin-left:0;
}
    .hero-form .btnlogin {
      
        margin-top: 10%;
        margin-left: 0%;
    }
    .formheading h6 {
 
    margin-top: 10%;
    margin-bottom: 0%;
}
    .logo-shape {
   
     border: 1px solid #fff;
}
    .header {
    
        background: #ffffff;
    }
        .hero-form {
             padding: 25px 50px;
        margin-bottom: 10%;
        width: 100%;
        margin-top: 10%;
    }
    .hero {
    height: 0%;
}
    .hero-left {
  display:none;
}
    .overlay {
  display:none;
    height: 297px;
    
}
    .forgetlink-with-model form {
   display:block;
    gap: 15px;
}
    .login-box {
     display:block;
}
    .sub-text {
        margin-top: 0px;
    }
    .scroll-down {
   
    margin: 16px auto 0;
 
}
    .hero {
      
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-form {
          display:block !important;
        width: 100%;
        margin-top: 70px;
    }

    .main-text {
        font-size: 20px;
    }
}
/* SECTION */
.about-section {
    padding: 80px 20px;
    background: #f8f9fb;
}

/* WRAPPER */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.about-left {
    flex: 1;
    animation: fadeLeft 1s ease forwards;
}

.sub-title {
    font-size: 22px;
    font-family: cursive;
    color: #1f4a78;
    margin-bottom: 10px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #123c3c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.desc {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* RIGHT */
.about-right {
    flex: 1;
    animation: fadeRight 1s ease forwards;
}

.about-right img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

/* ANIMATIONS */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media(max-width: 992px){
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-title {
        font-size: 32px;
    }

    .about-right img {
        border-radius: 20px;
    }
}

/* SECTION WITH BG */
.with-bg {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.with-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url('/Content/client-UI/OneWorldBeds/images/b3.jpg') center/cover no-repeat;

    filter: blur(8px);          /* 🔥 blur effect */
    transform: scale(1.1);      /* avoid edges */

    z-index: 0;
}

/* DARK OVERLAY (IMPORTANT) */
.with-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.4); /* 🔥 readability */
    z-index: 1;
}
.with-bg > * {
    position: relative;
    z-index: 2;   /* 👈 top */
}
/* CONTENT ABOVE */
.with-bg .section-header,
.with-bg .features-container {
    position: relative;
    z-index: 2;
}

/* TEXT COLOR WHITE */
.with-bg .section-title,
.with-bg .section-subtitle {
    color: #fff;
}
/* SECTION */
.features-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f6f9fc, #eef3f8);
}

/* CONTAINER */
.features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.feature-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;

    position: relative;
    overflow: hidden;

    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    animation: fadeUp 0.8s ease;
}

/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* GLOW BACKGROUND */
.feature-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2fa3c7, #1f4a78);
    top: -100%;
    left: -100%;
    transition: 0.5s;
    opacity: 0.08;
}

.feature-box:hover::before {
    top: 0;
    left: 0;
}

/* ICON */
.icon-circle {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;

    background: linear-gradient(135deg, #2fa3c7, #1f4a78);
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    transition: 0.3s;
}

.icon-circle img {
    width: 40px;
}

/* ICON HOVER */
.feature-box:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* TITLE */
.feature-box h3 {
    font-size: 22px;
    color: #143e6e;
    margin-bottom: 10px;
}

/* TEXT */
.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
/* SAME AS ABOUT US */
.section-header {
    margin-bottom: 50px;
    max-width: 700px;
}

/* SMALL SCRIPT STYLE */
.section-subtitle {
    font-size: 18px;
    font-family: 'Brush Script MT', cursive;
    color: #1f4a78;
    margin-bottom: 10px;
}

/* BIG HEADING */
.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f2f44;
    line-height: 1.2;
}
/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width: 992px){
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .features-container {
        grid-template-columns: 1fr;
    }
}
.footer {
    background: #143e6e;
    color: #fff;
    padding: 70px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

/* GRID */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

/* ABOUT */
.footer-about h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* OFFICE */
.footer-office h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

/* ITEM (ICON + TEXT PERFECT ALIGN) */
.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    transition: 0.3s;
}

/* ICON STYLE */
.footer-item i {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #2fa3c7;
    flex-shrink: 0;
}

/* TEXT */
.footer-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* HOVER EFFECT */
.footer-item:hover {
    transform: translateX(6px);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-item {
        justify-content: center;
    }
}
/* LOGO ALIGN */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* REGISTER BUTTON */
.footer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 45px;

    background: linear-gradient(135deg, #2fa3c7, #1f8cab);
    color: #fff;
    border-radius: 30px;

    text-decoration: none;
  
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.side-overlay {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(10, 30, 60, 0.75);
    z-index: 999;
    pointer-events: none;
    transition: all 1s ease;
}

/* LEFT SIDE */
.side-overlay.left {
    left: -50%;
}

/* RIGHT SIDE */
.side-overlay.right {
    right: -50%;
}

/* ACTIVE STATE */
.side-overlay.active.left {
    left: 0;
}

.side-overlay.active.right {
    right: 0;
}

/* EXIT */
.side-overlay.exit.left {
    left: -50%;
}

.side-overlay.exit.right {
    right: -50%;
}
.page-header {
    padding: 20px;
    background-color: #d9d9d9;
    margin-top: 0px;
}