body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    color: #2c3e50;
    padding-top: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-container {
    text-align: center;
    margin: 0;
    padding: 0.7rem 1rem 0rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e6ed;
    margin-bottom: 50px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.logo-container img {
    max-width: 160px;
    display: block;
    margin: auto;
    height: auto;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.logo-container a:hover img {
    opacity: 0.8;
}

.logo-container p {
    font-size: 1.1rem;
    color: #2c3e50;
    opacity: 0.9;
    margin: 0;
}

.calculator-container {
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    padding: 2.5rem 1rem;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00c853, #2196F3);
    border-radius: 0;
}

.calculator-title {
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.calculator-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c853, #2196F3);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.input-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e6ed;
    border-radius: 16px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #00c853;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.1);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    padding: 1.2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e0e6ed;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    border: 1px solid #e0e6ed;
}

.radio-option:hover {
    background: #f0f4f8;
    transform: translateY(-1px);
}

.radio-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #e0e6ed;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
    background: #ffffff;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked {
    border-color: #00c853;
    background: #ffffff;
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00c853;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:hover {
    border-color: #00c853;
}

.radio-option input[type="radio"]:checked + span {
    color: #00c853;
    font-weight: 500;
}

.radio-option span {
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.calculate-btn {
    background: linear-gradient(135deg, #00c853, #00b248);
    color: white;
    border: none;
    padding: 1.3rem 2.5rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.2);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 200, 83, 0.3);
    background: linear-gradient(135deg, #00d65c, #00bf4d);
}

.calculate-btn i {
    margin-right: 10px;
}

.result-container {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    display: none;
    border: 1px solid #e0e6ed;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.result-container.active {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
}

.result-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.result-item:last-child {
    margin-bottom: 0;
    padding: 1.5rem;
    border-top: 2px solid #e0e6ed;
    font-weight: 700;
    font-size: 1.4rem;
    color: #00c853;
    background: #f0fff4;
}

.info-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    color: #2c3e50;
    border: 1px solid #e0e6ed;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
    margin-bottom: 2rem;
    color: #00c853;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.info-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #00c853;
    border-radius: 2px;
}

.info-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.info-section li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
    text-align: left;
}

.info-section li:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.info-section li i {
    color: #00c853;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-section li .content {
    flex: 1;
}

.info-section li ul {
    margin-top: 1rem;
    width: 100%;
    display: grid;
    gap: 0.8rem;
}

.info-section li ul li {
    margin-bottom: 0;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    background: #f8fafc;
    border: 1px solid #e0e6ed;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-section li ul li:hover {
    transform: translateX(5px);
}

.info-section li ul li span {
    display: inline-block;
}

.info-section li ul li span:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.info-section li ul li span:last-child {
    color: #00c853;
    font-weight: 600;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container {
        padding: 0;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    .calculator-container {
        padding: 1.2rem 0.8rem;
        margin: 0;
        border-radius: 0;
        max-width: 100%;
    }

    .calculator-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .radio-option {
        width: 100%;
        padding: 0.8rem;
    }

    .input-group {
        margin-bottom: 1.2rem;
    }

    .input-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .input-group input {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .calculate-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .result-container {
        padding: 1rem 0.5rem;
        margin: 0;
    }

    .result-item {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    .info-section {
        padding: 1rem 0.3rem;
        margin: 0;
    }

    .info-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .info-section ul {
        gap: 0.8rem;
    }

    .info-section li {
        padding: 0.6rem 0.3rem;
        font-size: 0.9rem;
    }

    .info-section li i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .info-section ul ul {
        margin-top: 0.5rem;
        padding-left: 1.5rem;
    }

    .info-section ul ul li {
        padding: 0.3rem 0.3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .container {
        padding: 0;
    }

    .calculator-container {
        padding: 1rem 0.4rem;
        border-radius: 0;
    }

    .calculator-title {
        font-size: 1.3rem;
    }

    .radio-option {
        padding: 0.6rem;
    }

    .input-group input {
        padding: 0.7rem;
    }

    .calculate-btn {
        padding: 0.7rem;
    }

    .result-container {
        padding: 0.8rem 0.3rem;
        margin: 0;
    }

    .info-section {
        padding: 0.8rem 0.2rem;
        margin: 0;
    }

    .info-section li {
        padding: 0.6rem 0.2rem;
    }

    .info-section li ul li {
        padding: 0.3rem 0.2rem;
    }
}

/* Service Boxes Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Boxes Base Styles */
.brand-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* CV Box - Professional Style */
.brand-box:nth-child(1) {
    border: 2px solid #4CAF50;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.brand-box:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.brand-box:nth-child(1):hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-color: #45a049;
}

.brand-box:nth-child(1):hover::before {
    transform: translateX(100%);
}

/* IQ Tests Box - Brainy Style */
.brand-box:nth-child(2) {
    border: 2px solid #2196F3;
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
}

.brand-box:nth-child(2)::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.brand-box:nth-child(2):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.brand-box:nth-child(2):hover::after {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
}

/* Salary Calculator Box - Financial Style */
.brand-box:nth-child(3) {
    border: 2px solid #FF9800;
    background: linear-gradient(145deg, #ffffff, #fff8e1);
}

.brand-box:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 152, 0, 0.05) 10px,
        rgba(255, 152, 0, 0.05) 20px
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-box:nth-child(3):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.brand-box:nth-child(3):hover::before {
    opacity: 1;
}

/* About Us Box - Trust Style */
.brand-box:nth-child(4) {
    border: 2px solid #9C27B0;
    background: linear-gradient(145deg, #ffffff, #f3e5f5);
}

.brand-box:nth-child(4)::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-box:nth-child(4):hover {
    transform: translateY(-5px);
    border-color: transparent;
    color: white;
}

.brand-box:nth-child(4):hover::before {
    opacity: 1;
}

.brand-box:nth-child(4):hover h2,
.brand-box:nth-child(4):hover p {
    color: white;
}

/* Brand Icons Enhanced */
.brand-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-icon i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-box:hover .brand-icon i {
    transform: scale(1.2) rotate(360deg);
}

/* Coming Soon Enhanced */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 150, 243, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 13px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.brand-box.coming-soon:hover .coming-soon-overlay {
    opacity: 1;
    transform: scale(1);
}

.coming-soon-dots span {
    display: inline-block;
    animation: bounce 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5em;
    line-height: 0;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .brand-box {
        margin: 0 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-box,
    .brand-icon,
    .coming-soon-overlay,
    .coming-soon-dots span {
        transition: none;
        animation: none;
    }
} 