.about-banner {
                           position: relative;
                           width: 600px;
                           height: 600px;
                           border-radius: 50%;
                           overflow: hidden;
                           transition: transform 0.3s ease;
                         }

.about-banner img {
                           position: absolute;
                           width: 100%;
                           height: 100%;
                           object-fit: cover;
                           opacity: 0;
                           animation: rotateImage 6s infinite;
                           float: left;
                           border-radius: 50%;
                         }

.about-banner img:nth-child(1) {
                           animation-delay: 0s;
                         }

.about-banner img:nth-child(2) {
                           animation-delay: 3s;
                         }

    @keyframes rotateImage {
      0% { opacity: 0; transform: rotateY(90deg); }
      10% { opacity: 1; transform: rotateY(0deg); }
      40% { opacity: 1; transform: rotateY(0deg); }
      50% { opacity: 0; transform: rotateY(-90deg); }
      100% { opacity: 0; transform: rotateY(-90deg); }
    }




.hpimg {
    display: flex;
  position: relative;     /* keeps child elements positioned correctly */
  justify-content: center;
  align-items: center;
  width: 100%;            /* full width */
  display: block;         /* better for responsiveness than inline-block */
  padding-top: 20px;
  overflow: hidden;       /* avoids overflow issues on small screens */
}

/* Ensure images inside .hpimg scale responsively */
.hpimg img {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 8px;     /* optional: rounded corners */
}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  .hpimg {
    padding-top: 10px;
    height: 0px;
  }
  
}

@media (max-width: 480px) {
  .hpimg {
    padding-top: 5px;
  }

  .hpimg img {
    border-radius: 5px;
  }
}


.fhed {
  position: absolute;    /* puts the text over the image */
  transform: translate(-50%, -50%); /* centers text */
  text-align: center;
  padding: 20px;
  z-index: 1;
}

@media (max-width: 768px) {
  .text {
    font-size: 1.5rem; /* Smaller font size on smaller screens */
  }
}

@media (max-width: 480px) {
  .text {
    font-size: 1rem; /* Even smaller font size on very small screens */
  }
}


.fh1 {
  color: white;          /* visible over image */
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* makes text pop out */
  font-family: var(--ff-comforter-brush);
  position: absolute;
}


/*about section text styling*/

/* General Section Styling */
.asc {
  display: flex;
  background: #fdfdfd; /* soft paper-like background */
  padding: 40px 20px;
  font-family: "Georgia", serif; /* classic newspaper font */
  color: #222;
  line-height: 1.8;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  border-radius: 10px;
}

.article-text {
  display: flex;
  flex-direction: column;
  align-items:center;
  gap: 20px;
  padding-top: 20px;
  
}

.ash {
  font-size: 2.9rem;
  color: #e91e63;
  display: inline-block;
  animation: flipIn 1s ease-out forwards;
}

@keyframes flipIn {
  from {
    transform: rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: rotateX(0deg);
    opacity: 1;
  }
}


.divas{
  display: flex;
  justify-content: center;
  padding-left: 250px;
  padding-right: 250px;
  padding-bottom: 20px;
}
/* Inner wrapper */
.as {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: flex-start;
  justify-items: center;
  justify-content: space-around;
}

/* Images inside figure */
.about-banner {
  display: flex;
  flex-direction:row;
  flex-wrap: wrap;
  gap: 20px;
  
}

.about-banner img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-banner img:hover {
  transform: scale(1.03);
}

/* Heading (like news headline) */
.ash {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  font-family: "Times New Roman", serif;
  letter-spacing: 1px;
  color: #111;
}

/* Article Paragraph */
.pas {
  display: grid;
  text-align: justify;
  
  font-size: 1.8rem;
  column-count: 2; /* two-column newspaper effect */
  column-gap: 30px;
  column-rule: 1px solid #ccc; /* vertical divider */
  font-family: var(--ff-comforter-brush);
}

/* Responsive Design */
@media (max-width: 992px) {
  .as {
    grid-template-columns: 1fr;
  }

  .pas {
    column-count: 1; /* single column on tablet */
  }
}

@media (max-width: 576px) {
  .asc {
    padding: 20px 15px;
  }

  .ash {
    font-size: 1rem;
  }

  .pas {
    font-size: 0.95rem;
  }
  .divas{
    justify-content: flex-end;
  }

  .about-banner{
    width: 200px;
    height: 200px;
  }
  
}

 /* Floating Call & WhatsApp Buttons 
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.floating-buttons .btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-buttons .btn svg {
  width: 120px;
  height: 120px;
}

.floating-buttons .btn.phone {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.6);
}

.floating-buttons .btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.floating-buttons .btn:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Tooltip styling */
.floating-buttons .tooltip {
  position: absolute;
  right: 75px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-buttons .btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}
