/*==================================================
    Heaven's Royalty Daycare
    Premium Responsive CSS Framework
    Version 2.0
    PART 1 - RESET & GLOBAL SETTINGS
==================================================*/


/*=========================
    GOOGLE FONT
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');


/*=========================
    ROOT VARIABLES
=========================*/

:root{

    --primary:#4B0D63;
    --primary-light:#7B2CBF;
    --secondary:#FFD54F;
    --accent:#FF6F61;
    --success:#25D366;

    --white:#ffffff;
    --black:#222222;

    --text:#444444;
    --text-light:#777777;

    --bg:#F7FBFF;
    --bg-light:#FFFFFF;

    --shadow-sm:0 5px 12px rgba(0,0,0,.05);
    --shadow-md:0 12px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 55px rgba(0,0,0,.12);

    --radius-sm:10px;
    --radius-md:18px;
    --radius-lg:30px;

    --transition:.35s ease;

}


/*=========================
        CSS RESET
=========================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

    font-size:16px;

}


body{

    font-family:'Fredoka',sans-serif;

    background:linear-gradient(
    to bottom,
    #87CEFA,
    #EAF9FF);

    color:var(--text);

    overflow-x:hidden;

    min-height:100vh;

}


/*=========================
      GLOBAL ELEMENTS
=========================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}


a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}


button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}


input,
textarea,
select{

    font-family:inherit;

    outline:none;

}


ul{

    list-style:none;

}


section{

    position:relative;

    width:100%;

    padding:90px 0;

    scroll-margin-top:120px;

}


/*=========================
      CONTAINER
=========================*/

.container{

    width:92%;

    max-width:1320px;

    margin:auto;

}


/*=========================
      TYPOGRAPHY
=========================*/

h1{

    font-size:clamp(2.7rem,8vw,6rem);

    line-height:1.05;

    font-weight:700;

    color:var(--primary);

}


h2{

    font-size:clamp(2rem,5vw,3.5rem);

    font-weight:700;

    color:var(--primary);

}


h3{

    font-size:clamp(1.3rem,3vw,1.8rem);

    font-weight:600;

}


p{

    font-size:1rem;

    line-height:1.8;

    color:var(--text);

}


.small{

    font-size:.9rem;

    color:var(--text-light);

}


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

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light));

    color:#fff;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-md);

}


.btn:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-lg);

}


.btn-secondary{

    background:var(--secondary);

    color:var(--primary);

}


/*=========================
      GLASS CARD
=========================*/

.glass{

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

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

    border-radius:30px;

    box-shadow:var(--shadow-md);

}


/*=========================
      CARD STYLE
=========================*/

.card{

    background:#fff;

    border-radius:30px;

    padding:30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}


.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/*=========================
       UTILITIES
=========================*/

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:10px;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mb-1{

    margin-bottom:10px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:30px;

}

.w-100{

    width:100%;

}


/*=========================
      ANIMATIONS
=========================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


.fade-up{

    animation:fadeUp .8s ease forwards;

}


.float{

    animation:float 5s infinite ease-in-out;

}


.pulse{

    animation:pulse 2.5s infinite;

}


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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-light);

}


/*=========================
     RESPONSIVE RESET
=========================*/

@media (max-width:992px){

    section{

        padding:70px 0;

    }

}


@media (max-width:768px){

    html{

        font-size:15px;

    }

    .container{

        width:94%;

    }

}


@media (max-width:480px){

    html{

        font-size:14px;

    }

}

/* =====================================================
   PREMIUM TOPBAR
===================================================== */

.topbar{
    background:#3a073a;
    color:#FFD700;

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

    padding:12px 6%;

    font-size:15px;
    font-weight:500;

    position:relative;
    z-index:1001;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.topbar i{
    margin-right:6px;
}

.topbar a{
    color:#FFD700;
    text-decoration:none;
    transition:.3s;
}

.topbar a:hover{
    color:white;
}

/* =====================================================
   PREMIUM NAVBAR
===================================================== */

.navbar{

    position:sticky;
    top:0;
    z-index:1000;

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

    padding:14px 6%;

    background:rgba(58,7,58,.95);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

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

/* =====================================================
   LOGO
===================================================== */

.logo{
    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

.logo img{

    width:78px;
    height:78px;

    object-fit:contain;

    transition:.35s;
}

.logo img:hover{
    transform:rotate(-5deg) scale(1.05);
}

.logo span{

    color:#fff;

    font-size:22px;
    font-weight:700;
    line-height:1.2;
}

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

.menu{

    display:flex;
    align-items:center;
    gap:12px;

    flex-wrap:wrap;
}

.menu-item{

    padding:12px 20px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    font-size:15px;

    transition:.35s;
}

/* colourful buttons */

.menu-item.home{
    background:#ffe5ef;
    color:#444;
}

.menu-item.programs{
    background:#dff8ff;
    color:#444;
}

.menu-item.pricing{
    background:#fff4d6;
    color:#444;
}

.menu-item.contact{
    background:#e8f9e8;
    color:#444;
}

.menu-item.login{

    background:linear-gradient(135deg,#ff9800,#ff4081);

    color:white;

    box-shadow:
        0 10px 20px rgba(255,64,129,.25);
}

.menu-item:hover{

    transform:translateY(-3px);

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

.menu-item.active{

    background:linear-gradient(135deg,#ff9800,#ff4081);

    color:white;
}

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

.top-right{

    display:flex;
    gap:10px;
}

.top-right a{

    width:42px;
    height:42px;

    border-radius:50%;

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

    color:#FFD700;

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

    transition:.35s;
}

.top-right a:hover{

    transform:translateY(-4px) scale(1.08);

    background:white;
}

.top-right a:hover .bi-facebook{
    color:#1877f2;
}

.top-right a:hover .bi-instagram{
    color:#E4405F;
}

.top-right a:hover .bi-whatsapp{
    color:#25D366;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width:991px){

    .navbar{

        padding:14px 25px;
        flex-wrap:wrap;
        gap:18px;
    }

    .menu{

        width:100%;
        justify-content:center;
    }

    .logo img{

        width:70px;
        height:70px;
    }

    .logo span{

        font-size:20px;
    }

}

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

@media (max-width:768px){

    .topbar{

        flex-direction:column;
        gap:10px;

        text-align:center;

        padding:10px 20px;

        font-size:13px;
    }

    .topbar-left,
    .topbar-right{

        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .navbar{

        /* flex-direction:column;
        justify-content:center; */

        padding:15px;
    }

    .logo{

        justify-content:center;
    }

    .logo img{

        width:65px;
        height:65px;
    }

    .logo span{

        font-size:18px;
    }

    .menu{

        width:100%;
        justify-content:center;
        gap:10px;
    }

    .menu-item{

        flex:1 1 calc(50% - 10px);

        text-align:center;

        padding:12px 15px;

        font-size:14px;

        min-width:140px;
    }

}

/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width:480px){

    .menu-item{

        flex:1 1 100%;
    }

    .logo span{

        display:none;
    }

    .top-right{

        justify-content:center;
    }

}


/* =====================================================
   PREMIUM HERO SECTION
===================================================== */

.hero{

    position:relative;

    min-height:calc(100vh - 150px);

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

    overflow:hidden;

    padding:80px 6%;

    text-align:center;
}

/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content{

    position:relative;
    z-index:5;

    max-width:900px;

    margin:auto;
}

.hero h1{

    font-size:clamp(42px,8vw,100px);

    line-height:1.05;

    font-weight:700;

    color:#3a073a;

    margin-bottom:25px;

    text-shadow:
        3px 3px 0 rgba(255,215,0,.9),
        0 15px 35px rgba(0,0,0,.15);

    animation:heroFloat 4s ease-in-out infinite;
}

.hero p{

    font-size:clamp(18px,2vw,24px);

    color:#444;

    max-width:720px;

    margin:auto;

    line-height:1.8;

    margin-bottom:35px;
}

/* =====================================================
   CTA BUTTON
===================================================== */

.btn{

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

    padding:18px 40px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    color:white;

    background:
        linear-gradient(135deg,#ff9800,#ff4081);

    box-shadow:
        0 18px 35px rgba(255,64,129,.30);

    transition:.35s;
}

.btn:hover{

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

    box-shadow:
        0 25px 45px rgba(255,64,129,.40);
}

/* =====================================================
   RAINBOW
===================================================== */

.rainbow-hero{

    position:absolute;

    top:40px;

    left:50%;

    transform:translateX(-50%);

    width:100%;


    pointer-events:none;

    z-index:1;
}

/* =====================================================
   CLOUD BASE
===================================================== */

.cloud-bottom{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:140px;

    background:white;

    border-radius:100px 100px 0 0;

    z-index:2;
}

.cloud-bottom::before {
    width: 200px;
    height: 200px;
    bottom: 40px;
    left: 5%;
    box-shadow:
        180px 20px 0 0 white,
        360px 10px 0 0 white,
        540px 30px 0 0 white,
        720px 15px 0 0 white,
        900px 25px 0 0 white,
        1080px 10px 0 0 white;
}

/* =====================================================
   SPARKLES
===================================================== */

.sparkle{

    position:absolute;

    z-index:2;

    font-size:24px;

    animation:twinkle 2s ease-in-out infinite alternate;
}

.s1{

    top:18%;
    left:14%;
}

.s2{

    top:28%;
    right:18%;
}

.s3{

    top:46%;
    left:68%;
}

@keyframes twinkle{

    from{

        opacity:.3;
        transform:scale(1);
    }

    to{

        opacity:1;
        transform:scale(1.35);
    }
}

/* =====================================================
   FLOAT ANIMATION
===================================================== */

@keyframes heroFloat{

    0%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-10px);
    }

    100%{

        transform:translateY(0);
    }
}

/* =====================================================
   TABLETS
===================================================== */

@media (max-width:991px){

    .hero{

        min-height:80vh;

        padding:70px 30px;
    }

    .rainbow-hero{

        width:750px;
    }

}

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

@media (max-width:768px){

    .hero{

        min-height:75vh;

        padding:60px 20px;
    }

    .hero h1{

        font-size:52px;

        margin-bottom:20px;
    }

    .hero p{

        font-size:18px;
    }

    .rainbow-hero{

        width:620px;

        opacity:.35;
    }

    .cloud-bottom{

        height:110px;
    }

}

/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width:480px){

    .hero{

        min-height:70vh;

        padding:50px 15px;
    }

    .hero h1{

        font-size:40px;

        line-height:1.1;
    }

    .hero p{

        font-size:16px;
    }

    .btn{

        width:100%;

        max-width:300px;
    }

    .rainbow-hero{

        width:500px;
    }

    .sparkle{

        font-size:18px;
    }

}

/*====================================================
    PREMIUM PROGRAMS SECTION
====================================================*/

.programs-section{

    position:relative;

    padding:0px 6%;

    background:linear-gradient(
        to bottom,
        #ffffff,
        #f8fcff
    );

    overflow:hidden;
    text-align: center;
}

/*====================================================
    HEADINGS
====================================================*/

.section-title{

    font-size:clamp(34px,5vw,52px);

    color:#3a073a;

    font-weight:700;

    margin-bottom:15px;

    text-align:center;

    margin-left:auto;

    margin-right:auto;
}

.section-subtitle{

    max-width:700px;

    margin:auto;

    margin-bottom:70px;

    color:#666;

    line-height:1.8;

    font-size:18px;

    text-align:center;

    max-width:800px;

    margin-left:auto;

    margin-right:auto;
}

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

.cards{

    display:grid;

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

    gap:35px;

    align-items:stretch;
}

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

.card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    padding:35px;

    border-radius:30px;

    background:white;

    min-height:430px;

    transition:.4s;

    box-shadow:

        0 15px 40px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.04);
}

.card:hover{

    transform:

        translateY(-10px);

    box-shadow:

        0 25px 60px rgba(0,0,0,.14);
}

/*====================================================
    TOP GLOW
====================================================*/

.card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:8px;

    background:

    linear-gradient(
        90deg,
        #ff9800,
        #ff4081,
        #7e57c2,
        #42a5f5
    );
}

/*====================================================
    ICON
====================================================*/

.icon-bubble{

    width:90px;
    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

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

    font-size:40px;

    transition:.35s;

    box-shadow:

        0 12px 25px rgba(0,0,0,.08);
}

.card:hover .icon-bubble{

    transform:

        rotate(-8deg)
        scale(1.08);
}

/* brand colours */

.daycare .icon-bubble{

    background:#FFE082;
}

.preschool .icon-bubble{

    background:#FFD1DC;
}

.afterschool .icon-bubble{

    background:#D8C8FF;
}

.daily .icon-bubble{

    background:#CDEFFF;
}

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

.card h3{

    text-align:center;

    color:#3a073a;

    font-size:25px;

    margin-bottom:8px;
}

/*====================================================
    AGE
====================================================*/

.card .age{

    text-align:center;

    color:#ff9800;

    font-weight:700;

    font-size:20px;

    margin-bottom:18px;
}

/*====================================================
    DESCRIPTION
====================================================*/

.card .desc{

    color:#666;

    text-align:center;

    line-height:1.7;

    font-size:16px;

    margin-bottom:25px;
}

/*====================================================
    FEATURES
====================================================*/

.card ul{

    margin:0;

    padding:0;

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-top:auto;
}

.card ul li{

    position:relative;

    padding-left:32px;

    color:#555;

    line-height:1.5;
}

.card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    width:22px;
    height:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eaf9ee;

    color:#2e7d32;

    font-size:13px;

    font-weight:bold;
}

/*====================================================
    HOVER BACKGROUND
====================================================*/

.card::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at top right,

        rgba(255,215,0,.12),

        transparent 65%

    );

    opacity:0;

    transition:.35s;

    pointer-events:none;
}

.card:hover::after{

    opacity:1;
}

/*====================================================
    TABLET
====================================================*/

@media (max-width:991px){

    .cards{

        grid-template-columns:

            repeat(
                2,
                minmax(260px,1fr)
            );
    }

}

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

@media (max-width:768px){

    .programs-section{

        padding:70px 25px;
    }

    .cards{

        grid-template-columns:1fr;

        gap:25px;
    }

    .card{

        min-height:auto;

        padding:30px;
    }

    .section-subtitle{

        font-size:16px;
    }

}

/*====================================================
    SMALL PHONES
====================================================*/

@media (max-width:480px){

    .programs-section{

        padding:60px 18px;
    }

    .icon-bubble{

        width:80px;
        height:80px;

        font-size:34px;
    }

    .card h3{

        font-size:22px;
    }

    .card .age{

        font-size:18px;
    }

}

/*====================================================
    PREMIUM PRICING SECTION
====================================================*/

.pricing-section{

    padding:100px 6%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7fbff
    );
}

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

.pricing-container{

    display:grid;

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

    gap:35px;

    align-items:stretch;

    margin-top:60px;
}

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

.pricing-box{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:35px;

    color:white;

    transition:.35s;

    box-shadow:
        0 18px 45px rgba(0,0,0,.12);

    display:flex;

    flex-direction:column;

    min-height:520px;
}

.pricing-box:hover{

    transform:
        translateY(-12px);

    box-shadow:
        0 30px 60px rgba(0,0,0,.18);
}

/*====================================================
    SHINE EFFECT
====================================================*/

.pricing-box::before{

    content:"";

    position:absolute;

    top:-60%;

    left:-30%;

    width:120px;

    height:260%;

    background:

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

    transform:
        rotate(25deg);

    transition:.8s;
}

.pricing-box:hover::before{

    left:130%;
}

/*====================================================
    LARGE BACKGROUND ICON
====================================================*/

.icon-bg{

    position:absolute;

    top:20px;

    right:20px;

    font-size:120px;

    opacity:.08;

    pointer-events:none;
}

/*====================================================
    TITLES
====================================================*/

.pricing-box h3{

    font-size:30px;

    margin-bottom:20px;

    font-weight:700;
}

/*====================================================
    DAILY PRICE
====================================================*/

.price-daily{

    font-size:20px;

    opacity:.95;

    margin-bottom:10px;
}

/*====================================================
    MONTHLY PRICE
====================================================*/

.price-monthly{

    font-size:42px;

    font-weight:700;

    margin-bottom:25px;
}

/*====================================================
    FEATURES
====================================================*/

.services{

    list-style:none;

    margin:0;

    padding:0;

    display:flex;

    flex-direction:column;

    gap:14px;

    flex-grow:1;
}

.services li{

    position:relative;

    padding-left:30px;

    line-height:1.5;
}

.services li::before{

    content:"✓";

    position:absolute;

    left:0;

    width:20px;
    height:20px;

    border-radius:50%;

    display:flex;

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

    background:

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

    font-size:12px;
}

/*====================================================
    BUTTON
====================================================*/

.pricing-box button{

    margin-top:35px;

    width:100%;

    height:56px;

    border:none;

    border-radius:50px;

    background:white;

    color:#333;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;
}

.pricing-box button:hover{

    transform:scale(1.03);

    background:#fff8dc;
}

/*====================================================
    POPULAR RIBBON
====================================================*/

.popular{

    border:
        4px solid gold;
}

.popular::after{

    content:"MOST POPULAR";

    position:absolute;

    top:22px;

    right:-48px;

    background:gold;

    color:#333;

    font-size:12px;

    font-weight:700;

    padding:8px 55px;

    transform:
        rotate(45deg);

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

/*====================================================
    COLOURS
====================================================*/

.orange{

    background:
    linear-gradient(
        135deg,
        #ff9800,
        #ff7043
    );
}

.pink{

    background:
    linear-gradient(
        135deg,
        #ff4081,
        #ff6fa8
    );
}

.purple{

    background:
    linear-gradient(
        135deg,
        #7b1fa2,
        #ab47bc
    );
}

.blue{

    background:
    linear-gradient(
        135deg,
        #2196f3,
        #4fc3f7
    );
}

/*====================================================
    TABLET
====================================================*/

@media (max-width:992px){

    .pricing-container{

        grid-template-columns:
        repeat(
            2,
            minmax(250px,1fr)
        );
    }

}

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

@media (max-width:768px){

    .pricing-section{

        padding:70px 25px;
    }

    .pricing-container{

        grid-template-columns:1fr;

        gap:25px;
    }

    .pricing-box{

        min-height:auto;

        padding:30px;
    }

    .price-monthly{

        font-size:36px;
    }

}

/*====================================================
    SMALL PHONES
====================================================*/

@media (max-width:480px){

    .pricing-section{

        padding:60px 18px;
    }

    .pricing-box h3{

        font-size:26px;
    }

    .price-monthly{

        font-size:32px;
    }

    .pricing-box button{

        height:52px;
    }

}

/*====================================================
    PREMIUM FAQ SECTION
====================================================*/

.faq-section{

    padding:100px 6%;

    background:
    linear-gradient(
        180deg,
        #f7fbff,
        #ffffff
    );

}


.faq-container{

    max-width:1000px;

    margin:60px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}


/*====================================================
    FAQ ITEM
====================================================*/

.faq-item{

    background:white;

    border-radius:25px;

    padding:25px 30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}


.faq-item:hover{

    transform:translateY(-5px);

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

}


.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:20px;

    font-weight:700;

    color:#4a148c;

}


.faq-question span{

    width:35px;

    height:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #7b1fa2,
        #ab47bc
    );

    color:white;

    font-size:22px;

}


.faq-answer{

    margin-top:15px;

    color:#555;

    line-height:1.7;

    font-size:16px;

}


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


.contact-section{

    padding:100px 6%;

    background:

    linear-gradient(
        135deg,
        #4a148c,
        #7b1fa2
    );

}


.contact-wrapper{

    display:grid;

    grid-template-columns:

    repeat(
        2,
        1fr
    );

    gap:50px;

    align-items:center;

}


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


.contact-content{

    color:white;

}


.contact-content h2{

    font-size:45px;

    margin-bottom:20px;

}


.contact-content p{

    font-size:18px;

    line-height:1.7;

    opacity:.9;

}


.contact-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

}


.contact-buttons a{

    text-decoration:none;

    padding:15px 30px;

    border-radius:50px;

    background:#ffd700;

    color:#333;

    font-weight:700;

    transition:.3s;

}


.contact-buttons a:hover{

    transform:translateY(-5px);

    background:white;

}



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


.contact-card{

    background:white;

    border-radius:35px;

    padding:40px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.25);

}


.contact-info{

    display:flex;

    flex-direction:column;

    gap:22px;

}


.contact-info div{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:17px;

    color:#444;

}


.contact-info i{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f4e7ff;

    color:#7b1fa2;

}



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


.footer{

    background:

    linear-gradient(
        135deg,
        #12001f,
        #2b003f
    );

    padding:70px 6% 30px;

    color:white;

}


.footer-container{

    display:grid;

    grid-template-columns:

    repeat(
        4,
        1fr
    );

    gap:40px;

}


.footer h3{

    color:#ffd700;

    margin-bottom:20px;

    font-size:22px;

}


.footer p{

    line-height:1.7;

    opacity:.85;

}


.footer ul{

    list-style:none;

    padding:0;

}


.footer ul li{

    margin-bottom:12px;

}


.footer ul li a{

    color:white;

    text-decoration:none;

    opacity:.85;

    transition:.3s;

}


.footer ul li a:hover{

    color:#ffd700;

    padding-left:8px;

}



/*====================================================
    FOOTER SOCIAL ICONS
====================================================*/


.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}


.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    color:white;

    transition:.3s;

}


.footer-social a:hover{

    background:#ffd700;

    color:#333;

    transform:translateY(-5px);

}



/*====================================================
    COPYRIGHT
====================================================*/


.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:

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

    text-align:center;

    opacity:.8;

}



/*====================================================
    TABLET
====================================================*/


@media(max-width:992px){


    .contact-wrapper{

        grid-template-columns:1fr;

    }


    .footer-container{

        grid-template-columns:

        repeat(
            2,
            1fr
        );

    }


}



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


@media(max-width:768px){


    .faq-section,
    .contact-section{

        padding:70px 25px;

    }


    .faq-item{

        padding:20px;

    }


    .faq-question{

        font-size:17px;

    }


    .contact-content h2{

        font-size:34px;

    }


    .contact-buttons{

        flex-direction:column;

    }


    .contact-buttons a{

        text-align:center;

        width:100%;

    }


    .contact-card{

        padding:30px;

    }


    .footer{

        padding:60px 25px 25px;

    }


    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }


    .footer-social{

        justify-content:center;

    }


}



/*====================================================
    SMALL PHONES
====================================================*/


@media(max-width:480px){


    .faq-question span{

        width:30px;

        height:30px;

        font-size:18px;

    }


    .contact-content h2{

        font-size:30px;

    }


}


/*====================================================
    FAQ ACCORDION CONTROL
====================================================*/


.faq-answer{

    max-height:0;

    overflow:hidden;

    opacity:0;

    margin-top:0;

    transition:
    max-height .4s ease,
    opacity .4s ease,
    margin-top .4s ease;

}


.faq-item.active .faq-answer{

    max-height:200px;

    opacity:1;

    margin-top:15px;

}


.faq-item.active 
.faq-question span{

    transform:rotate(45deg);

    background:#ffd700;

    color:#333;

}


.faq-question span{

    transition:.3s;

}

/*====================================================
    FAQ HERO DECORATIONS
====================================================*/


.faq-section{

    position:relative;

    overflow:hidden;

}


/*====================================================
    RAINBOW BACKGROUND
====================================================*/


.faq-bg{

    position:absolute;

    top:-60px;

    left:50%;

    transform:translateX(-50%);

    width:420px;

    opacity:.15;

    z-index:0;

    pointer-events:none;

}



/*====================================================
    FLOATING CLOUDS
====================================================*/


.faq-cloud{

    position:absolute;

    background:white;

    border-radius:100px;

    opacity:.85;

    z-index:0;

}


.faq-cloud::before,
.faq-cloud::after{

    content:"";

    position:absolute;

    background:white;

    border-radius:50%;

}



.faq-cloud::before{

    width:70px;

    height:70px;

    top:-30px;

    left:30px;

}



.faq-cloud::after{

    width:90px;

    height:90px;

    top:-45px;

    right:25px;

}



/* Cloud Positions */


.c1{

    width:170px;

    height:55px;

    top:120px;

    left:5%;

    animation:cloudFloat 18s infinite alternate;

}



.c2{

    width:220px;

    height:65px;

    top:300px;

    right:5%;

    animation:cloudFloat 22s infinite alternate-reverse;

}



.c3{

    width:150px;

    height:45px;

    bottom:100px;

    left:15%;

    animation:cloudFloat 25s infinite alternate;

}



@keyframes cloudFloat{


    from{

        transform:translateX(0);

    }


    to{

        transform:translateX(35px);

    }

}



/*====================================================
    FLOATING ICONS
====================================================*/


.faq-float{

    position:absolute;

    z-index:1;

    font-size:55px;

    animation:

    iconFloat 4s ease-in-out infinite;

}



.f1{

    top:140px;

    right:12%;

}



.f2{

    top:400px;

    left:8%;

    animation-delay:1s;

}



.f3{

    bottom:90px;

    right:10%;

    animation-delay:2s;

}



@keyframes iconFloat{


    0%,
    100%{

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

    }


    50%{

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

    }

}



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


.faq-title{

    position:relative;

    z-index:2;

    text-align:center;

    font-size:48px;

    font-weight:800;

    color:#4a148c;

    margin-bottom:20px;

}



/*====================================================
    FAQ SUBTITLE
====================================================*/


.faq-subtitle{

    position:relative;

    z-index:2;

    max-width:750px;

    margin:0 auto;

    text-align:center;

    font-size:18px;

    line-height:1.7;

    color:#555;

}



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


@media(max-width:768px){


    .faq-bg{

        width:280px;

        top:-20px;

    }


    .faq-title{

        font-size:34px;

        padding:0 15px;

    }


    .faq-subtitle{

        font-size:16px;

        padding:0 15px;

    }


    .faq-float{

        font-size:35px;

    }


    .c1{

        left:-40px;

    }


    .c2{

        right:-50px;

    }


    .c3{

        display:none;

    }

}



@media(max-width:480px){


    .faq-title{

        font-size:28px;

    }


    .faq-bg{

        width:220px;

    }

}


/*====================================================
    PREMIUM CTA SECTION
====================================================*/


.cta{

    position:relative;

    overflow:hidden;

    padding:100px 6%;

    background:

    linear-gradient(
        135deg,
        #7b1fa2,
        #ab47bc
    );

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}



/*====================================================
    CTA CONTENT
====================================================*/


.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    color:white;

}



.cta-content h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:25px;

    line-height:1.2;

    color: white;

}



.cta-content p{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

    color: white;

}



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


.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

}



.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:58px;

    padding:0 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    font-size:16px;

    transition:.35s;

}



/* Primary */


.cta-btn.primary{

    background:#ffd700;

    color:#333;

    box-shadow:

    0 15px 30px rgba(0,0,0,.15);

}



.cta-btn.primary:hover{

    transform:translateY(-5px);

    background:white;

}



/* Secondary */


.cta-btn.secondary{

    background:white;

    color:#7b1fa2;

}



.cta-btn.secondary:hover{

    transform:translateY(-5px);

    background:#fff8dc;

}



/*====================================================
    FLOATING ICONS
====================================================*/


.cta-float{

    position:absolute;

    font-size:60px;

    z-index:1;

    opacity:.9;

    animation:

    ctaFloat 5s ease-in-out infinite;

}



.cta .f1{

    top:60px;

    left:8%;

}



.cta .f2{

    top:120px;

    right:10%;

    animation-delay:1s;

}



.cta .f3{

    bottom:70px;

    left:15%;

    animation-delay:2s;

}



@keyframes ctaFloat{


    0%,
    100%{

        transform:

        translateY(0)

        rotate(0deg);

    }


    50%{

        transform:

        translateY(-25px)

        rotate(10deg);

    }

}



/*====================================================
    DECORATIVE LIGHT EFFECT
====================================================*/


.cta::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:

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

    border-radius:50%;

    top:-200px;

    right:-150px;

}



.cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:

    rgba(255,215,0,.12);

    border-radius:50%;

    bottom:-150px;

    left:-100px;

}



/*====================================================
    TABLET
====================================================*/


@media(max-width:992px){


    .cta{

        padding:90px 5%;

    }


    .cta-content h2{

        font-size:40px;

    }


}



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


@media(max-width:768px){


    .cta{

        padding:70px 25px;

    }


    .cta-content h2{

        font-size:32px;

    }


    .cta-content p{

        font-size:16px;

    }


    .cta-buttons{

        flex-direction:column;

        gap:15px;

    }


    .cta-btn{

        width:100%;

    }


    .cta-float{

        font-size:38px;

    }


    .cta .f1{

        left:-10px;

        top:50px;

    }


    .cta .f2{

        right:-10px;

    }


    .cta .f3{

        display:none;

    }


}



/*====================================================
    SMALL PHONES
====================================================*/


@media(max-width:480px){


    .cta-content h2{

        font-size:28px;

    }


    .cta-btn{

        height:52px;

    }

}


/*====================================================
    PREMIUM CONTACT SECTION
====================================================*/


.contact-section{

    position:relative;

    overflow:hidden;

    padding:100px 6%;

    background:

    linear-gradient(
        180deg,
        #ffffff,
        #f7fbff
    );

    text-align:center;

}



/*====================================================
    BACKGROUND GLOW
====================================================*/


.contact-bg{

    position:absolute;

    width:500px;

    height:500px;

    background:

    radial-gradient(
        circle,
        rgba(171,71,188,.25),
        transparent 70%
    );

    top:-150px;

    right:-150px;

    z-index:0;

}



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


.contact-title{

    position:relative;

    z-index:2;

    font-size:48px;

    font-weight:800;

    color:#4a148c;

    margin-bottom:20px;

}



.contact-subtitle{

    position:relative;

    z-index:2;

    max-width:750px;

    margin:0 auto 60px;

    font-size:18px;

    line-height:1.7;

    color:#555;

}



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


.contact-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:

    repeat(
        3,
        1fr
    );

    gap:30px;

    max-width:1100px;

    margin:auto;

}



.contact-card{

    background:white;

    border-radius:30px;

    padding:40px 25px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.10);

    transition:.35s;

}



.contact-card:hover{

    transform:

    translateY(-10px);

    box-shadow:

    0 30px 60px rgba(0,0,0,.15);

}



.contact-card i{

    width:70px;

    height:70px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:30px;

    color:white;

    background:

    linear-gradient(
        135deg,
        #7b1fa2,
        #ab47bc
    );

}



.contact-card h3{

    margin-top:25px;

    margin-bottom:15px;

    color:#4a148c;

    font-size:22px;

}



.contact-card p{

    color:#555;

    line-height:1.6;

    font-size:16px;

}



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


.contact-actions{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:50px;

}



.contact-btn{

    height:58px;

    padding:0 35px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    font-size:16px;

    transition:.35s;

}



/* WhatsApp */


.contact-btn.primary{

    background:#25D366;

    color:white;

    box-shadow:

    0 15px 30px rgba(37,211,102,.3);

}



.contact-btn.primary:hover{

    transform:translateY(-5px);

    background:#20bd5a;

}



/* Call */


.contact-btn.secondary{

    background:#ffd700;

    color:#333;

}



.contact-btn.secondary:hover{

    transform:translateY(-5px);

    background:white;

}



/*====================================================
    FLOATING ICONS (OPTIONAL)
====================================================*/


.contact-float{

    position:absolute;

    font-size:55px;

    opacity:.8;

    animation:

    contactFloat 5s infinite ease-in-out;

}



.contact-float.f1{

    top:120px;

    left:8%;

}



.contact-float.f2{

    top:200px;

    right:10%;

}



.contact-float.f3{

    bottom:80px;

    left:12%;

}



@keyframes contactFloat{


    0%,
    100%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-20px);

    }

}



/*====================================================
    TABLET
====================================================*/


@media(max-width:992px){


    .contact-container{

        grid-template-columns:

        repeat(
            2,
            1fr
        );

    }


}



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


@media(max-width:768px){


    .contact-section{

        padding:70px 25px;

    }


    .contact-title{

        font-size:34px;

    }


    .contact-subtitle{

        font-size:16px;

        margin-bottom:40px;

    }


    .contact-container{

        grid-template-columns:1fr;

    }


    .contact-actions{

        flex-direction:column;

    }


    .contact-btn{

        width:100%;

    }


}



@media(max-width:480px){


    .contact-title{

        font-size:29px;

    }


    .contact-card{

        padding:30px 20px;

    }


}


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


.footer{

    background:

    linear-gradient(
        135deg,
        #140021,
        #3a005f
    );

    color:white;

    padding:80px 6% 30px;

}



.footer-container{

    display:grid;

    grid-template-columns:

    repeat(
        4,
        1fr
    );

    gap:40px;

}



.footer-box h3{

    color:#ffd700;

    font-size:22px;

    margin-bottom:25px;

}



.footer-logo{

    font-size:25px !important;

}



.footer-box p{

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

    line-height:1.7;

}



.footer-box ul{

    list-style:none;

    padding:0;

}



.footer-box ul li{

    margin-bottom:14px;

}



.footer-box ul li a{

    text-decoration:none;

    color:white;

    opacity:.85;

    transition:.3s;

}



.footer-box ul li a:hover{

    color:#ffd700;

    padding-left:8px;

}



/* SOCIAL */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}



.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:

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

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:20px;

    transition:.3s;

}



.footer-social a:hover{

    background:#ffd700;

    color:#333;

    transform:translateY(-5px);

}



/* FOOTER BOTTOM */


.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:

    1px solid rgba(255,255,255,.2);

    text-align:center;

}



.footer-bottom p{

    margin:8px 0;

    opacity:.8;

}



/* TABLET */


@media(max-width:992px){


    .footer-container{

        grid-template-columns:

        repeat(
            2,
            1fr
        );

    }

}



/* MOBILE */


@media(max-width:768px){


    .footer{

        padding:60px 25px 25px;

        text-align:center;

    }


    .footer-container{

        grid-template-columns:1fr;

    }


    .footer-social{

        justify-content:center;

    }


}

/*====================================================
    MOBILE HAMBURGER MENU
====================================================*/


.menu-toggle{

    display:none;

    width:35px;

    height:28px;

    flex-direction:column;

    justify-content:space-between;

    cursor:pointer;

    z-index:1001;

}



.menu-toggle span{

    height:4px;

    width:100%;

    background: gold;

    border-radius:10px;

    transition:.3s;

}



/*====================================================
    MOBILE NAV
====================================================*/


@media(max-width:768px){


    .navbar{

        position:relative;

    }



    .menu-toggle{

        display:flex;

    }



    .menu{


        position:absolute;

        top:100%;

        left:0;


        width:100%;


        background:white;


        display:flex;

        flex-direction:column;

        align-items:center;


        gap:25px;


        padding:30px 0;


        box-shadow:

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


        transform:

        translateY(-20px);


        opacity:0;


        pointer-events:none;


        transition:.35s;


    }



    .menu.active{


        transform:

        translateY(0);


        opacity:1;


        pointer-events:auto;


    }



    .menu-item{


        color:#4a148c !important;

        font-size:18px;

        font-weight:700;


    }


}



/*====================================================
    HAMBURGER ANIMATION
====================================================*/


.menu-toggle.active span:nth-child(1){


    transform:

    rotate(45deg)

    translateY(12px);


}



.menu-toggle.active span:nth-child(2){


    opacity:0;


}



.menu-toggle.active span:nth-child(3){


    transform:

    rotate(-45deg)

    translateY(-12px);


}





/*====================================================
    LOGIN PAGE WITH CHILDCARE DECORATIONS
====================================================*/


.login-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 20px;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7fbff
    );

    position:relative;

    overflow:hidden;

}



/*====================================================
    RAINBOW BACKGROUND
====================================================*/


.bg-rainbow{

    position:absolute;

    width:420px;

    top:-50px;

    left:50%;

    transform:translateX(-50%);

    opacity:.25;

    z-index:1;

    pointer-events:none;

}



/*====================================================
    CLOUDS
====================================================*/


.cloud{

    position:absolute;

    background:white;

    border-radius:100px;

    opacity:.8;

    z-index:0;

}



.cloud::before,
.cloud::after{

    content:"";

    position:absolute;

    background:white;

    border-radius:50%;

}



.cloud::before{

    width:70px;

    height:70px;

    top:-35px;

    left:30px;

}



.cloud::after{

    width:90px;

    height:90px;

    top:-45px;

    right:25px;

}



.c1{

    width:180px;

    height:55px;

    top:180px;

    left:5%;

    animation:cloudMove 15s infinite alternate;

}



.c2{

    width:220px;

    height:65px;

    top:300px;

    right:5%;

    animation:cloudMove 20s infinite alternate-reverse;

}



@keyframes cloudMove{

    from{

        transform:translateX(0);

    }


    to{

        transform:translateX(40px);

    }

}



/*====================================================
    FLOATING ICONS
====================================================*/


.float{

    position:absolute;

    font-size:65px;

    z-index:1;

    animation:

    floatMove 5s ease-in-out infinite;

}



.f1{

    left:12%;

    top:250px;

}



.f2{

    right:12%;

    bottom:220px;

    animation-delay:2s;

}



@keyframes floatMove{


    0%,
    100%{

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

    }


    50%{

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

    }

}



/*====================================================
    LOGIN CONTAINER
====================================================*/


.login-container{

    width:100%;

    display:flex;

    justify-content:center;

    position:relative;

    z-index:3;

}



/*====================================================
    LOGIN CARD
====================================================*/


.login-box{

    width:100%;

    max-width:430px;

    background:white;

    padding:40px;

    border-radius:35px;

    text-align:center;

    box-shadow:

    0 25px 70px rgba(0,0,0,.15);

}



/*====================================================
    SECURITY BADGE
====================================================*/


.login-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#f3e5f5;

    color:#7b1fa2;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}


.login-badge i{

    color:#ffd700;

}



/*====================================================
    LOGO
====================================================*/


.login-logo img{

    width:100px;

    height:100px;

    object-fit:contain;

}



/*====================================================
    TEXT
====================================================*/


.login-box h2{

    color:#4a148c;

    font-size:34px;

    margin:20px 0 10px;

}



.login-box p{

    color:#666;

    line-height:1.6;

    margin-bottom:30px;

}



/*====================================================
    INPUTS
====================================================*/


.input-group{

    position:relative;

    margin-bottom:20px;

}



.input-group i{

    position:absolute;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    color:#7b1fa2;

}



.input-group input{

    width:100%;

    height:55px;

    border-radius:50px;

    border:1px solid #ddd;

    padding-left:50px;

    font-size:16px;

    outline:none;

}



.input-group input:focus{

    border-color:#7b1fa2;

    box-shadow:

    0 0 0 4px rgba(123,31,162,.15);

}



/*====================================================
    LOGIN BUTTON
====================================================*/


.login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:

    linear-gradient(
        135deg,
        #7b1fa2,
        #ab47bc
    );

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}



.login-btn:hover{

    transform:translateY(-5px);

}



/*====================================================
    LINK
====================================================*/


.extra-links{

    margin-top:25px;

}



.extra-links a{

    color:#7b1fa2;

    text-decoration:none;

    font-weight:600;

}



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


@media(max-width:768px){


    .login-page{

        padding:60px 20px;

    }


    .login-box{

        padding:30px 25px;

        border-radius:25px;

    }


    .bg-rainbow{

        width:280px;

    }


    .float{

        font-size:40px;

    }


    .f1{

        left:-10px;

        top:180px;

    }


    .f2{

        right:-10px;

        bottom:150px;

    }


    .login-box h2{

        font-size:28px;

    }


}



@media(max-width:480px){


    .login-box{

        padding:25px 18px;

    }


    .login-logo img{

        width:80px;

        height:80px;

    }


}