:root {
    --primary: #3949ab;
    --primary-dark: #2b377d;
    --light-blue: #e8f2ff;
    --text: #3b3b3b;
    --shadow: 0 10px 25px rgba(57, 73, 171, .15);
    --radius: 22px;
}

body {
    font-family: 'Geist', 'Barlow', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Barlow', 'Geist', sans-serif;
    font-weight: 600;
}

.text-primary-custom {
    color: var(--primary);
}

.bg-primary-custom {
    background-color: var(--primary);
}

.btn-primary-custom {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 10px 24px;
    transition: .3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 24px;
}

.section-padding {
    padding: 90px 0;
}

.section-title h2 {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title p {
    color: #6d6d6d;
    font-size: 14px;
}

/* Navbar */
.navbar {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: 600;
    color: var(--primary);
    font-size: 20px;
}

.navbar-brand img {
    max-width: 180px;
    height: auto;
}

.navbar-nav .nav-link {
    font-family: 'Barlow', 'Geist', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 10px;
}

/* Hero */
.hero-subtitle p,
.about-rich-text p,
.vision-rich-text p,
.brands-heading p,
.cta-box p {
    margin-bottom: 12px;
}

.about-rich-text ul,
.about-rich-text ol,
.vision-rich-text ul,
.vision-rich-text ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.about-rich-text a,
.vision-rich-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.about-rich-text a:hover,
.vision-rich-text a:hover {
    text-decoration: underline;
}

.hero {
    padding: 20px 0 40px;
}

.hero-title {
    color: var(--primary);
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    max-width: 850px;
    margin: auto;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 650px;
    margin: 20px auto 50px;
    color: #666;
    font-size: 14px;
}

/* Custom Center Carousel */
.hero-carousel-wrapper {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px;
}

.hero-carousel-track {
    display: flex;
    align-items: center;
    gap: 42px;
    transition: transform .55s ease;
    will-change: transform;
}

.hero-slide {
    flex: 0 0 720px;
    flex-shrink: 0;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transform: scale(.82);
    opacity: .75;
    transition: transform .55s ease;
    background: #dfe8ff;
}

.hero-slide.active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.hero-carousel-btn.prev {
    left: calc(50% - 390px);
}

.hero-carousel-btn.next {
    right: calc(50% - 390px);
}

.hero-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #cfd2dd;
}

.hero-dot.active {
    background: var(--primary);
}

/* About */
.about-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.video-thumb {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-thumb-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.4));
    z-index: 2;
}

.video-thumb .play-btn,
.video-thumb h4 {
    position: relative;
    z-index: 3;
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: rgba(255, 255, 255, .88);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    transition: .3s ease;
}

.video-thumb:hover .play-btn {
    transform: scale(1.08);
    background: #fff;
}

.about-content {
    padding: 50px;
}

.experience-number {
    font-size: 70px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

/* Vision */
.vision-section {
    background: var(--light-blue);
    overflow: hidden;
}

.vision-text h3 {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 24px;
}

.vision-text p {
    font-size: 22px;
    max-width: 500px;
}

.vision-image img {
    max-height: 500px;
    object-fit: contain;
}

/* Mission */
.mission-card {
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
    height: 100%;
    background: #fff;
}

.mission-icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

/* Brands */
.brands-section {
    background: var(--primary);
    color: #fff;
    min-height: 450px;
}

/* Video Modal */
.video-modal-dialog {
    max-width: min(1100px, calc(100vw - 24px));
    margin: 12px auto;
}

.video-modal-content {
    max-height: calc(100vh - 24px);
}

.video-modal-body {
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#tritVideo {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 24px);
    object-fit: contain;
    background: #000;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

.brands-section {
    background: var(--primary);
    color: #fff;
    min-height: 450px;
}
/* Brands */
.brands-section {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.brands-heading {
    margin-bottom: 48px;
}

.brands-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.brands-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 0;
}

.brands-slider-wrapper {
    position: relative;
    width: 100%;
}

.brands-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0 24px 8px;
}

.brands-slider-track {
    display: flex;
    gap: 28px;
    transition: transform .55s ease;
    will-change: transform;
}

.brand-card {
    flex: 0 0 327px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    color: var(--primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.brand-image {
    height: 255px;
    border-radius: 18px;
    overflow: hidden;
    background: #eef1f8;
    position: relative;
}

.brand-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .48);
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
}

.brand-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
}

.brand-link:hover {
    color: var(--primary-dark);
}

.brand-arrow {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    line-height: 1;
    transition: .3s ease;
}

.brand-arrow:hover {
    background: var(--primary-dark);
    color: #fff;
}

.brands-slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow);
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.brands-slider-btn.prev {
    left: 18px;
}

.brands-slider-btn.next {
    right: 18px;
}

.brands-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, .35);
}

.brand-dot.active {
    background: #fff;
}

@media (max-width: 991px) {
    .brand-card {
        flex-basis: 300px;
    }

    .brand-image {
        height: 230px;
    }

    .brand-link {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .brands-slider-viewport {
        padding: 0 18px 8px;
    }

    .brand-card {
        flex-basis: 285px;
        padding: 18px;
    }

    .brand-image {
        height: 210px;
    }

    .brands-slider-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .brands-slider-btn.prev {
        left: 8px;
    }

    .brands-slider-btn.next {
        right: 8px;
    }

    .brand-link {
        font-size: 18px;
    }

    .brand-arrow {
        width: 46px;
        height: 46px;
        font-size: 28px;
    }
}

#contact.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

#contact.cta-box {
    background: linear-gradient(135deg, #f8fbff 0%, #eaf3ff 50%, #dcecff 100%);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.16);
}

.contact-form-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, #f8fbff 0%, #eaf3ff 50%, #dcecff 100%);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.16);
}

.contact-form .form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    font-size: 14px;
}

.contact-form .form-control {
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 14px;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.12rem rgba(13, 110, 253, 0.12);
}

.contact-form textarea.form-control {
    min-height: 100px;
    resize: none;
}

.contact-form .btn {
    padding: 10px 36px;
    font-size: 14px;
}

#contact .text-center.mb-4 {
    margin-bottom: 20px !important;
}

#contact h2 {
    font-size: 28px;
    margin-bottom: 10px !important;
}

#contact p {
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .cta-box {
        padding: 28px 18px;
    }

    #contact h2 {
        font-size: 24px;
    }

    .contact-form textarea.form-control {
        min-height: 90px;
    }
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
}

.footer-title {
    font-size: 15px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.social-media-footer {
    text-align: right;
}

@media (max-width: 991px) {
    .social-media-footer {
        text-align: left;
    }
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #fff;
    text-decoration: none;
}

.copyright {
    background: var(--primary-dark);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slide {
        flex-basis: 78vw;
        height: 250px;
    }

    .hero-carousel-track {
        gap: 22px;
    }

    .hero-carousel-btn.prev {
        left: 14px;
    }

    .hero-carousel-btn.next {
        right: 14px;
    }

    .about-content {
        padding: 35px;
    }

    .vision-text {
        text-align: center;
        padding-top: 50px;
    }

    .vision-text p {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title br,
    .hero-subtitle br {
        display: none;
    }

    .hero-slide {
        flex-basis: 82vw;
        height: 180px;
        border-radius: 16px;
    }

    .hero-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .experience-number {
        font-size: 52px;
    }
}


/* ==============================
   WhatsApp Floating Button
================================= */

.whatsapp-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    font-family: inherit;
}

.whatsapp-floating-btn {
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-floating-btn:hover {
    transform: translateY(-4px);
    background: #1ebe5d;
}

.whatsapp-chat-box {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 330px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
}

.whatsapp-chat-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-chat-header {
    background: #075e54;
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.whatsapp-chat-header strong {
    display: block;
    font-size: 16px;
    line-height: 1.3;
}

.whatsapp-chat-header span {
    display: block;
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
}

.whatsapp-chat-close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.whatsapp-chat-body {
    padding: 16px;
}

.whatsapp-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
}

.whatsapp-textarea {
    width: 100%;
    resize: none;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.3s ease;
}

.whatsapp-textarea:focus {
    border-color: #25d366;
}

.whatsapp-send-btn {
    width: 100%;
    margin-top: 12px;
    border: none;
    border-radius: 12px;
    background: #25d366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    background: #1ebe5d;
}

@media (max-width: 576px) {
    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-floating-btn {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .whatsapp-chat-box {
        width: calc(100vw - 32px);
        right: -1px;
        bottom: 72px;
    }
}
