/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/




:root {
    --primary-red: #ff3e3e;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #f9f9f9;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


/* Unique Container Class */
.ux-product-card-container {
    max-width: 1200px;
    width: 100%;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    margin: 0 auto;
    margin-bottom: -100px;
}

/* Image Side Logic */
.ux-product-visual-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ux-product-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 2px;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ux-product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(20%);
}

/* The L-Type Border Design */
.ux-l-border-decorator {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 60px;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.ux-l-border-decorator::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
    transform-origin: right;
}

.ux-l-border-decorator::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
    transform-origin: top;
}

/* Hover Effects */
.ux-product-card-container:hover .ux-l-border-decorator::before {
    width: 150%;
}

.ux-product-card-container:hover .ux-l-border-decorator::after {
    height: 150%;
}

.ux-product-card-container:hover .ux-product-img-box img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Content Side */
.ux-product-details-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ux-product-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-red);
}

.ux-product-main-title {
    font-size: 1.8rem;
    /* Smalled heading size as requested */
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.ux-product-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: -30px !important;
    text-align: justify;
}


/* Responsive Design */
@media (max-width: 900px) {
    .ux-product-card-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }

    .ux-product-main-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .ux-product-card-container {
        margin: 10px;
    }

    .ux-l-border-decorator {
        top: -8px;
        right: -8px;
        width: 40px;
        height: 40px;
    }
    .ux-product-card-container{
        margin: 0 auto !important;
    }
}
















/* =========================================
   certifacte section 
           ========================================= */
:root {
    --crzx-max-width: 1160px;
    --crzx-spacing-container: 80px 20px;
    --crzx-grid-gap: 30px;

    /* Colors */
    --crzx-bg-main: #f8fafc;
    --crzx-card-bg: #ffffff;
    --crzx-text-title: #1e293b;
    --crzx-text-sub: #64748b;
    --crzx-border-color: #e2e8f0;

    /* Shine Effect Color */
    --crzx-shine-rgba: rgba(255, 255, 255, 0.7);

    /* Shadows & Radius */
    --crzx-shadow-default: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --crzx-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --crzx-radius-card: 16px;
    --crzx-radius-img: 12px;

    /* Transitions */
    --crzx-trans-speed: 0.4s;
}



/* =========================================
           CERTIFICATE SECTION STYLES
           ========================================= */
.crzx-cert-section {
    padding: var(--crzx-spacing-container);
    width: 100%;
    box-sizing: border-box;
}

.crzx-cert-container {
    max-width: var(--crzx-max-width);
    margin: 0 auto;
}

.crzx-cert-header {
    text-align: center;
    margin-bottom: 40px;
}

.crzx-cert-title {
    color: var(--crzx-text-title);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.crzx-cert-subtitle {
    color: var(--crzx-text-sub);
    font-size: 1.1rem;
    margin: 0;
}

/* Grid Layout: 3 items per row */
.crzx-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--crzx-grid-gap);
}

/* Card Styles */
.crzx-cert-card {
    background-color: var(--crzx-card-bg);
    border: 1px solid var(--crzx-border-color);
    border-radius: var(--crzx-radius-card);
    padding: 16px;
    box-shadow: var(--crzx-shadow-default);
    transition: box-shadow var(--crzx-trans-speed) ease, transform var(--crzx-trans-speed) ease;
    display: flex;
    flex-direction: column;
}

.crzx-cert-card:hover {
    box-shadow: var(--crzx-shadow-hover);
    transform: translateY(-5px);
}

/* Image Wrapper with Vertical Aspect Ratio & Shine Effect Setup */
.crzx-cert-img-box {
    position: relative;
    width: 100%;
    /* Forces a vertical (portrait) orientation */
    aspect-ratio: 3 / 5;
    border-radius: var(--crzx-radius-img);
    overflow: hidden;
    background-color: #f1f5f9;
}

.crzx-cert-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    /* Ensures image fills the vertical box perfectly */
    display: block;
    transition: transform var(--crzx-trans-speed) ease;
}

/* Hover Zoom effect for Image */
.crzx-cert-card:hover .crzx-cert-img {
    transform: scale(1.05);
}

/* =========================================
           ✨ THE SHINE EFFECT CSS
           ========================================= */
.crzx-cert-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    /* Start completely outside the left edge */
    width: 50%;
    /* Width of the shine line */
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            var(--crzx-shine-rgba) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    /* Angle the shine */
    z-index: 2;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Trigger Shine on Card Hover */
.crzx-cert-card:hover .crzx-cert-img-box::before {
    left: 200%;
    /* Move past the right edge */
}

/* Card Content / Texts */
.crzx-cert-info {
    padding-top: 16px;
    text-align: center;
}

.crzx-cert-name {
    font-size: 1.25rem;
    color: var(--crzx-text-title);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.crzx-cert-issuer {
    font-size: 0.95rem;
    color: var(--crzx-text-sub);
    margin: 0;
}

/* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */
/* Tablet & smaller desktops: 2 items per row */
@media (max-width: 992px) {
    .crzx-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices: 1 item per row */
@media (max-width: 600px) {
    .crzx-cert-grid {
        grid-template-columns: 1fr;
    }

    .crzx-cert-title {
        font-size: 2rem;
    }
}



























/* === Unique CSS Variables === */
:root {
    --gx-gal-max-width: 1200px;
    --gx-gal-grid-gap: 24px;
    --gx-gal-border-radius: 12px;
    --gx-gal-shine-speed: 0.7s;
    --gx-gal-shine-color: rgba(255, 255, 255, 0.4);
    --gx-gal-bg-color: #f8f9fa;
}


/* === Gallery Container === */
#gx-main-gallery-section {
    width: 100%;
    max-width: var(--gx-gal-max-width);
    margin: 0 auto;
    padding: 0 var(--gx-gal-grid-gap);
    box-sizing: border-box;
    padding: 50px;
}

/* === Grid Layout === */
.gx-gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row on desktop */
    gap: var(--gx-gal-grid-gap);
}

/* === Individual Item (Square Box) === */
.gx-gallery-item-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Makes the image perfectly square */
    overflow: hidden;
    border-radius: var(--gx-gal-border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #ddd;
    /* Fallback color */
    cursor: pointer;
}

/* === The Image === */
.gx-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the square without stretching */
    display: block;
    transition: transform 0.4s ease-in-out;
}

/* === Shine Hover Effect === */
.gx-gallery-item-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            var(--gx-gal-shine-color) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    /* Angles the shine */
    z-index: 2;
    transition: left var(--gx-gal-shine-speed) ease-in-out;
    pointer-events: none;
    /* Prevents shine from blocking clicks */
}

/* Trigger shine and slight zoom on hover */
.gx-gallery-item-box:hover::before {
    left: 200%;
    /* Moves shine from left to right */
}

.gx-gallery-item-box:hover .gx-gallery-image {
    transform: scale(1.08);
    /* Slight zoom for premium feel */
}

/* === Fully Responsive Media Queries === */
/* Tablet: 2 items per row */
@media (max-width: 992px) {
    .gx-gallery-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 item per row */
@media (max-width: 576px) {
    .gx-gallery-grid-wrapper {
        grid-template-columns: 1fr;
    }
}























/* direcotr section start  */


/* Unique CSS Variables for easy customization */
:root {
    --dr-primary-color: #1a1a1a;
    --dr-accent-color: #ED3237;
    /* Elegant Gold/Brass tone */
    --dr-text-muted: #666;
    --dr-bg-color: #ffffff;
    --dr-spacing: 4rem;
    --dr-font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --dr-img-ratio: 1.2;
    --dr-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Main Section Wrapper */
#unique-director-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden;
}

/* Flex Container */
.dr-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
}

/* Left Side: Image */
.dr-visual-wrapper {
    flex: 1 1 400px;
    position: relative;
}

.dr-image-frame {
    position: relative;
    width: 100%;
    padding-bottom: calc(100% * var(--dr-img-ratio));
    overflow: hidden;
    border-radius: 4px;
}

.dr-image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--dr-transition);
}

/* Decorative Element (Floating Accent) */
.dr-visual-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--dr-accent-color);
    border-right: 5px solid var(--dr-accent-color);
    z-index: -1;
}

/* Right Side: Content */
.dr-content-wrapper {
    flex: 1 1 500px;
}

.dr-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--dr-accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dr-name {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dr-primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.dr-quote {
    font-size: 1.2rem;
    color: var(--dr-text-muted);
    font-style: italic;
    border-left: 3px solid var(--dr-accent-color);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.dr-description {
    font-size: 1.05rem;
    color: var(--dr-primary-color);
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.dr-signature {
    margin-top: 2rem;
}

.dr-signature-img {
    max-width: 180px;
    height: auto;
    opacity: 0.7;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    #unique-director-section {
        padding: 3rem 5%;
    }

    .dr-container {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .dr-container {
        flex-direction: column;
        text-align: center;
    }

    .dr-visual-wrapper {
        width: 100%;
        max-width: 450px;
    }

    .dr-quote {
        border-left: none;
        border-top: 2px solid var(--dr-accent-color);
        padding: 1.5rem 0 0 0;
    }

    .dr-visual-wrapper::after {
        display: none;
        /* Mobile par clean look ke liye */
    }
}

/* Hover Interaction */
.dr-visual-wrapper:hover .dr-image-frame img {
    transform: scale(1.05);
    filter: grayscale(0%);
}


























/* Prodcut Table Section  */

/* Uniq CSS Variables with Prefix */
#ts-comp-section-wrapper {
    --ts-comp-primary: #0f172a;
    --ts-comp-accent: #ed3237;
    --ts-comp-accent-soft: #eff6ff;
    --ts-comp-text-main: #334155;
    --ts-comp-text-muted: #64748b;
    --ts-comp-bg-body: #f8fafc;
    --ts-comp-white: #ffffff;
    --ts-comp-border: #e2e8f0;
    --ts-comp-radius-lg: 24px;
    --ts-comp-radius-md: 12px;
    --ts-comp-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;

    font-family: 'Plus Jakarta Sans', sans-serif;
    /* background-color: var(--ts-comp-bg-body); */
    color: var(--ts-comp-text-main);
    line-height: 1.6;
    padding: 40px 20px;
}

.ts-comp-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* Layout Grid Unique Names */
.ts-comp-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .ts-comp-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Table Unique Styling */
.ts-comp-specs-panel {
    background: var(--ts-comp-white);
    /* border-radius: var(--ts-comp-radius-md); */
    border: 1px solid var(--ts-comp-border);
    box-shadow: var(--ts-comp-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ts-comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    height: 100%;
}

.ts-comp-table th {
    background: #fdfdfd;
    color: var(--ts-comp-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 24px;
    border-bottom: 1px solid var(--ts-comp-border);
}

.ts-comp-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.ts-comp-table tr:last-child td {
    border-bottom: none;
}

.ts-comp-row-num {
    font-weight: 700;
    color: var(--ts-comp-accent);
    width: 50px;
}

.ts-comp-val-pill {
    display: inline-block;
    background: var(--ts-comp-accent-soft);
    color: var(--ts-comp-accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.ts-comp-motion-details {
    display: grid;
    gap: 8px;
}

.ts-comp-motion-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 1px dashed var(--ts-comp-border);
}

.ts-comp-motion-row:last-child {
    border-bottom: none;
}

/* Side Panels Unique Names */
.ts-comp-side-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.ts-comp-feature-item {
    background: var(--ts-comp-white);
    padding: 32px;
    /* border-radius: var(--ts-comp-radius-md); */
    border: 1px solid var(--ts-comp-border);
    box-shadow: var(--ts-comp-shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ts-comp-feature-item.ts-comp-dark-theme {
    background: #000;
    color: var(--ts-comp-white);
    border: none;
}

.ts-comp-header-group {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.ts-comp-header-group svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.ts-comp-header-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* Lists Unique Names */
.ts-comp-list-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ts-comp-list-unit {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--ts-comp-text-main);
}

.ts-comp-dark-theme .ts-comp-list-unit {
    color: #cbd5e1;
}

.ts-comp-dot-indicator {
    width: 6px;
    height: 6px;
    background: var(--ts-comp-accent);
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.ts-comp-arrow-icon {
    color: var(--ts-comp-accent);
    margin-right: 8px;
    font-size: 10px;
}

.ts-comp-full-width {
    grid-column: span 2;
}




















/* text slider css  */


/* Unique CSS Variables */
:root {
    --uts-bg-color: #ffffff;
    --uts-stroke-color: #f0f0f0;
    --uts-fill-color: red;
    /* Rich Yellow */
    --uts-wave-crest: red;
    /* Highlights the wave edge */
    --uts-text-size: 6rem;
    --uts-gap: 2rem;
    /* Reduced gap for a tighter look */
    --uts-scroll-speed: 30s;
    /* Very slow horizontal scroll */
    --uts-font-family: 'Inter', system-ui, -apple-system, sans-serif;
}


/* Main Container */
#uts-main-wrapper {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Horizontal Scroll Track */
.uts-scroller-track {
    display: flex;
    width: max-content;
    animation: uts-scroll-animation var(--uts-scroll-speed) linear infinite;
    will-change: transform;
}

/* Stop on hover */
#uts-main-wrapper:hover .uts-scroller-track {
    animation-play-state: paused;
}

/* Text Item - Wave Effect Logic */
.uts-slider-item {
    position: relative;
    font-size: var(--uts-text-size);
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 var(--uts-gap);
    cursor: pointer;
    user-select: none;
    letter-spacing: -3px;

    /* Initial State: Just an outline */
    color: transparent;
    -webkit-text-stroke: 1.5px var(--uts-stroke-color);

    /* Multi-layer liquid gradient */
    background: linear-gradient(to right,
            var(--uts-fill-color) 0%,
            var(--uts-fill-color) 46%,
            var(--uts-wave-crest) 49%,
            var(--uts-stroke-color) 51%,
            transparent 54%);
    background-size: 250% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;

    /* Ultra slow and smooth transitions */
    transition:
        background-position 2s cubic-bezier(0.25, 1, 0.5, 1),
        -webkit-text-stroke 1s ease,
        filter 0.5s ease;
}

/* Hover: Only the wave fill moves, no vertical jump */
.uts-slider-item:hover {
    background-position: 0% 0;
    -webkit-text-stroke: 1.5px var(--uts-fill-color);

}

/* Continuous Scroll Logic */
@keyframes uts-scroll-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Settings */
@media (max-width: 1024px) {
    :root {
        --uts-text-size: 4.5rem;
        --uts-scroll-speed: 25s;
        --uts-gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --uts-text-size: 3.5rem;
        --uts-gap: 1.25rem;
        --uts-scroll-speed: 20s;
    }

    .uts-slider-item {
        -webkit-text-stroke: 1px var(--uts-stroke-color);
    }
}














.mainblog{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}





















/* float icon css  */


       

        /* --- Floating Contact Buttons CSS (Desktop Version) --- */
        .floating-contact-box {
            position: fixed;
            right: 0;
            /* Center se thoda niche rakhne ke liye top 60% use kiya hai */
            top: 60%;
            transform: translateY(-50%);
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px 0 0 10px; /* Sirf left side radius taaki edge se chipka lage */
            overflow: hidden;
            z-index: 1000;
            border: 1px solid #eaeaea;
            border-right: none;
        }

        .contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            padding: 12px 20px;
            color: #555;
            font-size: 13px;
            font-weight: bold;
            border-bottom: 1px solid #eaeaea;
            transition: background-color 0.3s ease;
        }

        .contact-btn:last-child {
            border-bottom: none;
        }

        .contact-btn:hover {
            background-color: #f9f9f9;
        }

        /* Icons ka size aur spacing */
        .contact-btn svg {
            width: 24px;
            height: 24px;
            margin-bottom: 6px;
        }

        /* Custom Colors Image ke hisaab se */
        .btn-call svg { fill: #4285F4; }      /* Blue color for call */
        .btn-email svg { fill: #FF7F00; }     /* Orange color for email */
        .btn-inquiry svg { fill: #9b51e0; }   /* Purple color for inquiry */

        /* --- Mobile Version CSS (Max-width 768px) --- */
        @media (max-width: 768px) {

            
            .floating-contact-box {
                /* Mobile me bottom me fix karne ke liye */
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100%;
                transform: none;
                flex-direction: row; /* Horizontal layout */
                border-radius: 0;
                border: none;
                border-top: 1px solid #eaeaea;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);

            }

            .contact-btn {
                flex: 1; /* Teeno buttons ko equal space dene ke liye */
                border-bottom: none;
                border-right: 1px solid #eaeaea;
                padding: 10px 5px;
            }

            .contact-btn:last-child {
                border-right: none;
            }
        }