@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,500&display=swap');
* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: "poppins";
    outline: none;
    border: none; 
    color: black;
}
body{
    background: #faf0f0;
    /*background:#263538;*/
    height: 100vh;
	}
html{
    font-size: 62.5%;
    overflow-x: hidden;
}
.header{
    position: fixed;
    left: 0;
    top: 0;
    padding: 2rem 10%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.sticky{
    border-bottom: 2px solid rgba(255,255,255,.1);
    background: #fdd8da;

}
.logo{
    font-size: 2.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transform: translateX(-100%);
    opacity: 0;
    animation: RightSlide 0.7s ease forwards;
}
@keyframes  RightSlide{
    0%{
        transform: translateX(-100%);
        opacity: 0;
    }
    100%{
        transform: translateX(0%);
        opacity: 1;
    }
}

#menu{
    color: black;
    font-size: 2.5rem;
    display: none;
}
.navbar a{
    display: inline-block;
    font-size: 1.4rem;
    text-decoration: none;
    margin: 0 2rem;
    font-weight: 500;
    letter-spacing: .02;
    transition: .5s ease;
    transform: translateY(-100px);
    opacity: 0;
    animation: TopSlide 0.7s ease forwards;
    animation-delay: calc(.1s * var(--vlr));
}
@keyframes  TopSlide{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
.navbar a:hover,.navbar a.active{
     background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* For other browsers */
  background-clip: text;
  color: transparent;
    
    
    
}
section{
    padding: 10rem 9% 2rem;
    
    border:1px red !important;
}
.about,.education,.contact,.skills{
    overflow: hidden;
}
.home{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.text-content{
    max-width: 70rem;
}
.text-content h1{
    
    background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
    
    
    font-size: 5rem;
   
    text-transform: capitalize;
    letter-spacing: .05rem;
    font-weight: 600;
    transform: translateY(-100px);
    opacity: 0;
    animation: RightSlide 0.7s ease forwards;
    animation-delay: 0.7s;
}
.text-animation{
    position: relative;
    width: 32.8rem;
}
.text-animation h2{
    font-size: 3.2rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: .7px tomato;
  
    
    
    background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
    
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -33rem 0;
    transform: translateY(-100px);
    opacity: 0;
    animation: textSlide 6s linear infinite,
    TopSlide 0.7s ease forwards;
    animation-delay: 2s,1.2s;
}
@keyframes textSlide{
    0%,10%,100%{
        background-position: -33rem 0;
    }
    65%,85%{
        background-position: 0 0;
    }
}
.text-animation::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-right: 2px solid #ff00ee;
    transform: translateY(-100px);
    opacity: 0;
    animation: CursorSlide 6s linear infinite,
    TopSlide 0.7s ease forwards;
    animation-delay: 2s,1.2s;
}
@keyframes CursorSlide {
    0%,10%,100%{
        width: 0;
    }
    65%,78%,85%{
        opacity: 1;
        width: 100%;
    }
    75%,81%
    {
        opacity: 0;
    }

}
.text-content p{
    font-size: 1.4rem;
    margin: 1rem 0;
    transform: translateX(100px);
    opacity: 0;
    animation: leftSlide 0.7s ease forwards;
    animation-delay: 1.4s;
}
@keyframes leftSlide{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.btn-section{
    width: 32.5rem;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}
.btn-section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #faf0f0;
    height: 100%;
    width: 100%;
    z-index: 2;
    animation: Slide 0.7s ease forwards;
    animation-delay: 1.6s;
}
@keyframes Slide{
    0%{
        width: 100%;
    }
    100%{
        width: 0;
    }
}
 .btn{
    height: 100%;
    width: 15rem;
    color: #fff;
    
    background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
    /*background: linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);*/
    
   
    /*border: 0.2rem solid rgba(255,255,255,0.3);*/
    backdrop-filter: blur(5rem);
    border-radius: .8rem;
    font-size: 1.5rem;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before{
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    height: 300%;
    width: 100%;
    
    background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
    /*background: linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);*/

    z-index: -1;
    transition: .5s ease;
}
.btn:hover::before{
    top: 0;
}
.social-media {
    margin: 2rem 0;
}
.social-media i{
    display: inline-block;
    font-size: 2.5rem;
    background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
    /*background: linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);*/
    /*border: 0.2rem solid rgba(255,255,255,0.3);*/
    padding: .8rem;
    margin: 0 .5rem;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: Bottom 0.7s ease forwards;
    animation-delay: calc(.2s * var(--vlr));
    transform: translateY(100px);
    opacity: 0;

}
@keyframes Bottom{
    0%{
        transform: translateY(100px);
    opacity: 0;
    }
    100%{
        transform: translateY(0px);
    opacity: 1;
    }
}
.social-media i::after{
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    height: 300%;
    width: 100%;
background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);


	
    z-index: -1;
    transition: .5s ease;
}

i:hover::after{
    top: 0;
}
.home img{
    width: 30vw;
/*background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);*/
   

    /*border: .2rem solid rgba(255,255,255,.3);*/
    border-radius: 50%;
   filter: drop-shadow(0 0 12rem rgba(255, 30, 30, 0.4));


    animation: Scale 0.7s ease forwards;
    scale: 0;
    animation-delay: 2s;
}
@keyframes Scale{
    0%{
        scale: 0;
    }
    100%{
        scale: 1;
    }
}
/* about section */
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 6rem;
    gap: 2rem;
}
.about2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
    gap: 2rem;
}
.title{
    font-size: 5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(-100px);
    opacity: 0;
    
        background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
section.start-animation .title{
    animation: top 0.4s ease forwards;
}
@keyframes top{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
/*.title span{*/
/*        background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);*/
/*  -webkit-text-fill-color: transparent;*/
/*  background-clip: text;*/
/*  color: transparent;*/
/*}*/
.aboutImg {
    height: 25rem;
    width: 25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 0.2rem solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: drop-shadow(0 0 12rem rgba(44, 120, 115, 0.4));
    
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

section.start-animation .aboutImg {
    animation: scaleout 0.5s ease forwards;
}

@keyframes scaleout {
    0% {
        transform: scale(0);
        opacity: 0;
        visibility: hidden;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}


.text-content2{
    text-align: center;
}
.text-content2 h2{
    font-size: 2.6rem;
    transform: translatex(-100px);
    opacity: 0;
}
section.start-animation .text-content2 h2{
    animation: Right 0.7s ease forwards;
}
@keyframes Right{
    0%{
        transform: translatex(-100px);
        opacity: 0;
    }
    100%{
        transform: translatex(0px);
        opacity: 1;
    }
}
.text-content2 p{
    font-size: 1.5rem;
    margin: 2rem 0 3rem;
    transform: translatex(100px);
    opacity: 0;
}
section.start-animation .text-content2 p{
    animation: Left 0.7s ease forwards;
}
@keyframes Left{
    0%{
        transform: translatex(100px);
        opacity: 0;
    }
    100%{
        transform: translatex(0px);
        opacity: 1;
    }
}
.text-content2 .btn{
    padding: .9rem .5rem;
    transform: translateY(100px);
    opacity: 0;
}

section.start-animation .text-content2 .btn{
    animation: Bottoms 0.7s ease forwards;
}
@keyframes Bottoms{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translatey(0px);
        opacity: 1;
    }
}
/* education section */
.row{
    display: flex;
    column-gap: 4rem;
    flex-wrap: wrap;
}
.column{
    flex: 1 1 30rem;
}
.column:nth-child(1){
    opacity: 0;
    transform: translateX(-100px);
}
section.start-animation .column:nth-child(1){
    animation: Right 0.7s ease forwards;
    animation-delay: 1.2s;
}

.column:nth-child(2){
    opacity: 0;
    transform: translateX(100px);
}
section.start-animation .column:nth-child(2){
    animation: Left 0.7s ease forwards;
    animation-delay: 1.2s;
}
.column h2{
    font-size: 2.5rem ;
    margin: 2rem 0 1rem 1.96rem;
    transform: translateY(-100px);
    opacity: 0;
}
section.start-animation .column h2{
    animation: top 0.7s ease forwards;
    animation-delay: 1.2s;
}

.box{
    border-left: .2rem solid tomato;
}
.education-content {
    padding-left: 1.9rem;
}
.education-content .content{
    padding: 1.5rem;
    border: .2rem solid #ff1e1e;
    background: rgba(255,255,255,.1);
    border-radius: .5rem;
    margin-bottom: 2rem;
    position: relative;
}
.content::before{
    content: "";
    position: absolute;
    left: -2.8rem;
    top: -1.5rem;
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 50%;
    background: #ff1e1e;
}
.content .year{
    font-size: 1.5rem;
    color: #ff1e1e;
}
.content .year i{
    color: #ff1e1e;
    font-size: 1.5rem;
    margin-left: .5rem;
}
.content h3{
    font-size: 1.7rem;
    letter-spacing: .05rem;
    margin: .5rem 0;
}
.content p{
    font-size: 1.5rem;
}
/* skill-content */
.wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}
.skill-title{
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-100px);
}
section.start-animation .skill-title{
    animation: top 0.7s ease forwards;
    animation-delay: 0.5s;
}
.skill-content{
    width: 100%;
    flex:  1 1 30rem;
}
.skill-box{
    height: 100%;
    width: 100%;
    padding: 8rem 4rem;
    /*background: rgba(255,255,255,.1);*/
    background:#faf8f1;
    /*box-shadow: 0 4px 4px rgba(255, 30, 30, 0.5);*/
    box-shadow: 1px 1px 3px rgb(185 101 101 / 57%);

    border-radius: 1rem;
}
.skill-box1{
    opacity: 0;
    transform: translateX(-100px);
}
section.start-animation .skill-box1{
    animation:  Right 0.5s ease forwards;
    animation-delay: 0.5s;
}
.skill-box2{
    opacity: 0;
    transform: translateX(100px);
}
section.start-animation .skill-box2{
    animation:Left 0.5s ease forwards;
    animation-delay: 0.5s;
}
.single-skill{
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}
.single-skill span{
    font-size: 1.6rem;
}

.bar-side{
    background: #e9969661;
    height: 1rem;
    border-radius: 50rem;
    position: relative;
    overflow: hidden;
}
.bar{
    position: absolute;
    height: 100%;
background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
}
.bar-1{
    width: 90%;
}
.bar-2{
    width: 80%;
}
.bar-3{
    width: 70%;
}
/* contact section */
section form{
    max-width: 70rem;
    text-align: center;
    margin: 1rem auto;
    margin-bottom: 3rem;
}
.input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
input:nth-child(1){
    opacity: 0;
    transform: translateX(-100px);
}
section.start-animation input:nth-child(1){
    animation:Right 0.7s ease forwards;
    animation-delay: 0.5s;
}
input:nth-child(2){
    opacity: 0;
    transform: translateX(100px);
}
section.start-animation input:nth-child(2){
    animation:Left 0.7s ease forwards;
    animation-delay: 0.5s;
}
input,


section.start-animation textarea{
    animation:Bottom 0.7s ease forwards;
    animation-delay: 0.5s;
}
input::placeholder{
    font-size: 1.5rem;
    letter-spacing: .02rem;
}
.input-box input{
    width: 49%;
}
input:focus,
input:valid{
    border: .2rem solid #2c7873;
}
textarea:focus,
textarea:valid{
    border: .2rem solid #2c7873;
}
textarea{
    resize: none;
}
.contact .btn{
    margin-top: 2rem;
    cursor: pointer;
    filter: none;
    border:none;
    /*border: .2rem solid rgba(185, 228, 207, 0.767);*/
}
section.start-animation .btn{
    animation:Bottom 0.7s ease forwards;
    animation-delay: 0.5s;
}
.contact .btn:hover{
    
    background: -webkit-linear-gradient(15deg, #e60000 35%, #e66760 100%);
    box-shadow: 0 0 .3rem tomato,
    0 0 .7rem tomato;
}
/* footer */

footer{
    background:#fdd8da;
    padding: 2rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer p{
    font-size: 1.6rem;
}
/*footer i{*/
/*    display: inline-flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: .8rem; */
/*     background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);*/
/*    color: #0f0a0a;*/
/*    border-radius: 50%;*/
/*    font-size: 2.4rem;*/
/*    color:white;*/
/*}*/

.hacking_icon{
        background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent
}






/*carousel code*/

.carousel-wrapper {
  perspective: 1200px;
  width: 90%;
  max-width: 1000px;
  position: relative;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
  position: relative;
}

.carousel-item {
  width: 250px;
  height: 250px;
  margin: 0 20px;
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transition: transform 1s, opacity 1s, filter 0.8s;
  transform-style: preserve-3d;
}
/*carousel code end*/




/*popup box code*/

    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .popup-box {
      background: #faf0f0;
      padding: 10px;
      border-radius: 15px;
      text-align: center;
      width: 290px;
	  
    }

    .social-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
	  border-radius:4px;
     background-color: #fad0d0;
	  padding:10px 0px;
    }
.social-icons i{
    color:white;
}
    .social-icons a {
      text-decoration: none;
      font-size: 22px;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      color: white !important;
    }

    .facebook {background: linear-gradient(15deg, #ff1e1e, #ff8079);}
    .twitter { background: linear-gradient(15deg, #ff1e1e, #ff8079);}
    .instagram { background: linear-gradient(15deg, #ff1e1e, #ff8079); }
    .linkedin { background: linear-gradient(15deg, #ff1e1e, #ff8079); }
    .youtube { background: linear-gradient(15deg, #ff1e1e, #ff8079); }
    .github { background: linear-gradient(15deg, #ff1e1e, #ff8079); }
    .tiktok { background: linear-gradient(15deg, #ff1e1e, #ff8079); }

    .thank-you-text {
      font-size: 20px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #323b3d;;
    }
	/* Common hover effect for all */
	.facebook:hover,
	.twitter:hover,
	.instagram:hover,
	.youtube:hover,
	.github:hover,
	.linkedin:hover {
	    background: linear-gradient(15deg, #e01919, #ff5c52);
	 transition: .5s ease;
		
	}
	

    .ok-btn {
      padding: 10px 25px;
      background-color: #2c7873;;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .ok-btn:hover {
      background-color: #245f5a;
    }
	
	
	
/*popup code end*/




/*page loader code start*/
/* Page loader background */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(20, 20, 20, 0.4);*/
  background: -webkit-linear-gradient(15deg, #e60000 35%, #e66760 100%);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Wrapper for rotating icons and text */
.loader-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}

/* Text in center */
.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  text-align: center;
  z-index: 2;
}

.cyan {
  background: linear-gradient(90deg, cyan, #00ffff, #00aaff, cyan);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideText 2s linear infinite;
}

.white {
  color: white;
  animation: fadeWhite 2s ease-in-out infinite alternate;
}

/* Rotating icons */
.rotating-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
  transform-origin: center;
  z-index: 1;
}

.rotating-ring i {
  position: absolute;
  font-size: 18px;
 color:white;
}

/* Position icons around circle */
.rotating-ring i:nth-child(1)  { top: 0; left: 50%; transform: translateX(-50%); }
.rotating-ring i:nth-child(2)  { top: 20%; left: 85%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(3)  { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(4)  { top: 80%; left: 85%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(5)  { top: 100%; left: 50%; transform: translate(-50%, -100%); }
.rotating-ring i:nth-child(6)  { top: 80%; left: 15%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(7)  { top: 50%; left: 0%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(8)  { top: 20%; left: 15%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(9)  { top: 10%; left: 30%; transform: translate(-50%, -50%); }
.rotating-ring i:nth-child(10) { top: 10%; left: 70%; transform: translate(-50%, -50%); }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slideText {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@keyframes fadeWhite {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}



/*page loader code end*/



/*videos code start*/


    h2.title {
      font-size: 3rem;
      text-align: center;
      margin-top: 3rem;
    }

    h2.title span {
      color: #ff1e1e;
    }

    /* ===== Videos inside About section ===== */
    .about-videos {
      margin-top: 4rem;
      text-align: center;
      padding-bottom: -4rem;
    }

    .video-row {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      margin-top: 2rem;
      align-items: flex-start;
    }

    .video-item {
      width: 330px;
      padding: 10px;
      border-radius: 18px;
      background: #ffffff;
      border: 2px solid rgba(255, 50, 50, 0.25);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
      height: auto !important;
      min-height: 0 !important;
      align-self: flex-start;
    }

    .video-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
      border-color: rgba(255, 50, 50, 0.65);
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
      border-radius: 14px;
      background: #000;
    }

    .video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ✅ Thumbnail */
    .youtube-thumb {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
      background-size: cover;
      background-position: center;
      border-radius: 14px;
    }

    .youtube-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 14px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55));
    }

    .youtube-thumb::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 74px;
      height: 74px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      z-index: 2;
    }

    .youtube-thumb span {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-38%, -50%);
      width: 0;
      height: 0;
      border-left: 22px solid #ffffff;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      z-index: 3;
    }

    .more-videos {
      margin-top: 2rem;
    }

    .more-videos-btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 0.8rem;
      background: linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.4px;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .more-videos-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    }


/*videos code end*/

/*another page code*/







   #page-loader {
  position: fixed;
  z-index: 9999;
  /*background: #0f0f0f;*/
    background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);

  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}


.scroll-top {
    position: fixed;
    right: 2rem;
    bottom: 4rem;
    z-index: 1000;
    font-size: 2.5rem;
    background: -webkit-linear-gradient(15deg, #e60000 35%, #e66760 100%);
    color:white;
    
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration:none;
}

.scroll-top.show {
    display: inline-flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-top.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}



    form {
      max-width: 900px;
      margin: auto;
      background: #ffffff;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    .input-box {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .form-group {
      position: relative;
      flex: 1 1 48%;
      margin-bottom: 1.5rem;
    }

    .form-group.full-width {
      flex: 1 1 100%;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1.3rem;
      font-size: 1.8rem;
      border: 2px solid tomato;
      border-radius: 0.8rem;
      /*background: rgba(44, 120, 115, 0.1);*/
      background-clip: padding-box;
      backdrop-filter: blur(10px);
      /*filter: drop-shadow(0 0 30px #2c7873);*/
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      /*border-image: linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%) 1;*/
      outline: none;
    }

    /* Floating Label */
    .form-group label {
      position: absolute;
      left: 1.2rem;
      top: 1.2rem;
      background-color: #fff;
      padding: 0 0.3rem;
      color: #777;
      pointer-events: none;
      transition: 0.2s ease all;
      font-size: 1.3rem;
      border-radius: 0.3rem;
    }

    .form-group input:focus+label,
    .form-group input:valid+label,
    .form-group textarea:focus+label,
    .form-group textarea:valid+label {
      top: -0.6rem;
      left: 1rem;
      font-size: 1.3rem;
      color: #ff1e1e;
      background-color: #fff;
    }
        /* Submit Button */
    .btn2 {
      display: inline-block;
      padding: 1rem 2rem;
      background: linear-gradient(15deg, #ff1e1e, #ff8079);
      color: #fff;
      border: none !important;
      border-radius: 0.8rem;
      cursor: pointer;
      font-size: 1.5rem;
      transition: 0.3s ease;
      margin-top: 1rem;
    }

    .btn2:hover {
      opacity: 0.8;
    }
    
    
    
    
    
    
    button {
      position: relative;
      padding: 12px 25px;
      background: -webkit-linear-gradient(15deg, #ff1e1e 35%, #ff8079 100%);
      font-size: 1.5rem;
      font-weight: 500;
      color: white;
      /* border: 3px solid var(--color); */
      border-radius: 8px;
      /* box-shadow: 0 0 0 #fec1958c; */
      transition: all .3s ease-in-out;
      cursor: pointer;
      border: none;
      
    }

    .star-1 {
      position: absolute;
      top: 20%;
      left: 20%;
      width: 25px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    }

    .star-2 {
      position: absolute;
      top: 45%;
      left: 45%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-3 {
      position: absolute;
      top: 40%;
      left: 40%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-4 {
      position: absolute;
      top: 20%;
      left: 40%;
      width: 8px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-5 {
      position: absolute;
      top: 25%;
      left: 45%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-6 {
      position: absolute;
      top: 5%;
      left: 50%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all .8s ease;
    }

    button:hover {
       background: -webkit-linear-gradient(15deg, #f34141 35%, #f6473e 100%);
      color: white;
      box-shadow: 0 0 25px #fec1958c;
    }

    button:hover .star-1 {
      position: absolute;
      top: -80%;
      left: -30%;
      width: 25px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    button:hover .star-2 {
      position: absolute;
      top: -25%;
      left: 10%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    button:hover .star-3 {
      position: absolute;
      top: 55%;
      left: 25%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    button:hover .star-4 {
      position: absolute;
      top: 30%;
      left: 80%;
      width: 8px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    button:hover .star-5 {
      position: absolute;
      top: 25%;
      left: 115%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    button:hover .star-6 {
      position: absolute;
      top: 5%;
      left: 60%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .fil0 {
      fill: maroon;
    }
    .btna{
        margin-right:7px;
    }
    
    
    
    
    
    .underline-loop {
      position: relative;
      font-size: 2rem;
      color: #333;
      cursor: pointer;
    }

    .underline-loop::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, #ff1e1e, #ff8079);
      border-radius: 2px;
      animation: underlineAnim 2s infinite;
    }

    @keyframes underlineAnim {
      0% {
        width: 0%;
        left: 0;
      }

      50% {
        width: 100%;
        left: 0;
      }

      51% {
        width: 100%;
        left: 0;
      }

      100% {
        width: 0%;
        left: 100%;
      }
    }
    
    
    
    
    

    
  /*border code start  */

.border{
    border:2px solid tomato;
    padding:2px 20px;
    border-radius:0px 8px 0px 8px;
}

    
 /*border code end   */
 
 
 
 
 /*DROPDOWN MENTU START*/
 
 
/* =========================
DROPDOWN CONTAINER
========================= */

.dropdown{
    position:relative;
    display:inline-block;
    padding-bottom:10px;
}

/* =========================
DROPDOWN BUTTON
========================= */

.dropbtn{

    display:flex;
    align-items:center;
    gap:6px;
    
    cursor:pointer;

}

/* arrow animation */

.arrow{
    transition:.3s;
}

.dropdown:hover .arrow{
    transform:rotate(180deg);
}

/* =========================
DROPDOWN MENU
========================= */

.dropdown-content{

    position:absolute;
    top:100%;
    left:0;
    
    min-width:220px;
    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(15px);
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    
    overflow:hidden;
    /* animation fix */
    
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease;
    z-index:1000;
    padding:12px 0px;

}

/* =========================
SHOW DROPDOWN
========================= */

.dropdown:hover .dropdown-content{

    opacity:1;
    visibility:visible;

}

/* =========================
DROPDOWN LINKS
========================= */

.dropdown-content a{

    display:flex;
    align-items:center;
    gap:10px;
    
    padding:5px 16px;
    font-size:1.4rem;
    color:#333;
    text-decoration:none;
    transition:.25s;

}

/* hover effect */

.dropdown-content a:hover{

    /*background:rgba(255,255,255,0.3);*/
    /*padding-left:22px;*/
    color:tomato;

}
 
 
 /*DROPDOWN MENE END*/
 
    
    
   
  #videos{
          padding-top:0px;
      }
#about{
          padding-top:10px;
         
      }

.navbar{
    overflow:visible;
}



























/* RESPONSIVE */
@media(max-width:1300px){
    #menu{
        display: block;
    }
    .navbar{
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 1rem 3%;
        background: #ebd7d6de;
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: .2rem solid rgba(255,255,255,.1);
        display: none;
    }
    .navbar.active{
        display: block;
    }
    .navbar a{
        display: block;
        margin: 3rem 0;
        font-size: 2rem;
    }
    
}

@media(max-width:1200px){
    html{
        font-size: 55;
    }
}
@media(max-width:991px){
    .header{
        padding: 2rem 9%;
    }
    section{
        padding: 10rem 3% 2rem;
    }
    .contact{
        min-height: auto;
    }
    footer{
        padding: 2rem 3%;
    }
}


@media(max-width:768px){
    #menu{
        display: block;
    }
    .navbar{
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 1rem 3%;
        background: #ebd7d6de;
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: .2rem solid rgba(255,255,255,.1);
        display: none;
    }
    .navbar.active{
        display: block;
    }
    .navbar a{
        display: block;
        margin: 3rem 0;
        font-size: 2rem;
    }
    .home{
        flex-direction: column-reverse;
    }
    .home .text-content{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .home .text-content h1{
        font-size: 4rem;
    }
    .home img{
        width: 40vw;
    }
    .about{
        flex-direction: column;
    }
    .about img{
        width: 20rem;
        height: 20rem;
    }
    
    
    
    
    
    
    
    
    
    
   /*anoehr code */
    .form-group {
        flex: 1 1 100%;
      }
      #videos{
          padding-top:0px;
      }
      
      
      .dropdown{

        width:100%;
        padding:0;
          
        
        }
        
        .dropdown-content{
        
        position:relative;
        top:0;
        left:0;
        background:transparent;
        backdrop-filter:none;
        box-shadow:none;
        border-radius:0;
        display:none;
        opacity:1;
        transform:none;
        padding:0;

    }

    .dropdown-content a{
    
        padding-left:30px;
        font-size:2rem;
        padding:0px 15px;
    
    }

    .dropdown.active .dropdown-content{
    
        display:block;
    
    }
    .navbar{

    max-height:70vh;
    overflow-y:auto;
    
    }
    
    
    
    
}


  @media (max-width:500px){
        .btn2{
          padding: 1.5rem 2rem;
            }
      
         .form-group input,
        .form-group textarea {
            padding:2rem;
            
        }
        #videos{
          padding-top:0px;
      }
    }

@media(max-width:450px){
    html{
        font-size: 50%;
    }
    .input-box input{
        width: 100%;
    }
	.popup-box {
        width: 90%;
	}
		
}
