/* =====================================================
   RAJU AHMED HEALTH SERVICE
   Premium Coming Soon Landing Page
   Part 1
===================================================== */

/* ---------- Reset ---------- */

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Hind Siliguri',sans-serif;

background:#b40000;

color:#fff;

overflow-x:hidden;

position:relative;

min-height:100vh;

}

/* ---------- Animated Background ---------- */

.bg-animation{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

overflow:hidden;

z-index:-2;

background:
linear-gradient(
135deg,
#7a0000,
#9d0000,
#c40000,
#ff2020
);

background-size:400% 400%;

animation:bgMove 15s ease infinite;

}

@keyframes bgMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

.bg-animation span{

position:absolute;

display:block;

width:25px;
height:25px;

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

border-radius:50%;

bottom:-150px;

animation:floatBubble 20s linear infinite;

}

.bg-animation span:nth-child(1){

left:8%;

width:18px;
height:18px;

animation-duration:18s;

}

.bg-animation span:nth-child(2){

left:22%;

width:32px;
height:32px;

animation-duration:22s;

}

.bg-animation span:nth-child(3){

left:35%;

animation-duration:17s;

}

.bg-animation span:nth-child(4){

left:48%;

width:45px;
height:45px;

}

.bg-animation span:nth-child(5){

left:62%;

animation-duration:21s;

}

.bg-animation span:nth-child(6){

left:74%;

width:22px;
height:22px;

}

.bg-animation span:nth-child(7){

left:87%;

animation-duration:19s;

}

.bg-animation span:nth-child(8){

left:95%;

width:38px;
height:38px;

}

@keyframes floatBubble{

0%{

transform:translateY(0) rotate(0deg);

opacity:0;

}

15%{

opacity:1;

}

100%{

transform:translateY(-120vh) rotate(360deg);

opacity:0;

}

}

/* ---------- Floating Medical Icons ---------- */

.floating-icons{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

pointer-events:none;

z-index:-1;

}

.floating-icons i{

position:absolute;

font-size:30px;

color:rgba(255,255,255,.10);

animation:medicalFloat 16s linear infinite;

}

.floating-icons i:nth-child(1){

left:10%;
top:90%;

}

.floating-icons i:nth-child(2){

left:28%;
top:105%;

animation-delay:2s;

}

.floating-icons i:nth-child(3){

left:50%;
top:100%;

animation-delay:4s;

}

.floating-icons i:nth-child(4){

left:70%;
top:110%;

animation-delay:6s;

}

.floating-icons i:nth-child(5){

left:90%;
top:100%;

animation-delay:8s;

}

@keyframes medicalFloat{

0%{

transform:translateY(0);

opacity:0;

}

20%{

opacity:.15;

}

100%{

transform:translateY(-120vh);

opacity:0;

}

}

/* ---------- Main Container ---------- */

.container{

width:100%;

padding:35px 18px;

display:flex;

justify-content:center;

align-items:center;

}

/* ---------- Glass Card ---------- */

.glass-card{

width:100%;

max-width:900px;

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

backdrop-filter:blur(18px);

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

border-radius:30px;

padding:35px 25px;

box-shadow:

0 15px 40px rgba(0,0,0,.35),

0 0 30px rgba(255,0,0,.20);

text-align:center;

animation:cardShow 1s ease;

}

@keyframes cardShow{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/* =====================================================
   HEADER / LOGO
===================================================== */

.logo-box{

width:150px;
height:150px;

margin:0 auto 20px;

background:#fff;

border-radius:50%;

padding:8px;

overflow:hidden;

box-shadow:

0 0 20px rgba(255,255,255,.4),

0 0 45px rgba(255,0,0,.45);

animation:logoPulse 2s infinite;

}

.logo-box img{

width:100%;
height:100%;

object-fit:cover;

border-radius:50%;

display:block;

}

@keyframes logoPulse{

0%{

transform:scale(1);

box-shadow:
0 0 20px rgba(255,255,255,.35),
0 0 35px rgba(255,0,0,.45);

}

50%{

transform:scale(1.08);

box-shadow:
0 0 35px rgba(255,255,255,.6),
0 0 60px rgba(255,0,0,.75);

}

100%{

transform:scale(1);

}

}

/* =====================================================
   STATUS BADGE
===================================================== */

.status-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 24px;

margin-bottom:25px;

border-radius:40px;

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

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

backdrop-filter:blur(10px);

font-size:16px;

font-weight:700;

animation:fadeUp .9s;

}

.status-badge i{

color:#42ff83;

}

/* =====================================================
   TITLE
===================================================== */

.glass-card h1{

font-size:44px;

font-weight:800;

line-height:1.3;

margin-bottom:10px;

text-shadow:

0 0 18px rgba(255,255,255,.25);

animation:fadeUp 1.1s;

}

.glass-card h2{

font-size:25px;

font-weight:600;

margin-bottom:20px;

opacity:.95;

letter-spacing:.5px;

animation:fadeUp 1.3s;

}

.tagline{

font-size:23px;

font-weight:700;

margin-bottom:25px;

color:#fff;

animation:fadeUp 1.5s;

}

/* =====================================================
   HEARTBEAT LINE
===================================================== */

.heartbeat{

position:relative;

width:100%;

height:5px;

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

border-radius:50px;

overflow:hidden;

margin:30px auto 35px;

}

.heart-line{

position:absolute;

left:-40%;

top:0;

width:40%;

height:100%;

background:linear-gradient(
90deg,
transparent,
#ffffff,
#ffbaba,
transparent
);

box-shadow:
0 0 15px #fff;

animation:heartMove 2s linear infinite;

}

@keyframes heartMove{

100%{

left:120%;

}

}

/* =====================================================
   COMMON ANIMATION
===================================================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/* =====================================================
   SERVICE SECTION
===================================================== */

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

margin:35px 0;

}

.service-card{

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

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

border-radius:22px;

padding:30px 22px;

transition:.35s;

backdrop-filter:blur(12px);

}

.service-card:hover{

transform:translateY(-10px);

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

box-shadow:

0 18px 35px rgba(0,0,0,.30),

0 0 20px rgba(255,255,255,.15);

}

.service-card i{

font-size:46px;

margin-bottom:18px;

color:#fff;

text-shadow:0 0 12px rgba(255,255,255,.40);

}

.service-card h3{

font-size:24px;

margin-bottom:12px;

}

.service-card p{

font-size:17px;

line-height:1.8;

opacity:.95;

}

/* =====================================================
   CONTACT
===================================================== */

.contact-box{

margin-top:35px;

display:flex;

flex-direction:column;

gap:18px;

}

.contact-item{

display:flex;

align-items:center;

gap:18px;

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

padding:18px 22px;

border-radius:18px;

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

transition:.35s;

}

.contact-item:hover{

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

transform:translateX(8px);

}

.contact-item i{

font-size:30px;

min-width:40px;

color:#fff;

}

.contact-item h4{

font-size:20px;

margin-bottom:5px;

}

.contact-item p{

font-size:17px;

line-height:1.7;

}

/* =====================================================
   BUTTONS
===================================================== */

.button-group{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin:35px 0;

}

.call-btn,
.whatsapp-btn{

display:flex;

align-items:center;

gap:10px;

padding:15px 28px;

border-radius:50px;

font-size:18px;

font-weight:700;

text-decoration:none;

color:#fff;

transition:.35s;

}

.call-btn{

background:linear-gradient(135deg,#ff3b3b,#b60000);

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

}

.whatsapp-btn{

background:linear-gradient(135deg,#25D366,#128C7E);

box-shadow:0 10px 30px rgba(37,211,102,.35);

}

.call-btn:hover,
.whatsapp-btn:hover{

transform:translateY(-6px) scale(1.05);

}

/* =====================================================
   NOTICE BOX
===================================================== */

.notice-box{

margin-top:15px;

padding:18px 22px;

border-radius:18px;

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

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

display:flex;

align-items:center;

justify-content:center;

gap:12px;

font-size:18px;

font-weight:600;

}

.notice-box i{

color:#ffd54a;

font-size:22px;

animation:bellShake 1.5s infinite;

}

@keyframes bellShake{

0%,100%{

transform:rotate(0deg);

}

25%{

transform:rotate(18deg);

}

75%{

transform:rotate(-18deg);

}

}
/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{
text-align:center;
margin:50px 0 30px;
}

.section-title h2{
font-size:34px;
font-weight:800;
margin-bottom:12px;
color:#fff;
text-shadow:0 0 15px rgba(255,255,255,.25);
}

.section-title p{
font-size:18px;
line-height:1.8;
opacity:.9;
max-width:700px;
margin:auto;
}

/* =====================================================
   FEATURE GRID
===================================================== */

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:40px;
}

.feature-card{
background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.15);
border-radius:22px;
padding:30px 22px;
text-align:center;
backdrop-filter:blur(12px);
transition:.35s;
}

.feature-card:hover{
transform:translateY(-10px);
background:rgba(255,255,255,.18);
box-shadow:
0 18px 35px rgba(0,0,0,.30),
0 0 20px rgba(255,255,255,.15);
}

.feature-card i{
font-size:45px;
margin-bottom:18px;
color:#fff;
}

.feature-card h3{
font-size:22px;
margin-bottom:12px;
}

.feature-card p{
font-size:16px;
line-height:1.8;
}

/* =====================================================
   OPENING CARD
===================================================== */

.opening-card{
margin:40px 0;
background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.15);
border-radius:25px;
padding:30px;
}

.opening-card h3{
font-size:28px;
margin-bottom:20px;
text-align:center;
}

.time-list{
display:flex;
flex-direction:column;
gap:18px;
}

.time-list div{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:rgba(255,255,255,.08);
border-radius:15px;
}

.time-list span{
font-size:17px;
}

.time-list strong{
font-size:18px;
color:#ffe082;
}

/* =====================================================
   OWNER MESSAGE
===================================================== */

.owner-message{
margin:40px 0;
padding:30px;
border-radius:22px;
background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.15);
text-align:center;
}

.owner-message i{
font-size:55px;
margin-bottom:18px;
color:#ffd54f;
}

.owner-message p{
font-size:18px;
line-height:2;
}

/* =====================================================
   COUNTER
===================================================== */

.counter-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
margin:40px 0;
}

.counter-card{
background:rgba(255,255,255,.10);
border-radius:20px;
padding:30px;
border:1px solid rgba(255,255,255,.15);
text-align:center;
transition:.35s;
}

.counter-card:hover{
transform:scale(1.05);
background:rgba(255,255,255,.18);
}

.counter-card h2{
font-size:42px;
font-weight:800;
color:#fff;
margin-bottom:10px;
}

.counter-card p{
font-size:17px;
}
/* =====================================================
   MAP SECTION
===================================================== */

.map-card{
    margin:40px 0;
    padding:30px;
    border-radius:25px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(15px);
}

.map-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.map-card p{
    margin-bottom:20px;
    font-size:18px;
}

.map-placeholder{
    height:280px;
    border:2px dashed rgba(255,255,255,.35);
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.map-placeholder i{
    font-size:70px;
    margin-bottom:15px;
    color:#fff;
}

.map-placeholder p{
    margin:0;
}

/* =====================================================
   SOCIAL
===================================================== */

.social-section{

margin:45px 0;

text-align:center;

}

.social-section h3{

font-size:28px;

margin-bottom:25px;

}

.social-links{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.social-links a{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

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

border-radius:50%;

color:#fff;

font-size:24px;

text-decoration:none;

transition:.35s;

}

.social-links a:hover{

background:#fff;

color:#c40000;

transform:translateY(-8px) rotate(360deg);

}

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

footer{

margin-top:50px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.20);

text-align:center;

}

footer h3{

font-size:30px;

margin-bottom:15px;

}

footer p{

font-size:18px;

line-height:2;

}

.copyright{

margin-top:20px;

font-size:15px;

opacity:.8;

}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:992px){

.glass-card{

padding:30px 22px;

}

.glass-card h1{

font-size:34px;

}

.glass-card h2{

font-size:22px;

}

.section-title h2{

font-size:28px;

}

}

@media(max-width:768px){

.logo-box{

width:120px;

height:120px;

}

.service-grid,
.feature-grid,
.counter-grid{

grid-template-columns:1fr;

}

.time-list div{

flex-direction:column;

gap:10px;

text-align:center;

}

.contact-item{

flex-direction:column;

text-align:center;

}

.button-group{

flex-direction:column;

}

.call-btn,
.whatsapp-btn{

width:100%;

justify-content:center;

}

footer h3{

font-size:24px;

}

footer p{

font-size:16px;

}

}

@media(max-width:480px){

body{

font-size:15px;

}

.glass-card{

padding:22px 16px;

border-radius:20px;

}

.glass-card h1{

font-size:26px;

}

.glass-card h2{

font-size:18px;

}

.tagline{

font-size:17px;

}

.section-title h2{

font-size:24px;

}

.service-card,
.feature-card,
.counter-card,
.owner-message,
.opening-card,
.map-card{

padding:20px;

}

.notice-box{

font-size:15px;

flex-direction:column;

}

.social-links a{

width:50px;

height:50px;

font-size:20px;

}

}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#8b0000;

}

::-webkit-scrollbar-thumb{

background:#ffffff55;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#fff;

}
/*=========================
PREMIUM IMAGE SLIDER
==========================*/

.slider-section{

width:100%;

max-width:850px;

margin:40px auto;

}

.slider-title{

text-align:center;

font-size:28px;

font-weight:700;

margin-bottom:20px;

color:#fff;

}

.slider{

position:relative;

width:100%;

height:260px;

margin:auto;

overflow:hidden;

border-radius:20px;

background:#fff;

box-shadow:0 15px 35px rgba(0,0,0,.30);

}

.slides{

position:relative;

width:100%;

height:100%;

}

.slide{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

object-fit:contain;

background:#fff;

opacity:0;

transition:opacity .8s ease;

padding:5px;

}

.slide.active{

opacity:1;

}

.prev,

.next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:45px;

height:45px;

border:none;

border-radius:50%;

background:rgba(0,0,0,.45);

color:#fff;

font-size:24px;

cursor:pointer;

transition:.3s;

z-index:10;

}

.prev:hover,

.next:hover{

background:#c40000;

}

.prev{

left:12px;

}

.next{

right:12px;

}

.dots{

position:absolute;

left:50%;

bottom:12px;

transform:translateX(-50%);

display:flex;

gap:8px;

z-index:10;

}

.dot{

width:10px;

height:10px;

border-radius:50%;

background:#fff;

opacity:.5;

cursor:pointer;

transition:.3s;

}

.dot.active{

background:#ff0000;

opacity:1;

transform:scale(1.2);

}

/* Mobile */

@media(max-width:768px){

.slider-section{

margin:25px auto;

}

.slider{

height:180px;

border-radius:15px;

}

.slider-title{

font-size:22px;

}

.prev,

.next{

width:36px;

height:36px;

font-size:18px;

}

}