.topnav {
  overflow: hidden;
  background-color: #FFB6C1;
}

.topnav a {
  float: left;
  display: block;
  color: grey;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ff99aa;
  color: white;
}

.topnav a.active {
  background-color: #ff69b4;
  color: white;
}

.topnav .icon {
  display: none;
}

/* MOBILE VIEW */
@media screen and (max-width: 768px) {
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* WHEN CLICKED */
@media screen and (max-width: 768px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}











/* ================= SLIDER ================= */

.slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 300%;
  animation: slide 15s infinite;
}

.slides img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@keyframes slide {
  0% {margin-left: 0;}
  33% {margin-left: -100%;}
  66% {margin-left: -200%;}
  100% {margin-left: 0;}
}

/* ================= PARAGRAPH ================= */
.info-card {
    display: flex;           /* side-by-side layout */
    align-items: flex-start; /* align top of image with text */
    gap: 15px;               /* space between image and paragraph */
    background: #fff0f6;     /* light pink background */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-image {
    width: 350px;            /* size of image */
    height: 400px;
    object-fit: cover;       /* keep aspect ratio */
    border-radius: 12px;     /* rounded corners */
}

.info-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}








.center-text {
  text-align: center;
  padding: 40px;
  font-size: 18px;
}
.green-heading {
  color: #C71585;  /* Medium Violet Red */
    text-align: center;
}
.grey-text {
  color: grey;
}


/* ================= card ================= */

.card-section{
    padding:70px 20px;
    text-align:center;
    background:#fff5f7;
}

.features-header h2{
    font-size:32px;
    margin-bottom:10px;
}

.highlight{
    color:#e91e63;
}

.features-header p{
    color:#666;
    margin-bottom:40px;
}

.card-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.card{
    background:#ffffff;
    width:250px;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card-icon{
    font-size:40px;
    color:#e91e63;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:10px;
}

.card p{
    color:#555;
    font-size:14px;
}



/* ================= FOOTER================= */
.footer {
    background: linear-gradient(135deg, #ff66a3, #ff1e6a); /* Pink gradient background */
    padding: 10px 0; /* Small height */
    color: white;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-follow {
    width: 22%; }

.footer h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer p {
    font-size: 12px;
    line-height: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffe6f0;
    font-size: 12px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: white;
    color: #ff1e6a;
    margin-right: 5px;
    font-size: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffe6f0;
    color: #ff1e6a;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    padding-top: 5px;
    font-size: 11px;
}

@media (max-width: 768px) {
    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-follow {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}