html
{
    scroll-behavior: smooth;
    
}

body 
{
    font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/fa-brands-400.woff2") format("woff2");
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease;
  z-index: 9999;
}

#welcome-banner {
  background: white;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  animation: zoomIn 1s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Maintain original 946x1490 ratio */
.banner-img2 {
  width: auto;
  height: 80vh;        /* scale by height */
  max-height: 1490px; /* real image height */
  aspect-ratio: 946 / 1490;
  object-fit: contain;
  border-radius: 15px;
}

/* Close button */
#close-banner {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #ff4444;
  color: white;
  border: none;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

/* Animations */
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Mobile */
@media (max-width: 480px) {
  .banner-img2 {
    height: 65vh;
  }
}

/*-----------------banner------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Marathi:ital@1&display=swap');

.banner-text h1 
{
    color:#f3f3ca !important;
    font-size: 58px;
    line-height: 1.2;
}

.banner-text span 
{
    color: #ff7300;
}

.banner-text p 
{
    margin-top: 20px;
    font-size: 36px;
    color: #fddcca;
    max-width: 520px;
}

.banner 
{
    min-height: 500px;
    background-color: #000000;
    background: 
      linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
      ),
      url("Resources/Banner.webp");
    background-size: cover;
    background-position: center;
    padding: 40px;
}


.banner-img 
{
    height: 400px;
    background-image: url("Resources/3DMisal.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.glass-box 
{
    font-family: Times;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px 35px;
    text-align: center;
}

.glass-box  h1
{
    color: #ff6f10;
}

/* ---------------- ANIMATIONS ---------------- */
.glow-title {
    color: #fff;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow:
            0 0 8px #ff9800,
            0 0 16px #ff5722,
            0 0 28px #ffc107;
    }
    50% {
        text-shadow:
            0 0 10px #4caf50,
            0 0 20px #8bc34a,
            0 0 35px #cddc39;
    }
    100% {
        text-shadow:
            0 0 12px #03a9f4,
            0 0 24px #2196f3,
            0 0 40px #00bcd4;
    }
}

.glow-text {
    color: #f5f5f5;
    animation: textGlow 2.5s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow:
            0 0 6px rgba(255,255,255,0.5),
            0 0 12px rgba(255,200,150,0.6);
    }
    100% {
        text-shadow:
            0 0 8px rgba(180,220,255,0.7),
            0 0 16px rgba(100,180,255,0.8);
    }
}

.glow-title { animation-duration: 4s; }
.glow-text  { animation-duration: 3s; }


.fade-up {
    animation: fadeUp 10s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.slide-left {
    animation: slideLeft 5s ease forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*----------------------At Ajinkya misal-----------------*/
.at-image
{
    width: 100%;
    height: 450px;
}

.for-mobile
{
    display: none;
}

.Text-Box
{
    padding: 20px;
    box-shadow: 0 0 15px #080808;
    text-align: center;
    border-radius: 45%;
    background-color: #1b1818;
    color: #ffffff;
}

.div-img 
{
    overflow: hidden;
}

.div-img img 
{
    transition: transform 0.1s ease-in-out;
}

.div-img:hover img 
{
    box-shadow: 0 0 15px #ff0f0f;
}

.divborder
{
  background-color: #f1d4d4;
  margin-top: 20px;
}


.animate-title
{
    opacity:0;
    transform:translateY(30px);
    transition:all 0.8s ease;
}

.animate-title.show
{
    opacity:1;
    transform:translateY(0);
}

.animate-text
{
    opacity:0;
    transform:translateY(15px);
    transition:all 1s ease;
}

.animate-text.show
{
    opacity:1;
    transform:translateY(0);
}

.animate-title:hover 
{
    letter-spacing: 1px;
    transition: letter-spacing 0.1s ease;
}

/* ---------------------Menu--------------------- */

.card:hover 
{
  transform: scale(1.04);
  box-shadow: 0 0 15px #4d4d4d;
}

.card
{
    background-color: rgb(247, 247, 247) !important;
}


.card-body-discription
{
    height: 15px;
    background-color: rgba(255, 180, 180, 0.808);
}

.card-img-top 
{
    height: 350px;
    object-fit: cover;
}

/*--------------------------services------------------------*/
.services-section 
{
    background: #fdfdba;
    padding: 70px 8%;
    color: #272727;
}

.services-container 
{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}


.services-text h1 
{
    font-size: 48px;
    line-height: 1.2;
}

.services-text span 
{
    color: #ff0800;
}

.services-text p 
{
    margin-top: 20px;
    font-size: 16px;
    color: #000000;
    max-width: 520px;
}

.services-grid 
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.service-card 
{
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    border-radius: 16px;
    padding: 26px 16px;
    text-align: center;
    transition: 0.3s ease;
}

.service-card i 
{
    font-size: 34px;
    margin-bottom: 12px;
}

.service-card p 
{
    font-size: 14px;
    font-weight: 500;
}


.service-card:hover
{
    background: #4caf50;
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(255, 122, 0, 0.45);
}

/* ---------------------Navbar--------------------- */
.navbar
{
    background-color: #fffDD0;
    color: black;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: 2px none black;
}

.navbarTags:hover 
{
    transform: translateY(-4px);
    color: red !important;
}


/* ---------------------Menu Slider--------------------- */
.offcanvas.custom-offcanvas
{
    width: 500px !important;
    background-color: rgb(252, 233, 233);
    font: Times;
    font-size: 15px;
}


/* ---------------------Fixes Whatsapp img --------------------- */
.whatsapp-img
{
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 35px;
    height: 35px;
    border: 0px solid black;
    border-radius: 50%;
}

.whatsapp-img:hover
{
    transform: scale(1.04);
    box-shadow: 0 0 15px #4d4d4d;
}

/* ---------------------Go Top Button--------------------- */
.go-top
{
    font-size: 15px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ff6767;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
    color: #ece6e6;

}
.go-top.active
{
    bottom: 20px;
    pointer-events: auto;
    opacity: 1;
}

.go-top:hover
{
    transform: scale(1.04);
    box-shadow: 0 0 15px #4d4d4d;
}

/*----------------------Contact Us section----------------------*/
.ContactDiv
{
    display: flex;
    justify-content: space-evenly;
    background-color: #333;
    box-shadow: 0 0 15px #f58c02;
}

.map-responsive iframe
{
    margin-right: 50px !important;
    width: 400px;
    height: 300px;
}

.contact-card
{
    color: #fffDD0;
}

.Properties
{
    text-decoration: none;
    color: #fffDD0;
}

#Heading
{
    font-size: 25px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-family: "Georgia", serif;
}


/* ---------------------Footer--------------------- */
.footer 
{
    background-color: #3A3A3A;
    color: rgb(255, 255, 255);
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer-top 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo 
{
    width: 200px;
}

.social-icons 
{
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.social-icons i 
{
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons i:hover 
{
    color: #ff4d4d;
    transform: scale(1.2);
}


.footer-line 
{
    margin: 25px auto 15px;
    width: 90%;
    border: none;
    border-top: 1px solid #555;
}

.footer-Text 
{
    font-size: 20px;
    color: rgb(255, 255, 255);
}

div
{
  scroll-margin-top: 90px;
}

/* ---------------------Media Query--------------------- */
@media (max-width: 540px) 
{   

    .offcanvas.custom-offcanvas
    {
        width: 300px !important;
    }

    .ContactDiv 
    {
        flex-direction: column;    
        text-align: start;
        padding: 15px;
    }

    .contact-card 
    {
        width: 100%;
        margin-bottom: 15px;
    }

    .map-responsive iframe 
    {
        width: 100%;                
        height: 250px;
        margin-right: 0 !important;
    }

    .banner 
    {
        text-align: center;
        padding: 20px;
    }

    .banner-img 
    {
        margin-top: 50px;
        height: 250px;
        margin-bottom: 20px;
    }

    .glass-box 
    {
        padding: 20px;
    }
    
    .calligraphy
    {
       
        font-size: 30px;
    
    }

    .calligraphy-text 
    {
        
        font-size: 20px;
       
    }

    .banner-text h1 
    {
        color:#f3f3ca !important;
        font-size: 38px;
        line-height: 1.2;
    }

    .banner-text span 
    {
        color: #ff7300;
    }

    .banner-text p 
    {
        margin-top: 20px;
        font-size: 16px;
        color: #fddcca;
        max-width: 520px;
    }

    .for-mobile
    {
        display: block;
    }

    .for-desktop
    {
        display: none;
    }

    .Text-Box
    {
        padding: 20px;
        box-shadow: 0 0 15px #080808;
        text-align: center;
        border-radius: 35%;
        color: #ddd9cd;
    }

    .at-image
    {
        margin-top: 50px;
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 992px) 
{
    .services-container 
    {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-text h1 
    {
        font-size: 36px;
    }
}

@media (max-width: 576px) 
{
    .services-grid
     {
        grid-template-columns: repeat(2, 1fr);
    }
}
