body {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

@media (min-width: 1200px) {
    .navbar>.container {
        max-width: 1200px;
    }
}


/* Header Base Style */

.header {
    position: relative;
    width: 100%;
    background: #ffffff;
    transition: all 0.4s ease;
    z-index: 999;
}


/* .header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */


/* Inner Layout */

.header .header-inner {
    padding: 20px 0;
    transition: all 0.4s ease;
}


/* Sticky Active State */

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease forwards;
}


/* Reduce padding when sticky */

.header.sticky .header-inner {
    padding: 12px 0;
}

.header .navbar-brand {
    width: 240px;
}

.header.sticky .navbar-brand img {
    width: 100px;
}


/* Slide Animation */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.offcanvas {
    height: 100vh !important;
}

.header .navbar {
    width: 100%;
}

.navbar-expand-md .navbar-nav {
    align-items: center;
}


/* =====================================================
   ABOUT US & PRODUCTS DROPDOWN (ONLY)
   ===================================================== */

.dropdown-menu[aria-labelledby="accountDropdown"],
.dropdown-menu[aria-labelledby="servicesDropdown"] {
    width: 290px;
    min-width: 290px;
    padding: 8px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* Dropdown items */

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item {
    width: 100%;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    /* neutral dark */
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: transparent;
}


/* Hover background (brand-safe pharma colors) */

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item::before,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #0b5ed7, #0d6efd);
    transition: width 0.3s ease;
    z-index: -1;
}


/* Font Awesome arrow */

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item::after,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item::after {
    content: "\f061";
    /* fa-arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    opacity: 0;
    font-size: 13px;
    color: #ffffff;
    transition: all 0.3s ease;
}


/* Hover state */

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item:hover,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover {
    color: #ffffff;
    padding-right: 42px;
}

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item:hover::before,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover::before {
    width: 100%;
}

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item:hover::after,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* Active / Focus */

.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item:focus,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus,
.dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item.active,
.dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item.active {
    color: #ffffff;
    background: linear-gradient(90deg, #0b5ed7, #0d6efd);
}


/* Divider */

.dropdown-menu[aria-labelledby="accountDropdown"] li:not(:last-child),
.dropdown-menu[aria-labelledby="servicesDropdown"] li:not(:last-child) {
    border-bottom: 1px solid #eef2f6;
}


/* =========================
   RESPONSIVE (MOBILE)
   ========================= */


/* ===============================
   GSS Pharma Preloader
================================ */

#gss-preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffffff, #f3f8f6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#gss-preloader.hide {
    opacity: 0;
    visibility: hidden;
}


/* Inner Content */

.preloader-inner {
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

.preloader-logo {
    max-width: 280px;
    margin-bottom: 25px;
    animation: pulse 2.5s infinite;
}


/* Animated Line */

.loader-line {
    display: block;
    width: 120px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 auto 18px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: #2e8b75;
    /* pharma green */
    animation: lineMove 1.5s infinite;
}

.preloader-text {
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
}


/* Animations */

@keyframes lineMove {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mobile Optimization */


/* .navbar-brand img {
    width: 240px;
} */

.top-bar {
    background: #0b6ec7;
    /* Premium dark */
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.top-contact i {
    color: #38bdf8;
}

.top-contact:hover {
    color: #38bdf8;
}


/* Mobile Responsive */

.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}


/* Widget container */

.glass-lang {
    background: rgba(0, 86, 184, 0.1);
    /* Pantone 300C tint */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 8px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    cursor: pointer;
    /* box-shadow: 0 0 20px rgba(0, 86, 184, 0.25); */
}


/* Hover glow effect */

.glass-lang:hover {
    background: rgba(0, 86, 184, 0.25);
    box-shadow: 0 0 25px rgba(0, 86, 184, 0.4);
    transform: translateY(-2px);
}


/* Add globe icon before select */

.glass-lang::before {
    content: "🌐";
    font-size: 1.1rem;
    margin-right: 10px;
    color: #00c6ff;
    filter: drop-shadow(0 0 6px rgba(0, 198, 255, 0.4));
    animation: pulse-glow 2s infinite alternate;
}


/* Pulse glow animation for globe */

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 198, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.7));
    }
}


/* Actual dropdown select box */

.goog-te-combo {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.9rem;
    appearance: none;
    /* remove native arrow */
    padding: 4px 6px;
    cursor: pointer;
    font-family: inherit;
}


/* Custom dropdown arrow */

.glass-lang::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 10px;
    color: #00c6ff;
    transition: transform 0.3s ease;
}

.glass-lang:hover::after {
    transform: rotate(180deg);
}


/* Option dropdown styling */

.goog-te-combo option {
    background: #0a0a0a;
    color: #fff;
    padding: 8px;
}


/* Hide Google branding text */

.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}


/* Remove background color in widget wrapper */

.goog-te-gadget {
    color: transparent !important;
}


/* Translate top bar fix (remove default tooltip) */

#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

.nav-link {
    padding: 20px 10px 20px 10px !important;
    font-size: 16px;
    color: #000;
}

.main-banner {
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px 40px 0 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Desktop background */
    background-image: url(../../Images/doctor-testing.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* Desktop heading */

.main-banner h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
}


/* Responsive image (hidden on desktop) */

.main-banner .banner-img {
    display: none;
    width: 100%;
    max-width: 520px;
    margin: 30px auto 0;
    border-radius: 10px;
}

.about-section {
    padding: 60px 0px 60px;
    background: #f6f9fc;
}

.about-section .about-container {
    max-width: 1200px;
    /* margin: 0 auto; */
    display: grid;
    grid-template-columns: 1.4fr 1.1fr;
    align-items: center;
    gap: 40px;
}

.about-section .about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.about-section .about-content .about-subtitle {
    color: #0077b6;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-section .about-content .about-heading {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #0b6fc7;
}

.about-section .about-content .about-intro {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-section .about-content .about-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #0077b6;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-section .about-content .about-btn:hover {
    background: #023e8a;
}

.cutting-banner {
    padding: 80px 0px;
}

.cutting-banner .cutting-banner-content {
    text-align: center;
}

.cutting-banner .heading-text {
    font-weight: 200 !important;
    text-transform: none;
    color: #0b6fc7;
    font-size: 40px;
    line-height: calc(56 / 48);
}

.product-portfolio-banner {
    padding-bottom: 30px;
}

.product-portfolio-banner-content {
    text-align: center;
}

.product-portfolio-banner-content p {
    font-size: 18px;
}

.product-portfolio-banner .heading-text {
    font-weight: 200 !important;
    text-transform: none;
    color: #0b6fc7;
    font-size: 40px;
    line-height: calc(56 / 48);
}

.experience-banner {
    background-color: #dce9e2;
    padding: 80px 0px;
}

.experience-banner .experience-banner-content {
    text-align: center;
}

.experience-banner .heading-text {
    font-weight: 200 !important;
    text-transform: none;
    color: #0b6fc7;
    font-size: 40px;
    line-height: calc(56 / 48);
}

.experience-banner .experience-banner-content p {
    font-size: 18px;
}

.products-section {
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 80px;
}


/* Card */

.products-section .product-card {
    background: #2f7dc5;
    border-radius: 16px;
    padding: 30px 30px 55px 30px;
    height: 100%;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.products-section .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}


/* Title */

.products-section .product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}


/* Description */

.products-section .product-desc {
    font-size: 14.5px;
    line-height: 1.6;
    opacity: 0.95;
}


/* Read More Button */

.products-section .readmore-btn {
    position: absolute;
    bottom: 24px;
    left: 30px;
    background: #ffffff;
    color: #2f7dc5;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
}


/* Hover (Desktop) */

.products-section .product-card:hover .readmore-btn {
    opacity: 1;
    transform: translateY(0);
}


/* Tablet & Mobile → Always visible */


/* About Page */

.inside-page-bg {
    padding: 250px 0px;
    position: relative;
}

.inside-page-bg h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--logo-color);
}

.about-us-sub-banner {
    background-image: url(../../Images/About/Happy-family.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-banner-2 {
    padding: 30px 0px 0px;
}

.about-banner-2 h2 {
    margin-bottom: 20px;
}

.about-banner-2 p {
    color: #555555;
}

.about-banner-2-text {
    margin-bottom: 30px;
}

.icon-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    /* background: #37332e; */
    display: inline-flex;
    /* padding: 10px 20px; */
    border-radius: 50px;
    color: var(--white);
    padding-right: 15px;
    background: #0b6fc7;
}

.icon-box-title img {
    background-color: var(--white);
    width: 30px;
    padding: 6px;
    border-radius: 50px 0px 0px 50px;
    border: 0.5px solid var(--logo-color);
}

.feature-box {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.icon-wrap {
    /* width: 60px;
    height: 60px; */
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.icon-wrap img {
    width: 60px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(89%) saturate(2411%) hue-rotate(201deg) brightness(92%) contrast(93%);
    /* makes icon blue similar to reference */
}

.feature-title {
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.feature-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.4;
}


/* SECTION WRAPPER */

.gss-about-image-section {
    background: #f6f9ff;
    padding: 60px 0px;
}


/* IMAGE WRAP */

.gss-about-image-section .gss-about-image-section__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    /* margin: 0 20px; */
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.06);
}

.gss-about-image-section .gss-about-image-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.2, .9, .2, 1);
}


/* IMAGE HOVER ZOOM (desktop) */


/* IMAGE OVERLAY */

.gss-about-image-section .gss-about-image-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 37, 76, 0.20) 0%, rgba(3, 37, 76, 0.08) 45%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}


/* IMAGE ACCENT BADGE */

.gss-about-image-section .gss-about-image-section__accent {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.gss-about-image-section .gss-about-image-section__accent-text {
    display: block;
    padding: 10px 14px;
    background: rgba(13, 110, 253, 0.95);
    color: #fff;
    font-weight: 700;
    letter-spacing: .4px;
    font-size: 0.95rem;
}


/* CONTENT PANEL */

.gss-about-image-section .gss-about-image-section__content {
    background: linear-gradient(180deg, #fff, #f8fbff);
    border-radius: 18px;
    margin-left: -28px;
    /* overlap for premium feel */
    border: 1px solid rgba(13, 110, 253, 0.06);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.04);
    position: relative;
    z-index: 5;
}


/* HEADER ROW */

.gss-about-image-section .gss-about-image-section__header {
    align-items: center;
}


/* KICKER */

.gss-about-image-section .gss-about-image-section__kicker {
    display: inline-block;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
}


/* DIVIDER (small) */

.gss-about-image-section .gss-about-image-section__divider {
    width: 1px;
    height: 26px;
    background: rgba(13, 110, 253, 0.08);
}


/* TITLE */

.gss-about-image-section .gss-about-image-section__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #12263a;
    line-height: 1.25;
}

.gss-about-image-section .gss-about-image-section__highlight {
    color: #0d6efd;
    position: relative;
}

.gss-about-image-section .gss-about-image-section__highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, #cde2ff, rgba(13, 110, 253, 0.18));
}


/* BODY TEXT */

.gss-about-image-section .gss-about-image-section__body {
    color: #586069;
    font-size: 1rem;
    margin-top: 0.6rem;
    line-height: 1.7;
}


/* FEATURES GRID */

.gss-about-image-section .gss-about-image-section__features {
    margin-top: 1rem;
}

.gss-about-image-section .gss-about-image-section__feature {
    gap: 12px;
}

.gss-about-image-section .gss-about-image-section__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.02));
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.04);
}

.gss-about-image-section .gss-about-image-section__feature-text strong {
    display: block;
    font-weight: 700;
}

.gss-about-image-section .gss-about-image-section__feature-text .small {
    color: #7a8696;
}


/* BADGES */

.gss-about-image-section .gss-about-image-section__badges {
    margin-top: 1rem;
}

.gss-about-image-section .gss-about-image-section__badge {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border-radius: 999px;
    padding: .45rem .75rem;
    font-weight: 700;
    font-size: .875rem;
    border: 1px solid rgba(13, 110, 253, 0.06);
}


/* BUTTONS */

.gss-about-image-section .gss-about-image-section__btn-primary {
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.08);
}

.gss-about-image-section .gss-about-image-section__btn-outline {
    border-color: rgba(13, 110, 253, 0.12);
}


/* RESPONSIVE ADJUSTMENTS */


/* Custom Styles */

.visionMissionSection {
    padding: 80px 0 80px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.visionMissionSection .sectionTitle {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.visionMissionSection .sectionTitle h2 {
    font-weight: 200;
    color: #0b6fc7;
    margin-bottom: 15px;
}

.visionMissionSection .sectionTitle .titleUnderline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    margin: 0 auto;
    border-radius: 2px;
}

.vismisheading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visionMissionSection .visionContainer,
.visionMissionSection .missionContainer {
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.visionMissionSection .visionContainer {
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fc 100%);
    border-left: 5px solid #3498db;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.visionMissionSection .missionContainer {
    background: linear-gradient(135deg, #ffffff 0%, #e8f6ef 100%);
    border-left: 5px solid #2ecc71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}

.visionMissionSection .visionContainer:hover,
.visionMissionSection .missionContainer:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.visionMissionSection .visionIcon,
.visionMissionSection .missionIcon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.visionMissionSection .visionIcon {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.visionMissionSection .missionIcon {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.visionMissionSection .visionTitle,
.visionMissionSection .missionTitle {
    font-weight: 200;
    margin-bottom: 20px;
    color: #0b6fc7;
    font-size: 1.8rem;
}

.visionMissionSection .visionContent,
.visionMissionSection .missionContent {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 25px;
    font-style: italic;
}

.visionMissionSection .visionContent::before,
.visionMissionSection .missionContent::before {
    content: open-quote;
    font-size: 3rem;
    color: #3498db;
    line-height: 0;
    vertical-align: middle;
    margin-right: 10px;
}

.visionMissionSection .missionContent::before {
    color: #2ecc71;
}

.visionMissionSection .visionContent::after,
.visionMissionSection .missionContent::after {
    content: close-quote;
    font-size: 3rem;
    color: #3498db;
    line-height: 0;
    vertical-align: middle;
    margin-left: 10px;
}

.visionMissionSection .missionContent::after {
    color: #2ecc71;
}

.visionMissionSection .highlightBox {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    border: 1px solid #eaeaea;
}

.visionMissionSection .highlightTitle {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.visionMissionSection .highlightItem {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.visionMissionSection .visionHighlightItem i {
    color: #3498db;
    margin-right: 10px;
    margin-top: 3px;
}

.visionMissionSection .missionHighlightItem i {
    color: #2ecc71;
    margin-right: 10px;
    margin-top: 3px;
}

.visionMissionSection .highlightText {
    color: #5d6d7e;
    flex: 1;
}


/* Responsive adjustments */

.gssContentSection {
    padding: 40px 0 60px;
    font-family: 'Segoe UI', sans-serif;
    background: var(--white)
}

.gssContentSection .mainTitle {
    color: #1a5276;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.gssContentSection .subtitle {
    color: #5d6d7e;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.5;
}


/* Core Values - NEW LAYOUT */

.gssContentSection .valuesContainer {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gssContentSection .valuesTitle {
    color: #0b6fc7;
    font-weight: 700;
    /* font-size: 1.5rem; */
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e3f2fd;
}

.gssContentSection .valuesSubtitle {
    color: #000000;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 25px;
}

.gssContentSection .valuesList {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.gssContentSection .valuePill {
    background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
    border: 1px solid #bbdefb;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gssContentSection .valuePill:hover {
    background: linear-gradient(135deg, #bbdefb, #e3f2fd);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gssContentSection .valueIcon {
    color: #1a5276;
    font-size: 0.9rem;
}

.gssContentSection .valueLabel {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}


/* Quality Policy - NEW LAYOUT */

.gssContentSection .qualityContainer {
    background: white;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    overflow: hidden;
}

.qualityContainer-content {
    padding: 20px;
}

.qualityContainer ul {
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.qualityContainer ul li {
    margin-bottom: 5px;
    padding-left: 0;
}

.qualityContainer ul li i {
    color: #005cb9;
    font-size: 1.25rem;
    margin-right: 15px;
}

.globalprasence {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: url(../../Images/globalprasence-img.jpg) no-repeat fixed;
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.globalprasence hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 0px solid #eee;
}

.globalprasence h5 {
    text-align: center;
    color: #b1b1b1;
    padding-bottom: 20px;
    font-size: 13px;
    margin-top: 5px;
}

.gssContentSection .qualitySidebar {
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: -webkit-fill-available;
}

.gssContentSection .qualityIcon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #bbdefb;
}

.gssContentSection .qualityTitle {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.gssContentSection .qualitySubtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.gssContentSection .qualityContent {
    padding: 25px;
}

.gssContentSection .commitmentBox {
    background: #e8f4fc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid #1a5276;
}

.gssContentSection .commitmentText {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.gssContentSection .implementationTitle {
    color: #1a5276;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3f2fd;
}

.gssContentSection .implementationItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.gssContentSection .implementationItem:last-child {
    border-bottom: none;
}

.gssContentSection .stepIcon {
    background: #e3f2fd;
    color: #1a5276;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.gssContentSection .stepText {
    color: #2c3e50;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.global-presence-section {
    position: relative;
    padding: 120px 0 90px;
    color: #fff;
    overflow: hidden;
}

.global-presence-section .global-presence-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.global-presence-section .global-presence-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 110, 253, 0.35), rgba(0, 0, 0, 0.85));
    z-index: 2;
}

.global-presence-section .container {
    z-index: 3;
}


/* CONTENT */

.global-presence-section .global-presence-orbit-content {
    /* background: rgba(255, 255, 255, 0.12); */
    /* padding: 42px; */
    border-radius: 26px;
    /* backdrop-filter: blur(12px); */
}

.global-presence-section .orbit-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ec5fe;
}

.global-presence-section .orbit-title {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.global-presence-section .global-presence-orbit-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #e6e6e6;
}


/* COUNTS */

.global-presence-section .global-presence-counts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
}

.global-presence-section .count-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.global-presence-section .count-box h3 {
    font-size: 48px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 6px;
}

.global-presence-section .count-box span {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d0d0d0;
}


/* COUNTRIES RIBBON */

.global-presence-section .global-presence-ribbon {
    margin-top: 70px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.global-presence-section .country-ribbon-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.global-presence-section .country-ribbon-card img {
    width: 36px;
}

.global-presence-section .country-ribbon-card span {
    font-size: 14px;
    font-weight: 500;
}

.global-presence-section .country-ribbon-card:hover {
    background: rgba(13, 110, 253, 0.95);
    transform: translateY(-4px);
}


/* main slider container */

.main-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-slider-container .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.main-slider-container .slide.active {
    opacity: 1;
}

.main-slider-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider-container .overlay {
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%); */
    display: flex;
    align-items: center;
    z-index: 2;
}

.main-slider-container .overlay .slide-content {
    color: white;
    text-align: left;
}

.main-slider-container .overlay .slide-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0b6eca;
    /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); */
}

.main-slider-container .overlay .slide-content p {
    /* font-size: 1.3rem; */
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #000;
}

.main-slider-container .overlay .slide-content .btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-slider-container .overlay .slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.main-slider-container .slider-controls {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 3;
    display: flex;
    gap: 15px;
}

.main-slider-container .slider-controls .control-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.main-slider-container .slider-controls .control-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.main-slider-container .slider-indicators {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.main-slider-container .slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.main-slider-container .slider-indicators .indicator.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}


/* SLIDE BASE */

.main-slider-container .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease-in-out, transform 2.5s ease;
    will-change: transform, opacity;
}

.main-slider-container .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}


/* IMAGE */

.main-slider-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* SOFT DARK OVERLAY FOR READABILITY */

.main-slider-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
    z-index: 1;
}


/* CONTENT ANIMATION */

.main-slider-container .slide-content {
    animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* main slider container */

.tabs-caps {
    padding: 80px 0px;
    background-image: url(../../Images/Tablets-and-Capsules/connection-of-globe.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.tabs-caps h2 {
    font-weight: 200;
    color: #0b6eca;
}

.pharma-modal.fade .modal-dialog {
    transform: scale(0.96) translateY(10px);
    transition: all 0.35s ease;
}

.pharma-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

.pharma-header {
    background: #0b5ed7;
    color: #fff;
    padding: 10px 16px;
}

.pharma-body {
    background: #f8f9fa;
}

.pharma-table {
    font-size: 12.5px;
}

.pharma-table th {
    background: #e9ecef;
    font-size: 12px;
    padding: 8px;
    position: sticky;
    top: 0;
    z-index: 5;
}

.pharma-table td {
    padding: 6px 8px;
    line-height: 1.35;
}

.label-claim {
    white-space: pre-line;
    font-size: 12px;
}

.table-section th {
    background: #ffe5c4;
    font-weight: 600;
    text-align: center;
}

.pharma-pill-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

td strong {
    font-weight: normal !important;
}

.modal-body {
    position: relative;
    overflow-y: auto;
}

#tableSearch {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 46px;
    padding: 10px 14px 10px 42px;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239aa3ab' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 18px;
}


/* Optional separator when stuck */

#tableSearch::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: #e5e7eb;
}

@media (max-width: 767px) {
    table thead {
        display: none;
    }
    table,
    table tbody,
    table tr,
    table td {
        display: block;
        width: 100%;
    }
    table tbody tr {
        background: #ffffff;
        border: 1px solid #dee2e6;
        border-radius: 10px;
        padding: 12px 14px;
        margin-bottom: 16px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    }
    table tbody td {
        border: none;
        padding: 6px 0;
        font-size: 14px;
    }
    table tbody td:first-child {
        font-weight: 700;
        font-size: 16px;
        color: #0d6efd;
        margin-bottom: 8px;
    }
    table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #6c757d;
        margin-bottom: 2px;
        text-transform: uppercase;
    }
}


/* BASE PILL BUTTON */

.pill-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 12px 50px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}


/* TEXT */

.pill-text {
    z-index: 2;
    white-space: nowrap;
}


/* ICON BUBBLE (RIGHT SIDE) */

.pill-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.pill-icon i {
    font-size: 16px;
    transform: rotate(-45deg);
    transition: transform 0.35s ease;
}


/* HOVER EFFECT */

.pill-btn:hover {
    color: var(--black);
}

.pill-btn:hover .pill-icon {
    color: #000;
    font-weight: bold;
    background: #ffffff;
}

.pill-btn:hover .pill-icon i {
    transform: rotate(0deg);
}


/* SUBTLE LIFT */

.pill-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}


/* COLOR THEMES */

.pill-green {
    background: #22c55e;
}

.pill-blue {
    background: #2563eb;
}

.pill-violet {
    background: #7c3aed;
}

.pill-teal {
    background: #14b8a6;
}

.pill-cyan {
    background: #06b6d4;
}

.pill-orange {
    background: #f97316;
}

.pill-rose {
    background: #f43f5e;
    /* Rose / Pink */
}

.pill-amber {
    background: #f59e0b;
    /* Amber / Golden */
}

.pill-slate {
    background: #64748b;
    /* Slate / Neutral */
}


/* ICON COLOR MATCH */

.pill-btn:hover .pill-icon i {
    color: inherit;
}


/* CLICK */

.pill-btn:active {
    transform: scale(0.97);
}


/* RESPONSIVE */


/* Manufacturing */

.manufacturing-banner {
    position: relative;
    overflow: hidden;
    line-height: 0;
    height: 100vh;
    background-image: url(../Images/Accredations/Accredations.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video_section video {
    width: 100%;
    margin-top: -100px;
}

.video_section::after {
    content: '';
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    z-index: 1;
    height: 100%;
}

.manufacturing-banner-text {
    position: absolute;
    /* left: 0; */
    top: 15%;
    z-index: 10;
    width: 1000px;
}

.manufacturing-banner-text h1 {
    line-height: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 48px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    line-height: 54px;
}

.manufacturing-banner-text p {
    color: #fff;
    line-height: 25px;
}

.manufacturing-banner-2 {
    background-color: #ffffff;
    padding: 70px 0px;
    color: var(--white);
    position: relative;
}

.manufacturing-banner-2 p {
    color: #000;
    font-size: 15px;
    margin-top: 10px;
}

.manufacturing-banner-2 img {
    position: relative;
    margin-top: -150px;
    z-index: 12;
}

.manufacturing-banner-3 {
    padding: 70px 0px;
    background-color: #fff;
}

.manufacturing-banner-3 h2 {
    font-weight: 200;
    color: var(--logo-color);
}


/* 3 COLUMN GRID */

.wild-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 35px;
}


/* OUTER SKEWED BOX */

.wild-item {
    /* backdrop-filter: blur(0px) saturate(180%); */
    -webkit-backdrop-filter: blur(0px) saturate(180%);
    background-color: rgba(11, 111, 199, 1);
    border-radius: 12px;
    padding: 30px;
    transform: skew(-8deg) !important;
    transition: 0.35s ease;
    border-radius: 6px;
    position: relative;
}


/* INNER CONTENT – STRAIGHTEN BACK */

.wild-inner {
    transform: skew(8deg);
    text-align: center;
    z-index: 2;
    position: relative;
}


/* ICON */

.wild-icon i {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}


/* TITLE */

.wild-item h5 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}


/* PARAGRAPH */

.wild-item p {
    color: #d6d6d6;
    font-size: 15px;
    line-height: 1.6;
}


/* HOVER EFFECT */

.wild-item:hover {
    /* transform: skew(-8deg) translateY(-10px) !important; */
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.certifications-section {
    padding: 70px 0px;
    background: linear-gradient(135deg, #eef7ff, #f7ffe9);
}


/* Title */

.certifications-section .certifications-title {
    font-size: 30px;
    font-weight: 200;
    color: var(--logo-color);
    letter-spacing: 0.5px;
}


/* Subtitle */

.certifications-section .certifications-subtitle {
    max-width: 820px;
    font-size: 15px;
    color: #4a647a;
    line-height: 1.8;
}


/* Section headings */

.certifications-section .certifications-heading {
    font-size: 17px;
    font-weight: 600;
    color: #0b2e4e;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.certifications-section .certifications-heading::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #1e88e5;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}


/* Certification card */

.certifications-section .cert-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 18px 12px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 30px rgba(11, 46, 78, 0.08);
    border: 1px solid rgba(30, 136, 229, 0.15);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}


/* Hover accent */

.certifications-section .cert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(30, 136, 229, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.certifications-section .cert-card:hover::before {
    transform: translateX(100%);
}

.certifications-section .cert-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(11, 46, 78, 0.15);
}


/* Logo */

.certifications-section .cert-card img {
    max-height: 85px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

.certifications-section .cert-card:hover img {
    transform: scale(1.08);
}


/* Label */

.certifications-section .cert-card span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #1e88e5;
    background: rgba(30, 136, 229, 0.1);
    padding: 7px 8px;
    border-radius: 20px;
}

.services-banner {
    position: relative;
    margin-top: 100px;
    margin-bottom: 80px;
}

.services-banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    z-index: 9;
}

.gallery-banner .services-banner-text {
    top: 16%!important;
}

.services-banner-text h1 {
    font-weight: 200 !important;
    text-transform: none;
    color: #0b6fc7;
    font-size: 40px;
}

.services-banner-2 {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.services-banner-2 .services-banner-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b2c5d;
    margin-bottom: 12px;
}

.services-banner-2 .services-banner-heading p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0px;
}

.services-banner-2 .services-card-row {
    row-gap: 30px;
}

.services-banner-2 .services-card {
    display: block;
    height: 100%;
    text-decoration: none;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.services-banner-2 .services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.services-banner-2 .services-card-image {
    height: 220px;
    overflow: hidden;
}

.services-banner-2 .services-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-banner-2 .services-card:hover .services-card-image img {
    transform: scale(1.08);
}

.services-banner-2 .services-card-content {
    padding: 25px;
    text-align: center;
}

.services-banner-2 .services-card-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0b2c5d;
    margin-bottom: 10px;
}

.services-banner-2 .services-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.gss-contact-premium {
    padding: 80px 0;
    background: linear-gradient(62deg, #0d6efd 60%, #ffffff 32%);
}


/* LEFT PANEL */

.contact-brand {
    color: #ffffff;
    padding-right: 40px;
}

.contact-brand h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
}

.contact-brand h2 span {
    color: #dbeafe;
}

.contact-brand p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-brand .contact-note {
    margin-top: 14px;
    font-size: 15px;
    opacity: 0.9;
}


/* RIGHT SIDE */

.contact-details {
    background: #ffffff;
    border-radius: 20px 20px 20px 0px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}


/* OFFICE ROW */

.office-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 30px 0;
}

.office-row+.office-row {
    border-top: 1px solid #e5e7eb;
}

.office-label {
    font-weight: 700;
    font-size: 14px;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.office-info p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
}

.office-meta {
    margin-top: 12px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.office-meta a {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}


/* SOCIAL STRIP */

.contact-social-strip {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-social-strip span {
    font-weight: 600;
    color: #0f172a;
    margin-right: 10px;
}

.contact-social-strip a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0d6efd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-social-strip a:hover {
    background: #084298;
    transform: translateY(-3px);
}


/* FORM WRAP */

.contact-form-wrap {
    margin-top: 45px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px 0px 0px 20px;
    position: relative;
    z-index: 5;
}

.contact-form-wrap:after {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: -1;
    right: -100px;
}

.contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
}

.contact-form-wrap .form-subtext {
    margin-top: 6px;
    font-size: 15px;
    color: #6b7280;
}


/* FORM ELEMENTS */

.gss-contact-form {
    margin-top: 20px;
}

.gss-contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.gss-contact-form input,
.gss-contact-form select,
.gss-contact-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.gss-contact-form input:focus,
.gss-contact-form select:focus,
.gss-contact-form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}


/* SUBMIT BUTTON */

.form-submit {
    margin-top: 10px;
    background: #0d6efd;
    color: #ffffff;
    border: none;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #084298;
    transform: translateY(-2px);
}

.horizontal-gallery {
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
}

.horizontal-gallery .gallery-track {
    display: flex;
    gap: 30px;
    padding: 10vw 0 3vw;
}

.horizontal-gallery .gallery-card {
    flex: 0 0 calc(100vw / 3 - 20px);
    height: 70vh;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.horizontal-gallery .gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.horizontal-gallery .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-gallery .gallery-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.gallery-heading-section {
    padding: 60px 0 0px;
    background: #000;
    position: relative;
    top: 0px;
    z-index: 1;
    color: #fff;
}

.gallery-heading-section .section-title {
    font-size: 36px;
    font-weight: 200;
    color: #0b70c7;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.gallery-heading-section .section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}


/* Parent Section */

.gss-career-block {
    padding: 20px 0 80px;
    background: linear-gradient(120deg, #ffffff 60%, #f2f6fb 40%);
}


/* Image Card */

.gss-career-block .gss-career-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-align: end;
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15); */
}

.gss-career-block .gss-career-media-image {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}


/* Floating Tag */

.gss-career-block .gss-career-media-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 10px 18px;
    background: rgba(13, 110, 253, 0.95);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}


/* Content Area */

.gss-career-block .gss-career-content {
    padding-right: 20px;
}

.gss-career-block .gss-career-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 12px;
}

.gss-career-block .gss-career-heading {
    font-size: 24px;
    font-weight: 700;
    color: #096fca;
    margin-bottom: 20px;
}

.gss-career-block .gss-career-description {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}


/* CTA Panel */

.gss-career-block .gss-career-cta {
    margin-top: 30px;
    padding: 22px 26px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gss-career-block .gss-career-cta-text {
    display: block;
    /* font-size: 18px; */
    color: #0d6efd;
    font-weight: 600;
}

.gss-career-block .gss-career-cta-text span {
    font-size: 14px;
    color: #666;
}


/* Mail Button */

.gss-career-block .gss-career-cta-mail {
    padding: 12px 22px;
    border-radius: 50px;
    /* background: #0d6efd; */
    color: #0d6efd;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gss-career-block .gss-career-cta-mail:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.contactSection {
    padding: 0px 0px 80px;
    /* background: #f4f6fa; */
    position: relative;
}


/* Floating Accent Decoration */

.contactSection::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: #0d6efd22;
    border-radius: 50%;
    filter: blur(70px);
    animation: float1 6s ease-in-out infinite alternate;
}

@keyframes float1 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(40px);
    }
}


/* ============================================================
   WRAPPER BOX
============================================================ */

.contactWrapper {
    background: #ffffff;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.contactLeft,
.contactRight {
    padding: 50px;
}

.contactRight .infoItem i {
    font-size: 22px;
    color: #0d6efd;
    position: relative;
    width: 25px;
}


/* Accent Divider */

.contactWrapper::after {
    content: "";
    position: absolute;
    right: calc(50% - 4px);
    top: 40px;
    width: 6px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, #0d6efd, #0a58ca);
    border-radius: 20px;
}


/* ============================================================
   LEFT FORM AREA
============================================================ */

.contactLeft .title {
    font-size: 30px;
    font-weight: 700;
    color: #0b2c50;
}

.contactLeft .subText {
    font-size: 15px;
    color: #475569;
}


/* Form */

.contactForm .form-control {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #d0d6dd;
}

.contactForm .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.contactForm .submitBtn {
    border: none;
    padding: 12px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.contactForm .submitBtn:hover {
    opacity: 0.9;
}


/* ============================================================
   RIGHT INFO PANEL
============================================================ */

.contactRight .sideHeading {
    font-size: 26px;
    font-weight: 700;
    color: #0b2c50;
    margin-bottom: 20px;
}


/* Info items */

.contactRight .infoItem {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    position: relative;
}

.contactRight .infoItem i {
    font-size: 22px;
    color: #0d6efd;
}

.contactRight .infoItem p {
    margin: 0;
    color: #334155;
}


/* Social Icons */

.contactRight .socialIcons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef1f6;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: 0.3s;
}

.contactRight .socialIcons a:hover {
    background: #0d6efd;
}

.contactRight .socialIcons a:hover i {
    color: #fff;
}

.contactRight .socialIcons a i {
    color: #0d6efd;
    font-size: 18px;
}

.infra-banner-1 {
    background-color: #f2f4f7;
}

.infra-banner-1 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.infra-banner-1 .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.infra-banner-1 .go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #00205c;
    border-radius: 0 4px 0 32px;
}

.infra-banner-1 .go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.infra-banner-1 .card1 {
    display: block;
    position: relative;
    background-color: #01205c0d;
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    color: #000;
    z-index: 0;
    overflow: hidden;
    &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -16px;
        right: -16px;
        background: #00205c;
        height: 32px;
        width: 32px;
        border-radius: 32px;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-out;
    }
    &:hover:before {
        transform: scale(21);
    }
}

.infra-banner-1 .card1:hover {
    p {
        transition: all 0.3s ease-out;
        color: rgba(255, 255, 255, 0.8);
    }
    h3 {
        transition: all 0.3s ease-out;
        color: #ffffff;
    }
}

.infra-banner-1 .card1 h3 {
    font-size: 24px;
}

.infra-banner-1 {
    background-color: #01205c0d;
}

.infra-banner-1 .card1.active {
    background-color: #00205c;
    color: #fff;
    cursor: no-drop;
}

.infra-banner-1 .card1.active .go-arrow {
    display: none !important;
}


/* Responsive */

.testimonial-section {
    padding: 90px 0;
    background-image: url(../Images/h1-bg-testimol.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Container width */

.testimonial-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* Slider spacing */

.testimonial-section .testimonial-slider .slick-slide {
    padding: 15px;
}


/* Card Design */

.testimonial-section .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 350px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    gap: 15px;
}

.testimonial-slider {
    padding: 20px 0;
}

.testimonial-slider .slick-slide {
    height: auto;
}

.testimonial-card {
    margin: 0 15px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-section .testimonial-card:hover {
    transform: translateY(-6px);
}


/* Text */

.testimonial-section .testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}


/* Footer */

.testimonial-section .testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}


/* Name */

.testimonial-section .testimonial-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #000;
}


/* Image */

.testimonial-section .testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


/* Slick Dots */

.testimonial-section .slick-dots {
    bottom: -55px;
    display: flex !important;
    justify-content: center;
    gap: 14px;
}

.testimonial-section .slick-dots li {
    margin: 0;
}

.testimonial-section .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
}

.testimonial-section .slick-dots li button:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #000;
    opacity: 0.3;
    border-radius: 50%;
    display: block;
}

.testimonial-section .slick-dots li.slick-active button:before {
    background: #0d6efd;
    opacity: 1;
}

.event-gallery {
    background: #f7f8fc;
}

.event-gallery .section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.event-gallery .event-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.event-gallery .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.event-gallery .event-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
    color: #0d6fc9;
}

.event-gallery .event-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.event-gallery .event-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 250px;
}

.event-gallery .event-images img:hover {
    transform: scale(1.08);
}

.event-gallery .view-more {
    display: flex;
    margin: 30px auto 18px;
    background: linear-gradient(135deg, #0c6fc9, #0b6ecaa6);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    justify-content: center;
    align-items: center;
    width: 150px;
}

.event-gallery .view-more:hover {
    background: linear-gradient(135deg, #0b6ecaa6, #0c6fc9);
    color: #fff;
}


/* Responsive */

@media (max-width: 576px) {
    .event-gallery .event-images img {
        height: 250px;
    }
    .event-gallery .event-images {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .preloader-logo {
        max-width: 200px;
    }
    .preloader-text {
        font-size: 12px;
        letter-spacing: 0.8px;
    }
    .loader-line {
        width: 90px;
    }
}

@media (max-width: 576px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .pharma-pill-row {
        grid-template-columns: 1fr;
    }
    .gss-career-block .gss-career-heading {
        font-size: 26px;
    }
    .gss-career-block .gss-career-cta-mail {
        width: 100%;
        text-align: center;
    }
    .main-banner h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    .main-banner h2 br {
        display: none;
    }
    .about-section {
        padding: 40px 15px;
    }
    .about-section .about-container {
        gap: 25px;
    }
    .about-section .about-image img {
        border-radius: 12px;
    }
    .about-section .about-content {
        text-align: center;
    }
    .about-section .about-content .about-heading {
        font-size: 22px;
        line-height: 1.35;
    }
    .about-section .about-content .about-intro {
        font-size: 14px;
    }
    .about-section .about-content .about-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-link {
        padding: 0px 10px 20px 10px !important;
        font-size: 16px;
        color: #000;
    }
    .visionMissionSection {
        padding: 50px 0;
    }
    .visionMissionSection .sectionTitle h2 {
        font-size: 2rem;
    }
    .visionMissionSection .visionContainer,
    .visionMissionSection .missionContainer {
        margin-bottom: 30px;
    }
    .visionMissionSection .visionContent,
    .visionMissionSection .missionContent {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .gssContentSection {
        padding: 30px 0;
    }
    .gssContentSection .mainTitle {
        font-size: 1.6rem;
    }
    .gssContentSection .valuesList {
        flex-direction: column;
        align-items: stretch;
    }
    .gssContentSection .valuePill {
        justify-content: center;
    }
    .gssContentSection .qualitySidebar {
        padding: 20px;
    }
    .gssContentSection .qualityContent {
        padding: 20px;
    }
    .product-portfolio-banner .heading-text {
        font-weight: 200 !important;
        text-transform: none;
        color: #0b6fc7;
        font-size: 24px;
        line-height: calc(56 / 48);
    }
    .manufacturing-banner {
        margin-top: 30px;
    }
    .pharma-pill-row {
        grid-template-columns: repeat(1, 1fr);
    }
    .horizontal-gallery {
        height: auto;
        justify-content: center;
    }
    .horizontal-gallery .gallery-track {
        display: block;
        padding: 0;
    }
    .horizontal-gallery .gallery-card {
        width: 100%;
        height: 280px;
        margin-bottom: 16px;
    }
    .gallery-heading-section {
        padding: 50px 0 40px;
    }
    .gallery-heading-section .section-title {
        font-size: 28px;
    }
    .manufacturing-banner-text {
        position: relative;
        /* left: 0; */
        top: 15%;
        z-index: 10;
        width: 100%;
    }
    .manufacturing-banner-text h1 {
        line-height: 50px;
        font-weight: 600;
        letter-spacing: 1px;
        font-weight: 700;
        font-size: 40px;
        color: transparent;
        -webkit-text-stroke: 1px #fff;
        line-height: 45px;
    }
    .certifications-section {
        padding: 70px 20px;
        background: linear-gradient(135deg, #eef7ff, #f7ffe9);
    }
    .certifications-section .certifications-title {
        font-size: 24px;
        font-weight: 200;
        color: var(--logo-color);
        letter-spacing: 0.5px;
    }
    .services-banner-text h1 {
        font-weight: 200 !important;
        text-transform: none;
        color: #0b6fc7;
        font-size: 24px;
    }
    .services-banner-text {
        position: relative;
        left: 0;
        top: 0;
        transform: unset;
        text-align: center;
        color: #000000;
        z-index: 9;
    }
    .services-banner {
        position: relative;
        margin-top: 30px;
        margin-bottom: 0px;
    }
    .event-gallery .event-title {
        font-size: 24px;
    }
    .contactLeft,
    .contactRight {
        padding: 50px 20px;
    }
    .cutting-banner {
        padding: 80px 0px 40px;
    }
    .mobile-image-wrapper {
        position: relative;
        margin: 20px 0;
    }
    .mobile-img {
        /* width: 100%; */
        opacity: 0.35;
        /* Low opacity */
    }
}

@media (max-width: 991px) {
    .navbar-expand-md .navbar-nav {
        align-items: start;
    }
    .dropdown-menu[aria-labelledby="accountDropdown"],
    .dropdown-menu[aria-labelledby="servicesDropdown"] {
        width: 100%;
        min-width: 100%;
        border-radius: 10px;
    }
    /* Arrow always visible on mobile */
    .dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item::after,
    .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item::after {
        opacity: 1;
        transform: translateY(-50%);
    }
    /* Disable horizontal shift on touch */
    .dropdown-menu[aria-labelledby="accountDropdown"] .dropdown-item:hover,
    .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover {
        padding-right: 22px;
    }
    br {
        display: none;
    }
    .main-banner {
        background: none;
        /* remove background */
        min-height: auto;
        padding: 60px 0px 0px;
        display: block;
        text-align: center;
    }
    .main-banner h2 {
        color: #222;
        font-size: 32px;
        margin-bottom: 20px;
    }
    .main-banner .banner-img {
        display: block;
        /* show normal image */
    }
    .about-section {
        padding: 50px 20px;
    }
    .about-section .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-section .about-image img {
        max-height: 380px;
        object-fit: cover;
    }
    .experience-banner .heading-text,
    .cutting-banner .heading-text {
        font-weight: 200 !important;
        text-transform: none;
        color: #0b6fc7;
        font-size: 22px;
        line-height: calc(56 / 48);
    }
    /* Container becomes vertical */
    .main-slider-container {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        padding-top: 10px;
        padding-bottom: 30px;
    }
    /* TEXT BLOCK FIRST */
    .main-slider-container .overlay {
        position: relative;
        order: 1;
        top: 0;
        background: none;
        padding-bottom: 20px;
        z-index: 2;
    }
    .main-slider-container .slide-content {
        text-align: center;
        padding: 0 15px;
    }
    .main-slider-container .slide-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
        text-align: center;
        font-weight: 500;
    }
    .main-slider-container .slide-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    /* SLIDER SECOND */
    .main-slider-container .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: scale(1.08);
        transition: opacity 1s ease, transform 2s ease;
    }
    .main-slider-container .slide.active {
        opacity: 1;
        transform: scale(1);
        position: relative;
    }
    .main-slider-container .slide img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    }
    /* Keep slider visible only once */
    .main-slider-container .slide:not(.active) {
        display: none;
    }
    /* Indicators below slider */
    .main-slider-container .slider-indicators {
        position: relative;
        order: 3;
        justify-content: center;
        margin-top: 15px;
        right: auto;
        bottom: auto;
    }
    .products-section .readmore-btn {
        opacity: 1;
        transform: none;
    }
    .product-portfolio-banner {
        padding-bottom: 0px;
    }
    .gss-about-image-section .gss-about-image-section__image-wrap:hover .gss-about-image-section__image {
        transform: scale(1.04);
    }
    .gss-about-image-section .gss-about-image-section__image-wrap {
        margin: 0;
        border-radius: 14px 14px 0 0;
        min-height: 260px;
    }
    .gss-about-image-section .gss-about-image-section__content {
        margin-left: 0;
        border-radius: 0 0 14px 14px;
    }
    .gss-about-image-section .gss-about-image-section__accent {
        left: 12px;
        top: 12px;
    }
    .gss-about-image-section .gss-about-image-section__title {
        font-size: 1.4rem;
    }
    .gss-contact-premium {
        background: #0d6efd;
    }
    .contact-details {
        margin-top: 30px;
    }
    .office-row {
        grid-template-columns: 1fr;
    }
    .contactWrapper::after {
        display: none;
    }
    .gss-career-block {
        padding: 60px 0;
        background: #ffffff;
    }
    .gss-career-block .gss-career-heading {
        font-size: 30px;
    }
    .gss-career-block .gss-career-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}