/* --- Global & Fonts --- */
:root {
  --primary-color: #2c3e50;
  --accent-color: #fcd470;
  /* Gold for Vastu */
  --text-font: 'Poppins', sans-serif;
  --heading-font: 'Playfair Display', serif;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--text-font);
  overflow: hidden;
  /* Prevent default scroll to force snap behavior via main container */
  height: 100%;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: var(--heading-font);
}

/* --- Scroll Snap Implementation --- */
.scroll-container {
  height: 100vh;
  height: 100dvh;
  /* Dynamic viewport height for mobile */
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.full-screen-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Navigation Styling --- */
.navbar {
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  padding: 30px 0;
  /* Initial large padding (approx height > 100px) */
  height: 150px;
  /* Specific Requirement */
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  font-weight: 400;
  margin-left: 20px;
  position: relative;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width .3s;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  color: #fff;
  font-size: 1.5rem;
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Navbar Shrink State (Applied via JS) */
.navbar.navbar-shrink {
  background-color: #585557;
  padding: 0;
  height: 80px;
  /* Specific Requirement */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-shrink .navbar-brand,
.navbar.navbar-shrink .nav-link,
.navbar.navbar-shrink .navbar-toggler {
  color: #ffffff !important;
}

/* Mobile Menu Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #585557;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
  }

  .navbar-collapse .nav-link {
    color: #ffffff !important;
    margin-left: 0;
  }
}

/* --- Overlay & Backgrounds --- */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 50% Opacity Layer */
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Section 1: Video --- */
.video-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* --- Scroll Indicator --- */
.scroll-down-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  margin-top: 50px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.scroll-down-indicator:hover {
  color: var(--accent-color);
  opacity: 1;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

/* --- Section 2: Image --- */
.image-section {
  background: url('../images/vastu.webp') no-repeat center center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glass-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 5px;
}

/* --- Section 3: Contact --- */
.contact-section {
  background: url('../images/vastu-1.webp') no-repeat center center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent-color);
}

.absolute-footer {
  position: absolute;
  bottom: 0;
  z-index: 3;
  font-size: 0.8rem;
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-200 {
  transition-delay: 0.2s;
}

.section-text {
  text-align: justify;
}

.card {
  box-shadow: 2px 2px 5px rgb(0, 0, 0);
  border-radius: 30px;
  background: #000000;

}

.card-body {
  background: #000000;
}

.card-footer {
  background: #171717;
  border-bottom-left-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.card-header {
  border-radius: 30px !important;
  border: 0px;
  background: #000000;
}

.card-header img {
  border-radius: 30px;

}

#divShowcase .card-title {
  color: #000000;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-bottom: 0;
}

.gap-25 {
  grid-gap: 25px;
}

.Bg-Border {
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, 1)) padding-box, linear-gradient(45deg, #7bb661, #eeeeee) border-box;
}

.WhiteBorder {
  border: 1px solid #ffffff;
}

.RoundCorders {
  border-radius: 15px;
}

.scroll-section {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* Reveal sections */
.reveal {
  /*  background: white;
  margin-bottom: 3rem;
  padding: 5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
*/
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

/* When in view */
.reveal.active {
  opacity: 1;
  transform: none;
}

/* Specific Animations */
.fade-in {
  transform: translateY(40px);
}

.slide-left {
  transform: translateX(-60px);
}

.zoom-in {
  transform: scale(0.8);
}

.flip-up {
  transform: rotateX(90deg);
  transform-origin: bottom;
}

.slide-right {
  transform: translateX(60px);
}

.flip-down {
  transform: rotateX(-90deg);
  transform-origin: top;
}

.fade-up {
  transform: translateY(40px);
  opacity: 0;
}

/* Activated states (reuse .active for all) */
.reveal.slide-right.active,
.reveal.flip-down.active,
.reveal.fade-up.active {
  transform: none;
  opacity: 1;
}

/* Activated states */
.reveal.fade-in.active,
.reveal.slide-left.active,
.reveal.zoom-in.active,
.reveal.flip-up.active {
  transform: none;
}

.Submit{
dsd
}
@media (max-width: 768px) {

  /* Styles defined here will apply when the viewport width is 768px or wider */
  .full-screen-section {
    scroll-snap-align: unset;
    height: auto;
    padding: 100px 0 100px 0;
  }
   #HomeVideo .full-screen-section {
    scroll-snap-align: unset;
    height: 100vh;
  }

}

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	background: #fcd470;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(90deg);
	  transform: rotate(90deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 0 rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2);
	  box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 0 rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 0 rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2);
	  box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 0 rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(252, 212, 112, 0.2), 0 0 0 5px rgba(252, 212, 112, 0.2), 0 0 0 10px rgba(252, 212, 112, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.num{
		position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
	}