
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#151312;
    color:white;
}
body { cursor: none; }


.cursor {
  width: 15px;
  height: 15px;
  border: 2px solid #fc7742;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: rgba(252,119,66,0.3);
  box-shadow: 0 0 8px #fc7742, 0 0 20px #fc7742, 0 0 35px #fc7742;
  z-index: 9999;
  transition: transform 0.1s ease, background 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 1.5s infinite;
}


@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 8px #fc7742, 0 0 20px #fc7742, 0 0 35px #fc7742; }
  50% { transform: translate(-50%, -50%) scale(1.2); box-shadow: 0 0 12px #fc7742, 0 0 25px #fc7742, 0 0 45px #fc7742; }
  100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 8px #fc7742, 0 0 20px #fc7742, 0 0 35px #fc7742; }
}


.cursor-trail {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: rgba(252,119,66,0.1);
  box-shadow: 0 0 20px #fc7742, 0 0 40px #fc7742, 0 0 60px #fc7742;
  z-index: 9998;
  animation: trailPulse 2s infinite;
}


@keyframes trailPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
}

button:hover ~ .cursor,
a:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(252,119,66,0.5);
  box-shadow: 0 0 12px #fc7742, 0 0 30px #fc7742, 0 0 60px #fc7742;
}

button:hover ~ .cursor-trail,
a:hover ~ .cursor-trail {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(252,119,66,0.2);
}

.main{
    min-height:100vh;
}


.nav{
    padding:30px 0;
}

.navbar{
    width:300px;
    margin:auto;
    height:55px;
    border-radius:20px;
    background:rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow:0 0 20px rgba(255,255,255,0.05);
    
}

.mian_ul{
    display:flex;
    justify-content:space-evenly;
    font-size:26px;
    padding-top:10px;
   
}
.mian_ul,
.main-2_ul {
    list-style: none;
    padding: 0;
}


.mian_ul i{
    cursor:pointer;
    transition:0.3s;
}

.mian_ul i:hover{
    transform:scale(1.2);
    color:#fc7742;
}
.mian_ul a{
  
    color: white;
     text-decoration: none;
}


.main-2{
    width:85%;
    margin:auto;
    display:flex;
    gap:50px;
}


.main-2_1st-child{
    width:320px;
    background:#ffffff;
    border-radius:25px;
    padding:30px;
    text-align:center;

    position:sticky;
    top:100px;
    align-self:flex-start;

    transition:0.3s;
}

.main-2_1st-child:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.img-1{
    width:100%;
    border-radius:20px;
    transition:0.3s;
}

.img-1:hover{
    transform:scale(1.05);
}

.main-2_name{
    margin-top:15px;
    color:black;
}

.main-2_h3{
    color:#555;
    font-size:14px;
}

.main-2_ul{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:15px;
    font-size:22px;
    color:black;
}

.main-2_ul li{
    cursor:pointer;
    transition:0.3s;
}

.main-2_ul li:hover{
    transform:translateY(-3px);
    color:#fc7742;
}

.main-2_2nd-child{
    width:100%;
    max-width:650px;
}

.main-2_h1{
    font-size:80px;
    line-height:1;
}

.h2{
    opacity:0.5;
}


.main_p1{
    color:#888;
    margin:20px 0;
    line-height:1.6;
}

.main-3{
    display:flex;
    gap:40px;
    margin-top:20px;
}

.main-3_num h1{
    font-size:45px;
}

.main-3_num p{
    font-size:12px;
    color:#aaa;
}


.main-4{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.main-4_1st,
.main-4_2nd{
    flex:1;
    padding:25px;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
}

.main-4_1st{
    background:#fc7742;
}

.main-4_2nd{
    background:#C5FF41;
    color:black;
}

.main-4_1st:hover,
.main-4_2nd:hover{
    transform:translateY(-5px) scale(1.02);
}


.main-5{
    margin-top:80px;
}

.main-5_h1{
    font-size:60px;
    margin-bottom:20px;
}
.main-5_a{
    color: white;
    text-decoration: none;
}

.main-5_1st{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#2a2a2a;
    padding:20px;
    border-radius:15px;
    margin-top:12px;

    transition:0.3s;
}

.main-5_1st:hover{
    background:#333;
    transform:translateX(5px);
}

.main-5 img{
    width:120px;
    border-radius:10px;
}

.main-5_1st h2{
    flex:1;
    text-align:center;
}

.main-5_1st i{
    font-size:24px;
}


.main-6{
    margin-top:60px;
}

.main-6_h1{
    font-size:50px;
}

.main-6_foot{
    display:flex;
    gap:10px;
    margin:15px 0;
}

input, textarea{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#2a2a2a;
    color:white;
}

textarea{
    margin-top:10px;
}

button{
    width:100%;
    padding:14px;
    background:#fc7742;
    border:none;
    border-radius:12px;
    margin-top:10px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#ff8c5a;
    transform:scale(1.02);
}


@media(max-width:1024px){
    .main-2{
        flex-direction:column;
        align-items:center;
    }

    .main-2_1st-child{
        position:static;
        width:100%;
        max-width:400px;
        margin: auto;
    }

    .main-2_h1{
        font-size:55px;
    }
}


@media(max-width:768px){

    .navbar{
        width:90%;
    }

    .main-2_h1{
        font-size:38px;
    }

    .main-3{
        flex-direction:column;
    }

    .main-4{
        flex-direction:column;
    }

    .main-5_1st{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
    .main-5_1st img{
        width: 80%;
    }
   

    .main-6_foot{
        flex-direction:column;
    }
}