
/* Bhagwa themed custom styles */
:root{
  --bhagwa: #FF9933;
  --bhagwa-dark: #cc5500;
  --cream: #fff5cc;
  --text-dark: #2b2b2b;
}

body{
  background: var(--bhagwa);
  color: var(--text-dark);
  padding-top: 56px; 
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.container {
  max-width: 95%;   /* makes it span the full width */
  padding-left: 10px; /* adjust as needed */
  padding-right: 10px;
}


.navbar, .footer{
  background: var(--bhagwa-dark) !important;
}


.navbar-brand{
  font-weight:700;
  color: var(--cream) !important;
}

.hero-title{
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--cream);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
  font-weight:700;
}

.card-custom{
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-bhagwa{
  background: linear-gradient(90deg,var(--bhagwa-dark), var(--bhagwa));
  color: #fff;
  border: none;
}

.section-wrap{
  padding: 3rem 0;
}

.footer{
  color: #fff;
  padding: 1.25rem 0;
}

.carousel-item > img{
  min-height: 50vh;
  object-fit: cover;
}

/* responsive gallery grid */
.gallery-img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius: 0.5rem;
}

/* contact form backdrop */
.contact-card{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

/* Smooth transition for navbar */
.navbar {
  transition: top 0.3s;
  position: fixed; /* make navbar fixed */
  width: 100%;
  top: 0; /* start at top */
  z-index: 1000;
}

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 50%;               /* Move to vertical middle */
    right: 20px;            /* Keep it on right */
    transform: translateY(-50%); /* Adjust so it centers perfectly */
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
    cursor: pointer;
}

/* WhatsApp Icon */
.whatsapp_float img {
    width: 40px;
    height: 40px;
}


  /* Make all navbar links bright white */
  .navbar-nav .nav-link {
    color: #ffffff !important; /* Bright white */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition */
  }

  .navbar-nav .nav-link {
  display: inline-block;           /* ensures proper scaling */
  transition: transform 0.3s, color 0.3s;
  transform-origin: center;   /* scale from left instead of center */
}

.navbar-nav .nav-link:hover {
  transform: scale(1.2);
  color: #ffff99 !important;
}


.powered-by {
  position: relative;       /* normal flow */
  font-size: 14px;
  font-weight: normal;
  color: #fff;              /* pure white text */
  padding: 1px;
  margin-top: 1px;
}


 .footer-social {
  margin-bottom: 0;
}

.social-link {
  display: inline-block;       /* important for scaling */
  color: #ffffff !important;               /* white by default */
  margin: 0 05px;
  font-size: 19px;
  transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
  transform: scale(1.3);       /* zoom effect */
  color: #ffff99 !important;            /* Bhagwa tone on hover */
}


/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
	

  
}