/* ==========================================
   Choco's Babysitting Co.
   STYLE.CSS - PART 1
==========================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fcfb;
    color:#374151;
    overflow-x:hidden;
    line-height:1.6;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Links */

a{
    text-decoration:none;
}

/* Images */

img{
    max-width:100%;
    display:block;
}

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

header{

    position:sticky;
    top:0;

    width:100%;

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

    backdrop-filter:blur(15px);

    z-index:999;

    transition:.4s;

}

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

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

/* Logo */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:65px;

    height:65px;

    object-fit:cover;

    border-radius:50%;

}

.logo h2{

    color:#0f766e;

    font-size:28px;

    font-weight:700;

}

/* Button */

.book-btn{

    background:#0f766e;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 20px rgba(15,118,110,.18);

}

.book-btn:hover{

    background:#115e59;

    transform:translateY(-3px);

}

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

.hero{

    padding:90px 0;

    background:linear-gradient(135deg,#e8faf7,#ffffff);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

/* Left */

.hero-content h1{

    font-size:58px;

    color:#115e59;

    line-height:1.15;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    color:#4b5563;

    margin-bottom:35px;

}

/* Hero Icons */

.hero-icons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.hero-icons div{

    background:#ffffff;

    padding:15px 18px;

    border-radius:15px;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:0 8px 25px rgba(15,118,110,.12);

    transition:.3s;

}

.hero-icons div:hover{

    transform:translateY(-6px);

}

.hero-icons i{

    color:#0f766e;

    font-size:22px;

}

/* Hero Button */

.hero-btn{

    display:inline-block;

    background:#0f766e;

    color:white;

    padding:16px 36px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 12px 25px rgba(15,118,110,.25);

}

.hero-btn:hover{

    background:#115e59;

    transform:translateY(-4px);

}

/* Hero Image */

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    margin:auto;

    border-radius:30px;

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

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.03);

}

/* Floating Animation */

.hero-image{

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

}

@keyframes floatImage{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

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

section{

    padding:90px 0;

}

section h2{

    text-align:center;

    color:#115e59;

    font-size:40px;

    margin-bottom:50px;

    position:relative;

}

section h2::after{

    content:"";

    width:80px;

    height:5px;

    background:#0f766e;

    display:block;

    margin:18px auto;

    border-radius:10px;

}

/* ==========================================
        ABOUT SECTION
==========================================*/

.about{

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    max-width:500px;

    margin:auto;

    border-radius:25px;

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

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.04);

}

.about-content h2{

    text-align:left;

    margin-bottom:20px;

}

.about-content h2::after{

    margin:15px 0;

}

.about-content p{

    font-size:18px;

    color:#555;

    margin-bottom:35px;

}

/* Features */

.about-features{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.about-features div{

    flex:1;

    min-width:150px;

    background:#ffffff;

    padding:25px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(15,118,110,.10);

    transition:.35s;

}

.about-features div:hover{

    transform:translateY(-8px);

    background:#ecfdfb;

}

.about-features i{

    font-size:40px;

    color:#0f766e;

    margin-bottom:15px;

}

.about-features h4{

    color:#115e59;

    font-size:18px;

}



/* ==========================================
          TIMINGS SECTION
==========================================*/

.timings{

    background:#f6fbfa;

}

.timing-cards{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

}

.card{

    width:320px;

    background:white;

    border-radius:25px;

    padding:40px;

    text-align:center;

    box-shadow:0 15px 35px rgba(15,118,110,.12);

    transition:.35s;

    cursor:pointer;

}

.card:hover{

    transform:translateY(-12px) scale(1.06);

    background:#e8faf7;

    box-shadow:0 20px 40px rgba(15,118,110,.25);

}

.card i{

    font-size:55px;

    color:#0f766e;

    margin-bottom:20px;

}

.card h3{

    color:#115e59;

    margin-bottom:12px;

    font-size:28px;

}

.card p{

    font-size:22px;

    color:#4b5563;

}



/* ==========================================
           PRICING
==========================================*/

.pricing{

    background:white;

}

.price-card{

    width:500px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

    background:#ffffff;

    border-radius:30px;

    padding:35px;

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

    transition:.35s;

}

.price-card:hover{

    transform:scale(1.04);

}

.price-icon{

    width:90px;

    height:90px;

    background:#e8faf7;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:45px;

}

.price-card h2{

    margin:0;

    font-size:46px;

    color:#0f766e;

}

.price-card h2 span{

    font-size:22px;

    color:#666;

}

.price-card p{

    margin-top:8px;

    color:#777;

}



/* ==========================================
        SMALL DECORATIONS
==========================================*/

.about::before,

.timings::before,

.pricing::before{

    content:"";

    position:absolute;

    display:none;

}

/* Soft hover transition */

.card,

.price-card,

.about-features div,

.about-image img{

    transition:all .35s ease;

}


/* ==========================================
        GALLERY
==========================================*/

.gallery{

    background:#f8fcfb;

}

.gallery-grid{

    display:grid;

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

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:.35s;

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

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 18px 40px rgba(15,118,110,.20);

}



/* ==========================================
          BOOKING
==========================================*/

.booking{

    background:white;

}

.booking iframe{

    width:100%;

    height:900px;

    border:none;

    border-radius:25px;

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

}



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

footer{

    background:#0f766e;

    color:white;

    padding:50px 20px;

    text-align:center;

}

.footer{

    display:flex;

    flex-direction:column;

    gap:18px;

    font-size:18px;

}

.footer i{

    margin-right:8px;

}



/* ==========================================
      FLOATING WHATSAPP
==========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

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

    transition:.35s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.12);

    background:#1EBE5D;

}



/* ==========================================
      FADE ANIMATION
==========================================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}



/* ==========================================
        PULSE
==========================================*/

.pulse{

    animation:pulse 1.2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.15);

}

100%{

transform:scale(1);

}

}



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

@media(max-width:992px){

.hero-grid,

.about-grid{

grid-template-columns:1fr;

text-align:center;

}

.about-content h2{

text-align:center;

}

.about-content h2::after{

margin:auto;

}

.hero-content h1{

font-size:46px;

}

.hero-icons{

justify-content:center;

}

.price-card{

width:100%;

}

}



@media(max-width:768px){

.nav{

flex-direction:column;

gap:18px;

}

.logo{

flex-direction:column;

}

.logo h2{

font-size:22px;

text-align:center;

}

.book-btn{

width:180px;

text-align:center;

}

.hero{

padding:60px 0;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:17px;

}

.hero-icons{

flex-direction:column;

}

.about-features{

flex-direction:column;

}

.timing-cards{

flex-direction:column;

align-items:center;

}

.card{

width:100%;

}

.price-card{

flex-direction:column;

text-align:center;

}

.gallery-grid{

grid-template-columns:1fr;

}

.booking iframe{

height:700px;

}

.whatsapp{

width:58px;

height:58px;

font-size:30px;

right:18px;

bottom:18px;

}

}



@media(max-width:480px){

.hero-content h1{

font-size:30px;

}

section{

padding:60px 0;

}

section h2{

font-size:30px;

}

.logo img{

width:55px;

height:55px;

}

.logo h2{

font-size:20px;

}

.hero-btn,

.book-btn{

padding:14px 22px;

font-size:16px;

}

}



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

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ecfdfb;

}

::-webkit-scrollbar-thumb{

background:#0f766e;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#115e59;

}



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

::selection{

background:#0f766e;

color:white;

}




/* =====================================
   Fade In Animation
===================================== */

section{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

section.show{

    opacity:1;

    transform:translateY(0);

}