body {
    background: linear-gradient(180deg, #fff3d4, #f3c77a, #c78a2c) !important;
    /* font-family: 'Hind', sans-serif; */
    font-family: 'Tiro Devanagari Hindi', serif;

}

.section {
    padding: 40px 15px;
    color: #ffffff;
    text-align: center;
}

.section img {
    max-width: 100%;
    border-radius: 10px;
}

.green-bar {
    background: #0a7d2e;
    padding: 10px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

.cta-btn {
    background: #8b0000;
    color: #ffffff;
    font-size: 20px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1px;
    border-radius: 35px 0 35px 0;
}

.cta-btn:hover {
    background: #1ebd5a;
    color: #ffffff;
}

.card-custom {
    background: #8b0000;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

/* Banner */
.banner-section {
    position: relative;
    height: 100vh;
    width: 100%;
    /* background-image: url("../banner.jpg"); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    background: linear-gradient(-45deg, rgba(179,0,0,0.8), rgba(0,0,0,0.8), rgba(10,125,46,0.8));
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    padding: 40px;
    border-radius: 20px;
    color: #ffffff;
    max-width: 900px;
    text-align: center;
} 




@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Text animation */
.animate-text {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.6s; }
.delay-2 { animation-delay: 1.2s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fixed Buttons */
.fixed-btn1 {
    position: fixed;
    bottom: 15px;
    z-index: 9999;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px 0 15px 0;
    background: linear-gradient(90deg, #7a0000, #c20000);
}

.fixed-btn2 {
    position: fixed;
    bottom: 15px;
    z-index: 9999;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px 0 15px 0;
    background: green;
}

.txtyel{
    color: #ffd700;
}

.left-btn { left: 15px;  }
.right-btn { right: 15px;  }



.imgheig{
    height: 269px;
    width: 290px !important;
}


.card-custom p {
    font-size: 1rem;
    line-height: 1.6;
}

.card-custom strong {
    display: block;
    margin-top: 10px;
    color: #ffd700;
}


.card-custom:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

h1, h2, h3 {
    font-weight: bold;
}

/* Fixed Background */
.fixed-bg {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  background-attachment: fixed;
  padding: 10px 0;
  overflow: hidden;
  width: 100%;
}

/* Text Style */
.moving-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
}

/* Right to Left Infinite Animation */
.rtl-move {
  animation: moveRTL 10s linear infinite;
}

@keyframes moveRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}




























body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* 🌈 Background Gradient */
.poster-section {
    background: linear-gradient(180deg, #fff3d4, #f3c77a, #c78a2c) !important;
   
}

/* 🔄 Logo Rotation */
.logo-rotate img {
    width: 140px;
    animation: spin 14s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ✨ Typography */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #7a0000;
    font-weight: 700;
}

.title span {
    color: #000;
}

.mantra {
    font-size: 14px;
    color: #ffffff;
}

.subtitle, .description {
    max-width: 750px;
    margin: auto;
}

.tagline {
    color: #6a0000;
    font-weight: 600;
}

/* 💑 Image */
.couple-box img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ❤️ Icons */
.icon-circle {
    background: radial-gradient(circle, #652b2b, #5b0000);
    color: #fff;
    font-size: 28px;
    padding: 7px;
    border-radius: 50%;
    margin: 5px;
    transition: transform 0.3s;
}

.icon-circle:hover {
    transform: scale(1.1);
}

/* 🔥 Heading */
.main-heading {
    background: linear-gradient(90deg, #7a0000, #c20000);
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    display: inline-block;
    border-radius: 35px 0 35px 0;
}

/* 📋 List */
.problem-list {
    list-style: none;
    padding: 0;
    font-weight: 500;
}

/* ☎ CTA */
.cta-box {
    background: #7a0000;
    color: #fff;
    padding: 14px;
    border-radius: 6px;
}

.call-btn {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(90deg, #ffd700, #ffae00);
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* 🎬 Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }
.delay-9 { animation-delay: 1.8s; }
.delay-10 { animation-delay: 2s; }
.delay-11 { animation-delay: 2.2s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rotate-icon {
    animation: rotateIcon 10s linear infinite;
}

/* Different speed for natural look (optional) */
.rotate-icon:nth-child(1) { animation-duration: 12s; }
.rotate-icon:nth-child(2) { animation-duration: 10s; }
.rotate-icon:nth-child(3) { animation-duration: 8s; }
.rotate-icon:nth-child(4) { animation-duration: 14s; }

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.wave-text span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(2) {
    animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
    animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
    animation-delay: 0.6s;
}
.wave-text span:nth-child(5) {
    animation-delay: 0.8s;
}
.wave-text span:nth-child(6) {
    animation-delay: 1.0s;
}
.wave-text span:nth-child(7) {
    animation-delay: 1.2s;
}
.wave-text span:nth-child(8) {
    animation-delay: 1.4s;
}
.wave-text span:nth-child(9) {
    animation-delay: 1.6s;
}
.wave-text span:nth-child(10) {
    animation-delay: 1.8s;
}
.wave-text span:nth-child(11) {
    animation-delay: 2.0s;
}
.wave-text span:nth-child(12) {
    animation-delay: 2.2s;
}
.wave-text span:nth-child(13) {
    animation-delay: 2.4s;
}
.wave-text span:nth-child(14) {
    animation-delay: 2.6s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.brdradiou{
    border-radius: 50%;
}






/* Typewriter typing */
@keyframes typing {
  0% { content: ""; }
  5% { content: "L"; }
  10% { content: "LO"; }
  15% { content: "LOV"; }
  20% { content: "LOVE"; }
  25% { content: "LOVEG"; }
  30% { content: "LOVEGU"; }
  35% { content: "LOVEGUR"; }
  40% { content: "LOVEGURU"; }
  45% { content: "LOVEGURUE"; }
  50% { content: "LOVEGURUEX"; }
  55% { content: "LOVEGURUEXP"; }
  60% { content: "LOVEGURUEXPE"; }
  65% { content: "LOVEGURUEXPER"; }
  70% { content: "LOVEGURUEXPERT"; }
  100% { content: "LOVEGURUEXPERT"; }
}

/* Cursor blink */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Typewriter container */
.typewriter {
  font-weight: 800;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;

  /* Rich gold color */
  color: #ffd901;

  /* Strong gold shine */
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.9),
    0 0 6px rgba(255, 215, 0, 0.9),
    0 0 14px rgba(255, 200, 50, 0.9),
    0 0 22px rgba(255, 180, 30, 0.7),
    0 0 35px rgba(255, 215, 120, 0.6);

  letter-spacing: 1.2px;
}

.videowid{
    width: 100%;
    height: auto;
    display: block;
}

.tetclr2{
     color: #ffd901;
}

.tetclr{
     color: #ffd901;

  /* Strong gold shine */
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.9),
    0 0 6px rgba(255, 215, 0, 0.9),
    0 0 14px rgba(255, 200, 50, 0.9),
    0 0 22px rgba(255, 180, 30, 0.7),
    0 0 35px rgba(255, 215, 120, 0.6);
}




/* Typed text */
.typewriter::before {
  content: "";
  animation: typing 8s steps(1) infinite;
}

/* Cursor */
.typewriter::after {
  content: "|";
  margin-left: 4px;
  animation: blink 0.7s infinite;
}


.video-bg {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.video-bg .content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}


.section-last{
        color: #ffffff;
    text-align: center;
}

