@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Serif+Display:ital@0;1&family=Goldman:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Serif+Display:ital@0;1&family=Goldman:wght@400;700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
:root
{
    --white:white;
    --gray:gray;
    --red:#902C12;
    --black:#171717;
    --light-color:var(--light-color);
    
    --box-shadow:0.5rem 1.5rem rgba(0,0,0,.1);
    --border:2rem   solid rgba(0,0,0.1);
    --outline: 1rem rgba(0,0,0.1);

}


*
{
    font-family: 'Poppins', sans-serif; 
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
    color: white;

}
html
{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
    

}
body
{
    background-color:black;
    -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE10+/Edge */
        user-select: none; /* Standard */

}

section
{
    min-height: 100vh;
   padding:10rem 9% 2rem;


}
.heading
{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.2rem;
    color: var(--white);




}
.heading span
{
    color: var(--red);
}
.btn
{   border: 2px solid var(--gray);
    margin-top: 1rem;
    display:inline-block;
    padding: .8rem 3rem;
    font-size: 2rem;
    border-radius: .5rem;
    color: var(--light-color);
    cursor: pointer;
    background: none;


    



}
.btn:hover
{
    background: var(--red);
    color: #fff;
    
}

/* The Floating Container */
.cta-floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000; /* Ensures it stays above all other content */
  
  /* Initial state for animation */
  opacity: 0;
  transform: scale(0.5) translateY(50px);
  animation: popUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 1s; /* Waits 1 second after page load to appear */
}

/* The Pop-Up Keyframes */
@keyframes popUp {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* The Button Styling (Same as before, but optimized) */
.cta-button {
  background: linear-gradient(135deg, #902C12 0%, #902C12 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 50px; /* Pill shape looks better for floating buttons */
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(230, 74, 25, 0.5);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(230, 74, 25, 0.7);
}


.header
{
    border: 0px solid;
    position: fixed;
    top:0;
    left: 0;
    right:0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9% ;
    background:transparent;
    border-radius: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  /*  border: 1px solid rgba(255, 255, 255, 0.3);*/
    box-shadow: var(--light-color);




    
}

.header .logo 
{
    font-size: 2.5rem;
    font-weight: bolder;
    color:#171717;

}
.header .logo span
{
    color: var(--red);

}
.header .navbar a
{
    font-size: 2rem;
    margin: 01rem;
    color: var(--white);
    font-weight: bolder;
    


}
.header .navbar a:hover
{
    color:var(--red);
}

.header .icons div
{
   
    color:#171717;
    font-size: 3rem;
    text-align: center;
    cursor: pointer;
}
.header .icons div:hover
{
   
   color:var(--red);


}
#menu-btn
{
    display: none;
}
.header .navbar.active 
{
    right: 2rem;
    transition: .4s linear;

}

.home
{
    display: flex;
    justify-content:center;
    align-items:center;
    padding-top: 1.5rem;
    background-image: url(/images/imgpro\ \(1\).PNG);
   
   

   

}
.home-img img
{
    width: 25vw;
    border-radius:50px;
    padding-right: 30px;

}



.home-content h3
{
    font-size: 3.2rem;
    font-weight: 700;
    color: #171717;
}
.home-content h3:nth-of-type(2)
{
  /*  margin-bottom: 2rem;*/
    color: #171717;
}
span
{
    color: var(--red);
}
.home-content h1
{
    font-size: 6rem;
    font-family: "Anton", sans-serif;
    font-weight: 200;
    line-height: 1,3;
    color:whitesmoke;
}
.home-content p 
{
    font-size: 1.6rem;
    font-family: 'arial', sans-serif; 
    color: whitesmoke;
}
.social-media a 
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border-radius: 50%;
    font-size: 2rem;
    color:#171717;
    border: .2rem solid var(--black);
    
    margin: 3rem 1.5rem 3rem 0;
}
.social-media i
{
    color: #171717;
}
.social-media a:hover

{
     background: var(--red);
     color: var(--red);
     box-shadow: 0 0 1rem var(--red);
}
.about
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:2rem;
    

}
.about-img img 
{
    width: 20vw;
    border-radius: 8px;


}


.about-content h2
{
    text-align: center;
    line-height: 1.2rem;
}

.about-content h3
{
    font-size: 2.6rem;

}
.about-content p 
{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
    

}







.packages-container

{
     display: flex;
     justify-content: center;
     align-items:center;
     text-align: left;
     flex-wrap: wrap;
   width: 90%;
  max-width: 1200px;
  margin: 100px auto 0 auto; /* pushes it below navbar */
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
     gap:2rem;

}
.packages-container .packages-box
{
    flex: 1 1 30rem;
    background: var(black);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: left;
   
    transition: .5s ease;
   
}
.packages-container .packages-box:hover
{
    border-color: var(--red);
    transform: scale(1.02);
}



.packages-box i
{
    font-size: 3rem;
}
.packages-box h3
{
    font-size: 2.3rem;
}
.packages-box p
{
    font-size: 1.2rem;
    margin: 1rem 0 3rem;
    text-decoration: dotted;
}

.packages-box h4
{
    font-size: 1.5rem;
    color: #FFD65A;
}





.gallery1
{
    align-items: center;
    display: flex;
    gap: 2rem;
}
.gt 
{
   text-align: left;
}

.gt h1
{
    font-size: 3rem;
    padding-bottom: 3rem;
    font-family:Georgia, 'Times New Roman', Times, serif
    
}

.gt
{
  font-size: 1.3rem;

}


.gallery-container {
  position: relative;
      z-index: 1000;
     width: 800px;
     
  max-width: 90%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

  
  
}

.gallery {
  position: relative;
  
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.slide.active {
  display: block;
  animation: fade 0.5s ease-in-out;
}

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 22px;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;
  border-radius: 8px;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.3s;
}

.btn:hover {
  background: rgba(255,255,255,0.7);
  color: black;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}



.footer {
  margin-top: 80px;
  padding: 50px 20px 20px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255,255,255,0.1);

  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-box h2 span {
  color: #ff3c00;
}

.footer-box h3 {
  margin-bottom: 15px;
  color: #ff3c00;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin: 8px 0;
}

.footer-box ul li a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff3c00;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 15px;

  border: 1px solid #ff3c00;
  border-radius: 20px;

  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #ff3c00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}



@media (max-width:991px)
{
    html 
    {
        font-size: 55%;


    }
    .header
    {
        padding: 2rem;
    }
    section
    {
        padding: 2rem;
    }

    

}

@media (max-width: 768px)
{
    #menu-btn
    {
        display: inline-block;

    }
    
    .header .navbar
    {
        position: absolute;
        top:110%;
        right:-110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);

    }
    .header .navbar a
    {
       font-size: 2rem;
       margin: 2rem 2.5rem;
       display: block;


    }
 section

 {
    min-height: 100vh;
   padding:10rem 9% 2rem;


 }
    

    .home
    {
        flex-direction: column;
            background-image: url(/images/Green\ Modern\ Phone\ Mockup\ with\ Hand\ Your\ Story.png);
        background-size: cover;
         min-height: 100vh;
        
    }
    .home-content h3 
    {
        font-size: 2.6rem;
    }

    .home-content h5 
    {
        font-size: 5rem;
    }
    .home-img img 
    {
        width: 70vw;
        margin-top: 4rem;
    }
    .about
    {
        flex-direction: column-reverse;

    }
    .about-img img 
    {
        width: 70vw;
        
    }
    
    
    
    .packages-container
    {
        margin-bottom: 3rem;
    }
    .packages-container .packages-box
   {
    flex: 1 1 20rem;
   }
   
  
   .gallery1
   {
    flex-direction: column;
   }


}

@media (max-width: 450px)
{
    html 
    {
        font-size: 50%;

    }
    .heading
    {
        font-size: 2.5rem;
    }
}
