*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

/* GLOBAL FIX: stop horizontal overflow no matter what a child does */
body{
    max-width: 100%;
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
}

.buttons{
    margin-top:60px;
    margin-right:30px;
    display:flex;
    flex-wrap: wrap;
    gap: 22px;
}


button{
  
    padding: 16px 36px; 
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    background-color: #94A3B8;
    max-width: 100%;

}

button:hover{
    background-color: #F4C430;
}
        .gradient-text {
            background: linear-gradient(135deg, #FFFBE0, #FF6B6B, #4CAF7D);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline;
            font-size: clamp(24px, 4vw, 45px);
            word-spacing: 1.5px;
        }

         body {
            margin: 0px;
            padding: 0px;
        
            background-image:
        linear-gradient(
                rgba(255,255,255,0.5),
            rgba(255,255,255,0.5)
            /* rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) */
        ),
        url("Gemini_Generated_Image_ld53r9ld53r9ld53.png");
            background-color: #0d2a69; 
         width: 100%;
            min-height: 100vh;
                      background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
          position:relative;
        }
        .main{
            width:100%;
            display:flex;
       
        }
        .maintwo {
            width: 50%;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #toggle-animation {
            margin-top: 1rem;
            padding: 0.65rem 1rem;
            border: 1px solid #d7b249;
            border-radius: 0.5rem;
            background: #1a74a5;
            color: #fff;
            cursor: pointer;
        }

        @media (max-width: 1100px) {
            .main {
                flex-direction: column;
                align-items: center;
            }

            .maintwo {
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .outer {
                width: min(540px, 88vw);
                height: min(540px, 88vw);
                transform: scale(calc(min(540px, 88vw) / 540px));
                transform-origin: top center;
                margin-bottom: calc(min(540px, 88vw) - 540px);
            }
        }
        body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url("Gemini_Generated_Image_ld53r9ld53r9ld53.png")
                center/cover no-repeat;

    opacity: 0.8; /* image transparency */
    z-index: -1;
}

        p {
            font-family: Poppins;
            font-size: clamp(18px, 3vw, 30px);
            word-spacing: 1.5px;
            font-weight: bold;
            font-style: italic;
        }

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
@keyframes glowing-border{
    from{
        --angle:0deg;
    }
    to{
        --angle:360deg;
    }
}

.navbar{
     --angle: 0deg;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap: wrap;
    gap: 12px;
    padding:18px 5%;
    margin: 20px 11%;
    background:rgba(10,25,47,.95);
    border-radius:45px;
    backdrop-filter:blur(10px);
    position:relative;
    z-index:1;
}
.ham{
     display:none;
}
@media(max-width:600px){
    .nav-links a{
        display:none;
    }
    .navbar{
        flex-wrap:nowrap;
    }
    .ham{
        display:flex;
        justify-content:flex-end;
    }
      .btn{
         padding: 8px 15px;
         flex-direction:row;
      }
   
.logo{
    justify-content:flex-start;
    align-items:center;
}
}

.navbar::before{
    content:"";
    position:absolute;
    inset:0;
    padding:3px;
    border-radius:inherit;

    background:conic-gradient(
        from var(--angle),
        #FF6B6B,
        #4CAF7D,
        #FFFBE0,
        #3949AB,
        #DC3DAF,
        #43A047,
        #FFD700,
        #FF6B6B
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
    mask-composite:exclude;

    z-index:-1;
}

.navbar::before{
    animation: glowing-border 2.5s linear infinite;
}



        .logo {
            color: white;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: bold;
        }
     
 
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
            justify-content: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.3s;
            white-space: nowrap;
            font-family: var(--v2-font-display);
            --v2-font-display: "PoppinsNum", var(--font-raleway), var(--font-plus-jakarta), "Inter", system-ui, sans-serif;
        }

        .nav-links a:hover {
            color: #60a5fa;
        }

        .btn {
            text-decoration: none;
            color: white;
            background: #94A3B8;
            padding: 10px 20px;
            border-radius: 8px;
            transition: 0.3s;
            white-space: nowrap;
            display:flex;
        }

        .btn:hover {
            background: #F4C430;
        }

       .cursor{
         z-index:999;
         background:#99e4ed7a;
         position:fixed;
         width:30px;
         height:30px;
         border-radius:50%;
         pointer-events:none;
         box-shadow: 0 0 20px pink,
                     0 0 60px pink,
                    0 0 100px pink;

         
         animation: colors 5s infinite;      
         transform: translate(-50%, -50%);
         display:none;      
       }
     @keyframes colors
     {
        0%{
            filter: hue-rotate(0deg);
        }
        100%{
              filter: hue-rotate(360deg);
        }
     }
      
     .cursor:before{
        content: '';
        position: absolute;
        background: #ffff0000;
         width:200px;
         height:200px;
         opacity: 0.2;
         transform: translate(-30%, -30%);
         border-radius:50%;
         border:2px solid #00b7ff49;

     }

   .text {
            font-size: clamp(1.6rem, 4vw, 3rem);
            font-weight: 600;
            font-family: Poppins, serif;
            letter-spacing: 3px;
            color:#d9dcd6;
           margin-left: 9%;
            text-align: start;
            margin-bottom: 15px;
            width: 100% !important;
            max-width: 700px;
            padding: 40px 5%;
            word-spacing: normal;
            line-height: 1.5;
        }

 
    .border2{
        border:1.5px solid rgba(10, 25, 47, 0.87);
    }
.main2{
    display:flex;
    flex-wrap: wrap;
    height: auto;
    padding: 20px 0;
    }
  
.about{
    flex: 1;
    min-width: 280px;
}
.about h3{
   
    padding-top: 35px;
  font-size: 18px;
  padding-right: 5%;
  padding-left: 5%;
  line-height: 1.75;
  font-weight: 500;
       font-family: var(--font-body);
}
.photo{
    padding: 30px;
    display: flex;
    justify-content: center;
    flex: 0 1 380px;
}
.photo img{
     border-radius: 12px !important;
     width: min(380px, 100%);
     max-width: 380px;
     aspect-ratio: 1;
     object-fit: cover;
     object-position: center;
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.meet h3{
    margin-top:20px;

  font-family:var(--font-body);
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.6px;
}.btnn{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}
.buttons2{
    display: flex;
    position: static;
  margin-right: 5px;
  background:#5d6e86;
  color:white;
    font-family: Poppins, serif;
}

.scroller{
    background-color:none;
     color: white

}
.body img{
    opacity:0.7;
}


.services{
    padding-top: 30px;
    
}
.services span{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 30px 5%;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    font-family: Poppins, serif;
    letter-spacing: 1px;
    color:#d9dcd6;

}
.yoyo{
    display: flex;
  padding: 20px 5%;
  justify-content: center;
  flex-wrap: wrap;
  gap:20px;

}
.yoyo h2{
      font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.6px;
padding-top: 20px;
}
.img{
    flex: 1 1 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;     
    text-align: center;       
     object-fit: cover;

}
.img img{
   margin-top: 25px;
  height: 220px;
  width: 220px;
  max-width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tex{
    font-family: Poppins;
    padding-top:18px;
        display: flex;
    align-items: center;      
    justify-content: center;  
    text-align: center;
    flex-grow: 1;           

}
.carousel{
    margin: 62px auto;
    width:100%;
    border: 0.1px solid  #5d6e86;
    display:flex;
    overflow:hidden;
  background-color: #5d6e86;
      gap:1em;
}
.carousel::-webkit-scrollbar{
    display:none;
}
.border{
    display: flex;
    align-items:center;
    justify-content: center;
    gap:1em;
    animation :spin 10s infinite linear;
    padding-right:1em;
    margin-top:12px;
}
.card{
    height: 3em;
    padding:0.5em;
    font-size: .9em;
    border-radius: .2em;
    text-align:center;
    align-items: center;
 white-space: nowrap;

}
@keyframes spin{
 from{translate:0;}
 to{translate:-100%}
}
.lea{
    padding-top: 17px;
}
.head{
        font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 23px);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
     
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
  padding-left: 5%;
  padding-right: 5%;
}

.way{
    font-family: var(--font-display);
    font-weight: 600;
  
    line-height: 1.15;
    letter-spacing: -0.01em;
    display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 25px;
  padding-left: 5%;
  padding-right: 5%;
  font-size: clamp(16px, 3vw, 23px);
  letter-spacing: 1px;
}
.apply{
        font-family: var(--font-body);
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.6;
    padding: 30px 5%;

       display: flex;
    align-items: center;      
    justify-content: center;  
    text-align: center;
    word-spacing: normal;
  letter-spacing: 1.5px;
      margin-left: 12%;
    margin-right: 10%;
}
.method{
    background-image:url("bet.png");
      /* background-image:url("new.png"); */
     text-align: justify;
}
.intro{
    display: flex;
       display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 220px;
    max-width: 320px;
}
.imu{
    display:flex;
    height: 80px;
  width: 80px;

}


.step-title{
   
    color: #D4AF37;  
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  
}
    
.methodcontainer{
display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 5%;

}
.hindi{
font-family: "Tiro Devanagari Hindi", serif;
font-style: italic;
}

.des{
font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  padding: 30px;
    padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-spacing: 2px;
  letter-spacing: 0.5px;
  padding-top: 12px;
 
}
.texy{
        font-family: Poppins;    
    
  font-size: 13px;
  font-family: var(--font-body);
 height: 100px;
  padding:9px;
  word-spacing: 2px;
  letter-spacing: 0.5px;
  padding-top: 12px;


    color: #BFC6D4;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;


    flex:1;


}
.contentt{
    
    display:flex;
    flex-direction:column;
display: inline-block;
border:2px solid #F4C430;
width:300px;
height:160px;
background-color: #11203980;;
border-radius: 15px;
  margin: 8px;
overflow: hidden;
    flex-shrink:0;
    box-sizing:border-box;
     flex:0 0 300px;
}
.name{
        justify-content: center;  
     font-weight: 600;
  padding: 10px;
    color: white;  
}
.flex{
    display:flex;
      flex-shrink:0;

}

.slide1{
  overflow:hidden;
      display:flex;
    width:max-content;
    animation: scroll 40s linear infinite;

  
}
.slide1::-webkit-scrollbar{
    display:none;
}
@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
.slide2{
    display:flex;
    overflow:hidden;
    width:max-content;
    animation: scroll 40s linear infinite reverse;
}
.slide2::-webkit-scrollbar{
    display:none;
}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
.people {


    font-family:Poppins;
   text-transform: uppercase;
   /* color:rgba(255, 249, 236, 0.58); */
   color:#F4C430;
   margin-bottom: calc(var(--spacing) * 3);
   --tw-tracking: 3px;
    letter-spacing: 3px;
padding-top:120px;
display: flex;
  justify-content: center;
}
#dis{
      font-family:Poppins;
   white-space: nowrap;

   /* color:rgba(255, 249, 236, 0.58); */
 font-weight: 500;
   margin-bottom: calc(var(--spacing) * 3);
   --tw-tracking: 3px;
    letter-spacing: 3px;

display: flex;
  justify-content: center;
     position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.review{
        --tw-tracking: -1.5px;
    letter-spacing: -1.5px;
    font-family:Poppins;
    font-size: clamp(28px, 5vw, 64px);
        max-width: 900px;
        display: flex;
  justify-content: center;
  text-align: center;
  align-content: center;
 
margin: 0 auto;
padding: 0 5% 25px;
color:white;
font-weight:bold;

}

.slide{
     /* width:100%; */
    overflow:hidden;
    position:relative;
}
.borderr{
    padding-top: 190px;
    border:1.5px solid rgba(10, 25, 47, 0.87);
  
}
.rating{
    border:1px solid #F4C430;
    height: auto;
    min-height: 100px;
    width: 90%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin: 30px auto;
    padding: 15px 5%;
}
.rating img{
    height: 60px;
  padding-left: 0;
  margin-top: 0;
}
.rot{
    padding-left: 10px;
    color:white;
     font-family:Poppins;
     font-weight: 500;
}
 span{
     padding-left: 10px;
    color:white;
        font-family:Poppins;
        font-weight: 500;
}


.buty{
    padding-left: 0;
    margin-left: auto;
}
.buty button{
    border-radius: 15px;
  background-color: gold;
  margin-right: 20px;
  margin-top: 20px;
  font-size: 15px;
  text-align: start;
  font-style: normal;
  font-weight: bolder;
}
.stars{
    padding-top:6.6px;

  padding-left: 6px;
}


.box {
	width: 90%;
	max-width: 1000px;
	position: relative;
	padding-top: 60px;
	margin: 60px auto;
	height: 95vh;
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.8);
}
.box>img {
	position: absolute;
	left:0;
	top: 20px;
	transition: all 0.5s;
	width: 100%;
	height: 520px;
    padding-bottom:20px;
    border-radius:10px;
    object-fit: cover;
}
.box input[name='animate'] {
	display: none;
}
.box label {
	 padding-left: 14px ;
	float: left;
	cursor: pointer;
	transition: all 0.5s;
	opacity: 0.6;
    height: auto;
  width: auto;
  margin-top: 468px;
  position: relative;
  z-index: 3;
}
.box label img {
	display: inline-block;
      margin-right: 12px;
  height: 14rem;
  width: 14rem;
  object-fit: cover;
border-radius:10px;
}
.box input[name='animate']:checked+label {
	border-color: #000;
	opacity: 1;
}
.box input[name='animate']~img {
	opacity: 0;
	transform: scale(1.1);
}
.box input[name='animate']:checked+label+img {
	opacity: 1;
	transform: scale(1);
}

.box-main{
    background-color:rgba(10, 25, 47, 0.95);
        width: 100%;
    height: auto;
    position: relative;
}
.quote{
    display:none;
    position: absolute;
    top: 15%;
    left: 8%;
    width: 35%;
    color: white;
    font-size: 30px;
    line-height: 1.5;
    z-index: 10;
}
.quote1{
       letter-spacing: 2.5px;
      font-family: DM Serif Display, serif;
  font-size: clamp(16px, 2.2vw, 30px);
  position:absolute;
    top: 15%;
    left: 5%;
    width: 40%;
    z-index: 2;
  color: #0b0b5c;
  line-height: 1.6;
  font-weight: bold;
}


#box1:checked ~ .quote1{
    display:block;
}
#box2:checked ~ .quote2{
    display:block;
}

#box3:checked ~ .quote3{
    display:block;
}
#box4:checked ~ .quote4{
    display:block;
}
.quote2{
font-family: DM Serif Display, serif;
  letter-spacing: 2.5px;
  font-size: clamp(16px, 2.2vw, 30px);
  position: absolute;
  top: 15%;
  left: 55%;
  width: 40%;
  color: #970707;
  z-index: 2;
  font-weight: bold;
}


.quote3{
      font-family: DM Serif Display, serif;
  letter-spacing: 2.5px;
  font-size: clamp(16px, 2.2vw, 30px);
  position:absolute;
    top: 15%;
    left: 5%;
    width: 40%;
    color: #E8C76A;
    z-index: 2;
     font-weight: bold;
}


.quote4{
      font-family: DM Serif Display, serif;
  letter-spacing: 2.5px;
  font-size: clamp(16px, 2.2vw, 30px);
  position:absolute;
    top: 15%;
    left: 5%;
    width: 60%;
    color: #5E0460;;
    z-index: 2;
     font-weight: bold;

}
.lotus img{
    width: 30px;
  height: 30px;
  margin-left: 0;
  margin-top: 5px;
    border-radius:0;
}
.boxy{
    height: 30px;
    min-height: 6vh;
    position: relative;
    left: auto;
    transform: none;
    bottom: 7.5rem;
    margin: 20px auto;
    width: 100%;
    max-width: 900px;
    background: #E6D8C3F2;
    z-index: 100;
    border-radius: 12px;
    padding: 10px 0;
}

{
    background: #08111F;;
    color:#fff;
}

footer{
    background: #08111F;;
    color:#fff;
    font-family:Poppins;
}

.footer-container{
    width:85%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    padding:55px 0 40px;
    gap:60px;
}

.footer-col{
    flex:1;
}

.footer-col h2{
    font-size:23px;
    font-family:Poppins;
    font-weight:600;
    color:#fff;
}

.line{
    width:180px;
    height:2px;
    background:#ff7b28;
    margin:12px 0 28px;
}

.footer-col p{
    color:#ececec;
    line-height:1.9;
    font-size:17px;
}

.footer-col strong{
    color:#fff;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:14px;
    color:#ececec;
    font-size:15px;
}

.footer-col ul li i{
    color:#fff;
   
}

.contact li{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.contact li i{
    margin-top:6px;
    color:#fff;
}

.social-icons{
    margin-top:35px;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:35px;
    height:35px;
    background:#655f9259;
    border-radius:50%;
    margin-right:12px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a i{
    color:
    #d7c1b3;
    font-size:22px;
}

.social-icons a:hover{
    background:#ff7b28;
}

.social-icons a:hover i{
    color:#fff;
}

.copyright{
    background:#000;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:13px;
}

@media(max-width:991px){

.footer-container{
    flex-direction:column;
    gap:40px;
}

.footer-col h2{
    font-size:28px;
}

.line{
    width:160px;
}

}
.fake{
   display:flex;

  justify-content: space-around;
  align-content: center;
  align-items: center;
 
}
.fake li{
 list-style: none;
  font-size: 12px;
  font-family: Poppins;
  color: #525237;
}
.lotus2 img{
   margin-top:2px;
      width: 25px;
  height: 25px;
}
.vertical-line{
    width:1.5px;
    height:35px;
    background: #a89813;
    border-radius:10px;
}
    
     




//container two
 @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&family=Pompiere&family=Source+Sans+Pro:wght@300&family=Text+Me+One&display=swap");

.containertwo {
  width: 100%;
  height: 800px;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(to right, #1c2129 0%, #101318 100%);
  position: relative;
  overflow: hidden;
 display:flex;
}

.animation2 {
    width: 100%;
    min-height: 100vh;

    background-image: url("p.png");
    background-size: cover;          /* Fill the entire container */
    background-position: center;     /* Center the image */
    background-repeat: no-repeat;    /* Don't repeat */
    background-attachment: fixed;    /* Parallax effect (optional) */

    overflow: hidden;
    position: relative;
object-fit:cover;
    image-rendering: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.star {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  background-image: linear-gradient(
    68.1deg,
    rgba(255, 200, 69, 1) -0.3%,
    rgba(239, 69, 115, 1) 100.2%
  );
  box-shadow: 0 0 40px 0 rgba(237, 205, 163, 0.8), 0 0 20px 0 #ffffff;
  animation: glow 5s infinite;
}

.star--medium {
  width: 6px;
  height: 6px;
  background-image: radial-gradient(
    circle 810px at 19.2% 35.5%,
    rgba(253, 230, 143, 1) 0%,
    rgba(253, 168, 137, 1) 90%
  );
}

.star--big {
  width: 9px;
  height: 9px;

  background-image: radial-gradient(
    circle 1158px at 6.4% 48.8%,
    rgba(195, 241, 245, 1) 0%,
    rgba(255, 255, 255, 1) 90.2%
  );
  box-shadow: 0 0 40px 0 #edcda3, 0 0 20px 0 #ffffff, inset 0 0 4px #ffffff;
}

.comet {
  width: 5px;
  height: 5px;
  background-image: radial-gradient(
    circle 1224px at 10.6% 8.8%,
    rgba(255, 255, 255, 1) 0%,
    rgba(153, 202, 251, 1) 100.2%
  );
  box-shadow: 0 0 7px 7px rgba(255, 255, 255, 0.3);
  top: 0;
  opacity: 0.3;
  transform: rotate(-45deg) translate(0, -50px);
  animation: comet 50s infinite;
}

.comet::after {
  content: "";
  width: 10vw;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 60px rgba(237, 205, 163, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.star,
.comet {
    position: absolute;
}
@keyframes glow {
  0% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 0.9;
  }
}

@keyframes comet {
  0% {
    transform: rotate(-45deg) translateX(0);
    opacity: 0.3;
  }

  10% {
    opacity: 1;
  }

  20% {
    transform: rotate(-45deg) translateX(-100vw);
    opacity: 0;
  }

  100% {
    transform: rotate(-45deg) translateX(-100vw);
    opacity: 0;
  }
}



/* img {
  width: 190px;
  height: 200px;
  margin-top: 7rem;
} */

.h3 {
  color: #f7fefe;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #eafaa0, 0 0 30px #eafaa0,
    0 0 40px #eafaa0, 0 0 55px #eafaa0, 0 0 75px #eafaa0;
  font-family: "Text Me One", sans-serif;
  font-size: 1.3rem;
}

.h4 {
  color: #fff;
  font-size: 1.2rem;
  font-family: "Josefin Sans", sans-serif;
  text-decoration: underline;
}

.p {
  color: #99e4ed;
  font-size: 1.1rem;
  font-family: "Source Sans Pro", sans-serif;
  text-shadow: 2px 2px 5px #99e4ed;
}



.flip-card {
  background-color: transparent;
  width: 220px;
  height: 300px;
  margin: 1rem;
  perspective: 1000px;
   display:flex;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(25, 25, 25, 0.5);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
  margin-top: 4rem;
} 



//1
.nbody {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
   
}

.contained {
    display: flex;
    flex-direction: column;
    align-items: center;
   
     
}

.clock {
    width: 300px;
    height: 300px;
}

.digital-clock {
    font-size: 24px;
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
}

.hand {
    transform-origin: 50% 50%;
    transition: transform 1s linear;
}

.toggle-speed-heading {
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    gap: 10px;
}

.toggle-speed-container {
    display: flex;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    gap: 10px;
}

.toggle-speed-label {
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
}

.toggle-speed {
	width: 3em;
	height: 1.5em;
	margin: 0 auto;
}

.toggle-speed * {
	transition: 250ms;
	box-sizing: border-box;
}

.toggle-speed input[type="checkbox"] {
	display: none;
}

.toggle-speed label {
	display: inline-block;
	width: 100%;
	height: 95%;
	background: #191970;
	border-radius: 0.7em;
	padding-top: 0.2em;
	padding-left: 0.2em;
}

.toggle-speed span {
	display: inline-block;
	width: 1em;
	height: 1em;
	background: #FFF;
	border: none;
	border-radius: 2em;
}

.toggle-speed input[type="checkbox"]:checked ~ label {
	background: #87CEFA;
	padding-left: 1.7em;
}
.copyright a{color:#fff; text-decoration:underline;}

/* Floating WhatsApp contact button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font: 600 14px/1 'Poppins', sans-serif;
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(37, 211, 102, .42);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.whatsapp-float i {
    font-size: 25px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1fbd5c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, .5);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }
}
