/* 
=====================
==== Start Hero =====
=====================
*/
.hero {
    background-image: url("../image/hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;;
}

.hero .container .wrapper {
    max-width: 800px;
}

.hero .container h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 125%;
}

.hero .container p {
    font-size: 24px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 40px;
}

.hero .container a {
    background-color: var(--Primary);
    color: var(--White);
    padding: 16px 24px;
    display: block;
    width: fit-content;
    font-size: 18px;
    font-weight: 500;
}

/* Media Queries */
/* 768px */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    .hero .container h1 {
        font-size: 25px;
    }

    .hero .container p {
        font-size: 19px;
        max-width: 302px;
    }

    .hero .container a {
        padding: 15px 22px;
        font-size: 17px;
    }      
}

/* 991px */
@media (max-width: 991px) {
    .hero .container p {
        max-width: 400px;
    }
}
/* 
===================
==== End Hero =====
===================
*/
/* 
======================
==== Start About =====
======================
*/
.about-company-section {
    margin: 60px 0;
    position: relative;
    min-height: 500px;
}

.about-company-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-company-grid .about-company-content {
    max-width: 600px;
}

.about-company-grid .about-company-content .about-company-stats {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-company-grid .about-company-content .about-company-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.about-company-grid .about-company-content .about-company-stats .stat-item .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--Primary);
    font-family: "Montserrat", sans-serif;
}

.about-company-grid .about-company-content .about-company-stats .stat-item .stat-label {
    font-size: 18px;
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .about-company-grid .about-company-image img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .about-company-grid .about-company-image:first-child img {
        inset-inline-start: 0;
        width: 27%;
    }

    .about-company-grid .about-company-image:last-child img {
        inset-inline-end: 0;
    }
}

/* Large Devices (between 1200px and 1400px) */
@media (min-width: 1200px) and (max-width: 1400px) {
    .about-company-grid .about-company-image:first-child img {
        width: 23%;
        top: 26%;
    }
}

/* Medium Devices (up to 1200px) */
@media (max-width: 1200px) {
    .about-company-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-company-grid .about-company-content {
        order: -1;
    }
    
    .about-company-grid .about-company-image:last-child img {
        position: absolute;
        left: 0;
        top: 0;
    }
}

/* Tablet Devices (up to 991px) */
@media (max-width: 991px) {
    .section-description {
        font-size: 17px;
    }

    .about-company-grid .about-company-content {
        max-width: 460px;
    }

    .about-company-grid .about-company-content .about-company-stats .stat-item .stat-number {
        font-size: 27px;
    }

    .about-company-grid .about-company-content .about-company-stats .stat-item .stat-label {
        font-size: 16px;
    }
}

/* Small Devices (up to 830px) */
@media (max-width: 830px) {
    .about-company-grid .about-company-content .about-company-stats {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .about-company-grid .about-company-content .about-company-stats .stat-item {
        align-items: flex-start;
    }

    .about-company-grid .about-company-content {
        max-width: 100%;
    }
}

/* Small Devices (between 576px and 830px) */
@media (min-width: 576px) and (max-width: 830px) {
    .about-company-grid .about-company-image:last-child img {
        top: 20%;
        width: 35%;
    }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .about-company-grid .about-company-image:last-child img {
        top: 27%;
        width: 50%;
    }
}

/* 
======================
==== End About =======
======================
*/

/* 
============================
==== Start Ceo Message =====
============================
*/

.ceo-message-section {
    background-color: rgba(246, 250, 255, 1);
    padding: 40px 0 165px;
    margin: 60px 0;
}

.ceo-message-section p {
    font-size: 17px;
}

.board-message-section {
    background-image: url("../image/ceo/board.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1000px;
    margin: 0 auto;
    padding: 65px 260px 65px 105px;
    position: relative;
    margin-top: 40px;
}

.board-message-section img {
    position: absolute;
    right: -70px;
    top: 70px;
}

.board-message-section .section-title,
.board-message-section .section-description {
    color: var(--White);
}
/* Media Queries */
/* 768px */
@media (max-width: 768px) {
    .board-message-section {
        padding: 40px 16px 260px 16px;
    }

    .board-message-section img {
        right: -5px;
        top: unset;
        bottom: -120px;
    }
}
/* 
============================
==== End Ceo Message =======
============================
*/

/* 
==================================
==== Start Company Strategy ======
==================================
*/
.company-strategy-section {
    padding: 60px 0;
    position: relative;
}

.company-strategy-section .strategy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company-strategy-section .strategy-image {
   position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.company-strategy-section .strategy-image::before,
.company-strategy-section .strategy-image::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 100px;
    z-index: -1;
    background-color: rgba(247, 247, 247, 1);
}

.company-strategy-section .strategy-image::after {
    width: 450px;
    height: 400px;
    top: -64px;
    left: 0;
}

.company-strategy-section .strategy-image::before {
    top: 70px;
    right: -55px;
    height: 290px;
}

.company-strategy-section .strategy-text {
    max-width: 550px;
}

.company-strategy-section .strategy-text .strategy-principles-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.company-strategy-section .strategy-text .strategy-principles-grid .principle-card {
    background: rgba(247, 247, 247, 1);
    padding: 16px;
}

.company-strategy-section .strategy-text .strategy-principles-grid .principle-card p {
    margin: 0;
    margin-top: 12px;
}


/* Media Queries */
/* 991 to 1200 */
@media (min-width: 991px) and (max-width: 1200px) {
    .company-strategy-section .strategy-image img {
        width: 70%;
        margin-left: 0;
        margin-right: auto;
    }

    .company-strategy-section .strategy-image::before {
        width: 0;
    }

    .company-strategy-section .strategy-image::after {
        height: 300px;
    }

    .company-strategy-section .strategy-text {
        max-width: 450px;
    }
}

/* 991 */
@media (max-width: 991px) {
    .company-strategy-section .strategy-content {
        flex-direction: column;
        gap: 75px;
    }
    .company-strategy-section .strategy-image {
        position: relative;
        transform: unset;
    }

    .company-strategy-section .strategy-text {
        max-width: 100%;
    }
}

/* 768 */
@media (max-width: 768px) {
    .company-strategy-section .strategy-image::after {
        width: 360px;
        top: -40px;
        left: -9px;
    }
    .company-strategy-section .strategy-image img {
        width: 90%;
        margin: 0 auto;
    }
}
/* 
================================
==== End Company Strategy ======
================================
*/

/* 
================================
==== Start Features Strategy ======
================================
*/
.features-section {
    background-image: url("../image/features/section-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 50px 0;
    padding: 65px 0 125px;
}

.features-section .features-header {
    margin-bottom: 95px;
}
.features-section .features-header .section-title {
    max-width: 900px;
}

.features-section .features-swiper .feature-card {
    max-width: 380px;
    height: 250px;
    background: var(--White);
    padding: 40px;
}

.features-section .features-swiper .feature-card .feature-description {
    font-size: 18px;
}

.features-section .features-swiper .feature-card .feature-title {
    margin: 15px 0;
}

.features-section .features-navigation {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 35px;
}

.features-section .features-navigation i {
    background: var(--White);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--Text);
}

/* 
================================
==== End Features Strategy ======
================================
*/

/* 
================================
==== Start Services Section ======
================================
*/
.our-services-section .services-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: flex-end;
}

.our-services-section .services-header .services-navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}

.our-services-section .services-header .services-navigation i {
    background: var(--White);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: rgba(51, 65, 85, 1);
    border: 2px solid rgba(51, 65, 85, 1);
}

.our-services-section .service-card {
    width: 380px;
    height: 496px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.our-services-section .service-card img {
    position: absolute;
    top: 85px;
    left: 0;
    z-index: 1;
}
.our-services-section .service-card .service-number,
.our-services-section .service-card .service-title,
.our-services-section .service-card .service-description {
    color: var(--White);
}

.our-services-section .service-card .service-number {
    margin: 8px 0 30px;
    font-weight: 700;
    font-size: 40px;
    position: relative;
}

.our-services-section .service-card .service-number::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--White);
}
.our-services-section .service-card .service-title {
    flex-grow: 1;
    align-content: end;
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 600;
}
.our-services-section .service-card .service-description {
    min-height: 96px;
}

.our-services-section .service-card.card1{
    background-image: url("../image/services/card1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-services-section .service-card.card2 {
    background-color: var(--Primary);
}

.our-services-section .service-card.card3 {
    background-color: var(--Text);
}

.our-services-section .service-card.card4{
    background-image: url("../image/services/card4.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 
================================
==== End Services Section ======
================================
*/
/* 
================================
==== Start Partners Section ======
================================
*/
.partners-section {
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
    background: rgba(242, 247, 250, 1);
}

.partners-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-section .image {
    width: 100%;
    height: 100%;
}

.partners-section .partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    place-items: center;
}

.partners-section .partners-logos .partner-logo img {
    height: 90px;
    object-fit: contain;
}

/* Partner Logo Specific Widths */

/* Media Queries */
/* 991px - 1200px */
@media (min-width: 991px) and (max-width: 1200px) {
    .partners-section .image img {
        width: 45%
    }
}
/* >=1200 */
@media (min-width: 991px) {
    .partners-section .image img {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 991px) {
    .partners-section .container {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .partners-section .image img {
        margin: 0 auto;
    }

    .partners-section .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* 
================================
==== End Partners Section ======
================================
*/

/* 
=====================
==== Start FAQ  =====
=====================
*/

.faq-section {
    margin: 0;
    padding: 40px 0;
    background-image: url("../image/faq-background.webp");
    background-size: 115%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 560px;
    margin-bottom: 375px;
}
.faq-section::before {
    content: "";
    position: absolute;
    top: 65%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--Primary);
    z-index: -1;
    transform: skewy(1deg);
}

.faq-section .container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--White);
    padding: 40px 65px;
    border: 1px solid #C7C7C7;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 35%;
}

.faq-section .container > * {
    flex: 1;
}

.faq-section .container .faq-header {
    min-width: 400px;
}

.faq-section .container .faq-header img {
    display: block;
    margin-top: 15px;
}

.faq-section .container .faq-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-section .container .faq-content .faq-item {
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid #E5E5E6;
}

.faq-section .container .faq-content .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
}

.faq-section .container .faq-content .faq-item .faq-question h4 {
    flex: 1;
    color: rgba(18, 22, 29, 1);
    font-weight: 600;
    margin: 0;
    font-size: 20px;
}

.faq-section .container .faq-content .faq-item .faq-answer {
    margin-top: 0;
    color: rgba(97, 101, 110, 1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.faq-section .container .faq-content .faq-item.active .faq-answer {
    margin-top: 24px;
    max-height: 500px; 
    opacity: 1;
}


.faq-section .container .faq-content .faq-item.active .icon-rotate {
    transform: rotate(137deg);
}

.faq-section .container .faq-content .faq-item i {
    font-size: 18px;
}

/* Media Queries */
/* 991px to 768px */
@media (min-width: 768px) and (max-width: 991px) {
    .faq-section {
        margin-bottom: 700px;
    }
    .faq-section::before {
        height: 888px;
    }
}
/* 991px */
@media (max-width: 991px) {
    .faq-section .container {
        flex-direction: column;
    }

    .faq-section .container .faq-header {
        min-width: unset;
        width: 100%;
    }
}
/* 768px */
@media (max-width: 768px) {
    .faq-section .container .faq-content .faq-item .faq-question {
        gap: 5px;
    }

    .faq-section .container .faq-content .faq-item .faq-question .faq-number {
        font-size: 17px;
    }

    .faq-section .container .faq-content .faq-item .faq-question h4 {
        font-size: 16px;
    }

    .faq-section {
        background-position: 5% 0;
        background-size: 200%;
        margin-bottom: 500px;
    }

    .faq-section .container {
        flex-direction: column;
        padding: 20px;
        margin: 0 auto;
        width: 90%;
        top: 70px;
    }
    .faq-section::before {
        top: 40%;
        height: 830px;
    }

}
/* 
=====================
==== End FAQ  =====
=====================
*/

/* 
=========================
==== Start Contact  =====
=========================
*/
.contact-section {
    background-color: #eee;
    margin: 0;
    padding: 80px 0;
    background-image: url("../image/ContactInfo.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-section .contact-content {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.contact-section .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 240px);
    gap: 30px 50px;
    padding: 32px 32px 0 0;
}

.contact-section .contact-info .info-item .info-label {
    color: rgba(0, 0, 0, 1);
    position: relative;
}
.contact-section .contact-info .info-item .info-label::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 3px;
    background-color: var(--Primary);
    bottom: -8px;
    right: 0;
}

.contact-section .contact-info .info-item .info-value {
    margin-top: 20px;
}

.contact-section .contact-content .contact-form {
    min-width: 450px;
    padding: 32px 40px;
    background-color: white;
    color: var(--Text);
}

.contact-section .contact-content .contact-form .form-row {
    display: flex;
    gap: 24px;
    justify-content: space-around;
    align-items: center;
}

.contact-section .contact-content .contact-form .form-row > * {
    flex: 1;
}

.contact-section .contact-content .contact-form .form-label {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 17px;
    color: var(--Text);
}
.contact-section .contact-content .contact-form form input,
.contact-section .contact-content .contact-form form textarea {
    margin-bottom: 24px;
    border-width: 2px;
}

.contact-section .contact-content .contact-form form input::placeholder,
.contact-section .contact-content .contact-form form textarea::placeholder {
    color: var(--Paragraph);
    opacity: 0.6;
    font-size: 14px;
}

.contact-section .contact-content .contact-form form input:focus,
.contact-section .contact-content .contact-form form textarea:focus {
    box-shadow: none;
    border: 2px solid var(--Primary);
    outline: none;
}
.contact-section .dropzone {
    border: 1px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.contact-section .dropzone .dz-message i {
    font-size: 24px;
    color: #6c757d;
    display: block;
    margin-bottom: 12px;
}

.contact-section .dropzone .dz-message span {
    color: #6c757d;
    font-size: 14px;
}

.contact-section .dropzone .dz-preview .dz-filename span {
    display: inline-block;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-section .dropzone .dz-preview .dz-error-message {
    top: 140px;
}

.contact-section .contact-content .contact-form .contact-options .form-check {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.contact-section .contact-content .contact-form .contact-options .form-check label:last-child {
    color: rgba(22, 28, 45, 1);
    font-weight: 600;
    cursor: pointer;
}

.contact-section .contact-content .contact-form .contact-options .custom-radio {
    border: 1px solid var(--Paragraph);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.contact-section .contact-content .contact-form .contact-options {
    display: flex;
    align-items: center;
    gap: 5px;
}
.contact-section .contact-content .contact-form .contact-options label .checkmark {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
    background: var(--Primary);
    display: inline-block;
    opacity: 0;
    transition: all 0.5s ease;
}

.contact-section .contact-content .contact-form .contact-options  input[type="radio"] {
    display: none;
}

.contact-section .contact-content .contact-form .contact-options  input[type="radio"]:checked + .checkmark {
    opacity: 1;
}

.contact-section .contact-content .contact-form .submit-btn {
    background: var(--Primary);
    border: none;
    color: white;
    width: 100%;
    height: 48px;
    font-size: 18px;
    margin-top: 40px;
}

/* Media Queries */
/* 1200px */
@media (min-width: 991px) and (max-width: 1200px) {
    .contact-section .contact-info {
        grid-template-columns: repeat(1, 240px);
    }
}
/* 991px */
@media (max-width: 991px) {
    .contact-section .contact-content {
        align-items: center;
        flex-direction: column;
        gap: 32px;
    }

    .contact-section .contact-content .contact-info {
        align-self: flex-start;
        padding: 0;
        order: -1
    }
    .contact-section .contact-content .contact-form .contact-options {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-section .contact-content {
        padding: 15px
    }
}

/* 768px */
@media (max-width: 768px) {
    .contact-section .contact-info {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-section .contact-content .contact-form .form-row {
        flex-direction: column;
    }
    .contact-section .contact-content .contact-form .form-row > * {
        width: 100%;
    }   
    .contact-section .contact-content .contact-form {
        min-width: auto;
        padding: 30px 15px;
    }
    .contact-section .contact-content .contact-form form .file-upload .file-upload-label {
        padding: 15px;
    }
}
/* 
=======================
==== End Contact  =====
=======================
*/
/* 
============================
==== Start NewsLetter  =====
============================
*/
.newsletter-section {
    padding: 64px 0;
    background: var(--Primary);
}
.newsletter-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.newsletter-section .container > *{
    flex: 1;
}
.newsletter-section .newsletter-content {}
.newsletter-section .newsletter-content .newsletter-title {
    color: var(--White);
    margin-bottom: 16px;
    font-size: 30px;
}
.newsletter-section .newsletter-content .newsletter-description {
    color: var(--White);
    font-size: 20px;
}

.newsletter-section form {
    display: flex;
    align-items: center;
    width: 100%;

}
.newsletter-section form .input-row {
    flex: 1;
}
.newsletter-section form input {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 0;
    border: 0;
    padding: 25px 30px;
    color: var(--White) !important;
    caret-color: var(--White);
}
.newsletter-section form input::placeholder {
    color: var(--White);
}
.newsletter-section form input:focus {
    background: rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

.newsletter-section form .newsletter-button {
    padding: 24px;
    color: var(--Primary);
    border: 0;
    font-weight: 700;
}


/* Media Query */
/* 991px */
@media (max-width: 991px) {
    .newsletter-section .container {
        flex-direction: column;
    }
}

/* 
==========================
==== End NewsLetter  =====
==========================
*/

