/* ==========================================
	COMMON CSS
========================================== */

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

body{
    background:#ffffff;
    font-family:'Manrope',sans-serif;
	padding-bottom:90px;
}

a{
    text-decoration:none;
    transition:.3s;
}

.mobile-screen{
    max-width:420px;
    min-height:100vh;
    margin:auto;
    background:#ffff;
    overflow:hidden;
    position:relative;
}

.app-logo
{
	width:110px;
	height:70px;
	margin-bottom:15px;
}	
	

/* ==========================================
	INDEX PAGE
========================================== */

.top-area{
    height:420px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#fff,#fff5f8);
}

/* Hearts */

.heart{
    position:absolute;
    color:#ff4f8b;
    opacity:.25;
    font-size:22px;
}

.heart:nth-child(1){
    top:70px;
    left:35px;
}

.heart:nth-child(2){
    top:130px;
    right:40px;
}

.heart:nth-child(3){
    bottom:70px;
    left:50px;
}

.heart:nth-child(4){
    bottom:40px;
    right:60px;
}

/* Cards */

.profile-card{
    width:170px;
    height:250px;
    border-radius:30px;
    overflow:hidden;
    position:absolute;
    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

.profile-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card1{
    top:65px;
    right:40px;
    transform:rotate(14deg);
}

.card2{
    top:170px;
    left:55px;
    transform:rotate(-14deg);
}

/* Heart Buttons */

.like{
    width:55px;
    height:55px;
    background:linear-gradient(180deg,#ff79b4,#ff3f8d);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    position:absolute;
    font-size:20px;
    box-shadow:0 10px 25px rgba(255,50,130,.4);
}

.like1{
    right:25px;
    top:80px;
}

.like2{
    left:25px;
    bottom:45px;
}

/* Logo */

.logo{
    position:absolute;
    top:25px;
    width:100%;
    text-align:center;
    color:#ff4f8b;
    font-size:32px;
    font-family:'DM Serif Display',serif;
    letter-spacing:1px;
    z-index:100;
}

/* Content */

.content{
    padding:25px;
    text-align:center;
}

.content h6{
    color:#ff4f8b;
    letter-spacing:2px;
    font-size:15px;
    font-weight:700;
    margin-bottom:15px;
}

.content h1{
    font-family:'DM Serif Display',serif;
    font-size:35px;
    color:#111;
    line-height:1.1;
    margin-bottom:15px;
}

.content h1 span{
    font-style:italic;
    font-weight:400;
}

.content p{
    color:#777;
    font-size:17px;
    line-height:1.7;
    font-weight:500;
    margin-bottom:30px;
}

/* Buttons */

.btn-pink{
    width:100%;
    background:linear-gradient(180deg,#ff7db8,#ff3b8b);
    color:#fff;
    border:none;
    border-radius:50px;
    padding:15px;
    font-size:18px;
    font-weight:700;
}

.btn-light-pink{
    width:100%;
    background:#fde8f0;
    color:#ff4f8b;
    border:none;
    border-radius:50px;
    padding:15px;
    font-size:18px;
    font-weight:700;
}

.btn-pink:hover{
    color:#fff;
    background:#ff3b8b;
}

.btn-light-pink:hover{
    background:#ffd6e8;
    color:#ff4f8b;
}

.welcome-card{
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    border-radius:15px;
    background:linear-gradient(135deg,#ff5fa2,#ff7eb3,#ff9ac5);
    color:#fff;
    box-shadow:0 12px 30px rgba(255,73,140,.25);
}

.welcome-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    top:-90px;
    right:-60px;
}

.welcome-content{
    position:relative;
    z-index:2;
    width:75%;
}

.welcome-content h5{
    margin:0 0 8px;
    font-size:15px;
    font-weight:700;
}

.welcome-content p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    opacity:.95;
}

.welcome-icon{
    position:relative;
    z-index:2;
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    animation:heartBeat 2s infinite;
}

@keyframes heartBeat{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.12);
    }
}
/* ==========================================
	SETTINGS PAGE
========================================== */
.settings-header{
    height:250px;
    background:linear-gradient(180deg,#ffdbe8,#f8bfd2);
    border-radius:0 0 35px 35px;
    text-align:center;
    padding-top:45px;
    overflow:hidden;
}
/* Main Gear Icon */

.settings-header > .fa-heart-circle-check{
    position:relative;
    z-index:2;
    font-size:60px;
    color:#ff4f8b;
    margin-bottom:15px;
}

/* Background Hearts */

.bg-heart{
    position:absolute;
    color:#ffffff;
    opacity:.30;
    z-index:1;
}

.heart1{
    top:25px;
    left:28px;
    font-size:58px;
    transform:rotate(50deg);
}

.heart2{
    top:80px;
    right:28px;
    font-size:70px;
	transform:rotate(-20deg);
}

.heart3{
    top:170px;
    left:30px;
    font-size:40px;
	transform:rotate(-20deg);
}

.settings-header h2{
    position:relative;
    z-index:2;
    margin-top:1px;
    font-size:42px;
    font-weight:800;
    color:#20315d;
}

.settings-header p{
    position:relative;
    z-index:2;
    color:#666;
    font-size:17px;
}

.settings-list{
    padding:20px;
    margin-top:-40px;
}

.setting-item{
    background:#fff;
    border-radius:18px;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    color:#333;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.setting-item:hover{
    transform:translateY(-2px);
}

.left{
    display:flex;
    align-items:center;
}

.icon-box{
    width:55px;
    height:55px;
    border-radius:15px;
    background:#ffe5ef;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.icon-box i{
    color:#ff4f8b;
    font-size:22px;
}

.text h5{
    margin:0;
    color:#24305e;
    font-size:18px;
    font-weight:700;
}

.text small{
    color:#999;
}

.arrow{
    color:#999;
    font-size:18px;
}

.logout .icon-box{
    background:#ffe8e8;
}

.logout .icon-box i{
    color:#ff3b3b;
}

/* ==========================================
	FOOTER MENU
========================================== */

.bottom-nav{
    position:fixed;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    max-width:420px;
    height:72px;
    background:#fff;
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-radius:25px 25px 0 0;
    box-shadow:0 -5px 20px rgba(0,0,0,.12);
    z-index:999;
}

.nav-item{
    width:20%;
    text-align:center;
    color:#999;
    font-size:12px;
    font-weight:600;
}

.nav-item span{
    display:block;
    margin-top:4px;
}

.nav-item i{
    display:block;
    font-size:20px;
}

.nav-item:hover,
.nav-item.active{
    color:#ff4f8b;
}

.home-btn{
    width:64px;
    height:64px;
    margin:-35px auto 5px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(180deg,#ff7db8,#ff3b8b);
    color:#fff;
    font-size:26px;
    box-shadow:0 10px 25px rgba(255,79,139,.35);
}

.bottom-nav .nav-item.active .home-btn{
    margin: -35px auto 5px !important;
    transform: none !important;
}

.bottom-nav .nav-item{
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav .nav-item:focus,
.bottom-nav .nav-item:active{
    outline: none;
    color: inherit;
}

.bottom-nav .nav-item.active .home-btn{
    background: linear-gradient(180deg,#ff7db8,#ff3b8b) !important;
    color: #fff;
}

/* ==========================================
	HOME PAGE
========================================== */
.home-profile-card{
    display:block;
    position:relative;
    width:100%;
    height:240px;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.home-profile-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s;
}

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

.profile-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:15px;
    color:#fff;
    background:linear-gradient(transparent,rgba(0,0,0,.82));
}

.profile-overlay h5{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.profile-overlay p{
    margin:2px 0;
    font-size:13px;
    color:#e8e8e8;
}

.profile-overlay span{
    display:block;
    font-size:13px;
    color:#ffc5da;
}

/* ==========================================
	CHAT PAGE
========================================== */

.chat-screen{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100vh;
    max-width:420px;
    margin:auto;
    background:#f8f9ff;
    overflow:hidden;
}

/* Header */

.chat-header{
    height:75px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    //padding:12px 15px;
	padding:5px;
    border-bottom:1px solid #ececec;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
    flex-shrink:0;
    z-index:10;
}

.back-btn{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff3f8;
    color:#ff4f8b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.chat-user{
    flex:1;
    display:flex;
    align-items:center;
    margin-left:6px;
}

.chat-user img{
    width:35px;
    height:35px;
    border-radius:50%;
    object-fit:cover;
    margin-right:3px;
    border:2px solid #ffd4e5;
}

.chat-user h5{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#222;
}

.chat-user span{
    display:block;
    color:#2fb56f;
    font-size:13px;
}

.chat-actions{
    display:flex;
    gap:8px;
}

.chat-actions a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff3f8;
    color:#ff4f8b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

/* ==========================
   Chat Messages
========================== */

.chat-body{
    flex:1;
    overflow-y:auto;
    padding:20px 15px 80px;
    background:#f8f9ff;
    scroll-behavior:smooth;
	 background-image: url("images/image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.chat-body::-webkit-scrollbar{
    width:6px;
}

.chat-body::-webkit-scrollbar-track{
    background:transparent;
}

.chat-body::-webkit-scrollbar-thumb{
    background:#ffc2d8;
    border-radius:30px;
}


/* ==========================
   Sender Message
   ========================== */

.chat-body .text-end{
    margin-bottom:18px;
}

.chat-body .bg-success{
    background:#334155 !important;
    color:#fff !important;
    border:none !important;
    border-radius:18px 18px 6px 18px !important;
    padding:12px 16px !important;
    max-width:75%;
    display:inline-block;
    box-shadow:0 6px 16px rgba(51,65,85,.25);
    font-size:15px;
    font-weight:500;
    line-height:1.6;
}

/* ==========================
   Receiver Message
========================== */

.chat-body .text-start{
    margin-bottom:18px;
}

.chat-body .bg-light{
    background:#ffffff !important;
    color:#222222 !important;
    border:none !important;
    border-radius:18px 18px 18px 6px !important;
    padding:12px 16px !important;
    max-width:75%;
    text-align:left;
    display:inline-block;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
    font-size:15px;
    font-weight:500;
    line-height:1.6;
    word-break:break-word;
}


/* ==========================
   Time
========================== */

.chat-body .bg-success small{
    display:block;
    margin-top:8px;
    color:rgba(255,255,255,.85);
    font-size:11px;
    font-weight:500;
    text-align:right;
}

.chat-body .bg-light small{
    display:block;
    margin-top:8px;
    color:#8b8b8b;
    font-size:11px;
    font-weight:500;
    text-align:right;
}


/* ==========================
   Images
========================== */

.chat-body img{
    display:block;
    margin-top:8px;
    max-width:100%;
    border-radius:12px;
}


/* ==========================
   Video
========================== */

.chat-body video{
    display:block;
    margin-top:8px;
    width:100%;
    border-radius:12px;
}


/* ==========================
   Audio
========================== */

.chat-body audio{
    display:block;
    width:100%;
    margin-top:8px;
}


/* ==========================
   File Link
========================== */

.chat-body a{
    color:inherit;
    text-decoration:none;
    font-weight:600;
}

.chat-body a:hover{
    text-decoration:underline;
}


/* ==========================
   Animation
========================== */

.chat-body .text-start,
.chat-body .text-end{
    animation:messageFade .25s ease;
}

@keyframes messageFade{

    from{
        opacity:0;
        transform:translateY(8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Message */

.message{
    display:flex;
    align-items:flex-end;
    margin-bottom:16px;
}

.message.left{
    justify-content:flex-start;
}

.message.right{
    justify-content:flex-end;
}

.message.left img{
    width:38px;
    height:38px;
    border-radius:50%;
    object-fit:cover;
    margin-right:8px;
}

/* Bubble */

.bubble{
    max-width:75%;
    background:#fff;
    padding:12px 15px;
    border-radius:18px;
    font-size:14px;
    line-height:1.5;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
    word-break:break-word;
}

.message.left .bubble{
    border-bottom-left-radius:5px;
}

.message.right .bubble{
    background:#ff4f8b;
    color:#fff;
    border-bottom-right-radius:5px;
}

.bubble small{
    display:block;
    margin-top:6px;
    font-size:11px;
    opacity:.75;
}

/* Voice */

.voice{
    display:flex;
    align-items:center;
    gap:10px;
}

.voice-bar{
    width:90px;
    height:4px;
    border-radius:20px;
    background:#ff4f8b;
}

/* Footer */

.chat-footer{
    position:fixed;
    left:0;
    right:0;
    bottom:0px;
	
    display:flex;
    align-items:center;
    gap:10px;
	
    padding:12px 15px;
	
    background:#fff;
    border-top:1px solid #ececec;
    box-shadow:0 -3px 15px rgba(0,0,0,.08);
	
    z-index:20;
} 

/**
.chat-footer{
    position:fixed;
    left:50%;
    transform:translateX(-50%);
    bottom:0;

    width:100%;
    max-width:420px;

    background:#fff;
    padding:10px 15px;

    display:flex;
    gap:10px;

    z-index:99999;

    box-shadow:0 -2px 10px rgba(0,0,0,.1);
}**/


.chat-footer input{
    flex:1;
    height:46px;
    border:none;
    outline:none;
    background:#f5f5f7;
    border-radius:30px;
    padding:0 18px;
    font-size:14px;
}

.chat-footer input::placeholder{
    color:#999;
}

.icon-btn{
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#f5f5f7;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#666;
    cursor:pointer;
    flex-shrink:0;
    transition:.3s;
}

.icon-btn:hover{
    background:#ffe5ef;
    color:#ff4f8b;
}

.icon-btn.send{
    background:#ff4f8b;
    color:#fff;
}

.icon-btn.send:hover{
    background:#ff2f7d;
}

/* Mobile */

@media(max-width:420px){
	
    .chat-screen{
        max-width:100%;
	}
	
    .bubble{
        max-width:82%;
	}
	
}

/*==============================
	PACKAGES PAGE
==============================*/

.package-header{
    padding:40px 25px 30px;
    text-align:center;
    background:linear-gradient(180deg,#ffd9e7,#ffc3d8);
    border-radius:0 0 35px 35px;
}

.package-header i{
    font-size:55px;
    color:#ff4f8b;
    margin-bottom:12px;
}

.package-header h2{
    font-size:30px;
    font-weight:800;
    color:#24305e;
}

.package-header p{
    color:#666;
    margin-top:5px;
}

.package-list{
    padding:20px;
}

.package-card{
    background:#fff;
    border-radius:22px;
    padding:22px;
    margin-bottom:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
}

.package-card.active{
    border:2px solid #ff4f8b;
}

.popular{
    position:absolute;
    top:-12px;
    right:18px;
    background:#ff4f8b;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}

.price{
    font-size:38px;
    color:#ff4f8b;
    font-weight:800;
    margin-bottom:8px;
}

.package-card h4{
    font-weight:700;
    color:#24305e;
    margin-bottom:18px;
}

.package-card ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.package-card li{
    margin-bottom:14px;
    color:#555;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.package-card li i:first-child{
    width:24px;
    color:#ff4f8b;
}

.info-icon{
    color:#999;
    cursor:pointer;
}

.buy-btn{
    display:block;
    width:100%;
    text-align:center;
    background:linear-gradient(180deg,#ff78b5,#ff458f);
    color:#fff;
    padding:14px;
    border-radius:40px;
    font-weight:700;
}

.buy-btn:hover{
    color:#fff;
}

/*==============================
	LOGIN PAGE
==============================*/


.login-page{
    min-height:100vh;
    background:linear-gradient(180deg,#ffdce8 0%,#ffffff 45%);
    padding:40px 20px;
}

.login-header{
    text-align:center;
    margin-bottom:35px;
}

.login-logo{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 35px rgba(255,79,139,.20);
    margin-bottom:20px;
}

.login-logo i{
    font-size:42px;
    color:#ff4f8b;
}

.login-header h2{
    font-size:34px;
    font-weight:800;
    color:#24305e;
    margin-bottom:8px;
}

.login-header p{
    color:#777;
    font-size:15px;
}

.login-card{
    background:#fff;
    border-radius:30px;
    padding:30px 22px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-label{
    font-weight:700;
    color:#24305e;
    margin-bottom:8px;
}

.input-box{
    display:flex;
    align-items:center;
    background:#f7f7fb;
    border:1px solid #ececec;
    border-radius:15px;
    padding:0 15px;
}

.input-box i{
    color:#ff4f8b;
    font-size:18px;
}

.input-box input{
    border:none;
    background:transparent;
    height:55px;
    box-shadow:none;
}

.input-box input:focus{
    box-shadow:none;
}

.forgot-link{
    color:#ff4f8b;
    font-size:14px;
    font-weight:600;
}

.btn-login{
    width:100%;
    height:55px;
    border:none;
    border-radius:30px;
    background:linear-gradient(180deg,#ff7db8,#ff3b8b);
    color:#fff;
    font-size:17px;
    font-weight:700;
}

.btn-login:hover{
    background:#ff3b8b;
}

.divider{
    text-align:center;
    margin:25px 0;
    position:relative;
}

.divider::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    right:0;
    height:1px;
    background:#ececec;
}

.divider span{
    background:#fff;
    padding:0 15px;
    position:relative;
    color:#999;
    font-size:13px;
}

.btn-register{
    display:block;
    text-align:center;
    background:#ffe5ef;
    color:#ff4f8b;
    padding:15px;
    border-radius:30px;
    font-weight:700;
}

.btn-register:hover{
    background:#ffd6e8;
    color:#ff4f8b;
}

.password-box{
    position:relative;
}

.password-box input{
    padding-right:45px;
}

.password-eye{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
    cursor:pointer;
    font-size:18px;
}

.password-eye:hover{
    color:#ff4f8b;
}

/* ==========================================
	REGISTER PAGE
========================================== */

.register-top{
    height:220px;
    background:linear-gradient(180deg,#fff5f8,#ffdbe8);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.register-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    color:#ff4f8b;
    box-shadow:0 10px 30px rgba(255,79,139,.25);
    z-index:2;
}

.register-content{
    margin-top:-15px;
    padding:30px 25px 40px;
}

.register-input{
    height:55px;
    background:#f8f8fb;
    border-radius:18px;
    padding:15px 18px;
    font-size:15px;
    box-shadow:none;
}

.register-input:focus{
    border:1px solid #ff4f8b;
    box-shadow:none;
    background:#fff;
}

.upload-box{
    width:100%;
    height:60px;
    border:2px dashed #ffc2d8;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#ff4f8b;
    background:#fff8fb;
    cursor:pointer;
    font-weight:600;
}

.upload-box i{
    font-size:20px;
}

.text-pink{
    color:#ff4f8b;
    text-decoration:none;
}

.text-pink:hover{
    color:#ff2f82;
}

.select-box{
    position:relative;
}

.select-box select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    padding-right:45px;
}

.select-icon{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    color:#000;
    font-size:16px;
    pointer-events:none;
}

.password-input{
    padding-right:50px;
}

.password-toggle{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    color:#999;
    cursor:pointer;
    font-size:18px;
}

.password-toggle:hover{
    color:#ff4f8b;
}

/*=========================
	PROFILE EDIT
=========================*/

.profile-header{
    position:relative;
    height:140px;
}

.profile-cover{
    height:100px;
    background:linear-gradient(135deg,#ff86b7,#ff4f8b);
    border-radius:0 0 35px 35px;
}

.profile-back{
    position:absolute;
    top:18px;
    left:18px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    z-index:2;
}

.profile-image{
    position:absolute;
    left:50%;
    top:20px;
    transform:translateX(-50%);
}

.profile-image img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.camera-btn{
    position:absolute;
    right:6px;
    bottom:6px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#ff4f8b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.profile-form{
    padding:20px;
}

.profile-form h3{
    text-align:center;
    font-size:30px;
    font-weight:800;
    color:#24305e;
    margin-bottom:5px;
}

.profile-form p{
    text-align:center;
    color:#888;
    margin-bottom:30px;
}

.form-label{
    font-weight:700;
    color:#24305e;
    margin-bottom:8px;
}

.register-input{
    height:55px;
    border-radius:15px;
    border:1px solid #ececec;
    box-shadow:none;
}

.register-input:focus{
    border-color:#ff4f8b;
    box-shadow:0 0 0 .2rem rgba(255,79,139,.15);
}

/*=========================
	MY PROFILES IMAGES PAGE
=========================*/

.page-header{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
}

.page-header h3{
    margin:0;
    font-weight:800;
    color:#24305e;
}

.page-header .back-btn{
    position:absolute;
    left:18px;
    color:#444;
    font-size:22px;
}

.main-photo{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    height:280px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.main-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.main-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff4f8b;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.upload-main{
    position:absolute;
    right:15px;
    bottom:15px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ff4f8b;
    font-size:20px;
    cursor:pointer;
}

.gallery-item{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    height:130px;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.delete-photo{
    position:absolute;
    top:8px;
    right:8px;
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:#ff4f8b;
    color:#fff;
}

.gallery-upload{
    height:130px;
    border:2px dashed #ffb4cd;
    border-radius:16px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#ff4f8b;
    background:#fff6fa;
    cursor:pointer;
}

.gallery-upload i{
    font-size:24px;
    margin-bottom:8px;
}

.gallery-upload span{
    font-size:13px;
    font-weight:700;
}


.additional-img-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.additional-img-tags .col-4{
    width:calc(33.333% - 7px);
}

.gallery-img{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:10px;
}

/*=========================
	MY PROFILES PASSWORD PAGE
=========================*/

.password-icon{
	width:120px;
	height:120px;
	border-radius:50%;
	background:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 8px 25px rgba(0,0,0,.12);
	font-size:48px;
	color:#ff4f8b;
}

.password-box{
	position:relative;
}

.password-box input{
	padding-right:48px;
}

.toggle-password{
	position:absolute;
	right:18px;
	top:50%;
	transform:translateY(-50%);
	color:#999;
	cursor:pointer;
	font-size:18px;
}

.toggle-password:hover{
	color:#ff4f8b;
}

/*=========================
	TERMS PAGE
=========================*/

.terms-box{
	padding:10px;
	margin-top:10px;
}

.terms-box h6{
	font-size:17px;
	font-weight:700;
	color:#24305e;
	margin-top:10px;
	margin-bottom:8px;
}

.terms-box h6:first-child{
	margin-top:0;
}

.terms-box p{
	font-size:14px;
	line-height:1.8;
	color:#666;
	margin-bottom:12px;
	text-align:justify;
}


/*=========================
	LOGOUT MODAL
=========================*/

.logout-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}

.logout-modal.show{
    display:flex;
}

.logout-box{
    width:100%;
    max-width:330px;
    background:#fff;
    border-radius:28px;
    padding:30px 25px;
    text-align:center;
    animation:popup .25s ease;
}

@keyframes popup{
	
    from{
        transform:scale(.8);
        opacity:0;
	}
	
    to{
        transform:scale(1);
        opacity:1;
	}
	
}

.logout-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#ffe6ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logout-icon i{
    font-size:42px;
    color:#ff4f8b;
}

.logout-box h3{
    margin-bottom:10px;
    font-size:28px;
    font-weight:800;
    color:#24305e;
}

.logout-box p{
    color:#777;
    font-size:15px;
    line-height:1.6;
    margin-bottom:25px;
}

.logout-buttons{
    display:flex;
    gap:12px;
}

.btn-cancel,
.btn-logout{
    flex:1;
    height:48px;
    border-radius:30px;
    border:none;
    font-weight:700;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
}

.btn-cancel{
    background:#f3f3f3;
    color:#555;
}

.btn-logout{
    background:linear-gradient(180deg,#ff7db8,#ff3b8b);
    color:#fff;
}

.btn-logout:hover{
    color:#fff;
}


/* ===========================
	VIDEO CALL
=========================== */

.video-page{
	
    position:relative;
	
    height:100vh;
	
    overflow:hidden;
	
    background:#000;
	
}

.remote-video{
	
    position:absolute;
	
    inset:0;
	
}

.remote-video img{
	
    width:100%;
	
    height:100%;
	
    object-fit:cover;
	
    filter:brightness(.85);
	
}

.video-header{
	
    position:absolute;
	
    top:0;
	
    left:0;
	
    right:0;
	
    z-index:10;
	
    display:flex;
	
    align-items:center;
	
    padding:20px 15px;
	
    background:linear-gradient(rgba(0,0,0,.55),transparent);
	
}

.video-header .back-btn{
	
    width:42px;
	
    height:42px;
	
    border-radius:50%;
	
    background:rgba(255,255,255,.18);
	
    color:#fff;
	
    display:flex;
	
    align-items:center;
	
    justify-content:center;
	
    margin-right:15px;
	
    font-size:18px;
	
}

.call-user h4{
	
    color:#fff;
	
    margin:0;
	
    font-size:20px;
	
    font-weight:700;
	
}

.call-user span{
	
    color:#eee;
	
    font-size:13px;
	
}

.local-video{
	
    position:absolute;
	
    top:90px;
	
    right:15px;
	
    width:105px;
	
    height:150px;
	
    border-radius:18px;
	
    overflow:hidden;
	
    border:3px solid rgba(255,255,255,.8);
	
    box-shadow:0 10px 25px rgba(0,0,0,.35);
	
    z-index:20;
	
}

.local-video img{
	
    width:100%;
	
    height:100%;
	
    object-fit:cover;
	
}

.video-controls{
	
    position:absolute;
	
    left:0;
	
    right:0;
	
    bottom:35px;
	
    display:flex;
	
    justify-content:center;
	
    gap:16px;
	
    z-index:20;
	
}

.control-btn{
	
    width:60px;
	
    height:60px;
	
    border:none;
	
    border-radius:50%;
	
    background:rgba(255,255,255,.18);
	
    color:#fff;
	
    backdrop-filter:blur(10px);
	
    font-size:22px;
	
}

.control-btn.end{
	
    background:#ff3b5c;
	
}

/* ===========================
   AUDIO CALL SCREEN
=========================== */

.audio-page {
    position: fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);
    
    width:100%;
    max-width:420px;
    height:100vh;

    background:linear-gradient(
        180deg,
        #ff7eb3,
        #ff4f91
    );

    z-index:99999;

    display:flex;
    flex-direction:column;
    align-items:center;

    color:white;
    overflow:hidden;
}


/* Background Animation */

.audio-bg {
    position:absolute;
    width:300px;
    height:300px;

    background:rgba(255,255,255,0.15);

    border-radius:50%;

    top:-100px;
    right:-100px;

    animation:pulseBg 3s infinite;
}


@keyframes pulseBg {

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.3);
    }

    100%{
        transform:scale(1);
    }

}


/* Back Button */

.audio-back {

    position:absolute;

    top:25px;
    left:20px;

    width:45px;
    height:45px;

    background:rgba(255,255,255,.25);

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-size:22px;

    text-decoration:none;

}


/* User Section */

.audio-user {

    margin-top:90px;

    text-align:center;

    position:relative;

    z-index:2;

}


.audio-user img {

    width:150px;
    height:150px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.8);

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);

}


.audio-user h2 {

    margin-top:30px;

    font-size:32px;

    font-weight:700;

}


.audio-user p {

    font-size:18px;

    opacity:.9;

    margin-top:5px;

}



/* Timer */

.call-time {

    margin-top:35px;

    font-size:22px;

    font-weight:600;

}



/* Controls */

.audio-controls {

    position:absolute;

    bottom:60px;

    width:100%;

    display:flex;

    justify-content:center;

}


/* Buttons */

.audio-btn {

    width:70px;
    height:70px;

    border-radius:50%;

    border:none;

    margin:0 15px;

    background:white;

    color:#ff4f91;

    font-size:28px;

    cursor:pointer;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

}



/* End Call Button */

.audio-btn.end {

    background:#ff1744;

    color:white;

}


/* Hover */

.audio-btn:hover {

    transform:scale(1.1);

}



/* Mobile */

@media(max-width:480px){

    .audio-page{

        max-width:100%;

    }

}

/* ===========================
	INTERESTS PAGE
=========================== */

.interest-header{
	
	display:flex;
	align-items:center;
	padding:18px 20px;
	border-bottom:1px solid #f1f1f1;
	background:#fff;
	position:sticky;
	top:0;
	z-index:10;
	
}

.interest-header h4{
	
	flex:1;
	text-align:center;
	margin:0;
	font-size:22px;
	font-weight:700;
	color:#24305e;
	
}

.interest-header .back-btn{
	
	color:#222;
	font-size:22px;
	width:40px;
	
}

.interest-desc{
	
	text-align:center;
	padding:18px;
	color:#777;
	font-size:15px;
	line-height:1.5;
	
}

.interest-list{
	
	padding:0 16px 20px;
	
}

.interest-section{
    margin-bottom:28px;
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #f3f3f3;
    transition:.3s;
}

.interest-section:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.interest-section h5{
	
	font-size:22px;
	font-weight:700;
	margin-bottom:15px;
	color:#222;
	
}

.interest-tags{
	
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	
}

.interest-tags label{
	
	background:#f2f2f2;
	padding:10px 16px;
	border-radius:30px;
	cursor:pointer;
	font-size:15px;
	font-weight:600;
	transition:.3s;
	user-select:none;
	
}

.interest-tags input{
	
	display:none;
	
}

.interest-tags input:checked + span{
	
	color:#fff;
	
}

.interest-tags label:has(input:checked){
	
	background:linear-gradient(180deg,#ff79b4,#ff3f8d);
	color:#fff;
	
}

.interest-tags label:hover{
	
	background:#ffd9e9;
	
}


/* ===========================
	SINGLE PROFILE PAGE
=========================== */

.profile-view-header{
    position:relative;
}

.profile-cover-img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.profile-back{
    position:absolute;
    top:20px;
    left:20px;
    width:42px;
    height:42px;
    background:#fff;
    color:#ff4f8b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.profile-view-content{
    margin-top:-60px;
    background:#fff;
    border-radius:30px 30px 0 0;
    padding:20px;
    padding-bottom:120px;
    position:relative;
}

.profile-avatar{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.profile-box{
    background:#fff;
    border-radius:18px;
    padding:18px;
    margin-top:20px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.profile-box h5{
    font-weight:700;
    margin-bottom:15px;
}

.info-card{
    background:#fff5f8;
    border-radius:15px;
    text-align:center;
    padding:15px;
}

.info-card i{
    color:#ff4f8b;
    font-size:22px;
    margin-bottom:10px;
}

.info-card h6{
    margin:0;
    font-size:14px;
    font-weight:700;
}

.info-card span{
    color:#666;
    font-size:13px;
}

.interest-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.interest-tags span{
    background:#ffe8f1;
    color:#ff4f8b;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.gallery-img{
    width:100%;
    height:110px;
    object-fit:cover;
    border-radius:12px;
}


.profile-header-bg
{
	height:150px;
	background:linear-gradient(135deg,#ff4d8d,#ff9acb);
	position:relative;
	border-radius:0 0 30px 30px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
}

.profile-header-bg h2
{
	font-size:25px;
	font-weight:600;
	margin-bottom:65px;
}


.additional-img-tags span
{
	background: #ffe8f1;
    color: #ff4f8b;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}


.profile-action{
    position:fixed;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:100%;
    max-width:420px;
    background:#fff;
    padding:10px 15px;
    display:flex;
    gap:10px;
    z-index:99999;
    box-shadow:0 -2px 10px rgba(0,0,0,.1);
}



.profile-action .btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex: 1;
	height: 45px;
	border-radius: 30px;
}

.btn-like {
	background: #ffe8f1;
	color: #ff4f8b;
}

.btn-chat {
	background: #ff4f8b;
	color: #fff;
}

.profile-view-content {
	padding-bottom: 80px;
}

.btn-unlike{
	background:#6c757d;
	color:#fff;
}

.profile-liked{
	position:absolute;
	top:20px;
	right:10px;
	width:30px;
	height:30px;
	border-radius:50%;
	background:#ff2d55;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:12px;
	box-shadow:0 2px 8px rgba(0,0,0,.25);
	z-index:2;
}

.profile-liked.liked{
    background:#ff4d6d;   /* Red = They liked you */
}

.profile-liked.matched{
    background:#28a745;   /* Green = Both liked each other */
}

.home-profile-card{
	position:relative;
}

.chat-actions .fa-phone, .chat-actions .fa-video
{
	color: #ff4f8b !important;
}

/* ==================================
   INCOMING CALL POPUP - PINK STYLE
================================== */


#incomingCallBox {

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:330px;

    padding:35px 25px;

    background:linear-gradient(
        180deg,
        #ff7eb3,
        #ff4f91
    );

    border-radius:30px;

    text-align:center;

    color:white;

    z-index:999999;

    display:none;

    box-shadow:
    0 20px 60px rgba(255,79,145,.5);

    animation:callPopup .35s ease;

    overflow:hidden;

}



/* Popup animation */

@keyframes callPopup {

    from {

        opacity:0;

        transform:
        translate(-50%,-50%)
        scale(.7);

    }

    to {

        opacity:1;

        transform:
        translate(-50%,-50%)
        scale(1);

    }

}



/* Background circle effect */

#incomingCallBox:before {

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(255,255,255,.15);

    border-radius:50%;

    top:-120px;
    right:-80px;

}



/* Profile Image */

#incomingProfile {

    position:relative;

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid white;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

    animation:
    profilePulse 2s infinite;

}



@keyframes profilePulse {


    0%{

        box-shadow:
        0 0 0 0 rgba(255,255,255,.7);

    }


    70%{

        box-shadow:
        0 0 0 25px rgba(255,255,255,0);

    }


    100%{

        box-shadow:
        0 0 0 0 rgba(255,255,255,0);

    }


}



/* Caller Name */

#callerName {

    margin-top:20px;

    font-size:26px;

    font-weight:700;

}



/* Call Type */

#callType {

    margin-top:10px;

    font-size:18px;

    opacity:.9;

}



/* Buttons Area */

.incoming-buttons {


    display:flex;

    justify-content:center;

    gap:35px;

    margin-top:35px;

}



/* Accept Reject Buttons */

.incoming-buttons button {


    width:65px;

    height:65px;

    border-radius:50%;

    border:none;

    font-size:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

    transition:.3s;


}



/* Accept */

.incoming-buttons .btn-success {

    background:#22c55e;

}



/* Reject */

.incoming-buttons .btn-danger {

    background:#ff1744;

}



.incoming-buttons button:hover {


    transform:scale(1.15);

}



/* Mobile */

@media(max-width:480px){

    #incomingCallBox{

        width:85%;

    }

}

/* ===============================
 VIDEO CALL POPUP UI
================================ */


.video-call-screen{

	position:fixed;
	
	top:0;
	left:0;
	right:0;
	bottom:0;

	background:#000;

	z-index:9999;

	overflow:hidden;

}


/* Remote video */

.remote-video{

	position:absolute;

	width:100%;
	height:100%;

	object-fit:cover;

	background:#111;

}



/* Top header */

.video-top-bar{

	position:absolute;

	top:0;

	left:0;

	right:0;

	padding:25px 20px;

	display:flex;

	align-items:center;

	z-index:10;


	background:
	linear-gradient(
		rgba(0,0,0,.55),
		transparent
	);

}



.video-back{


	width:42px;

	height:42px;


	border-radius:50%;


	display:flex;

	align-items:center;

	justify-content:center;


	background:
	rgba(255,255,255,.20);


	color:#fff;


	font-size:20px;


	margin-right:15px;


}



.video-user-info h3{


	color:white;

	margin:0;

	font-size:20px;

	font-weight:700;


}


.video-user-info span{


	color:#eee;

	font-size:13px;


}



/* Small camera */

.my-video-box{


	position:absolute;


	right:15px;

	top:90px;


	width:110px;

	height:150px;


	border-radius:18px;


	overflow:hidden;


	border:3px solid white;


	z-index:20;


	box-shadow:
	0 8px 25px rgba(0,0,0,.5);


}


.my-video-box video{


	width:100%;

	height:100%;


	object-fit:cover;


}



/* Bottom buttons */

.video-bottom-controls{


	position:absolute;


	bottom:35px;


	left:0;

	right:0;


	display:flex;


	justify-content:center;


	gap:25px;


	z-index:30;


}



.video-control{


	width:60px;


	height:60px;


	border-radius:50%;


	border:none;


	font-size:22px;


	color:white;


	background:
	rgba(255,255,255,.25);


	backdrop-filter:blur(10px);


}



.video-control.end{


	background:#ff3158;


}
