*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif;}

body{
background:linear-gradient(135deg,#f4f7ff,#ffffff);
color:#222;
}

/* HEADER */


header{
background:#ffffff;
padding:15px 25px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:999;
}

.nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}

/* LOGO */

.logo{
font-size:22px;
font-weight:700;
color:#ff0080;
}

.logo img{
height:50px;
width:auto;
display:block;
}


/* DESKTOP MENU */

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:#ff3366;
}

/* MOBILE MENU BUTTON */

.menu-btn{
font-size:26px;
cursor:pointer;
display:none;
}

/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100%;
background:#ffffff;
box-shadow:-5px 0 20px rgba(0,0,0,0.1);
padding:30px;
transition:0.4s;
z-index:1000;
}

/* SHOW MENU */

.mobile-menu.active{
right:0;
}

/* CLOSE BUTTON */

.close-btn{
font-size:26px;
cursor:pointer;
margin-bottom:30px;
display:block;
text-align:right;
}

/* MOBILE LINKS */

.mobile-menu a{
display:block;
margin:18px 0;
text-decoration:none;
font-size:18px;
color:#333;
font-weight:500;
}

.mobile-menu a:hover{
color:#ff3366;
}

/* RESPONSIVE */

@media(max-width:768px){

nav{
display:none;
}

.menu-btn{
display:block;
}

}

/* MAIN */
.container{
width:95%;
max-width:1200px;
margin:auto;
padding:40px 0;
}

h1{
text-align:center;
font-size:42px;
margin-bottom:20px;
background:linear-gradient(45deg,#ff0080,#ff7b00,#6a11cb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.time-box{
margin:20px auto 40px;
padding:20px;
max-width:600px;
border-radius:20px;
background:linear-gradient(45deg,#ff0080,#6a11cb);
color:white;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
justify-content:center;
padding:25px;
}

.card{
padding:25px;
border-radius:20px;
background:white;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
text-align:center;
}

.card:hover{transform:translateY(-8px);}

.animal{font-size:50px;}
.title{font-size:20px;font-weight:700;margin-top:5px;}
.info{margin-top:8px;color:#555;line-height:1.6;}

.section-title{
margin:60px 0 25px;
font-size:32px;
text-align:center;
}


.hero-text{
max-width:900px;
margin:0 auto 50px;
padding:20px 20px;
text-align:center;
border-radius:20px;
background:linear-gradient(135deg,#ffffff,#f4f7ff);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
position:relative;
overflow:hidden;
}

.hero-text p{
font-size:17px;
line-height:1.8;
color:#444;
}

/* stylish glow border */
.hero-text::before{
content:"";
position:absolute;
inset:0;
border-radius:20px;
padding:2px;
background:linear-gradient(45deg,#ff0080,#ff7b00,#6a11cb);
-webkit-mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
-webkit-mask-composite:xor;
mask-composite:exclude;
}

.about{
background:white;
padding:0;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.07);
line-height:1.7;
}

.about-kaledri{
padding:0;
margin: 20px;
}

.about-flex{
display:flex;
gap:40px;
align-items:center;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.07);
flex-wrap:wrap;
}

.about-img img{
width:260px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.about-text{
flex:1;
line-height:1.8;
font-size:16px;
color:#444;
}

/* SOCIAL COLOR ICONS */
.social-color{
margin-top:20px;
}

.social-color a{
display:inline-block;
width:45px;
height:45px;
line-height:45px;
text-align:center;
border-radius:50%;
margin-right:12px;
font-size:20px;
color:white;
transition:.3s;
}

.social-color a:nth-child(1){background:#1877f2;}
.social-color a:nth-child(2){background:#000000;}
.social-color a:nth-child(3){background:#25d366;}
.social-color a:nth-child(4){background:#ff0000;}

.social-color a:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,.2);
}


/* FOOTER */

footer{
background:#111;
color:white;
margin-top:60px;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:50px 40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-logo h3{
color:#ff0080;
margin-bottom:10px;
}

.footer-links h4,
.footer-social h4{
margin-bottom:15px;
}

.footer-links ul{
list-style:none;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
color:#ccc;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#ff0080;
}

.social-icons a{
display:inline-block;
width:45px;
height:45px;
line-height:45px;
text-align:center;
border-radius:50%;
margin-right:12px;
font-size:20px;
color:white;
background:#333;
transition:.3s;
}

.social-icons a:nth-child(1){background:#1877f2;}
.social-icons a:nth-child(2){background:#000000;}
.social-icons a:nth-child(3){background:#25d366;}
.social-icons a:nth-child(4){background:#ff0000;}

.social-icons a:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

.footer-bottom{
text-align:center;
padding:15px;
background:#0a0a0a;
font-size:14px;
color:#aaa;
}

/* faq section */

.faq-section{
padding:60px 0;
max-width:900px;
margin:auto;
}

.faq-container{
margin-top:30px;
}

.faq-item{
background:#fff;
border-radius:15px;
margin-bottom:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
overflow:hidden;
transition:.3s;
}

.faq-question{
width:100%;
padding:18px 20px;
background:none;
border:none;
outline:none;
font-size:17px;
font-weight:600;
text-align:left;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
}

.faq-question:hover{
color:#ff0080;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 20px;
}

.faq-answer p{
padding:15px 0;
color:#555;
line-height:1.6;
}

.icon{
font-size:22px;
font-weight:700;
transition:.3s;
}

.faq-item.active .faq-answer{
max-height:300px;
}

.faq-item.active .icon{
content:"−";
}

.social-share-container {
      display: flex;
      margin-top: 35px;
      gap: 18px;
      justify-content: center;
    }

    .share-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      color: white;
      font-size: 24px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .share-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    /* Facebook */
    .facebook { background: #1877f2; }
    .facebook:hover { background: #0e5fd8; }

    /* Instagram */
    .instagram {
      background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    }
    .instagram:hover {
      background: linear-gradient(135deg, #e8c04e, #e66d12, #c21e60, #7d249f, #3b4ab8);
    }

    /* WhatsApp */
    .whatsapp { background: #25d366; }
    .whatsapp:hover { background: #1ebe52; }

    /* Reddit */
    .reddit { background: #ff4500; }
    .reddit:hover { background: #e03d00; }

    /* X (Twitter) */
    .x { background: #000000; }
    .x:hover { background: #1a1a1a; }


