@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

ul

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

:root {
    --primary-font: 'Inter', sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --navy: #002147;
    --navy-dark: #00152e;
    --gold: #f1b407;
    --white: #ffffff;
    --black: #111111;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: #eee;
}

a {
    text-decoration: none;
    color: #000;
    display: block;
    font-family: var(--secondary-font);
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--primary-font);
}
p {
    margin: 0;
    font-family: var(--secondary-font);
}

/* Top Header */
.top-header { background: var(--navy-dark); color: var(--white); padding: 8px 0; font-size: 13px; }
.contact-meta span { margin-right: 20px; opacity: 0.9; }
.contact-meta i { color: var(--gold); margin-right: 5px; }
.social-links a {color: white;margin-left: 10px;display: inline-block;}

/* Navbar */
.navbar-custom {background: white;padding: 0px 0;border-bottom: 1px solid #eee;position: sticky;top: 0;z-index: 1000;}
.brand-logo .navy {font-weight: 900;font-size: 20px;background: linear-gradient(90deg,#377729,#5A8F3A,#F1B407);-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline;}
.brand-logo .gold { font-weight: 900; font-size: 20px;background: linear-gradient(90deg,#377729,#5A8F3A,#F1B407);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.brand-logo small { display: block; font-size: 9px; letter-spacing: 2px; font-weight: 700; color: var(--navy); margin-top: -5px; }
.nav-links { list-style: none; display: flex; margin: 0; padding: 0; justify-content: center; }
.nav-links li a {text-decoration: none;color: var(--navy);font-weight: 600;padding: 10px 10px;font-size: 14px;display: flex;align-items: center;justify-content: space-between;}
.nav-links li ul.dropmenu li a i {
    font-weight: 500;
}
.nav-links li a.active { border-bottom: 3px solid var(--gold); }
.nav-links li.drop-down {
    position: relative;
}
.nav-links li .dropmenu {
    
position: absolute;
    
background: #fff;
    
min-width: 200px;
    opacity: 0;
    visibility: hidden;
box-shadow: 0 0 8px 0 rgb(0 0 0 / 14%);
}
.nav-links li.drop-down:hover .dropmenu {
    opacity: 1;
    visibility: visible;
}
.nav-links li .dropmenu li {
    
border-bottom: 1px solid #e3e3e3;
}
.nav-links li .dropmenu a {
    transition: all .3s ease;
}
.nav-links li .dropmenu a:hover {
    background: var(--navy);
    color: #fff;
}
.nav-links li ul li .submenu {
    position: absolute;
    background: #fff;
    min-width: 200px;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 14%);
}
.nav-links li.subdropdown {
    position: relative;
}
.nav-links li.childdropdown {
    position: relative;
}
.nav-links li.subdropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
}
.nav-links li ul li ul li .subchildmenu {
    position: absolute;
    background: #fff;
    min-width: 200px;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 14%);
}
.nav-links li.subchilddropdown {
    position: relative;
}
.nav-links li.subchilddropdown {
    position: relative;
}
.nav-links li.subchilddropdown:hover .subchildmenu {
    opacity: 1;
    visibility: visible;
}

.nav-links li ul li .childmenu {
    position: absolute;
    background: #fff;
    min-width: 200px;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 14%);
    padding: 0;
}

.nav-links li.childdropdown:hover .childmenu {
    opacity: 1;
    visibility: visible;
    display: block;
}

.btn-gold-action {
    padding: 10px 20px;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 5px;
    transition: all .3s ease;
    width: max-content;
    margin: 0 0 0 auto;
}
.btn-gold-action:hover {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: #fff;
}
.btn-navy-wide {
    padding: 10px 20px;
    background: var(--navy);
    border: 1px solid var(--navy);
    color: #fff;
    border-radius: 5px;
    transition: all .3s ease;
    width: max-content;
    margin: 0 auto;
}
.btn-navy-wide:hover {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #000;
}

.custom-hero {
    height: 720px; /* Exact dimension as requested */
    overflow: hidden;
}

/* Left Side Styling */
.hero-container {
     /* Exact height from your requirement */
     width: 100%;
     position: relative;
     background-size: cover;
     background-position: center right;
     z-index: 1;
     padding: 100px 0 150px;
}

/* LEFT SIDE: TRANSPARENCY EFFECT */
.hero-content-side {
    display: flex;
    align-items: center;    
    padding: 0;    
    position: relative;    
    z-index: 2;
}

.inner-content {
}

.badge-tag {
    background-color: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-title {
    color: var(--white);
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gold-text {
    color: var(--gold);
}

.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

/* RIGHT SIDE: SHIP IMAGE VISIBILITY */
.hero-image-side {
    
    /* Is side ko empty rakha hai taaki main background ki ship dikhe */
}

/* BUTTONS */
.btn-group-custom {
    display: flex;
    gap: 15px;
}

.btn-filled {
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
}

.btn-outlined {
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
}

.btn-filled:hover {
    background-color: #fff;
    color: #000;
}

.btn-outlined:hover {
    background-color: var(--white);
    color: #000;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .hero-container, .hero-content-side, .hero-image-side {
        height: auto;
    }
    .hero-content-side {
        padding: 80px 20px;
        background-color: rgb(0 33 71 / 55%);
    }
    .main-title {
        font-size: 32px;
    }
}
/* Trust Ribbon */
.trust-ribbon {color: white;margin: -70px 0 0;position: relative;z-index: 2;}
.trust-col-box {
    background: var(--navy);
    padding: 20px 0;
    border-radius: 10px;
}
.trust-col {display: flex;align-items: center;gap: 15px;padding: 20px 30px;border-right: 1px solid #494949;}
.trust-col i { font-size: 30px; color: var(--gold); }
.trust-col h5 { font-size: 16px; margin-bottom: 2px; }
.trust-col p { font-size: 12px; margin: 0; color: #888; }
.no-border { border: none !important; }

/* Category & Product Cards */
.category-sidebar{
    background: var(--navy-dark);
    border-radius: 5px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    height: 100%;
}

.category-sidebar h3{
    font-size:22px;
    color: #fff;
    padding: 15px;
    border: 1px solid var(--navy-dark);
    text-align: center;
}

.category-sidebar ul{
    padding:0;
    margin:0;
    list-style:none;
}

.category-sidebar li{
    margin-bottom:10px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
    font-weight: 500;
    font-family: var(--primary-font);
}

.category-sidebar li:hover, .category-sidebar li.active a{
    color: #fff;
}
.content-sec {padding: 80px 0;}
.sec-title {margin: 0 0 50px 0;}
.sec-title h6 { letter-spacing: 2px; font-weight: 700; }
.sec-title h2 {font-weight: 600;margin: 10px 0;color: var(--navy);font-size: 32px;}
.sec-title p {
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0;
}
.line { width: 60px; height: 4px; background: var(--gold); margin: 0 auto; }
.category-item {background: white;border-radius: 8px;box-shadow: 0px 0px 15px rgb(161 161 161 / 31%);overflow: hidden;transition: 0.3s;border: 1px solid #efefef;padding: 5px;}
.category-item:hover { transform: translateY(-10px); }
.category-item img {width: 100%;height: 250px;object-fit: cover;}
.cat-body { padding: 15px; }
.cat-body h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 10px;
}
.cat-body p {
    font-size: 14px;
    text-align: justify;
    font-weight: 400;
    padding: 0 0 10px;
}
.cat-body a {text-decoration: none;font-size: 14px;font-weight: 500;color: var(--gold);width: max-content;display: flex;align-items: center;gap: 10px;}

/* Navy Section */
.navy-section {background: var(--navy);padding: 80px 0;}
.navy-section .sec-title h2 {
    color: #fff;
}
.navy-section .btn-gold-action {
    margin: 0 auto 0;
}
.navy-section .btn-gold-action:hover {
    background: #fff;
    color: var(--navy);
}
.product-item {background: white;border-radius: 8px;box-shadow: 0px 0px 15px rgb(161 161 161 / 31%);overflow: hidden;transition: 0.3s;border: 1px solid #efefef;padding: 5px;margin: 0px 0 20px;}
.product-item .prod-body {
    padding: 15px;
}
.product-item img {width: 100%;height: 250px;object-fit: cover;}
/* Product Title One Line */
.product-item .prod-body h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Product Description 2 Line */
.product-item .prod-body p {
    font-size: 14px;
    text-align: justify;
    font-weight: 400;
    padding: 0 0 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.product-item .prod-body a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding-top: 100px; /* Space for floating newsletter */
    position: relative;
    margin-top: 100px;
}

/* Newsletter Overlay Box */
.footer-newsletter {
    background-color: var(--navy);
    padding: 40px;
    border-radius: 10px;
    margin-top: -160px; /* Pulls it up over the previous section */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.news-icon i {
    font-size: 40px;
    color: var(--gold);
}

.footer-newsletter h3 {
    margin: 0;
    font-weight: 800;
}

.footer-newsletter p {
    margin: 5px 0 0;
    color: rgba(255,255,255,0.7);
}

.news-form {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.news-form input {
    flex: 1;
    order: none;
    padding: 10px 15px;
    outline: none;
}

.news-form button {
    background-color: var(--gold);
    border: none;
    padding: 10px 25px;
    font-weight: 800;
    border-radius: 5px;
}

/* Footer Content Area */
.footer-content {
    padding: 80px 0 50px;
}

.footer-logo .white { font-size: 28px; background: linear-gradient(90deg,#377729,#5A8F3A,#F1B407);-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline;}
.footer-logo .gold { font-size: 28px; background: linear-gradient(90deg,#377729,#5A8F3A,#F1B407);-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline; }
.footer-logo small { display: block; font-size: 9px; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-top: -5px; }

.brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 20px 0;
}

.footer-social a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover { background: var(--gold); color: black; }

.footer-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

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

.footer-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover { color: var(--gold); padding-left: 5px; }

/* Contact Section Styling */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i { color: var(--gold); margin-top: 5px; }
.contact-item p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }

/* Bottom Bar Styling */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom p {
    color: rgb(255 255 255 / 60%);
}
.back-to-top {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.back-to-top:hover { color: var(--gold); }
.bg-navy { background-color: var(--navy); }
.sec-choose-us {padding: 50px 0;border-bottom: 1px solid #eee;}
.sec-choose-us .textboxouter {
    /* display: flex; */
    margin: 0 10px 5px;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 2px 4px 9px 0px rgb(0 0 0 / 8%);
    width: 100%;
    height: 100%;
}
.sec-choose-us .textboxouter .iconbox {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffe9ac;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.sec-choose-us .textboxouter .iconbox svg {
    width: 35px;
    fill: var(--navy-dark);
}

.sec-choose-us .textboxouter .textbox {
    padding: 0px 0 0 10px;
}

.sec-choose-us .textboxouter .textbox h6 {
    color: var(--navy);
    font-weight: 600;
    margin: 0 0 5px;
    font-size: 15px;
}

.sec-choose-us .textboxouter .textbox p {font-size: 14px;}
.sec-choose-us .line {
}
.text-gold { color: var(--gold); }

/* Common Section Headings */


/* 1. Why Choose Us / Counters / Video */
.whychooseusheadbox {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.vdo-thumbnail {position: relative;cursor: pointer;height: 100%;box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);}
.vdo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; cursor: pointer; }

.count-box {
    background: var(--navy);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 50px 0 0;
}

.count-box .count-item {
    display: flex;
    align-items: center;
    padding: 20px 30px 20px;
    border-right: 1px solid #eee;
    gap: 5px;
    width: 24%;
}
.count-box .count-item:last-child {
    border: unset;
    margin: 0;
}
.count-box .count-item .iconbox {}

.count-box .count-item .iconbox svg {
    width: 50px;
    stroke: var(--gold);
    fill: var(--gold);
}

.count-box .count-item .details {margin: 0 0 0 10px;}

.count-box .count-item .details h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.count-box .count-item .details small {
    font-size: 14px;
    font-weight: 400;
    color: #eee;
}

/* --- Certifications Grid --- */
.combined-section {
    padding: 50px 0 0px;
}
.combined-section .line {
    margin: 0;
}
.cert-grid {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cert-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    width: 23%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.cert-card img {
    width: 100%;
}

.cert-card span { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; }
.cert-card:hover {box-shadow: 0 5px 15px rgb(0 0 0 / 8%);}

.btn-view-all {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--navy);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 13px;
}

/* --- Testimonial Slider --- */
.testimonial-slider-wrapper {
    position: relative;
    padding: 0 20px;
}

.testimonial-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    gap: 10px;
}

.client-header {
    margin-bottom: 25px;
    width: 20%;
}

.client-img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-body-box {
    width: 80%;
    position: relative;
    padding: 0 20px;
}
.quote-icon-top {
    position: absolute;
    left: 0;
}
.quote-icon-top i {font-size: 18px;color: #000000;}

.testimonial-body p {
    font-size: 16px;
    color: #212529;
    margin-bottom: 15px;
    line-height: 1.7;
}

.client-footer h5 {color: var(--navy);font-weight: 600;font-size: 18px;}
.client-footer small {color: #404040;font-weight: 400;}

/* Arrows & Dots */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}
.slider-nav:hover { background: var(--navy); color: #fff; }
.slider-nav.prev { left: -10px; }
.slider-nav.next { right: -10px; }

.dots-nav { margin-top: 15px; display: flex; gap: 5px; }
.dots-nav span { width: 8px; height: 8px; background: #ddd; border-radius: 50%; }
.dots-nav span.active { width: 18px; background: var(--navy); border-radius: 10px; }

/* Mobile View */
@media (max-width: 991px) {
    .cert-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Hero Section --- */
.AboutHeroSection {
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px;
}

.HeroOverlay {
    display: flex;
    align-items: center;
}

.SubHeadingText {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.AboutHeroSection h1 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
}

.AboutHeroSection p {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
}
.aboutheroimage {}
.aboutheroimage img {
    width: 100%;
}
.HeroBtn {
    background: var(--gold);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* --- Vision & Mission --- */
.VisionBlock, .MissionBlock {
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.VisionBlock { background-color: var(--gold); }
.MissionBlock {background-color: var(--navy);}

.BlockIcon {
    margin: 0 auto 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.BlockIcon svg {
    fill: #fff;
    width: 100px;
}
.BlockTitle {margin-bottom: 15px;font-size: 32px;font-weight: 600;color: #fff;}
.VisionMissionArea .VisionBlock p {font-size: 1rem;margin-bottom: 10px;font-weight: 400;color: var(--navy);}
.BlockLink { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.9rem; border-bottom: 1px solid;}
.VisionMissionArea .MissionBlock p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 400;
}
/* --- Core Values --- */
.SectionMainTitle {
    font-weight: 700;
    color: var(--navy-dark);
}

.TitleUnderline {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto;
}

.ValueCard {
    padding: 30px 20px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    transition: 0.3s;
}

.ValueCard:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ValueIcon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.ValueIcon svg {
    
width: 60px;
    
fill: var(--gold);
}
.ValueCard h4 {
    color: var(--navy-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.ValueCard p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* --- Our Story --- */
.StoryPara {
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 0.95rem;
}
/* --- About Description Section Styles --- */
.AboutDescriptionSection {
    background-color: #ffffff;
}

.SectionTag {
    color: var(--gold-theme);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.DescriptionHeading {
    font-size: 2.5rem;
    line-height: 1.2;
}

.MainPara {
    line-height: 1.8;
}

.SubPara {
    line-height: 1.7;
}

/* --- Side Image Wrapper Styles --- */
.AboutImageWrapper {
    position: relative;
    padding: 10px;
}

/* Image Placeholder Class (Bina real image ke visual banane ke liye) */
.SideImagePlaceholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0A1F3E;
    border: 2px dashed var(--gold-theme); /* Just for visual guide */
    transition: transform 0.4s ease;
}

.SideImagePlaceholder:hover {
    transform: scale(1.02);
}

.PlaceholderText {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Utility Color for Icons */
.text-gold {
    color: var(--gold) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .DescriptionHeading {
        font-size: 2rem;
    }
    .SideImagePlaceholder {
        height: 300px;
        margin-top: 30px;
    }
}

/* --- Hero Section --- */
.LegacyHero {
    background: linear-gradient(rgba(10, 31, 62, 0.9), rgba(10, 31, 62, 0.9)), 
                url('shipping-port-bg.jpg') center/cover;
    padding: 100px 0;
    color: var(--white);
}
.BadgeGold {
    background: var(--gold);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
}
.HeroHeading { font-size: 3.5rem; font-weight: 800; margin-top: 15px; }

/* --- Owner Section --- */
.OwnerProfileArea { position: relative; }
.OwnerFrame {
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--white);
    position: relative;
}
.ImgPlaceholder {
    height: 550px;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #adb5bd;
}
.OwnerInfo {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(10, 31, 62, 0.95);
    padding: 25px;
    color: var(--white);
    text-align: center;
}
.ExpTag {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 700;
    transform: rotate(3deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- Content Styling --- */
.SectionTitle { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: var(--navy); }
.LeadText { font-size: 1.2rem; font-weight: 500; border-left: 5px solid var(--gold); padding-left: 20px; margin-bottom: 25px; }
.BodyText { line-height: 1.8; color: #4b5563; margin-bottom: 15px; }

/* --- Category Grid --- */
.GoldDivider { width: 60px; height: 4px; background: var(--gold); margin-top: 10px; }
.CategoryCard {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
    border: 1px solid #edf2f7;
}
.CategoryCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--gold);
}
.CatIcon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.CategoryCard h4 { font-weight: 700; margin-bottom: 15px; }
.CategoryCard p { font-size: 0.9rem; color: #6b7280; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .HeroHeading { font-size: 2.5rem; }
    .ImgPlaceholder { height: 400px; }
}

/* Hero Section */
.ContactHero {
    background: linear-gradient(rgba(10, 31, 62, 0.85), rgba(10, 31, 62, 0.85)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80'); /* Professional Office BG */
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* Info Cards */
.icon-box {
    width: 45px;
    height: 45px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.ChatBox {
    background-color: var(--navy);
}
.detailsbox {
    width: 70%;
}

.InfoCard {
    color: #000;
}

.ChatBox p {
    color: #fff;
}
/* Form Styles */
.FormCard {
    background-color: var(--navy);
}

.custom-input {
    background-color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
}

.custom-input:focus {
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.25);
    border-color: var(--gold);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    border: none;
}
.btn-whatsapp:hover { background-color: #1eb956; color: white; }

/* Map Area */
.map-placeholder {
    height: 400px;
    background: #e2e8f0 url('https://user-images.githubusercontent.com/1507452/93331902-6e277680-f815-11ea-8947-64010a373b9e.png') center/cover;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 250px;
    z-index: 5;
}

/* Responsive */

.MapArea {
    margin: 10px 0 30px;
}

.MapArea iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

/* Section Background & Padding */
.process-section {
    background-color: #001f3f; /* Dark Blue color as per image */
    padding: 50px 20px;
    color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Main Process Row */
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Responsive banane ke liye */
}

/* Connecting Dotted Line (Desktop standard) */
.process-container::before {
    content: '';
    position: absolute;
    top: 35px; /* Circle ke center me align karne ke liye */
    left: 70px;
    right: 70px;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.4);
    z-index: 1;
}

/* Single Step Column */
.process-step {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2; /* Dotted line ke upar rakhne ke liye */
    margin-bottom: 30px;
}

/* White Circle for Icons */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Icons Inside Circle */
.icon-wrapper i {
    color: #001f3f;
    font-size: 28px;
}

/* Orange Number Circle */
.step-number {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: #f3a316; /* Golden/Orange theme color */
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #001f3f; /* Dark background border matching */
}

/* Step Label Text */
.step-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 120px;
    color: #fff;
    font-family: var(--primary-font);
}

/* Bottom Features Bar */
.features-bar {
    background-color: rgba(255, 255, 255, 0.08); /* Transparent subtle white block */
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.feature-item {
    color: #ffffff;
}

.divider {
    color: #f3a316; /* Orange dots in the bottom bar */
    margin: 0 15px;
    font-size: 16px;
}


.sourcing-services{
    padding: 50px 0;
    background:#fff;
    border-bottom: 1px solid #eee;
}

.services-grid{
}

.servicetitle {
    width: 100%;
    display: inline-block;
}

.service-card{
    background:#fff;
    padding: 25px 15px;
    text-align:center;
    border-radius:12px;
    transition:.4s;
    display: flex!important;
    flex-direction: column;
    gap: 5px;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card .icon{
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background:#082c5c;
    color:#f5b81d;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 18px;
    margin-bottom:15px;
    display: inline-flex;
}

.service-card h4{
    font-size: 16px;
    margin-bottom:10px;
    color:#082c5c;
    font-weight: 500;
}

.service-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* ===========================
   PRODUCT CATEGORY
=========================== */

.product-categories{
    padding: 50px 0;
    background:#f8f9fc;
}

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

.category-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.4s;
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}
.contentbox {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.categorycontent {
    padding: 10px 10px 20px;
}
.category-card .content{
    padding:25px;
}

.category-card h4{
    color: var(--navy);
    font-size: 18px;
    margin-bottom:10px;
    font-weight: 600;
}

.category-card p{
    color:#666;
    line-height:1.7;
    width: 80%;
}

.category-card span.btn{
    color:#d8a320;
    font-weight:600;
    text-decoration:none;
    border: 1px solid var(--gold);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: unset;
}

.category-card:hover span.btn {
    background: var(--gold);
    color: var(--navy);
}

/* Section Wrapper */
.manufacturing-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100%;
}

.mfg-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left Content Area */
.mfg-content-left {
}

.mfg-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #f3a316; /* Theme Gold/Orange */
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Logo Box styling */
.mfg-logo-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.mfg-logo-circle {
    width: 60px;
    height: 60px;
    border: 1px dashed #001f3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dummy-logo {
    color: #001f3f;
    font-weight: 700;
    font-size: 20px;
}

.mfg-logo-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.mfg-logo-text strong {
    color: #001f3f;
}

/* Checklist Points */
.mfg-points-list {
    list-style: none;
}

.mfg-points-list li {
    font-size: 14px;
    color: #000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    00; */
;
    font-family: var(--secondary-font);
}

.mfg-points-list i {
    color: #f3a316; /* Golden ticks */
    font-size: 12px;
    margin-right: 12px;
}

/* Right Side Image Grid */
.mfg-images-right {padding: 0 10px;}

/* Image Card Styles with Overlay */
.mfg-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 250px;
}

.mfg-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover Effect for Image Zoom */
.mfg-card:hover img {
    transform: scale(1.05);
}

/* Dark transparent bottom gradient overlay */
.mfg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px 10px;
}

.mfg-card-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.global-presence{
    padding: 50px 0;
    background:#fff;
}

.presence-wrapper{
    display:flex;
    gap: 20px;
    align-items:center;
}
.global-presence-box .presence-wrapper {
    flex-wrap: wrap;
}
.global-presence-box .map-box {
    width: 100%;
    margin: 0 auto;
}
.global-presence-box .country-box {
    width: 100%;
}

.global-presence-box .country-box .country-list ul li {
    width: 18%;
}
.map-box{
    width: 60%;
}

.map-box img{
    width:100%;
    display:block;
}

.country-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    width: 40%;
}

.country-box h3{
    color:#082c5c;
    font-size: 26px;
    margin-bottom:30px;
    position:relative;
}

.country-box h3:after{
    content:"";
    width:80px;
    height:3px;
    background:#d8a320;
    position:absolute;
    left:0;
    bottom:-12px;
}

.country-list{
    margin-top:40px;
}

.country-list ul{
    list-style:none;
    padding:0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-list li{
    padding: 8px 0 8px 10px;
    color: var(--navy);
    font-size:16px;
    position:relative;
    width: 31%;
    background: #d4e8ff;
    margin: 0px 0;
}

.country-btn{
    margin-top:35px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#082c5c;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.country-btn:hover{
    background:#d8a320;
    color:#082c5c;
}

.industries-section{
    padding: 50px 0;
    background:#fff;
}

.industries-grid{
    display:flex;
    flex-wrap: wrap;
    gap:25px;
}

.industry-card p{
    font-size:14px;
    line-height:1.7;
    color:#6b7280;
    margin-top:12px;
    margin-bottom:0;
}

.industry-card{
    width: 23%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.industry-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    cursor:pointer;
}

.industry-card:hover{
    transform:translateY(-8px);
    border-color:#f4b400;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.industry-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#f8f9fc;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.industry-icon i{
    font-size:34px;
    color:#06254d;
}

.industry-card h4{
    font-size:18px;
    color:#06254d;
    font-weight:600;
    line-height:1.5;
    margin:0;
}
.category-sidebar ul{
    list-style:none;
    padding-left:0;
    margin:0;
}
.category-sidebar ul.subcat {
    background: var(--navy);
    padding: 0 0 0 0px;
}
.category-sidebar ul.childmenu {
    padding: 0 0 0 0px;
    background: #002d61;
}
.category-sidebar ul.subchildmenu {
    background: var(--navy);
    padding: 0 0 0 0px;
}
.category-sidebar ul.subcat li a {
    padding: 10px 25px 10px 35px;
}
.category-sidebar ul.childmenu li a {
    padding: 10px 25px 10px 45px;
}
.category-sidebar ul.subchildmenu li a {
    padding: 10px 25px 10px 55px;
}
.category-sidebar li{
    position:relative;
}

.category-sidebar li a{
    display:block;
    padding: 10px 25px;
    color: #fff;
    text-decoration:none;
    transition:0.3s;
    font-size: 16px;
}

.category-sidebar > li.active > a{
    background: var(--navy-dark);
    color: #333;
}

.subcat,
.childmenu{
    display:none;
    padding-left:15px;
}

.category-sidebar li.active > .subcat,
.category-sidebar li.active > .childmenu{
    display:block;
}

.toggle-icon{
    float:right;
    transition:0.3s;
}

.active > a .toggle-icon{
}

.filterbtn a {
    width: max-content;
    display: flex;
    background: #fbfbfb;
    border: 1px solid #f2f2f2;
    gap: 8px;
    padding: 2px 13px;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: end;
    margin: 0 0 15px auto;
}
.filterbtn a:hover {
    background: #eee;
}

.filterbtn a .filtericon {}

.filterbtn a .filtericon svg {
    width: 20px;
}

.filterbtn a .filter-text {
    color: #000;
}
.closebtn {
    display: none;
}
@media (max-width: 768px) {
    .HeroHeading { font-size: 2.5rem; }
    .map-overlay { position: static; width: 100%; margin: 10px; }
    .ContactHero { border-radius: 0; }
    .btn-filled, .btn-outlined {padding: 10px 20px;font-size: 13px;}
    .footer-newsletter {
        padding: 20px;
    }

    .footer-newsletter h3 {font-size: 20px;}

    .news-form {
        margin: 20px 0 0;
    }

    .news-form button {
        padding: 10px 15px;
        width: max-content;
    }

    .client-header {
        width: 40%;
        margin: 0 auto;
    }
    .wrapper {
        overflow-X: hidden;
    }
    .client-header img {
    width: 100%;
    height: unset;
    }

    .testimonial-box {
        padding: 10px;
        flex-direction: column;
        justify-content: center;
    }

    .testimonial-body-box {
        width: 100%;
        padding-right: 0;
    }
    .category-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 90%;
        background: #ecf5ff;
        transition: all .3s ease;
    }
    .closebtn {
        display: block;
    }

    .closebtn i {
        font-size: 18px;
        color: #000;
        position: absolute;
        top: 5px;
        right: 10px;
        width: 30px;
        height: 30px;
        background: var(--navy-dark);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .category-sidebar.active {
        left: 0;
    }
    .category-sidebar h3 {
        color: #000;
        border: unset;
    }

    .category-sidebar li:hover, .category-sidebar li.active a {
        color: var(--navy-dark);
    }

    .category-sidebar li a {
        color: var(--navy-dark);
    }
    .category-sidebar li a {
        color: var(--navy-dark);
    }
    ul.subcat {}

    .category-sidebar ul.subcat {
        background: #d7e9ff;
    }

    .category-sidebar ul.childmenu {}

    ul.childmenu {}

    .category-sidebar ul.childmenu {
        background: #c3deff;
    }

    .category-sidebar ul.subchildmenu {
        background: #d3e7ff;
    }
    .category-item img {
        height: unset;
    }

    .product-item img {
        height: 150px;
    }
    
    .sec-choose-us .textboxouter {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .cert-card {
        width: 18%;
    }
    
    .sec-title h2 {
        font-size: 22px;
        font-weight: 500;
    }
    
    .sec-title h6 {
        font-size: 16px;
    }
    
    .news-form input {
        flex: unset;
        width: 60%;
    }
    
    section {
        padding: 20px 0 !important;
    }
    .cat-body h6 {
        font-size: 15px;
    }
    
    .AboutHeroSection h1 {
        font-size: 22px;
    }
    .AboutHeroSection p {
        font-size: 14px;
    }
    
    .VisionBlock, .MissionBlock {
        padding: 20px;
    }
    .BlockText {
        font-size: 14px;
    }
    .accordion-item-header {
        font-weight: 500;
        font-size: 15px;
    }
    .content_outer h2 {
        margin: 10px 0;
    }
    
    .mobhead .logobox {
    }
    .mobnav {
        padding: 0;
    }
    .mobnav > nav > ul > li.mobilecatdropdown ul{
    background: #e5e5e5;
}
.mobnav > nav > ul > li.mobilecatdropdown ul li ul.mobilechildcat {
    background: #fff;
}
.mobilecatdropdown > a i,
.mobilesubcat > li > a i,
.mobilechildcat > li > a i{
    transition:0.3s;
}

.mobilecatdropdown.active > a i{
    transform:rotate(180deg);
}
.mobilesubcat, .mobilechildcat,
.mobilesubchildcat{
    display:none;
}
.mobnav nav .mobilesubcat li a {
    padding: 10px 25px;
}
.mobnav nav .mobilechildcat li a {
    padding: 10px 30px;
}
.mobnav nav .mobilesubchildcat li a {
    padding: 10px 35px;
}
.mobnav > nav > ul > li {}
    .main-title {
        font-size: 26px;
    }
    .description {
        font-size: 16px;
    }
    .filterbtn a {
        display: flex;
    }

    .category-grid {grid-template-columns: repeat(2,1fr);}

.category-card img {
    height: 170px;
}

.category-card p {
    font-size: 12px;
}
.count-box {}.count-box {
    flex-wrap: wrap;
    padding: 0;
}

.count-box .count-item {
    width: 49%;
    padding: 20px 20px;
}

.count-box .count-item:nth-child(1), .count-box .count-item:nth-child(2) {
    border-bottom: 1px solid #eee;
}

.whychooseusheadbox {
    width: 100%;
}

.presence-wrapper {
    flex-wrap: wrap;
}

.map-box {
    width: 100%;
}

.country-box {
    width: 100%;
    padding: 20px;
}

.features-bar {flex-direction: column;width: 100%;}

.count-box {
    border-radius: 5px;
    margin: 0;
}

.count-box .count-item .iconbox svg {
    width: 40px;
}

.count-box .count-item .details small {
}

.sec-choose-us .textboxouter {
    padding: 10px 13px;
}

.footer-content {
    padding: 30px 0;
}

footer .logo img {
    max-width: 40%!important;
    margin: 0;
}
.industry-card {
    width: 48%;
    padding: 10px 15px;
}

.industries-grid {
    gap: 10px;
}
.global-presence-box .country-box .country-list ul li {
    width: max-content;
    padding: 10px 15px;
}
}
.coming-soon-box{
    text-align:center;
    padding:60px 20px;
    background:#f8f8f8;
    border-radius:10px;
    border:1px dashed #ddd;
}

.coming-soon-box h3{
    margin-bottom:10px;
    font-weight:600;
}
.widget-event{padding:30px 0;}
.widget-event .head{}
.widget-event .head h3{
    text-align: CENTER;
    font-size: 2em;
    font-weight: bold;
    color: #014e44;
    margin-bottom: 15px;
}
.widget-event .head h4{
   font-weight: 500;
   margin-top: 2rem;
   margin-bottom: 1rem;
   text-align: left;
   position: relative;
   font-size: 1.8rem;
   display: inline-block;
   background: var(--navy);
   padding: 10px 20px;
   border-radius: 2px;
   color: #fff !important;
}
.widget-event .head h4:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--navy);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}
.widget-event .head h4:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--navy);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
    right: -10px;
}
.widget-event .eventbox{}
.widget-event .eventbox img{width:100%;}