@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nunito:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    margin:0;
    padding:0;
}
:root{
    --color-primary:#6c63ff;
    --color-success:#00bf8e;
    --color-warning:#f7c94b;
    --color-danger-variant:rgba(247,88,66,0.4);
    --color-white:#fff;
    --color-light:rgba(255,255,255,0.7);
    --color-black:#000;
    --color-bg:#1f2641;
    --color-bg1:#2e3267;
    --color-bg2:#424890;
    
}
.first-bar{
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    text-align: center;
    background:var(--color-bg);
    overflow: hidden;
    position:absolute;
    margin-bottom: 0px;
}
.topic
{
    padding-left: 20px;
    font-size: 30px;
    text-decoration: solid;
    color:var(--color-white);
    z-index: 1000;
}
.link-topic{
    display:flex;
    justify-content: space-around;
    gap:30px;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    margin-right: 10px;
    font-size: 20px;
    z-index: 1000;
    

}
.link-topic a {
    color: var(--color-white);
    position: relative;
    padding: 5px 10px;
    text-decoration: none;
    transition: color 0.3s ease-out;
}

.link-topic a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease-out;
}

.link-topic a:hover {
    color: var(--color-primary);
}

.link-topic a:hover::after {
    width: 100%;
}
.achievements{
    background: var(--color-bg);
    overflow: hidden;
    background-size: auto;
}
.ach{
    position:relative;
    width:450px;
    height:600px;
    color:var(--color-white);
    height:auto;
    top:100px;
    left:20px;
}
.content{
    margin:0;
    padding:0;
   display:flex;
   flex-direction: column;
   justify-content: flex-start;
   gap:40px;
   color: var(--color-white);
   padding:40px;
   position:relative;
   top:-360px;
   right:-500px;
}
.achieve-topic{
    font-size: 38px;
    
}
.cont{
    border:1px solid transparent;
    width:600px;
    text-align: left;

}
.boxes{
    display:flex;
    justify-content: flex-start;
    gap:30px;

}
.box1{
    width:200px;
    height:200px;
    border:1px solid transparent;
    border-radius: 14px;
    background-color: var(--color-bg1);
    align-items: center;
    text-align: center;
    padding:25px;
    transition: background-color  0.3 ease;
}
.box2{
    width:200px;
    height:200px;
    border:1px solid transparent;
    border-radius: 14px;
    background-color: var(--color-bg1);
    align-items: center;
    text-align: center;
    padding:25px;
    transition: background-color  0.3 ease;
}
.box3{
    width:200px;
    height:200px;
    border:1px solid transparent;
    border-radius: 14px;
    background-color: var(--color-bg1);
    align-items: center;
    text-align: center;
    padding:25px;
    transition: background-color  0.3 ease;
}
.box1:hover{
    background-color: var(--color-bg2);
}
.box2:hover{
    background-color: var(--color-bg2);
}
.box3:hover{
    background-color: var(--color-bg2);
}
.boxes p{
    font-size: 20px;
}
.b1{
    border:1px solid transparent;
    border-radius: 14px;
    width:60px;
    align-items: center;
    height:60px;
    background-color: orangered;
    padding:15px;
    margin-left:40px;
    margin-bottom:4px ;
}
.b2{
    border:1px solid transparent;
    border-radius: 14px;
    width:60px;
    align-items: center;
    height:60px;
    background-color: var(--color-success);
    padding:10px;
    margin-left:40px;
    margin-bottom:4px ;

}
.b3{
    border:1px solid transparent;
    border-radius: 14px;
    width:60px;
    align-items: center;
    height:60px;
    background-color: var(--color-primary);
    padding:10px;
    margin-left:40px;
    margin-bottom:4px ;

}
.meet{
    background: var(--color-bg1);

}
.meet h2{
    text-align: center;
    align-items: center;
    color:var(--color-white);
    font-size:40px;
}
.members{
    display:flex;
    justify-content: flex-start;
    gap:30px;
    flex-wrap: wrap;
    object-fit: cover;

}
.tm{
    border:1px solid transparent;
    object-fit: cover;
    border-radius: 14px;

}
.tm1{
    width:200px;
    height:auto;
    object-fit: cover;
    border-radius: 14px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}
.tm1:hover {
    filter: grayscale(0%);
    transform: scale(1.05);

    
  }

.a1{
    width:250px;
    border: solid 1px transparent;
    background-color: var(--color-bg2);
    border-radius:14px;
    align-items: center;
    text-align: center;
    padding:20px;
    margin-left: 30px;
   
}
.a1 p{
    color:var(--color-white);

}
.courses{
    background: var(--color-bg);
    overflow: hidden;
}
.all-corurses{
    display:flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:30px;
}
.c{
    border:2px solid var(--color-bg1);
    width:300px;
    height:420px;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg1);
    margin-top:30px;
    margin-left: 65px;
    border-radius: 20px;
    transition: background-color 0.3 ease;
}
.c:hover{
    background-color: var(--color-bg);
}

.imgg{
    width:100%;
    height:auto;
    object-fit: cover;
    border-radius: 20px;
}
.c h3{
    color:var(--color-white);
    font-size: 17px;
    text-align: center;
}
.c p{
    color:var(--color-white);
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.butt{
    align-items: center;
    text-decoration: none;
    width:150px;
    padding-left:10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left:70px;
    background-color: orangered;
    border-radius: 40px;
    margin-top: 20px;
    color:var(--color-white);
    font-size: 17px;
    transition: background-color 0.3 ease;
    cursor: pointer;
}
.butt:hover{
    background-color: rgb(181, 59, 15);

}
.contact-details{
    background: var(--color-bg);
    overflow: hidden;
    height:100vh;
}
.content-contact{
    border:2px solid var(--color-bg);
    width:90%;
    height:400px;
    object-fit: cover;
    display:flex;
    flex-direction: column;
    gap:30px;
    padding-left:460px;
    color:var(--color-white);
    position:absolute;
    top:170px;
    left:60px;
    background-color: var(--color-bg1);
    padding-top:50px ;
}
.name input{
    color:var(--color-white);
    text-decoration: none;
    outline: none;
    border:1px solid var(--color-bg);
    background-color:var(--color-bg);
    width:250px;
    height:40px;
    padding:15px;
    text-align: left;

}
.name{
    display:flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:40px;
}
.email{
    color:var(--color-white);
    text-decoration: none;
    outline: none;
    border:1px solid var(--color-bg);
    background-color:var(--color-bg);
    width:540px;
    height:40px;
    padding:15px;
    text-align: left;

    
}
.feedback{
    color:var(--color-white);
    text-decoration: none;
    outline: none;
    border:1px solid var(--color-bg);
    background-color:var(--color-bg);
    width:540px;
    min-height:90px;
    padding:15px;
    text-align: left;
    resize: none;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word; /* Break long words to prevent overflow */
    white-space: pre-wrap;
    

}
.image3{
    width:130px;
    height:auto;
    object-fit:cover;
    margin-left: 50px;
}
.con{
    border:1px solid transparent;
    border-radius: 20px;
    width:350px;
    height:auto;
    display: flex;
    flex-direction: column;
    gap:20px;
    background-color: var(--color-primary);
    position: relative;
    padding:25px;
    top:120px;
    left:140px;
    z-index: 1;
}
.con h3{
    color:var(--color-white);
    font-size: 13px;
}
.he{
    color:var(--color-white);
    font-size: 25px;
}
.con p{
    color:var(--color-white);
}
.ic{
    display: flex;
    justify-content: flex-start;
    gap:20px;
}
.butt1{
    align-items: center;
    text-decoration: none;
    width:170px;
    padding-left:10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: orangered;
    color:var(--color-white);
    font-size: 17px;
    transition: background-color 0.3 ease;
    cursor: pointer;
}
.butt1:hover{
    background-color: rgb(181, 59, 15);

}
.flex-icons{
    display:flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.bis{
    border: 1px solid transparent;
    width:25px;
    border-radius: 200px;
    object-fit: cover;
    background-color: var(--color-white);
    cursor: pointer;
    align-items: center;
    text-align: center;
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 3px;
}
