/* ================= GLOBAL ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background: linear-gradient(to right, #fdfbfb, #ebedee);

  color:#222;
  line-height:1.7;
  font-family: 'Poppins', sans-serif;
}
 /* ===== PREMIUM MELA BUTTON ===== */
/* ===== DEVICE POPUP ===== */

.device-popup{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.device-popup.active{
  opacity: 1;
  visibility: visible;
}

.popup-content{
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: popupFade 0.4s ease;
}

.popup-content h3{
  margin-bottom: 10px;
  color: #d62828;
}

.popup-content p{
  font-size: 14px;
  margin-bottom: 15px;
}

.popup-content button{
  padding: 8px 18px;
  border: none;
  background: linear-gradient(135deg,#d62828,#f77f00);
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-content button:hover{
  transform: scale(1.05);
}

@keyframes popupFade{
  from{ transform: translateY(-20px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}
.redirect-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(135deg, #d62828, #f77f00);
  border-radius: 50px;
  text-decoration: none;

  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(248, 244, 244, 0.35);
}

/* Smooth Glass Shine */
.redirect-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0.1) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.8s ease;
}

.redirect-button:hover::before {
  left: 130%;
}

/* Hover Effect */
.redirect-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 28px rgba(214, 40, 40, 0.55);
}

/* Click Effect */
.redirect-button:active {
  transform: scale(0.96);
}

/* Mobile */
@media (max-width:768px) {
  .redirect-button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

/* ================= HERO VIDEO ================= */

.hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
 border-bottom: 5px solid #f39c12;
}

.video-container{
  position:absolute;
  width:100%;
  height:100%;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:20px;
}

.hero-overlay h1{
  
  margin-bottom:15px;
   font-size:3.2rem;
  font-weight:700;
}

.hero-overlay p{
  font-size:1.2rem;
}

/* ================= CONTENT ================= */

section{
  max-width:1100px;
  margin:auto;
  padding:60px 15px;
  padding:80px 15px;
}


.content-box{

  margin-bottom:40px;
  padding:35px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  opacity:0;
  filter:blur(4px);
  transition:all 0.9s cubic-bezier(0.22,1,0.36,1);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}



.from-left{
  transform:translateX(-120px) scale(0.92);
}

.from-right{
  transform:translateX(120px) scale(0.92);
}

.show{
  opacity:1;
  transform:translateX(0) scale(1);
  filter:blur(0);
}

.content-box h2{
  margin-bottom:20px;
  color:#d35400;
   font-size:1.9rem;
}

/* ================= NEW FEATURE LAYOUT ================= */

.feature-row{
  display:flex;
  align-items:center;
  gap:50px;
  margin-top:25px;
}

.feature-img{
  flex:1;
}

.feature-img img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
  transition:transform 0.4s ease;
}

.feature-img img:hover{
  transform:scale(1.05);
}

.feature-text{
  flex:1;
}

.feature-text h4{
  font-size:1.5rem;
  margin-bottom:15px;
  color:#c0392b;
}

.feature-text ul{
  padding-left:20px;
  margin-top:10px;
}

.reverse{
  flex-direction:row-reverse;
}

/* ================= Image Grid ================= */

.image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
  margin-top:20px;
}

.image-grid img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  transition:transform 0.4s ease;
}

.image-grid img:hover{
  transform:scale(1.05);
}
/* Same style for image and video */
/* ================= PRAKRITIK SAUNDARYA SIZE FIX ================= */

.image-grid img,
.feature-img video{
  width:100%;
  max-width:800px;      /* Laptop me zyada wide nahi hoga */
  height:600px;         /* Thodi kam height */
  object-fit:cover;
  border-radius:15px;
  display:block;
  margin:20px auto;     /* Center align */
}

/* Mobile ke liye */
@media(max-width:768px){
  .image-grid img,
  .feature-img video{
    max-width:100%;
    height:250px;
  }
}
.feature-img img:hover,
.feature-img video:hover {
  transform:scale(1.05);
}
.feature-row.reverse .feature-img img{
  height:700px;   /* Laptop me height badi */
  object-fit:cover;
  border-radius:18px; 
}
@media(max-width:768px){
  .feature-row.reverse .feature-img img{
    height:220px;   /* Mobile same jaisa pehle tha */
  }
}



/* ================= Footer ================= */

/* ================= MODERN FOOTER ================= */

.footer{
  background: linear-gradient(135deg, #111, #1c1c1c);
  color:#fff;
  padding:60px 20px 30px;
  margin-top:60px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-logo h2{
  font-size:1.8rem;
  margin-bottom:10px;
  color:#f39c12;
   background: linear-gradient(45deg,#f39c12,#ffdd00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.footer-logo p{
  max-width:300px;
  font-size:0.95rem;
  color:#ccc;
}

.footer-contact h3,
.footer-social h3{
  margin-bottom:15px;
  font-size:1.2rem;
  color:#f39c12;
}

.footer-contact p{
  margin-bottom:10px;
  font-size:0.95rem;
}

.footer-contact a{
  color:#fff;
  text-decoration:none;
}

.footer-contact a:hover{
  text-decoration:underline;
}

.footer-social a{
  display:inline-block;
  margin-right:15px;
  font-size:1.4rem;
  color:#fff;
  transition:0.3s ease;
}

.footer-social a:hover{
  color:#f39c12;
  transform:translateY(-3px);
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:0.9rem;
  color:#aaa;
}
.footer-links{
  margin-top:15px;
}
.footer-links a{
  color:#38bdf8;
  text-decoration:none;
  margin:0 8px;
  font-size:14px;
}


/* ================= MOBILE ================= */

@media(max-width:768px){

  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-logo p{
    max-width:100%;
  }

  .footer-social a{
    margin:10px;
  }

}


/* ================= MOBILE ================= */

@media(max-width:768px){

  .hero-overlay h1{
    font-size:1.8rem;
  }

  .hero-overlay p{
    font-size:1rem;
  }

  .feature-row{
    flex-direction:column;
    gap:20px;
  }

  .feature-img img{
    height:220px;
  }
}

