 .calculator-container  {
/*    max-width: 450px;*/
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-top: 6px solid #9a2f32;
    animation: fadeIn 1sease-in-out;
    transition: 0.3s;
}
        
        /* Heading */
       h2 {
    font-size: 26px;
    text-transform: uppercase;
    color: #ee3134;
    margin-bottom: 10px;
    animation: bounceIn 1.2sease-in-out;
}

        /* Image */
        .image-container {
            text-align: center;
            margin-bottom: 15px;
            animation: float 3s infinite ease-in-out;
        }
        .image-container img {
           
            opacity: 0.9;
            transition: 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.1) rotate(5deg);
            opacity: 1;
        }

        /* Input Fields */
        .input-group {
            margin-bottom: 15px;
            text-align: left;
            animation: slideIn 1s ease-out;
        }
        .input-group label {
            font-size: 15px;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            color: #333;
        }
        .input-group input {
            width: 100%; 
            padding: 12px; 
            border-radius: 8px; 
            border: 1px solid #ccc;
            font-size: 16px;
            background: #f9f9f9;
            transition: 0.3s;
        }
        .input-group input:focus {
            border-color: #007bff;
            background: #fff;
            box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.3);
            animation: bounce 0.4s ease-in-out;
        }

        /* Results Box */
       .result {
    margin-top: 20px;
    padding: 18px;
    background: #993534;
    border-radius: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 123, 255, 0.2);
    transition: 0.3s;
    animation: slideUp 1sease-in-out;
}
        .result:hover {
            transform: scale(1.05);
        }
        .result span {
            color: #FFD700;
        }

        /* Button Styling */
        .buttons {
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
            animation: slideIn 1s ease-out;
        }
        .btn {
            flex: 1;
            padding: 12px;
            margin: 5px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
            background: #28a745;
            color: white;
        }
        .btn-reset {
            background: #dc3545;
            color: white;
        }
        .btn:hover {
            transform: scale(1.1);
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        @keyframes bounceIn {
            0% { transform: scale(0); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        @keyframes slideIn {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

.container.calculator-container {
    margin-bottom: 41px;
    height: 100%;
}
