* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background:rgb(0 0 0 / 40%);
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 15px;
    z-index: 1000;
    backdrop-filter: blur(25px);
    border-radius: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c94449, #c94449);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a2332;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

nav > ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
}

nav > ul > li {
    position: relative;
}

nav > ul > li > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

nav > ul > li > a:hover {
    color: #c94449;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 40, 50, 0.98);
    min-width: 275px;
    list-style: none;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    margin-top: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

nav > ul > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav > ul > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(180, 180, 180, 0.401);
    color: #ffffff;
    padding-left: 25px;
}

/* Second Level Dropdown */
.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-top: 0;
    margin-left: 0%;
}

.dropdown-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu .dropdown-menu {
    transform: translateX(-10px);
}

.dropdown-menu li > a .dropdown-arrow {
    margin-left: auto;
    float: right;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #c94449;
    transform: scale(1.1);
}

.cta-button {
    background: #c94449;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #392d5f;
    transform: translateX(5px);
}

/* Hero Section */
.hero-container {
    /* margin-top: 80px; */
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 50px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    color: white;
    z-index: 2;
    max-width: 600px;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.hero-content p{
    color:#000;
}

.hero-slide.active .hero-content {
    animation: slideInLeft 0.8s ease forwards;
    opacity: 1;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #c94449;
    animation: fadeInDown 0.8s ease 0.1s forwards;
    opacity: 0;
    font-weight: 700;
}

.hero-slide.active .hero-label {
    animation: fadeInDown 0.8s ease 0.1s forwards;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    color: #392d5f;
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title .highlight {
    color: #c94449;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #2e2e2e;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-slide.active .hero-description {
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-slide.active .hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn {
    padding: 14px 35px;
    border: 2px solid rgb(3, 3, 3);
    background: transparent;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn.primary {
    background: #c94449;
    color: #1a2332;
    border-color: #c94449;
}

.btn.primary:hover {
    background: transparent;
    color: #c94449;
}

.btn.secondary:hover {
    background: white;
    color: #1a2332;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 5;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(57, 44, 95, 0.471);
    border: 2px solid #c94449;
    color: #c94449;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #c94449;
    color: #1a2332;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #c94449;
    width: 35px;
    border-radius: 6px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    font-size: 20px;
    color: white;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #c94449;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav > ul {
        gap: 15px;
    }

    nav > ul > li > a {
        font-size: 12px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-slide {
        padding: 0 20px;
    }

    .slider-nav, .slider-dots {
        bottom: 20px;
    }

    .slider-nav {
        right: 20px;
    }

    .slider-dots {
        left: 20px;
    }
}

/* FIX BOOTSTRAP DROPDOWN CONFLICT */
nav .dropdown-menu {
    display: block !important;     /* override bootstrap */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

nav li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* SECOND LEVEL DROPDOWN */
nav .dropdown-menu .dropdown-menu {
    display: block !important;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

nav .dropdown-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    nav ul {
        flex-direction: column;
        background: rgba(30,40,50,0.98);
        padding: 20px;
        border-radius: 12px;
    }

    nav li:hover > .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 991px) {
    header {
        display: none;
    }
}

/* ===== MOBILE HEADER ONLY ===== */
.mhd-header {
    display: none;
}

@media (max-width: 991px) {

    .mhd-header {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        z-index: 3000;
    }

    .mhd-bar {
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(20px);
        border-radius: 14px;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mhd-logo {
        height: 50px;
    }

    .mhd-toggle {
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .mhd-toggle span {
        width: 26px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
    }

    /* SLIDE MENU */
    .mhd-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: #1c2b36;
        transition: right 0.35s ease;
        z-index: 4000;
        display: flex;
        flex-direction: column;
    }

    .mhd-menu.active {
        right: 0;
    }

    .mhd-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mhd-menu-top img {
        height: 55px;
    }

    .mhd-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 32px;
        cursor: pointer;
    }

    .mhd-nav {
        list-style: none;
        padding: 20px;
        overflow-y: auto;
    }

    .mhd-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mhd-nav a {
        color: #fff;
        text-decoration: none;
        padding: 14px 0;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

    /* DROPDOWN */
    .mhd-nav ul {
        display: none;
        padding-left: 15px;
    }

    .mhd-nav li.open > ul {
        display: block;
    }
}


/* SECTION BASE */
.section-sm{
    margin:25px 0;
}

.ihbox-section-two {
    background: #ffffff;
}

.ihbox-section-two .pbmit-column {
    display: flex;
}

/* INFO BOX */
.pbmit-ihbox-style-4 {
    width: 100%;
}

.pbmit-ihbox-box {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 35px 30px;
    border-radius: 8px;
    background: #ffffff;
}

/* ICON WRAPPER */
.pbmit-ihbox-icon-wrapper {
    width: 86px;
    height: 86px;
    border-radius: 10px;
    background: #c9444982;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* SVG ICON */
.pbmit-ihbox-icon-wrapper svg {
    width: 42px;
    height: 42px;
    fill: #1c2b36;
}

.pbmit-ihbox-icon-wrapper:hover{
    background: #c94449;
}

/* CENTER BOX HIGHLIGHT */
.col-md-4:nth-child(2) .pbmit-ihbox-icon-wrapper {
    background: #c94449;
}

.col-md-4:nth-child(2) .pbmit-ihbox-icon-wrapper svg {
    fill: #ffffff;
}

.pbmit-ihbox-icon svg:hover{
    fill: #ffffff;
}

/* CONTENT */
.pbmit-ihbox-contents {
    flex: 1;
}

.pbmit-element-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1c2b36;
}

.pbmit-heading-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 280px;
}

/* BORDER LINE */
.ihbox-section-two {
    border-bottom: 1px solid #303030;
    
}

/* HOVER EFFECT */
.pbmit-ihbox-box:hover .pbmit-ihbox-icon-wrapper {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .pbmit-ihbox-box {
        padding: 28px 20px;
    }

    .pbmit-heading-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .pbmit-ihbox-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .pbmit-ihbox-icon-wrapper {
        margin-bottom: 15px;
    }
    .hero-slide-1{
        background-position: left;
    }
    .hero-slide-2{
        background-position: left;
    }
    .hero-slide-3{
        background-position: left;
    }
    .hero-container{
        height:70vh;
    }
    .btn{
        padding: 5px 20px;
    }
}   

/* About-section */
        /* BASE */
.abt-split-wrap {
    padding: 50px 0;
    background: #f5f6f8;
}

.abt-split-box {
    position: relative;
    overflow: hidden;
}

/* IMAGE WRAP */
.abt-split-images {
    float: left;
    width: 50%;
    max-width: 537px;
    margin: 0 50px 28px 0;
    position: relative;
}

.abt-page-split-images {
    float: left;
    width: 40%;
    /*max-height: 537px;*/
    margin: 0 50px 28px 0;
    position: relative;
}

.abt-detail-split-images {
    float: left;
    width: 35%;
    margin: 0 50px 28px 0;
    position: relative;
}

/* MAIN IMAGE */
.abt-img-main {
    width: 100%;
    border-radius: 22px; 
}

/* FLIP CONTAINER */
.abt-img-flip {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 75%;
    height: 250px;
    perspective: 1000px;
}

/* FLIP INNER */
.abt-flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

/* HOVER FLIP */
.abt-img-flip:hover .abt-flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.abt-flip-front,
.abt-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    backface-visibility: hidden; 
    border: 5px solid #fff;
}

/* IMAGES */
.abt-flip-front img,
.abt-flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BACK SIDE */
.abt-flip-back {
    transform: rotateY(180deg);
}

/* LABEL */
.abt-split-label {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #c94449;
    color: #fff;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.abt-split-label:hover{
    transition: transform 0.7s ease; 
    transform: scale(1.5);
    background: #000;
}

/* CONTENT */
.abt-split-content {
    font-size: 15.5px;
    line-height: 1.9;
    color: #333;
}

/* TITLE */
.abt-mini-title {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 17px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #373737;
    font-weight: 700;
}

.abt-mini-title::after {
    content: "";
    width: 46px;
    height: 2px;
    background: #111;
    display: block;
    margin-top: 8px;
}

/* CLEAR FLOAT */
.abt-split-box::after {
    content: "";
    display: block;
    clear: both;
}

/* MOBILE */
@media (max-width: 991px) {
    .abt-split-images {
        float: none;
        width: 100%;
        margin: 0 0 32px 0;
    }

    .abt-img-flip {
        position: static;
        width: 100%;
        height: 240px;
        margin-top: 18px;
    }

    /* Disable flip on touch */
    .abt-img-flip:hover .abt-flip-inner {
        transform: none;
    }
}

.hero-section {
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.filter-nav {
    margin-bottom: 40px;
}

.filter-nav a {
    color: #999;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.filter-nav a:first-child {
    margin-left: 0;
    color: #c94449;
}

.filter-nav a:hover {
    color: #c94449;
}

.filter-nav span {
    color: #ddd;
    margin: 0 5px;
}

.product-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 38, 51, 0.95);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-card:hover img {
    transform: scale(1.1);
}

.arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #c94449;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.arrow-btn:hover {
    background-color: #c94449;
    transform: translateX(5px);
}

.arrow-btn::after {
    content: '→';
    font-size: 24px;
    color: white;
}

.category-label {
    color: #c94449;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .product-card {
        height: 300px;
    }

    .filter-nav a {
        margin: 0 10px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .product-card {
        height: 250px;
    }

    .filter-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-nav a {
        margin: 5px;
    }

    .filter-nav span {
        display: none;
    }
}

        /* ================================
   SHOWCASE SECTION
================================ */

.showcase-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Force equal height columns */
.showcase-section .row {
    display: flex;
    flex-wrap: wrap;
}

.showcase-section [class*="col-"] {
    display: flex;
}

/* COMMON BOX STYLES */
.showcase-leftbox,
.showcase-rightbox {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 55px 30px;
    border-radius: 10px;
    overflow: hidden;
    /* min-height: 420px; */
    color: #fff;
}

/* BACKGROUNDS */
.showcase-leftbox {
    background-image: url(https://induyst-demo.pbminfotech.com/html-demo/images/homepage-2/factory-worker-img.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-rightbox {
    background-image: url(https://induyst-demo.pbminfotech.com/html-demo/images/homepage-2/factory-img.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

/* GRADIENT OVERLAY */
.showcase-leftbox::before,
.showcase-rightbox::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 68, 73, 0.85),
        rgba(57, 45, 95, 0.85)
    );
    z-index: 1;
}

/* Decorative circle remains */
.showcase-leftbox::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 2;
}

/* CONTENT ABOVE OVERLAY */
.showcase-heading,
.showcase-btn,
.showcase-counter {
    position: relative;
    z-index: 3;
}

/* HEADING */
.showcase-heading {
    margin-bottom: 30px;
}

.showcase-title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* BUTTON */
.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #392d5f;
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    background: #c94449;
    color: #fff;
    transform: translateY(-2px);
}

.showcase-btn-icon {
    width: 38px;
    height: 38px;
    background: #392d5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* COUNTER */
.showcase-counter-inner {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.showcase-number {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.showcase-suffix {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
}

.showcase-desc {
    margin-top: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .showcase-leftbox,
    .showcase-rightbox {
        padding: 45px 40px;
        min-height: 360px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-number {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .showcase-section .row {
        flex-direction: column;
    }

    .showcase-leftbox,
    .showcase-rightbox {
        padding: 35px 25px;
        min-height: auto;
        border-radius: 14px;
    }

    .showcase-title {
        font-size: 24px;
    }

    .showcase-number {
        font-size: 48px;
    }

    .showcase-suffix {
        font-size: 28px;
    }

    .showcase-counter {
        margin-top: 40px;
    }
}


/* Why-choose-us */
/* SECTION */
.section-lg {
    padding: 120px 0;
}

/* IMAGE */
.about-two-img {
    background: url("../image/img/whyimg.webp") center/cover no-repeat;
    min-height: 620px;
    border-radius: 14px;
}

/* RIGHT COLUMN */
.about-two-right-col {
    /* padding-left: 30px; */
}

/* SUBTITLE */
.pbmit-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6a6f6f;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pbmit-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    margin-right: 8px;
}

/* TITLE */
.pbmit-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 25px;
}

/* TEXT */
.about-two-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}

/* LIST */
.list-group-item {
    border: none;
    padding: 0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.pbmit-icon-list-icon {
    color: var(--primary);
    margin-right: 12px;
}

/* BUTTON */
.pbmit-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: #3d3163;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: .3s;
}

.pbmit-btn:hover {
    background:#c94449;
}

/* SWIPER */
.aboutSwiper {
    position: relative;
    padding-bottom: 70px;
}

.pbmit-ihbox-style-5 {
    background: #f3f6f9;
    border-radius: 14px;
    padding: 35px 30px;
}

.pbmit-ihbox-icon-wrapper i {
    font-size: 42px;
    color: var(--primary);
    /* margin-bottom: 18px; */
}

.pbmit-element-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.pbmit-heading-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.swiper-wrapper{
    margin:10px 0px;
}

/* ARROWS */
.swiper-button-prev-2,
.swiper-button-next-2 {
    position: absolute;
    bottom: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-button-prev-2 {
    left: 0;
}

.swiper-button-next-2 {
    left: 60px;
}

.swiper-button-prev-2 i,
.swiper-button-next-2 i {
    color: var(--dark);
}

/* REMOVE DEFAULT */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .about-two-right-col {
        margin-top: 40px;
    }

    .pbmit-title {
        font-size: 40px;
    }
}

@media(max-width:767px) {
    .pbmit-title {
        font-size: 32px;
    }

    .about-two-img {
        min-height: 420px;
    }
}

/* Product-arousel-css */

.fps-service-section {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.352) 0%, rgba(0, 0, 0, 0.368) 100%), url(../image/img/ftp-bg.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.fps-service-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.fps-service-header {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    margin-bottom: 0px;
    align-items: start;
}

.fps-service-subtitle {
    color: #c94449;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.fps-service-subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #c94449;
    margin-right: 10px;
}

.fps-service-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.fps-service-description {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
}

.fps-service-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fps-carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #c94449;
    background: transparent;
    color: #c94449;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fps-carousel-btn:hover {
    background-color: #c94449;
    color: #1a1f2e;
}

.fps-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.fps-service-carousel {
    display: flex;
    gap: 35px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.fps-service-card {
    flex: 0 0 calc(25% - 26.25px);
    min-width: 280px;
    background: linear-gradient(135deg, rgba(255,193,7,.05), rgba(255,193,7,.02));
    border: 1px solid rgba(255,193,7,.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.fps-service-card:hover {
    border-color: #c94449;
    transform: translateY(-5px);
}

.fps-service-image {
    width: 100%;
    height: 350px;
    object-fit: fill;
}

.fps-service-icon-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c94449;
}

.fps-service-content {
    padding: 25px;
    backdrop-filter: blur(10px);
}

.fps-service-name {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fps-service-arrow {
    color: #c94449;
    transition: 0.3s;
}

.fps-service-card:hover .fps-service-arrow {
    transform: translateX(5px);
}

.fps-service-footer {
    text-align: center;
    margin-top: auto;
    padding: 0px;
}

.fps-service-footer-text {
    color: #9ca3af;
}

.fps-service-footer-text a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .fps-service-header {
        grid-template-columns: 1fr;
    }
    .fps-service-card {
        flex: 0 0 calc(50% - 17.5px);
    }
}

@media (max-width: 480px) {
    .fps-service-card {
        flex: 0 0 100%;
    }
}

/* Testimonial and faq */

.header {
    text-align: center;
    margin-bottom: 50px;
}

.label {
    color: #c94449;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 21.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question.active {
    background: #f0f5ff;
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c94449;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 0 24px 24px 24px;
    max-height: 500px;
}

.answer-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.testimonial-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-label {
    color: #c94449;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.stars {
    margin-bottom: 30px;
    font-size: 18px;
}

.stars i {
    color: #c94449;
    margin-right: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: auto;
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #f0f0f0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a1a1a;
    font-size: 18px;
}

.nav-btn:hover {
    border-color: #c94449;
    color: #c94449;
    transform: translateY(-2px);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn.disabled:hover {
    border-color: #f0f0f0;
    color: #1a1a1a;
    transform: none;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .title {
        font-size: 32px;
    }

    .testimonial-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-answer.active {
        padding: 0 18px 18px 18px;
    }

    .testimonial-section {
        padding: 30px;
    }

    body {
        padding: 20px;
    }

    .header {
        margin-bottom: 40px;
    }

    .testimonial-nav {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 24px;
    }

    .testimonial-title {
        font-size: 20px;
    }

    .question-text {
        font-size: 14px;
    }

    .answer-text {
        font-size: 14px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-answer.active {
        padding: 0 16px 16px 16px;
    }

    .testimonial-section {
        padding: 20px;
    }

    .testimonial-label {
        font-size: 12px;
    }
}


/* contact-Section */

.contact-section{
    padding:70px 0;
    background:#fff;
    font-family:'Segoe UI', sans-serif;
}

.contact-label{
    font-size:13px;
    letter-spacing:1px;
    color:#f9a825;
    font-weight:600;
    margin-bottom:10px;
}

.contact-title{
    font-size:44px;
    font-weight:700;
    line-height:1.2;
    color:#0b1c2d;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea{
    width:100%;
    padding:14px 18px;
    border-radius:10px;
    border:1px solid #e6e6e6;
    margin-bottom:20px;
    font-size:15px;
}

.contact-form-wrap textarea{
    min-height:160px;
    resize:none;
}

.contact-checkbox{
    display:flex;
    gap:10px;
    font-size:14px;
    color:#666;
    margin-bottom:25px;
}

.contact-submit-btn{
    background:#c94449;
    border:none;
    padding:14px 28px;
    border-radius:30px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.contact-info-box{
    /* background:#392d5f; */
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.821) 0%, rgba(0, 0, 0, 0.755) 100%), url(../image/img/ct-bg.png);
    background-position: center;
    color:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.contact-info-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.contact-info-icon{
    width:50px;
    height:50px;
    background:#1c2c3b;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-info-item i{
    font-size:22px;
    margin-bottom:10px;
    display:inline-block;
}

.contact-info-item a{
    font-size:14px;
    color:#cfd6dc;
    text-decoration: none;
}

.contact-social-bar{
    background:#c94449;
    margin-top:30px;
    padding:20px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.contact-social-text{
    font-weight:600;
    font-size:14px;
}

.contact-social-icons a{
    width:36px;
    height:36px;
    border:1px solid #ffffff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#ffffff;
    margin-left:8px;
    text-decoration:none;
    font-weight: 700;
}

@media(max-width:991px){
    .contact-title{font-size:34px;}
}

@media(max-width:767px){
    .contact-info-grid{grid-template-columns:1fr;}
    .contact-title{font-size:30px;}
}


/* footer-section  */

.footer-section{
    background-image:linear-gradient(90deg, rgba(0, 0, 0, 0.474) 0%, rgba(0, 0, 0, 0.595) 100%), url(../image/img/footer-bg.png);
    padding:60px 0 30px;
    font-family:'Segoe UI', sans-serif;
    color:#ffffff;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-logo{
    font-size:34px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:15px;
}

.footer-text{
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
}

.footer-contact div{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    margin-bottom:10px;
}

.footer-contact a{   
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.footer-col-title{
    font-size:16px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:15px;
}

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    text-decoration:none;
    color:#ffffff;
    font-size:14px;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #e2ddd6;
}

.footer-app{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.footer-app a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social a{
    color:#ffffff;
    font-size:16px;
}

.footer-copy{
    text-align:center;
    font-size:13px;
    color:#ffffff;
    margin-top:25px;
}

.go-top{
    position:fixed;
    bottom:30px;
    right:30px;
    width:40px;
    height:40px;
    background:#c94449;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:4px;
    cursor:pointer;
    display:none;
    z-index:999;
}

@media(max-width:767px){
    .footer-col-title{margin-top:25px;}
    .footer-app{justify-content:center;}
    .footer-social{justify-content:center;}
}


/* breadcrumb */

.breadcrumb-hero {
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../image/img/innerbg.webp) center / cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb-content {
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out;
}

.breadcrumb-subtitle {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.breadcrumb-item a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: underline;
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: #ffd700;
    font-weight: 600;
    padding: 6px 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .breadcrumb-hero {
        min-height: 350px;
    }

    .breadcrumb-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .breadcrumb-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }

    .breadcrumb-separator {
        margin: 0 5px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 4px 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-hero {
        min-height: 300px;
    }

    .breadcrumb-content {
        padding: 0 15px;
    }

    .breadcrumb-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .breadcrumb-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-separator {
        margin: 0 3px;
        font-size: 12px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 3px 5px;
        font-size: 11px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3px;
    }
}

.breadcrumb-item:last-child .breadcrumb-separator {
    display: none;
}

.section-content {
    padding: 60px 20px;
}

.info-box {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* sitemap-section */

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid #c94449;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: #c94449;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: #c94449;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c94449;
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}


/* Sidebar Container */
.contact-sidebar {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Contact Item */
.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Icon Button */
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid white;
    z-index: 2;
    position: relative;
}

.contact-item:nth-child(1) .contact-icon {
    background: #25D366;
}

.contact-item:nth-child(2) .contact-icon {
    background: #FF6B6B;
}

.contact-item:nth-child(3) .contact-icon {
    background: #4267B2;
}

.contact-item:nth-child(4) .contact-icon {
    background: #EA4335;
}

.contact-item:nth-child(5) .contact-icon {
    background: #FFA500;
}

/* Hover effect on icon */
.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Ribbon Slide */
.contact-ribbon {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-item:hover .contact-ribbon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.ribbon-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item:nth-child(1) .ribbon-icon {
    color: #25D366;
}

.contact-item:nth-child(2) .ribbon-icon {
    color: #FF6B6B;
}

.contact-item:nth-child(3) .ribbon-icon {
    color: #4267B2;
}

.contact-item:nth-child(4) .ribbon-icon {
    color: #EA4335;
}

.contact-item:nth-child(5) .ribbon-icon {
    color: #FFA500;
}

.ribbon-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.ribbon-contact {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Link styling */
a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-sidebar {
        left: 10px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-ribbon {
        left: 55px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .ribbon-icon {
        font-size: 16px;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-item {
    animation: slideIn 0.5s ease backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }
.contact-item:nth-child(5) { animation-delay: 0.5s; }