

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f87 100%);
    min-height: 100vh;
    display: flex;
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}
.hidden {
    display: none !important; 
}

.left-section {
    flex: 1;
    background: linear-gradient(141.69deg, #002142 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    color: white;
    position: relative;
    width: 100%;    
}

.company_logo{
    width: 90%;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1e3a5f;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.testimonial-quote {
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 2rem;
	font-weight: 400;
	vertical-align: middle;
    margin-top: 5rem
}

.testimonial-author {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

.testimonial-title {
    opacity: 0.8;
    font-size: 0.8rem;
}



.hr-basic {
    border: none;
    height: 1px;
    background: #808080;
    margin: 25px 0px;
    
}
 
.hide {
    display: none !important;
}
 
.font-medium{
    font-weight:500
}

.right-section {   
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}
 


@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        min-height: 40vh;
        padding: 2rem;
    }

    .right-section {
        width: 100%;
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .awards-section {
        position: static;
        margin-top: 2rem;
    }

    .company-logos {
        gap: 1rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 1.5rem;
        min-height: 30vh;
    }

    .right-section {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .company-logos {
        gap: 0.5rem;
    }

    .company-logo {
        height: 25px;
    }

    .awards-section {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .left-section,
    .right-section {
        padding: 1rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .social-login {
        gap: 0.75rem;
    }

    .company-logos {
        display: none;
    }
}
