*{
    margin: 0;
    padding: 0;
    cursor: pointer;
}

body{
    background-color: rgb(0, 0, 33);
    color:white;
    font-family: "Open Sans", serif;
}
html {
    scroll-behavior: smooth;
}

nav{
   display: flex;
   justify-content: space-around;
   align-items: center;
   height: 55px;
   background-color: rgb(0, 0, 33);
}
ul{
    display: flex;
    justify-content: center;
    margin-left: 200px;
    position: sticky;
}
li{
    list-style: none;
    margin: 0 23px;
    font-size: 0.9rem;
}
li a{
  text-decoration: none;
  color: white;
}
li a:hover{
   color: aqua;
   font-size: 0.86rem;
  }
.left{
    font-size: 1.4rem;
    color:rgb(214, 192, 255) ;
}


.firstSection{
    display: flex;
    justify-content: space-around;
    margin: 38px 0;
}

.name {
    color: aqua;
    display: inline-block;
    font-weight: bold;
    font-size: 50px;
    animation: fadeBounce 2s ease-in-out, colorChange 3s infinite alternate;
}

/* Smooth Fade-in and Bounce */
@keyframes fadeBounce {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Color Transition */
@keyframes colorChange {
    0% {
        color: aqua;
    }
    100% {
        color: cyan;
        text-shadow: 0 0 9px cyan, 0 0 11px lightblue;
    }
}

.typed-cursor {
    font-size: 50px;
    color: aqua;
    
}
.multiple-Text{
    color: aqua;
}

.fromleft{
  width: 40%;
  font-size: 2.8rem;
  margin: 200px 0px 0px 120px;
}

.fromright {
        padding-right: 4.5px;
}


  .fromright img {
    position: relative;
    top: 60px;
    width: 30vw; /* Adjust as needed */
    height: 30vw;
    margin-top: 5px;
    border-radius: 50%; 
    object-fit: cover; /* Prevents distortion */
    padding: 10px; 
    background-color: rgb(0, 0, 33); /* Dark background to highlight the image */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: all 0.5s ease-in-out; /* Smooth hover effect */
    animation: slideInFromRight 1.5s ease-out, float 3s ease-in-out infinite; /* Entrance and floating animation */
}

/* Slide-in animation from the right */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%); /* Starts off-screen to the right */
        opacity: 0;
    }
    100% {
        transform: translateX(0); 
        opacity: 1;
    }
}

/* Floating effect */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px); /* Moves up */
    }
    100% {
        transform: translateY(0); /* Returns to original position */
    }
}

/* Hover effect - No rotation, only scaling & glowing */
.fromright img:hover {
    transform: scale(1.1); /* Slightly enlarges */
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8); /* Strong glow effect */
    border: 4px solid #ff6f61; /* Adds a colorful border */
    animation: glow 2s infinite; /* Keeps the glowing effect */
}

/* Perfect glowing border animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 10px #ff6f61, 0 0 20px #ff6f61;
    }
    50% {
        box-shadow: 0 0 20px #ffcc00, 0 0 30px #ffcc00;
    }
    100% {
        box-shadow: 0 0 10px #ff6f61, 0 0 20px #ff6f61;
    }
}

.newspan {  
    position: absolute;
    margin-top: 460px;
    margin-left: -800px;
    margin-bottom: 8rem;
    width: 50px; 
    height: 50px;

    background-color: #3498db; /* Blue background */
    border: 2px solid rgb(15, 13, 13); /* White circular border */
    border-radius: 50%; /* Makes it a circle */
    
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* Default icon style */
.newspan i {
    font-size: 24px;
    color: rgb(27, 7, 95); /* Icon color */
    transition: all 0.3s ease-in-out;
}

/* 🔥 Hover Effect */
.newspan:hover {
    background-color: rgb(37, 32, 88); /* Background turns white */
    border-color: #3498db; /* Border turns blue */
}

.newspan:hover i {
    color: #3498db; /* Icon turns blue */
}

.gb {  
    position: absolute;
    margin-top: 460px;
    margin-left: -785px;
    margin-bottom: 8rem;
    width: 50px; 
    height: 50px;

    background-color: #3498db; /* Blue background */
    border: 2px solid rgb(15, 13, 13); /* White circular border */
    border-radius: 50%; /* Makes it a circle */
    
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* Default icon style */
.gb i {
    font-size: 24px;
    color: rgb(27, 7, 95); /* Icon color */
    transition: all 0.3s ease-in-out;
}

/* 🔥 Hover Effect */
.gb:hover {
    background-color: rgb(37, 32, 88); /* Background turns white */
    border-color: #3498db; /* Border turns blue */
}

.gb:hover i {
    color: #3498db; /* Icon turns blue */
}


.fb {  
    position: absolute;
    margin-top: 460px;
    margin-left: -769px;
    margin-bottom: 8rem;
    width: 50px; 
    height: 50px;

    background-color: #3498db; /* Blue background */
    border: 2px solid rgb(15, 13, 13); /* White circular border */
    border-radius: 50%; /* Makes it a circle */
    
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}


/* Default icon style */
.fb i {
    font-size: 24px;
    color: rgb(27, 7, 95); /* Icon color */
    transition: all 0.3s ease-in-out;
}

/* 🔥 Hover Effect */
.fb:hover {
    background-color: rgb(37, 32, 88); /* Background turns white */
    border-color: #3498db; /* Border turns blue */
}

.fb:hover i {
    color: #3498db; /* Icon turns blue */
}


.insta {  
    position: absolute;
    margin-top: 464px;
    margin-left: -752px;
    margin-bottom: 8rem;
    width: 50px; 
    height: 50px;

    background-color: #3498db; /* Blue background */
    border: 2px solid rgb(15, 13, 13); /* Dark border */
    border-radius: 50%; /* Makes it a circle */
    
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* Default icon style */
.insta i {
    font-size: 24px;
    color: rgb(27, 7, 95); /* Icon color */
    transition: all 0.3s ease-in-out;
}

/* 🔥 Hover Effect */
.insta:hover {
    background-color: rgb(37, 32, 88); /* Background turns darker */
    border-color: #3498db; /* Border turns blue */
}

.insta:hover i {
    color: #3498db; /* Icon turns blue */
}



.twit {  
    position: absolute;
    margin-top: 464px;
    margin-left: -730px;
    margin-bottom: 8rem;
    width: 50px; 
    height: 50px;

    background-color: #3498db; /* Blue background */
    border: 2px solid rgb(15, 13, 13); /* White circular border */
    border-radius: 50%; /* Makes it a circle */
    
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* Default icon style */
.twit i {
    font-size: 24px;
    color: rgb(27, 7, 95); /* Icon color */
    transition: all 0.3s ease-in-out;
}


.twit:hover {
    background-color:  rgb(37, 32, 88); /* Background turns white */
    border-color: #3498db; /* Border turns blue */
}

.twit:hover i {
    color: #3498db; /* Icon turns blue */
}


.butt{
    position: absolute;
    margin-top: 580px;
    margin-left: -1050px;
    margin-bottom: 8rem;
    padding: 12px 24px; /* Adjusted padding for better shape */
    font-size: 16px;
    font-weight: bold;
    color: #81b5ff; /* Text color */
    background-color: transparent;
    border: 2px solid #81b5ff; 
    border-radius: 50px; 
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.butt:hover {
    background-color: rgb(37, 32, 88); /* Background turns darker */
    border-color: #3498db; /* Border turns blue */
    color: #3498db; /* Text turns blue */
    transform: scale(1.1); /* Button enlarges */
    animation: shrink-grow 0.3s ease-in-out; /* Smooth animation */
}

/* Glowing Effect */
.butt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(129, 181, 255, 0.3) 10%, transparent 80%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-in-out;
    border-radius: 50%;
}

.butt:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Big-Small Keyframe Animation */
@keyframes shrink-grow {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); } /* Expands slightly */
    100% { transform: scale(1.1); } /* Returns to 1.1 */
}


main hr{
    border:0;
    background: rgb(67, 67, 212);
    height:1.2px;
    margin: 40px 80px;
}
.another{
    max-width: 80vw;
    margin-left: 670px;
    margin-top: -50px;
}

.another h1{
    font-size: 2.6rem;
    margin-left: 170px;
    margin-top: 380px ;
    text-decoration: underline; /* Underline the text */
    text-underline-offset: 12px; /* Moves underline lower */
    text-decoration-thickness: 3px; 
}


.secondanother p {
    width: 155px;
    margin-left: -470px;
    margin-right: 188px;
    font-size: 1.3rem;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    
    /* Add a smooth transition for hover effects */
    transition: all 0.5s ease-in-out;
}

/* Add a hover effect */
.secondanother p:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Add a shadow */
    border-color: #ff5722; /* Change border color */
    background-color: #f9f9f9; /* Change background color */
}

/* Add a keyframe animation for continuous movement */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.img img {

    margin-top: 130px;
    margin-left: -490px;
    width: 480px;
    height: auto; /* Image height adjusts to maintain aspect ratio */
    object-fit: contain;
    border: 10px solid rgb(76, 127, 209);
    border-radius: 10%;
}
  p{
    display: inline;
    position: absolute;
    margin-top: 180px;
    margin-left: 100px;
    font-size: 17.5px;
    
}

.another a{
    
    text-decoration: none;
}
.rm{
    display: flex;
    margin-top: -79px;
    margin-left: 120px;
    
    padding: 15px 20px;
    background-color: rgb(6, 6, 80);
    border: 3px solid #0c86a1;
    color: white;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.rm:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    background-color: rgb(14, 159, 159); 
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply the animation to the button on page load */
.rm {
    animation: slideIn 0.8s ease-out;
}
/* hr{
    background-color: white;
    border: 0;
    height: 200px;
} */


#Skillsh1{
    
    font-size: 2.45rem;
    text-align: center;
    margin-top: 390px;
    text-decoration: underline; 
    text-underline-offset: 8px; 
    text-decoration-thickness: 3px; 

}

#tecskill{
    display: flex;
    margin-left: 340px;
    margin-top: 150px;
    /* padding-bottom: 50px; */
}

.technical-skill{
    position: relative;
    display: flex;
    margin-left: 85rem;
    margin-bottom: 90rem;
    margin-top: -35px;
    margin-bottom: 90px;
}

.technical-bars{

    margin-left: 330px;
    margin-top: 50px ;
}

.bar{

    font-size: 20px;
    margin: 30px;
}

.progress-line {
    position: relative;
    border-radius: 10px;
    width: 500px;
    height: 5px;
    background-color: black;
    overflow: hidden; 
}
.progress-line.html span {
    position: absolute;
    height: 100%;
    width: 90%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

/* Keyframes for transform-based animation */
@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.progress-line.html span {
    position: absolute;
    height: 100%;
    width: 95%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 100px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

/* Keyframes for transform-based animation */
@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.progress-line.css span {
    position: absolute;
    height: 100%;
    width: 90%; 
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

/* Keyframes for transform-based animation */
@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.progress-line.javascript span {
    position: absolute;
    height: 100%;
    width: 85%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

/* Keyframes for transform-based animation */
@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.progress-line.react span {
    position: absolute;
    height: 100%;
    width: 80%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

/* Keyframes for transform-based animation */
@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.progress-line.nodejs span {
    position: absolute;
    height: 100%;
    width: 50%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


.progress-line.java span {
    position: absolute;
    height: 100%;
    width: 75%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}


@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


.progress-line.python span {
    position: absolute;
    height: 100%;
    width: 80%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


.progress-line.database span {
    position: absolute;
    height: 100%;
    width: 70%; /* The final width after animation */
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); /* Start from 0 */
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


.progress-line.c span {
    position: absolute;
    height: 100%;
    width: 75%; 
    background-color: #5cb1d6;
    border-radius: 10px;
    transform: scaleX(0); 
    transform-origin: left;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
    
}

@keyframes animate {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes showtext {
   100%{
     opacity: 1;
   }
}

.skills-container {
   
    height: 80px;
}


.radial-bars {
    width: 600px; /* Adjust width */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1180px;  
    margin-top: -700px;
}

.radial-bars .first, 
.radial-bars .second {
    display: flex;
    justify-content: center;
    gap: 60px; /* Space between circles */
    margin-bottom: 30px; /* Adjust vertical spacing */
}

.circle-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 150px;
    height: 180px;
}

/* Background Circle */
.path1 {
    stroke: rgba(255, 255, 255, 0.2);
    fill: none;
    stroke-width: 15;
}

/* Progress Circle Animation */
.progress-bar {
    stroke: cyan;
    fill: none;
    stroke-width: 15;
    stroke-linecap: round;
    stroke-dasharray: 754;  /* Circumference = 2 * π * r */
    stroke-dashoffset: 754; /* Start from 0 progress */
    animation: progress-animation 2s ease-out forwards;
}

/* Keyframe Animation for Progress */
@keyframes progress-animation {
    from {
        stroke-dashoffset: 754;
    }
    to {
        stroke-dashoffset: var(--progress-value);
    }
}

/* Percentage Positioning */
.percentages {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: white;
   
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Text Below */
.text {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 10px;
}



#heading h1{

    margin-top: 580px;
    margin-left: 850px;
    font-size: 35px;
    text-decoration: underline; 
    text-underline-offset: 12px; 
    text-decoration-thickness: 3px; 
}


.project-box {
    background: var(--snd-bg-color);
    margin-top: 190px;
    margin-left: 180px;
    display: flex;
   
}
.project-box2{
    display: flex;
    margin-left: 180px;
    margin-top: 150px;
}


.Box-layer1{
    height: 500px;
    width: 500px;
    background: var(--snd-bg-color);
    border: 5px solid rgb(37, 119, 166);
    background-color:rgb(11, 11, 49);
    border-radius: 500px; 
    transition-property: all;
    transition-duration: 2s;
}

.Box-layer1 img{

    height: 120px;
    width: 120px;
    margin-left: 180px ;
}

.Box-layer1 h4{
    margin-top: 20px;
    margin-left: 160px;
    font-size: 30px;
}

.Box-layer1 hr{
    height: 3px;
    margin-top: 30px;
    background-color: rgb(15, 78, 115);
}

.Box-layer1 p{

    margin-left: 70px;
    margin-top: -5px;
}
.Box-layer1:hover{

    background-color: #3b73c7;
    transform: translateY(-55px);
}
.Box-layer1 button{

    margin-top: 130px;
    margin-left: 190px;
    height: 50px;
    width: 120px;
    border: 4px solid #075f73;
    background-color: rgb(62, 192, 190);
    border-radius: 50px; 
}
.Box-layer2{
    
    height: 500px;
    width: 500px;
    margin-left: 50px;
    border: 5px solid rgb(37, 119, 166);
    background-color:rgb(11, 11, 49);
    border-radius: 500px; 
    transition-property: all;
    transition-duration: 2s;
}
.Box-layer2 img{
    height: 100px;
    width: 100px;
    margin-left: 190px ;
    margin-top: 20px;
}
.Box-layer2 h4{
   margin-left: 150px;
   margin-top: 30px;
   font-size: 25px;
}
.Box-layer2 hr{
    height: 3px;
    margin-top: 30px;
    background-color: rgb(15, 78, 115);
}
.Box-layer2 p{

    margin-top: -10px;
    margin-left: 80px;
}
.boxl{
    transition-property: all;
    transition-duration: 2s;
}
.boxl:hover{

    background-color: #3b73c7;
    transform: translateY(-55px);
}
.Box-layer2 button{
    margin-top: 90px;
    margin-left: 190px;
    height: 50px;
    width: 120px;
    border: 4px solid #055263;
    background-color: rgb(62, 192, 190);
    border-radius: 50px; 
    font-size: 15px;
}
 #icons{
    display: block;
    margin-top: 40px;
    margin-left: 225px;
    height: 40px;
    width: 40px;
   
}
#icons i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -9px;
    border: 4px solid rgb(18, 181, 178);
    background-color: rgb(18, 181, 178);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 43px; 
}

#icons i:hover{
    background-color: #2ce092;
}
#icons i { 
    background-color: #13c5b0;
    color: rgb(9, 71, 102); /* Ensures icon remains visible */
}
.Box-layer2 a{
    text-decoration: none;
}
.Box-layer3{
    
    height: 500px;
    width: 500px;
    margin-left: 50px;
    border: 5px solid rgb(37, 119, 166);
    background-color:rgb(11, 11, 49);
    border-radius: 50%;
}
.Box-layer3 img{
      
    height: 120px;
    width: 120px;
    margin-top: 20px;
    margin-left: 180px ;
    border-radius: 60%;
}
.Box-layer3 hr{

    height: 3px;
    margin-top: 30px;
    background-color: rgb(15, 78, 115);
}
.Box-layer3 h4{

    margin-left: 135px;
    margin-top: 20px;
    font-size: 27px;
}

.Box-layer3 p{

    margin-top: -10px;
    margin-left: 65px;
}

.Box-layer3 button{
    margin-top: 90px;
    margin-left: 190px;
    height: 50px;
    width: 120px;
    border: 4px solid #055263;
    background-color: rgb(62, 192, 190);
    border-radius: 50px; 
    font-size: 15px;
}
#sec-icons{
    display: block;
    margin-top: 40px;
    margin-left: 225px;
    height: 20px;
    width: 20px;
   
}
#sec-icons i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    border: 3px solid rgb(18, 181, 178);
    background-color: rgb(18, 181, 178);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 40px;
}

a {
    text-decoration: none;
}

.Box-layer4{
    
    height: 500px;
    width: 500px;
    margin-left: 10px;
    border: 5px solid rgb(37, 119, 166);
    background-color:rgb(11, 11, 49);
    border-radius: 50%;
}

.Box-layer4 img{
      
    height: 120px;
    width: 120px;
    margin-top: 20px;
    margin-left: 180px ;
    border-radius: 60%;
}
.Box-layer4 hr{

    height: 3px;
    margin-top: 30px;
    background-color: rgb(15, 78, 115);
}
.Box-layer4 h4{

    margin-left: 170px;
    margin-top: 30px;
    font-size: 27px;
}
.Box-layer4 p{

    margin-top: -10px;
    margin-left: 80px;
}
.Box-layer4 button{
    margin-top: 90px;
    margin-left: 190px;
    height: 50px;
    width: 120px;
    border: 4px solid #055263;
    background-color: rgb(62, 192, 190);
    border-radius: 50px; 
    font-size: 15px;
}
#sec-icons{
    display: block;
    margin-top: 40px;
    margin-left: 225px;
    height: 20px;
    width: 20px;
   
}
#sec-icons i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    border: 3px solid rgb(18, 181, 178);
    background-color: rgb(18, 181, 178);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 40px;
}

a {
    text-decoration: none;
}


.Box-layer5{
    
    height: 500px;
    width: 520px;
    margin-left:50px;
    border: 5px solid rgb(37, 119, 166);
    background-color:rgb(11, 11, 49);
    border-radius: 50%;
}

.Box-layer5 hr{

    height: 3px;
    margin-top: 60px;
    background-color: rgb(15, 78, 115);
}
.Box-layer5 h4{

    margin-left: 165px;
    margin-top: 70px;
    font-size: 27px;
}

.Box-layer5 p{

    margin-top: 30px;
    margin-left: 80px;
}

.Box-layer5 button{
    margin-top: 150px;
    margin-left: 190px;
    height: 50px;
    width: 120px;
    border: 4px solid #055263;
    background-color: rgb(62, 192, 190);
    border-radius: 50px; 
    font-size: 15px;
}
#sec-icons{
    display: block;
    margin-top: 40px;
    margin-left: 225px;
    height: 20px;
    width: 20px;
   
}
#sec-icons i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    border: 3px solid rgb(18, 181, 178);
    background-color: rgb(18, 181, 178);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 40px;
}

a {
    text-decoration: none;
}
.Box-layer6{
    
    height: 500px;
    width: 505px;
    margin-left: 50px;
    border: 5px solid rgb(37, 119, 166);
    background-color:rgb(11, 11, 49);
    border-radius: 50%;
}
.Box-layer6 hr{

    height: 3px;
    margin-top: 60px;
    background-color: rgb(15, 78, 115);
}
.Box-layer6 h4{

    margin-left: 165px;
    margin-top: 70px;
    font-size: 27px;
}

.Box-layer6 p{

    margin-top: 30px;
    margin-left: 80px;
}

.Box-layer6 button{
    margin-top: 150px;
    margin-left: 190px;
    height: 50px;
    width: 120px;
    border: 4px solid #055263;
    background-color: rgb(62, 192, 190);
    border-radius: 50px; 
    font-size: 15px;
}
#sec-icons{
    display: block;
    margin-top: 40px;
    margin-left: 225px;
    height: 20px;
    width: 20px;
   
}
#sec-icons i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    border: 3px solid rgb(18, 181, 178);
    background-color: rgb(18, 181, 178);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 40px;
}

a {
    text-decoration: none;
}




.subtitle{
    font-size: 2.45rem;
    text-align: center;
    margin-top: 320px;
    text-decoration: underline; 
    text-underline-offset: 8px; 
    text-decoration-thickness: 3px; 
}

.social-icons{
    display: flex;
    padding: 50px;
    margin-top: 5px;
    margin-left: 320px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    width: 50px; 
    height: 50px;
}

.social-icons a {
    color: rgb(189, 184, 184);
}

#subtitle2{

    margin-top: 300px;
    margin-left: 300px;
}
#pp{
    margin-left: 760px;
    margin-top: 20px;
    color: rgb(58, 164, 235);
    font-size: 20px;
}
#pp1{
    margin-left: 280px;
    font-size: 20px;
}
#subtitle2 p{
    all: unset; 
    display: block; 
    margin-top: 55px;
    font-size: 18px;
}

#subtitle2 i{

    margin-right: 15px;
    color: red;

}

.contact-right {
    position: absolute !important;
    left: 1050px ;
    top: 5340px !important;
}

.contact-right input, 
.contact-right textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #41048a;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    margin-left: -80px;
    font-size: 18px;
    border-radius: 6px;
}

#btn {
    background-color: #ff4c4c; 
    color: white; 
    font-size: 18px; 
    margin-left: -70px;
    margin-top: 10px;
    padding: 12px 24px; /* Add padding for a better look */
    border: none; /* Remove default border */
    border-radius: 6px; /* Rounded corners */
     /* Show hand cursor on hover */
    transition: background 0.3s ease-in-out; /* Smooth hover effect */
    width: 25%; 
}
#btn:active {
    transform: scale(0.98); /* Slight shrink effect on click */
}

.buttn{
    background-color: #ff4c4c; 
    color: white; 
    font-size: 16px; 
    margin-left: 300px;
    margin-bottom: 90px;
    padding: 12px 2px; /* Add padding for a better look */
    border: none; /* Remove default border */
    border-radius: 6px; /* Rounded corners */
    cursor: value; /* Show hand cursor on hover */
    transition: background 0.3s ease-in-out; /* Smooth hover effect */
    width: 10%; 
}

.buttn:hover {
    background-color: #d43f3f; /* Darker red on hover */
}

.copyr{
    background-color: #18043d;
    width: 100%;  
    min-height: 0px;
  padding-bottom: 50px;
}
.copyr p{
    margin-left: 700px;
    margin-top: 20px;
}
.copyr #hh{
    color: red;
}

.copyr #arrow{

    margin-left: 1800px;
    margin-top: 30px;
    background-color: rgb(92, 246, 243);
    font-size: 20px;
    width: 30px;  
    height: 30px;
    text-align: center;
    border-radius: 10%;
    padding: 10px;
    padding-top: 15px;
} 

#arrow  {
    margin-top: 100px;
    color: rgb(36, 18, 128);
}

.copyr #arrow {
    transition: all 0.3s ease-in-out;
}

.copyr #arrow:hover {
    background-color: #17a7c7;
    transform:  scale(1.2);
    box-shadow: 0px 5px 15px rgba(41, 101, 185, 0.2);
}

.copyr #arrow:active {
    transform: rotate(0deg) scale(1);
    background-color: rgb(200, 50, 50);
}

#msg{

    color: #61b752;
    display: inline-block;
    margin-top: 28px;
    margin-left: -70px;
}
