body, .site-footer {
    font-family: 'Poppins', sans-serif !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Poppins', sans-serif !important;
}

.container-component{
    width:100%;
    max-width:none;
    margin:0;
    padding:0;
    display:block;
}
.container-banner{
    margin:0 !important;
}

/*==============
HERO SECTION
==============*/
.hero {
    position: relative;
    height: calc(100vh - 100px); /* header is ~100px */
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(138, 138, 138, 0.6), rgba(138, 138, 138, 0.6)), url("/triksweb/media/templates/site/cassiopeia/images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 max(calc(50vw - 600px), 5%);
    color: white;
}

.hero h1 {
    font-size: clamp(3rem, 4.85vw, 6rem);
    line-height: 1.05;
    font-weight: 700;
}

.hero p {
    margin-top: 30px;
    font-size: clamp(16.5px, 1.62vw, 33px);
    line-height: 1.5;
}


/*==============
SERVICE SECTION
==============*/

/* =========================
   SERVICES
========================= */

.section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2{
    font-size: clamp(1.75rem, 2.5vw, 49.5px);
    margin-bottom:15px;
    font-weight: 600;
    color: #191A74;
}

.services-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.services-container {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}


/* =========================
   SERVICE LIST
========================= */

.services-list {
    display: flex;
    flex-direction: column;

    border-left: 5px solid #dce8ef;
}

.service-tab {
    position: relative;

    border: none;
    background: transparent;

    text-align: left;

    padding: 16px 20px;

    font-family: inherit;
    font-size: 18px;
    font-weight: 600;

    color: #111111;

    cursor: pointer;

    transition: 0.2s ease;
}

.service-tab:hover {
    color: #191A74;
}

.service-tab.active {
    color: #111111;
}

.service-tab.active::before {
    content: "";

    position: absolute;

    left: -5px;
    top: 0;
    bottom: 0;

    width: 5px;

    background: #191A74;

    border-radius: 3px;
}


/* =========================
   SERVICE CONTENT
========================= */

.service-content {
    padding-top: 5px;
}

.service-content h2 {
    margin: 0 0 35px;

    font-size: 42px;
    font-weight: 700;

    color: #000000;
}

.service-description {
    max-width: 1000px;

    margin: 0 0 55px;

    font-size: 20px;
    line-height: 1.7;

    color: #333333;
}

/* =========================
   SERVICE DETAIL
========================= */

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 55px;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: auto;

    object-fit: contain;
}

.service-detail-text h3 {
    margin: 0 0 15px;

    font-size: 27px;
    font-weight: 600;

    color: #000000;
}

.service-detail-text p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #333333;
}

/* =========================
   ABOUT US
   ========================= */

.about-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    display: block;
    padding: 0 0 80px 0;
}

.about-container {
    width: min(1200px, 80%);
    margin: 0 auto;
}

/* About Us title */

.about-header {
    text-align: center;
    padding-top: 82px;
    margin-bottom: 6vw;
}

.about-header h2 {
    font-size: clamp(1.75rem, 2.5vw, 49.5px);
    font-weight: 700;
    color: #191A74;
    margin: 0;
}


/* Image + text */

.about-split-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 70px;
}

.about-image-col {
    flex: 1;
    width: 50%;
}

.about-image-col img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.about-text-col {
    flex: 1;
    width: 50%;
}


/* Company introduction */

.company-intro {
    color: #1e293b;
    font-size: clamp(1rem, 1.4vw, 27.5px);
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.company-intro strong {
    color: #191a74;
}


/* Vision / Mission */

.vision-mission-block {
    margin-bottom: 25px;
}

.vision-mission-block h3 {
    color: #191a74;
    font-size: clamp(1.35rem, 1.67vw, 33px);
    font-weight: 700;
    margin: 0 0 8px 0;
}

.vision-mission-block p {
    color: #334155;
    font-size: clamp(1rem, 1.4vw, 27.5px);
    line-height: 1.6;
    margin: 0;
}


/* =========================
   COMMITMENT
   ========================= */

.commitment-section {
    width: 100%;
}

.commitment-title {
    text-align: center;
    color: #0d1b6a;
    font-size: clamp(1.75rem, 1.875vw, 37px);
    font-weight: 700;
    margin: 0 0 40px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.commit-card {
    border-radius: 16px;
    padding: clamp(20px, 1.5vw, 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.commit-card h4 {
    color: #0d1b6a;
    font-size: clamp(1rem, 1.4vw, 27.5px);
    font-weight: 700;
    margin: 0 0 10px 0;
}

.commit-card p {
    color: #334155;
    font-size: clamp(0.9rem, 1.25vw, 24.75px);
    line-height: 1.5;
    margin: 0;
}


/* Commitment card backgrounds */

.card-lightgreen {
    background-color: #eaf6dd;
}

.card-purple {
    background-color: #ede4ff;
}

.card-cream {
    background-color: #fbf6dd;
}


/* Commitment icons */

.commit-icon {
    width: clamp(45px, 3.47vw, 68.8px);
    height: clamp(45px, 3.47vw, 68.8px);

    border-radius: 10px;
    margin-bottom: 25px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(27px, 2.1vw, 41.3px) auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-green-icon {
    background-color: #74cc1d;
    background-image: url('https://triks.cloud/images/image-person.png');
}

.bg-purple-icon {
    background-color: #9254de;
    background-image: url('https://triks.cloud/images/image-medal.png');
}

.bg-yellow-icon {
    background-color: #fadb14;
    background-image: url('https://triks.cloud/images/image-lamp.png');
}

.bg-2nd-green-icon {
    background-color: #74cc1d;
    background-image: url('https://triks.cloud/images/image-handshake.png');
}

/* =========================
   PARTNERS
   ========================= */

.partners-section {
    width: 100%;
    background: #f8fafc;
    padding: 90px 0;
}

.partners-container {
    width: min(1200px, 80%);
    margin: 0 auto;
}

.partners-title {
    margin: 0 0 50px 0;
    text-align: center;

    color: #191a74;
    font-size: clamp(1.5rem, 2vw, 32px);
    font-weight: 700;
    line-height: 1.3;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.partner-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    height: calc(((100vw - 453px) * 178) / 1105);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.partner-card img {
    display: block;

    max-width: 100%;
    max-height: 90px;

    width: auto;
    height: auto;

    object-fit: contain;
}

/* =========================
   PARTNERS 2
   ========================= */

.tech-partners-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 0 90px;
}

.tech-partners-container {
    width: min(1200px, 80%);
    margin: 0 auto;
}

.tech-partners-title {
    margin: 0 0 45px 0;

    text-align: center;

    color: #191a74;
    font-size: clamp(1.5rem, 2vw, 32px);
    font-weight: 700;
    line-height: 1.3;
}

.tech-partners-row {
    display: flex;
    align-items: center;
    height: clamp(54px, 6.1vw, 121px);
    justify-content: center;
    gap: 35px;
}

.tech-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tech-brand-logo img {
    max-height: 100%;
    width: clamp(104px, 13.9vw, 275px);
    height: clamp(54px, 6.1vw, 121px);
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.2s ease-in-out;
}

/* Mekari needs a little vertical adjustment */
.tech-brand-logo:nth-child(2) img {
    transform: translateY(15px);
}

/* =========================
   FOOTER
   ========================= */

.footer .grid-child {
    padding: 0 !important;
    max-width: none !important;
}

.site-footer {
    width: 100%;
    background: #64748B;
    color: #ffffff;
    padding: 70px 0 25px;
}

.footer-top-row {
    width: min(1200px, 80%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr !important;
    gap: 50px;
}


/* Brand */

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo {
    width: auto;
    max-height: 5rem;
    object-fit: contain;
}

.footer-brand-name {
    font-size: clamp(1rem, 1.4vw, 27.5px);
    font-weight: 700;
}

.footer-tagline {
    margin: 0 0 15px;
    color: #E6D21A;
    font-size: clamp(0.9rem, 1.11vw, 22px);
    font-weight: 700;
    line-height: 1.4;
}

.footer-desc {
    margin: 0;
    color: #FFF;
    font-size: clamp(0.9rem, 1.11vw, 22px);
    line-height: 1.7;
}


/* Column headings */

.footer-col h4 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: clamp(0.9rem, 1.11vw, 22px);
    font-weight: 700;
}


/* Navigation */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: clamp(0.9rem, 1.11vw, 22px);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #E6D21A !important;
}


/* Office */

.footer-text {
    margin: 0;
    color: #fff;
    font-size: clamp(0.9rem, 1.11vw, 22px);
    line-height: 1.7;
}


/* Contact */

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: clamp(0.9rem, 1.11vw, 22px);
}

.footer-contact-list a:hover {
    color: #E6D21A !important;
}


/* Divider */

.footer-divider {
    width: min(1200px, 80%);
    margin: 50px auto 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* Copyright */

.footer-bottom-row {
    width: min(1200px, 80%);
    margin: 0 auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.contact-icon-img {
    width: clamp(1.35rem, 1.67vw, 33px);
    height: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/*
==============
RESPONSIVENESS 
==============
*/

/* Service Cards */

@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* About Us Paragraph */

@media (max-width: 960px) {
    .about-split-row {
        flex-direction: column !important;
        gap: 30px;
    }
    .about-image-col, .about-text-col {
        width: 100% !important;
    }
}



/* About Us Cards */

@media (max-width: 576px) {
    .commitment-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Partners Row */

@media (max-width: 960px) {
    .partners-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
    }
    .partner-card {
        flex: 0 0 calc(33.333% - 20px);
        height: 120px;
    }
}
@media (max-width: 576px) {
    .partner-card {
        flex: 0 0 calc(51% - 10px);
        padding: 15px;
        height: 100px;
    }
    .tech-brand-logo {
        width: auto;
        height: 54px;
    }
}
/* Footer */
@media (max-width: 576px) {
    .footer-top-row {
        grid-template-columns: 1fr !important;
        gap: 35px;
    }
}