body {
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Ekdum dark grey/black color */
    color: #ffffff;
    font-family: 'Outfit', regular;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden; /* Scrollbar kadi nakhva */
}
/* --- Background Abstract Shapes ni Design --- */

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Aa shapes ne text ni pachhal (behind) rakhe che */
}

.shape {
    position: absolute;
    border-radius: 50%; /* Aakar ekdum gol karva */
    filter: blur(80px); /* Aa line thi ekdum mast abstract/dhundhlo effect aavshe */
    opacity: 0.6; /* Thodu transparent (par-darshak) karva */
    animation: moveShapes infinite alternate ease-in-out; /* Halva mate animation */
}

/* Pehlo Shape (Orange color) */
.shape1 {
    width: 400px;
    height: 400px;
    background: #003060; 
    top: -100px;
    left: -100px;
    animation-duration: 4s; /* 4 second maa halshe */
}

/* Bijo Shape (Dark Red/Pink color) */
.shape2 {
    width: 500px;
    height: 500px;
    background: #2571bc; 
    bottom: -150px;
    right: -100px;
    animation-duration: 6s; 
}

/* Trijo Shape (Purple color) */
.shape3 {
    width: 350px;
    height: 350px;
    background: #8e44ad; 
    bottom: 40%;
    left: 40%;
    animation-duration: 8s; 
}

.shape4 {
    width: 450px;
    height: 450px;
    background: #37a483; 
    bottom: 70%;
    left: 60%;
    animation-duration: 8s; 
}

.shape5 {
    width: 350px;
    height: 350px;
    background: #f25138; 
    bottom: -150%;
    left: -100%;
    animation-duration: 8s; 
}

/* Background shapes kedi rite halshe tenu animation */
@keyframes moveShapes {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -80px) scale(1.2); } /* Thodu khashi ne motu thashe */
}
/* Page load thay tyare aakhu container dhime thi dekhase (Fade In) */
.container {
    animation: fadein 2s ease-in-out;
}

/* COMING SOON text ni design ane Floating Animation */
h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 8px; /* Aksharo vacche jagya */
    color: #003060; /* Mast professional orange color */
    animation: float 3s ease-in-out infinite; /* Text satat upar-niche thashe */
}

/* Niche na text ni design */
p {
    font-size: 1.2rem;
    color: #2571bc;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Gol ghumta loader ni design */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #2571bc; /* Aacho grey border */
    border-top: 5px solid #003060; /* Upar no bhag orange */
    border-radius: 50%; /* Ekdum gol karva */
    margin: 0 auto;
    animation: spin 1s linear infinite; /* Satat ghumadva mate */
}

/* --- Animations na Keyframes --- */

/* 1. Fade In Animation (Niche thi upar aavtu dekhase) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. Float Animation (Hava maa tarvatho effect) */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* 3. Spin Animation (Gol farto loader) */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
p1 {
    font-size: 1.2rem;
    color: #003060;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    
}
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #003060;
    font-size: 0.9rem;
}
/* =========================================
   MOBILE RESPONSIVE DESIGN (Media Queries)
========================================= */

/* Je screen ni size 768px (Mobile/Tablet) ke enathi nani hashe, tema j aa code laagoo thashe */
@media only screen and (max-width: 768px) {
    
    /* Logo ne thodo nano karva */
    .brand-logo {
        width: 100px; 
        margin-bottom: 20px;
    }

    /* 'COMING SOON' aksharo ne mobile screen pramane set karva */
    h1 {
        font-size: 2.5rem;   /* Aksharo nana karya */
        letter-spacing: 4px; /* Vacche ni jagya ghataadi */
    }

    /* Niche na message ni size ane jagya set karvi */
    p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px; /* Aaju-baju aksharo screen ne adi na jay etle thodi jagya chhoadi */
    }

    /* Loader ne thodo nano karvo */
    .loader {
        width: 40px;
        height: 40px;
        border-width: 4px;
    }

    /* Footer na text ni size nani karvi */
    .footer p {
        font-size: 0.8rem;
    }
}