body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
            background: #f4f4f4;
            overflow-x: hidden;
            overflow-y: scroll;
            font-size: 14px;
        }
        header {
            background: #4CAF50;
            color: white;
            padding: 0.8em;
            font-size: 1.2em;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        .container {
            display: flex;
            flex-direction: column;
            width: 100%;
            transition: transform 0.5s ease;
        }
        .page {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding-top: 80px;
        }
        .page:nth-child(1) { background:linear-gradient(135deg, #93caa804, #8dce8aa8);  opacity: 50px;}
        .page:nth-child(2) {background: linear-gradient(135deg, #b2e4c5, #39a041a8);}
        .page:nth-child(3) { background: linear-gradient(135deg, #b4e6b4, #f8f5d7e5); }
        .info-boxes {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
           
        }
        .info-box {
            width: 280px;
            padding: 15px;
            background: rgba(161, 212, 162, 0.774);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            border-color: #030303;
            border-style: double;
           
            font-family: Arial;
            position: relative;
            font-size: 20px;
            color: white;
            transition: transform 0.7s ease-in-out;

        }
            
           
           
            
        .image-box {
            display: flex; 
            justify-content: center; 
            align-items: center;
            height: 150px; 
            margin-left: 250px;
            margin-right: 250px;
         }
        

        .info-box:hover {
            transform: scale(1.05);
            background-color: #c2eccda2;
            box-shadow: 0 0 15px rgba(94, 33, 33, 0.1);
            color: white;
        }
        .info-box .symbol {
            font-size: 50px;
            position: absolute;
            top: -70px;
            left: 50%;
            font-weight: bold;
            transform: translateX(-50%);
            color: #f39c12;
        }
        .symbol p{
            font-weight: bold;
        }
        .info-box p{
            font-size: 18px;
        }
        
        
        .about-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .profile-box {
            width: 400px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease-in-out;
            font-size: 13px;
            right: 100px;
        }
        .profile-box:hover {
            transform: scale(1.05);
        }
        .profile-box img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            margin-bottom: 10px;
            left:100px;
        }
        .container1 {
            position: relative;
            width: 100%;
            height:100;
        }
        .milestone-box {
            position: absolute;
            bottom:100px ;
            left: 50px;
            background-color: #f9feff;
            color: #0a0a0a;
            padding: 10px 15px;
            font-size: 30px;
            border-radius: 10px;
            font-weight: bold;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }
        .milestone-box:hover{
            background-color: rgb(241, 239, 201);
            transform: scale(1.05);

        }
        .circle {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ffffff, #164b1f);
            border-radius: 50%;
            position: absolute;
            top:30px;
            animation: pulse 2s infinite ease-in-out, float 4s infinite alternate ease-in-out;
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
            transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .cicle:hover h1{
            color:#164b1f;
        }
        .circle:hover {
            transform: scale(1.3);
            background: radial-gradient(circle, #caeef7, #c1da92);
            box-shadow: 0px 0px 25px rgba(46, 104, 12, 0.76);
        }
        .circle2:hover {
            transform: scale(1.3);
            background: radial-gradient(circle, #caeef7, #c6f1a2);
            box-shadow: 0px 0px 25px rgba(6, 83, 22, 0.733);
        }
        .circle3:hover {
            transform: scale(1.3);
            background: radial-gradient(circle, #caeef7, #b8fc98);
            box-shadow: 0px 0px 25px rgba(17, 112, 49, 0.705);
        }
       /*.base {
            position: absolute;
            bottom:100px ;
            left: 10px;
            height: 100px;
            width: 100px;
            background-color: #ffffff;
            color: #2f6eb5;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }*/
        .line {
            position: absolute;
            width: 5px;
            height: 100px;
            background: #f8f4f4;
            left: 50%;
            transform: translateX(-50%);
            animation: fadeIn 2s infinite alternate;
        }
        .tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .circle:hover .tooltip {
            opacity: 1;
        }
        .circle2:hover .tooltip {
            opacity: 1;
        }
        .circle3:hover .tooltip {
            opacity: 1;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-15px); }
        }
        .circle:nth-child(2) { left: 10%; bottom: 10%; animation-delay: 0.2s; }
        .base { left: 8%; bottom: 5%; }
        .circle:nth-child(3) { left: 30%; bottom: 50%; animation-delay: 0.4s; }
        .circle2:nth-child(4) { left: 50%; bottom: 20%; animation-delay: 0.6s; }
        .circle3:nth-child(5) { left: 70%; bottom: 35%; animation-delay: 0.8s; }
             .circle2{
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ffffff, #164e0a);
            border-radius: 50%;
            position: absolute;
            bottom:130px;
            animation: pulse 2s infinite ease-in-out, float 4s infinite alternate ease-in-out;
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
            transition: transform 0.3s ease-in-out; background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;


}
.circle3{
    width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ffffff, #084421);
            border-radius: 50%;
            position: absolute;
            bottom:130px;
            animation: pulse 2s infinite ease-in-out, float 4s infinite alternate ease-in-out;
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
            transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;


}
.circle3 h3{
    font-family:"'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif";
    font-size:20px;
    color:"black";
}
.pagebody {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            height: 100vh;
            
           
            padding: 20px;
            margin-bottom: 15px;
            
            font-size: 13px;
        }
        @keyframes backgroundAnimation {
            0% { background: linear-gradient(135deg, #1e3c72, #2a5298); }
            100% { background: linear-gradient(135deg, #2a5298, #1e3c72); }
        }
        .container {
            width: 100%;
            height:100%;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-in-out;
            text-align: center;
        }
        .top-boxes, .bottom-boxes {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }
        .box {
            width: 45%;
            text-align: center;
            padding: 20px;
            background: rgba(46, 125, 50, 0.2);
            border-radius: 10px;
           
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .box p{
            
            color:#000000;
           font-weight: bold;
            font-size: 13px;
        }
        .box h1{
            color:#2f6eb5;
            font-size: 18px;
        }
        .box h2{
            font-size:18px;
        }
        .box:hover {
            transform: scale(1.05);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
            background: rgba(46, 125, 50, 0.5);
        }
        .image-container {
            display: flex;
            justify-content: center;
            gap: 50px;
            text-align: left;
            margin-bottom: 20px;
        }
        .image-box {
            text-align: center;
            animation: float 3s infinite alternate;
        }
        .image-box h1,p{
            text-align: center;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-10px); }
        }
        .image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
           
            border: 3px solid #2f6eb5;
            margin-bottom: 10px;
            transition: transform 0.3s ease-in-out;
        }
        .image:hover {
            transform: rotate(deg);
        }
        h2 {
            color: #2f6eb5;
        }
        p {
            font-size: 14px;
            color: #333;
        }
        @keyframes fadeIn {
            from { opacity:0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
    }
    .info-box {
        width: 90%;
        font-size: 20px;
    }
}

   