@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --pantone-blue-300c: #0056B8;
    --light-blue: #e6f2ff;
    --medium-blue: #b3d9ff;
    --dark-blue: #003d80;
    --black: #000;
    --white: #fff;
    --gray-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gill Sans MT';
    src: url('Assets/fonts/GIL_____.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    font-weight: 200;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-weight: 200 !important;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
}


/* ==============================
   Header Default (absolute)
============================== */

header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease-in-out;
    height: 18vh;
    border-bottom: 2px solid var(--pantone-blue-300c);
}


/* Navbar styles */

header .navbar {
    padding: 10px 0;
    transition: all 0.4s ease-in-out;
}


/* Logo */

header .navbar-brand img {
    width: 90px;
    transition: all 0.4s ease-in-out;
}


/* When sticky (scrolled) */

header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    animation: slideDown 0.6s ease;
}


/* Shrink navbar padding and logo */

header.sticky .navbar {
    padding: 0.4rem 0;
}

header.sticky .navbar-brand img {
    width: 100px;
    /* filter: drop-shadow(0 0 4px rgba(0, 86, 184, 0.4)); */
}


/* Animation */

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-nav {
    align-items: center;
    justify-content: end;
}


/* ==============================
   Glass Nav Links & Hover
============================== */

.navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
    font-size: 14.4px;
    border-radius: 30px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0b6ec7;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 12px rgba(0, 198, 255, 0.3);
    transform: translateY(-1px);
}


/* Contact top bar inside header */

.nav-top {
    background: transparent;
    transition: all 0.3s ease;
}

header.sticky .nav-top {
    background: transparent;
    border-bottom: none;
}


/* Responsive adjustments */

@media (max-width: 992px) {
    header .navbar-brand img {
        width: 140px;
    }
    header.sticky .navbar-brand img {
        width: 110px;
    }
}


/* ========== Dropdown Menu (Glassmorphic Style) ========== */

.navbar-nav .dropdown-menu {
    background: rgb(11 110 199 / 96%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 10px;
    animation: dropdownFade 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

header.sticky .navbar-nav .dropdown-menu {
    background: rgb(11 110 199 / 96%);
    backdrop-filter: blur(56px);
    -webkit-backdrop-filter: blur(14px);
    border: transparent;
    border-radius: 5px;
    box-shadow: 0 0px 35px rgba(0, 86, 184, -3.65);
    padding: 10px 10px;
    transition: all 0.4s ease;
}


/* Dropdown items (inside sticky header) */

header.sticky .navbar-nav .dropdown-item {
    color: #fff;
    background: transparent;
    padding: 10px 20px;
    transition: all 0.3s ease;
}


/* Hover effect – subtle glass glow */

header .navbar-nav .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    transform: translateX(5px);
}


/* Dropdown arrow color adjustment for sticky mode */

header.sticky .navbar-nav .nav-link.dropdown-toggle::after {
    color: #e0f3ff;
}


/* Optional: smoother dropdown slide */

header.sticky .navbar-nav .dropdown-menu {
    animation: stickyDropdownSlide 0.3s ease forwards;
}

@keyframes stickyDropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Dropdown items - clean look, no background */

.navbar-nav .dropdown-item {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
    position: relative;
}


/* Remove any default Bootstrap hover bg */

.navbar-nav .dropdown-item:active,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover {
    background: transparent;
    color: #00c6ff;
    padding-left: 25px;
}


/* ========== Glass Arrow Icon ========== */

.navbar-nav .dropdown-item::after {
    content: '\f285';
    /* Bootstrap icon: arrow-right-short */
    font-family: "bootstrap-icons";
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-left: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateX(-6px);
    color: #00c6ff;
    transition: all 0.4s ease;
    box-shadow: 0 0 8px rgba(0, 198, 255, 0.3);
}


/* Hover effect - reveal glass arrow */

.navbar-nav .dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(6px);
    background: rgba(0, 198, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 198, 255, 0.4);
    color: var(--white);
}


/* Transparent top bar — no fixed or absolute */

.nav-top {
    background: #0b6ec7;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
    position: relative;
}


/* Contact buttons (glassmorphism style) */

.nav-top .contact-item {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    /* border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); */
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 50px
}

.nav-top .contact-item i {
    font-size: 1rem;
    color: #00c6ff;
    transition: all 0.3s ease;
}


/* Hover effects */

.nav-top .contact-item:hover {
    background: rgba(0, 114, 255, 0.18);
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.4);
    transform: translateY(-2px);
}

.nav-top .contact-item:hover i {
    color: var(--white);
    transform: scale(1.2) rotate(8deg);
}


/* Before animation layer */

.nav-top .contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 198, 255, 0.3), rgba(0, 114, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
    border-radius: inherit;
}

.nav-top .contact-item:hover::before {
    left: 0;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .nav-top .container {
        justify-content: center !important;
        flex-direction: column;
        gap: 8px;
    }
    .nav-top .contact-item {
        font-size: 0.9rem;
    }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    display: none !important;
}

.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;
}


/* =======================
       FULL-WIDTH BANNER SECTION
       ======================= */

.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('../Images/Banner/Banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}


/* Glass overlay */


/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0px) saturate(180%);
    -webkit-backdrop-filter: blur(0px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.32);
    z-index: 1;
} */


/* Content wrapper */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: start;
    color: #fff;
    max-width: 900px;
    padding: 20px 20px 50px;
    animation: fadeUp 1.5s ease;
}


/* Main Heading */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 25px rgba(0, 86, 184, 0.5);
}


/* Subheading */

.hero-content p {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 20px 0 40px;
    color: #ffffff;
    opacity: 0.9;
}


/* CTA Button */

.hero-content .btn-glass {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    /* make button text stay above overlay */
}

.hero-content .btn-glass span {
    position: relative;
    z-index: 2;
    /* ensures text is always visible */
}


/* Animated gradient overlay */

.hero-content .btn-glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #00c6ff, #0056b8);
    transition: all 0.5s ease;
    z-index: 0;
    border-radius: inherit;
}


/* On hover - gradient slides in */

.hero-content .btn-glass:hover::before {
    left: 0;
}

.hero-content .btn-glass:hover {
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 86, 184, 0.6);
    transform: translateY(-3px);
}


/* Animation */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 65vh;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 1.2rem;
    }
    .hero-content p {
        font-weight: 400;
        margin: 15px 0 15px;
        color: #ffffff;
        opacity: 0.9;
    }
    .hero-content p br {
        display: none;
    }
    .hero-content .btn-glass {
        padding: 10px 26px;
        font-size: 0.9rem;
    }
}

.services-section {
    padding: 60px 0px;
    position: relative;
}

.services-section a {
    text-decoration: none;
}


/* Left Heading */

.services-section .sec-subtitle {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 12px;
}


/* Service Box */

.service-box {
    background: #ffffff;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #f1f1f1;
}


/* Clean spacing */


/* Animated overlay */

.service-box::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    background: rgba(0, 123, 255, 0.08);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.45s ease-out;
}

.service-box:hover::before {
    width: 190%;
    height: 190%;
}

.service-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--pantone-blue-300c);
    line-height: 1.4;
    padding: 20px;
    text-align: center;
    margin-bottom: 0;
}


/* Responsive Tweaks */

@media (max-width: 768px) {
    .service-box {
        padding: 28px 12px 0;
    }
    .service-title {
        font-size: 14px;
    }
    .services-section .sec-subtitle {
        font-size: 15px;
    }
}

.glass-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    background: rgb(11 110 199);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.glass-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose {
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.why-choose {
    padding-top: 60px;
}

.why-choose .section-header h2 {
    font-weight: 200;
    color: var(--pantone-blue-300c);
}

.why-choose .trust-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 30px;
    margin: 10px 5px;
    color: var(--black);
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    color: var(--pantone-blue-300c);
    margin-right: 8px;
}

.gss-services-section {
    background-color: transparent;
    padding: 20px 0 80px;
}


/* CARD-LIKE ROW */

.gss-services-section .gss-service-row {
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 35px;
    margin-bottom: 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/* IMAGE BASE */

.gss-services-section .gss-service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


/* IMAGE */

.gss-services-section .gss-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CLIP SHAPES */

.gss-services-section .shape-one {
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.gss-services-section .shape-two {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.gss-services-section .shape-three {
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.gss-services-section .shape-four {
    clip-path: polygon(0 0, 100% 8%, 92% 100%, 0% 100%);
}

.gss-services-section .shape-five {
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 92%);
}


/* CONTENT */

.gss-services-section .gss-service-content {
    padding: 15px 35px;
}

.gss-services-section .gss-service-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 14px;
}

.gss-services-section .gss-service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    max-width: 520px;
}


/* BUTTON */

.gss-services-section .gss-readmore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 9px 26px;
    border-radius: 30px;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gss-services-section .gss-readmore-btn:hover {
    background: #084298;
    transform: translateY(-2px);
}


/* RESPONSIVE */

.latest-news-section {
    background: #5fa0da;
    color: #fff;
    display: none;
}

.news-video-box video {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.news-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.news-subtitle::before {
    content: "";
    width: 3px;
    height: 28px;
    background: #fff;
    position: absolute;
    left: 0;
    top: -2px;
}

.news-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.news-text {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.news-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 26px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.news-btn:hover {
    background: #fff;
    color: #0d0b88;
}

.expertise-section {
    background: #fff;
}

.expertise-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0b6ec7;
    /* background: #0c6fc7; */
    width: max-content;
}


/* CARD */

.expertise-box {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    transition: 0.35s ease;
}


/* ICON WRAP */

.icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
}


/* BEFORE / AFTER CIRCLE ANIMATION */

.icon-wrap::before,
.icon-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: 0.35s ease;
}

.icon-wrap::before {
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.icon-wrap::after {
    border: 2px solid rgba(0, 0, 0, 0.12);
}


/* ICON */

.icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    transition: 0.3s ease;
    /* Blue color effect */
    /* filter: brightness(0) invert(1) sepia(1) saturate(6000%) hue-rotate(200deg); */
}


/* TEXT */

.expertise-box p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.35;
}


/* HOVER EFFECT */

.expertise-box:hover .icon-wrap img {
    transform: scale(1.1);
}

.expertise-box:hover .icon-wrap::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.expertise-box:hover .icon-wrap::after {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}


/* Section wrapper */

.certifications-section {
    /* background: linear-gradient(180deg, rgba(0,86,184,0.04), rgba(0,86,184,0.02)); */
    color: var(--black);
    padding: 60px 0px;
}

.certifications-section .cert-subtext {
    color: rgba(0, 0, 0, 0.75);
}


/* Partner logos grid */

.partner-item {
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(5, 20, 40, 0.03);
    transition: transform .18s ease, box-shadow .18s ease;
}

.partner-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(5, 20, 40, 0.06);
}

.partner-logo {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
}


/* Abous */

.inside-bg {
    background-color: #f6f8fc;
    position: relative;
    height: 8vh
}


/* Section Base */

.about-gss {
    color: var(--black);
    padding-bottom: 80px;
}


/* Content Inside Glass */

.about-gss__glass h2 {
    color: #0d6efd;
}

.about-gss .about-gss__content {
    color: var(--black);
}

.about-gss .about-gss__text {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-gss .about-gss__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-gss .about-gss__list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.8);
}

.about-gss .about-gss__list .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pantone-blue-300c);
}

.about-gss .about-gss__note {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
}


/* Image Styling */

.about-gss .about-gss__image-wrap {
    position: relative;
}

.about-gss .about-gss__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vision-mission-section {
    padding-bottom: 60px;
}

.vision-mission-section .section-header,
.commitments-section .section-header,
.pvSection .section-header,
.pv-wrapper .section-header,
.pv-services-section .section-header,
.pv-process-section .section-header,
.services-section .section-header {
    margin-bottom: 40px;
    font-weight: 200;
}

.vision-mission-section .section-header h2,
.commitments-section .section-header h2,
.pvSection .section-header h2,
.pv-wrapper .section-header h2,
.pv-services-section .section-header h2,
.pv-process-section .section-header h2,
.services-section .section-header h2 {
    font-weight: 200;
    color: #0c6ec7;
}

.vision-mission-section .card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.vision-mission-section .card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.vision-mission-section .card:hover::after {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
}

.vision-mission-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision-mission-section .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: none;
}

.vision-mission-section .card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.vision-mission-section .card-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.vision-mission-section .card-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    font-weight: 200;
    color: #0d6efd;
}

.vision-mission-section .card-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 2;
}

.counter-section {
    padding: 60px 0;
    position: relative;
    background-image: url('../Images/Banner/doctor-check-3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c6ec7 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 200;
}

.counter-section .section-header h2 {
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins' !important;
    font-weight: 200;
}

.counter-section .section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 200;
}

.counter-section .counter-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.counter-section .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.counter-section .icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

.counter-section .counter-value {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.counter-section .counter-suffix {
    font-size: 36px;
}

.counter-section .counter-title {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.commitments-section {
    background: /* radial-gradient(circle at 15% 25%, rgba(0, 86, 184, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(0, 86, 184, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 86, 184, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 120, 215, 0.2) 0%, transparent 45%), */
    var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}


/* .commitments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.03) 3px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
} */

.commitments-section .section-header .underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.commitments-section .section-header h2 {
    color: var(--pantone-blue-300c);
    font-weight: 200;
}

.commitments-section .commitment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


/* .commitments-section .commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 91%) 0% 0%, rgb(0 0 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.commitments-section .commitment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.commitments-section .commitment-card:hover::before {
    opacity: 1;
}

.commitments-section .commitment-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgb(189 183 183);
    transition: all 0.4s ease;
}

.commitments-section .commitment-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: rgb(189 183 183);
}

.commitments-section .commitment-card .icon-wrapper i {
    font-size: 2.5rem;
    color: var(--pantone-blue-300c);
}

.commitments-section .commitment-card:hover {
    color: var(--white);
}

.commitments-section .commitment-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pantone-blue-300c);
    margin-bottom: 15px;
    text-align: center;
}

.commitments-section .commitment-card p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.commitments-section .commitment-card .badge-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgb(11 110 199);
    /* backdrop-filter: blur(5px); */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.facility-team-section {
    background-color: var(--white);
    color: var(--black);
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-card__img {
    width: 140px;
    height: 140px;
    border: 5px solid var(--pantone-blue-300c);
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-weight: 700;
    margin-top: 15px;
    color: var(--black);
}

.team-card__role {
    color: var(--pantone-blue-300c);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card__desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.team-card__socials {
    background: var(--pantone-blue-300c);
    padding: 10px 0;
    border-radius: 6px;
}

.team-card__socials a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.team-card__socials a:hover {
    color: #e0e0e0;
}

.facility-team-section .credit {
    font-size: 0.8rem;
    color: #777;
}

.service-banner {
    /* background-image: url(../Images/Services/Untitled-2.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    padding-top: 270px;
    margin-top: -200px;
}

.regulatory-timeline {
    background: linear-gradient(180deg, rgba(0, 86, 184, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--black);
}

.regulatory-timeline .regulatory-timeline__title {
    color: var(--pantone-blue-300c);
    font-weight: 700;
    font-size: 2rem;
}

.regulatory-timeline .regulatory-timeline__subtitle {
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}


/* Timeline Layout */

.regulatory-timeline .timeline {
    position: relative;
    margin-top: 3rem;
    gap: 1rem;
}

.regulatory-timeline .timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 3px;
    background: rgba(0, 86, 184, 0.25);
    transform: translateY(-50%);
    z-index: 1;
}


/* Individual Step */

.regulatory-timeline .timeline__step {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    width: 22%;
    min-width: 200px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.regulatory-timeline .timeline__step:hover .timeline__icon {
    transform: scale(1.1);
    color: #fff;
    background: linear-gradient(135deg, #0078ff, #00c6ff);
}

.regulatory-timeline .timeline__icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
    font-size: 36px;
    color: #0078ff;
    box-shadow: 0 4px 20px rgba(0, 120, 255, 0.15);
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.regulatory-timeline .timeline__heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pantone-blue-300c);
    margin-bottom: 0.5rem;
}

.regulatory-timeline .timeline__text {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}


/* Services Section */

.services-section {}

.services-section .services-grid {
    row-gap: 1.5rem;
}

.services-section .services-grid .service-card {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.services-section .services-grid .service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.services-section .services-grid .service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pantone-blue-300c), #0066cc);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
}

.services-section .services-grid .service-card .service-title {
    font-size: 1.25rem;
    margin-bottom: 0px;
}

.services-section .services-grid .service-card .service-description {
    margin-bottom: 0;
}


/* Capabilities Section */

.capabilities-section {
    overflow: hidden;
}

.capabilities-section .capabilities-list-wrapper .feature-list {
    list-style: none;
    padding: 0;
}

.capabilities-section .capabilities-list-wrapper .feature-list .feature-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: start;
}

.capabilities-section .capabilities-list-wrapper .feature-list .feature-item:last-child {
    border-bottom: none;
}

.capabilities-section .capabilities-list-wrapper .feature-list .feature-item .feature-icon {
    color: var(--pantone-blue-300c);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 3px;
}

.capabilities-section .capabilities-list-wrapper .feature-list .feature-item .feature-text {
    flex: 1;
}

.capabilities-section .image-wrapper {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
}

.capabilities-section .image-wrapper .precision-box {
    background: linear-gradient(135deg, #0056b3 0%, #28a745 100%);
    padding: 60px;
    border-radius: 15px;
    color: white;
}

.capabilities-section .image-wrapper .precision-box .precision-icon {
    font-size: 100px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.capabilities-section .image-wrapper .precision-box .precision-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.capabilities-section .image-wrapper .precision-box .precision-description {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.differentiators-section {
    padding: 30px 0px 60px;
}

.differentiators-section .differentiators-grid .diff-box {
    background: linear-gradient(135deg, #1e7e34, #0066cc);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

.differentiators-section .differentiators-grid .diff-box:hover {
    transform: translateY(-5px);
}

.differentiators-section .differentiators-grid .diff-box.green-gradient {
    background: linear-gradient(135deg, #1e7e34, #1e7e34);
}

.differentiators-section .differentiators-grid .diff-box.blue-gradient {
    background: linear-gradient(135deg, #0056b3, #003d82);
}

.differentiators-section .differentiators-grid .diff-box.purple-gradient {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.differentiators-section .differentiators-grid .diff-box .diff-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.differentiators-section .differentiators-grid .diff-box .diff-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.differentiators-section .differentiators-grid .diff-box .diff-description {
    margin-bottom: 0;
}

.key-stats-section {
    background: linear-gradient(135deg, #e9f4ff, #f4f9ff);
}

.key-stats-section .key-stats-section__title {
    font-size: 2.2rem;
    color: #0056B8;
    font-weight: 700;
}

.key-stats-section .key-stats-section__subtitle {
    font-size: 1.05rem;
    color: #333;
}


/* Glassmorphism Cards */

.key-stats-section .key-stats-section__card {
    padding: 35px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 184, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all .3s ease;
    overflow: hidden;
}


/* Neon Hover Border Effect */

.stats-grid-container {
    padding: 80px 0px;
    background-image: url(../Images/Services/world-map.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    color: #000000
}


/* Glass Box */

.stats-grid-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px 10px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}


/* Hover Glow */

.stats-grid-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 86, 184, 0.35);
    border-color: rgba(0, 86, 184, 0.6);
}


/* Value Text */

.stats-grid-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0056B8;
    margin: 0 0 6px 0;
}


/* Label */

.stats-grid-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
}


/* pharmacovigilence */


/* .pv-what-is-section{
    padding-bottom: 80px ;
 } */

.pv-icon-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pv-icon-box h4 {
    font-weight: 200;
}

.pv-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pv-icon-box i {
    font-size: 50px;
    color: var(--pantone-blue-300c);
    margin-bottom: 20px;
}

.pv-process-step {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pv-process-step .pv-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--pantone-blue-300c);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 15px;
}

.pv-flowchart {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pv-flowchart .pv-flow-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.pv-flowchart .pv-flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--pantone-blue-300c);
}

.pv-flowchart .pv-flow-step .pv-flow-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--pantone-blue-300c);
    font-size: 30px;
}

.pv-bg-light-blue {
    background-color: var(--light-blue);
}

.pv-quote-box {
    background-color: var(--light-blue);
    border-left: 5px solid var(--pantone-blue-300c);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
}

.pv-service-list {
    list-style-type: none;
    padding-left: 0;
}

.pv-service-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.pv-service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pantone-blue-300c);
    font-weight: bold;
}

.pv-medication-safety-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pv-wrapper {
    --bg-1: #f6fbff;
    --bg-2: #eef7ff;
    --accent: #0ea5a4;
    --muted: #5b6168;
}


/* SECTION BASE */

.pvSection {
    background: #ffffff;
    padding: 60px 0px 30px;
}

.pvSection .pvHeader .pvTitle {
    font-size: 32px;
    font-weight: 700;
    color: #0b2c50;
    text-align: center;
}

.pvSection .pvHeader .pvSubtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 50px;
}


/* LEFT COLUMN */

.pvSection .pvLeft .pvLeftBox {
    border-left: 5px solid #007bff;
    padding-left: 20px;
}

.pvSection .pvLeft .pvLeftTitle {
    font-size: 24px;
    /* font-weight: 700; */
    color: #0b2c50;
}

.pvSection .pvLeft .pvLeftDesc {
    color: #475569;
    margin-top: 10px;
    line-height: 1.6;
}


/* TIMELINE WRAPPER */

.pvSection .pvRight .pvTimeline {
    position: relative;
    margin-left: 25px;
}


/* VERTICAL LINE */

.pvSection .pvRight .pvTimeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #bcd7ff;
}


/* TIMELINE ITEM */

.pvSection .pvRight .pvTimeline .pvTimelineItem {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}


/* ICON CIRCLE */

.pvSection .pvRight .pvIcon {
    width: 32px;
    height: 32px;
    background: #d6eaff;
    border-radius: 50%;
    position: absolute;
    left: -1px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pvSection .pvRight .pvIcon i {
    color: #0d6efd;
    font-size: 16px;
}


/* TEXT CONTENT */

.pvSection .pvRight .pvTextContent h4 {
    font-size: 20px;
    /* font-weight: bold; */
    color: #0b2c50;
}

.pvSection .pvRight .pvTextContent p {
    color: #475569;
    margin-top: 6px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .pvSection .pvRight .pvTimeline {
        margin-left: 0;
    }
    .pvSection .pvRight .pvTimeline::before {
        left: 5px;
    }
    .pvSection .pvRight .pvTimeline .pvTimelineItem {
        padding-left: 40px;
    }
}

.pv-wrapper {
    padding: 60px 0px;
}

.pv-wrapper .pv-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 30px;
    height: 100%;
}

.pv-wrapper .pv-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.pv-wrapper .pv-sub {
    color: var(--muted);
    font-size: 0.95rem;
}

.pv-wrapper .pv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0;
    margin: 0;
}

.pv-wrapper .pv-list .pv-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pv-wrapper .pv-list .badge {
    font-weight: normal;
}

.pv-wrapper .pv-list .pv-item .pv-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(14, 165, 164, 0.12), rgba(14, 165, 164, 0.06));
    color: var(--accent);
    box-shadow: inset 0 -2px 0 rgba(14, 165, 164, 0.06);
    flex: 0 0 36px;
    margin-top: 4px;
}

.pv-wrapper .pv-list .pv-item-title {
    font-weight: 600;
}

.pv-wrapper .pv-list .pv-item-desc {
    color: var(--muted);
    font-size: 0.95rem;
}

.pv-wrapper .pv-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 14px;
    height: 100%;
    background: linear-gradient(180deg, rgba(14, 165, 164, 0.06), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(15, 23, 42, 0.02);
}

.pv-wrapper .pv-illustration .badge {
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 165, 164, 0.12);
    color: var(--accent);
}

.pv-wrapper .pv-illustration .pv-ill-img {
    width: 100%;
    max-width: 260px;
    margin-top: 1rem;
    opacity: 0.98;
}

.pv-process-section {
    padding-top: 60px;
}


/* Section Background */

.pv-flow-section {
    background: #f6f8ff;
    padding: 60px 0;
}


/* Intro Paragraph */

.pv-flow-intro {
    font-size: 17px;
    color: #222;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}


/* Wrapper */

.pv-flow-wrapper {
    position: relative;
    margin-left: 40px;
    padding-left: 25px;
    border-left: 3px solid #0056b8;
}


/* Each Step */

.pv-flow-item {
    position: relative;
    margin-bottom: 40px;
}


/* Marker Circle */

.flow-marker {
    width: 18px;
    height: 18px;
    background: #0056b8;
    border-radius: 50%;
    position: absolute;
    left: -34px;
    top: 5px;
    box-shadow: 0px 4px 10px rgba(0, 86, 184, 0.4);
}


/* Content Box */

.flow-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 25px;
    border: 1px solid #dbe5f7;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.flow-content:hover {
    transform: translateX(5px);
    border-color: #0056b8;
    box-shadow: 0px 14px 25px rgba(0, 0, 0, 0.10);
}


/* Number (Title) */

.flow-title {
    font-size: 22px;
    font-weight: 700;
    color: #0056b8;
    margin-bottom: 8px;
}


/* Info Text */

.flow-info {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}


/* Footer */

.pv-flow-footer {
    font-size: 17px;
    color: #555;
    margin-top: 30px;
    line-height: 1.8;
    margin-left: 70px;
}


/* ===========================================================
           SECTION 1 — VERTICAL CARD LAYOUT WITH TOP ICONS
        =========================================================== */

.gss-sec1fresh-section {
    background: #ffffff;
    padding-top: 60px;
}

.gss-sec1fresh-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.gss-sec1fresh-block {
    background: linear-gradient(135deg, #F8FBFF 0%, #FFFFFF 100%);
    border-radius: 20px;
    border: 2px solid #E3EFFF;
    box-shadow: 0px 10px 30px rgba(0, 86, 184, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gss-sec1fresh-block:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 20px 50px rgba(0, 86, 184, 0.18);
}

.gss-sec1fresh-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056B8 0%, #0073E6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0px 8px 20px rgba(0, 86, 184, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    display: none;
}

.gss-sec1fresh-block:hover .gss-sec1fresh-icon {
    transform: rotateY(360deg);
    box-shadow: 0px 12px 30px rgba(0, 86, 184, 0.4);
}

.gss-sec1fresh-icon i {
    font-size: 36px;
    color: #fff;
}

.gss-sec1fresh-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.gss-sec1fresh-content h3 {
    font-size: 22px;
    color: #0056B8;
    margin-bottom: 15px;
    font-weight: 200;
}

.gss-sec1fresh-content p {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.8;
}


/* Image overlay for section 1 */

.gss-sec1fresh-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gss-sec1fresh-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gss-sec1fresh-block:hover .gss-sec1fresh-image img {
    transform: scale(1.1);
}


/* ===========================================================
           SECTION 2 — CREATIVE GRID WITH BADGE ICON CORNERS
        =========================================================== */

.gss-sec2fresh-section {
    padding: 80px 0px;
    background: #ffffff;
}

.gss-sec2fresh-container {
    max-width: 1150px;
    margin: 0 auto;
}

.gss-sec2fresh-title {
    text-align: center;
    font-size: 36px;
    color: #0056B8;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.gss-sec2fresh-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0056B8, #00A8E8);
    border-radius: 2px;
}

.gss-sec2fresh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gss-sec2fresh-card {
    background: linear-gradient(145deg, #F6F9FF 0%, #ffffff 100%);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #dce6f7;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gss-sec2fresh-card .badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0056B8 0%, #003f88 100%);
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 86, 184, 0.3);
}

.gss-sec2fresh-card .badge i {
    font-size: 20px;
    color: #fff;
}

.gss-sec2fresh-card h4 {
    font-size: 20px;
    color: #0056B8;
    margin-bottom: 12px;
    font-weight: 200;
}

.gss-sec2fresh-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}


/* Image for section 2 cards */

.gss-sec2fresh-image {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gss-sec2fresh-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gss-sec2fresh-card:hover .gss-sec2fresh-image img {
    transform: scale(1.08);
}

.gss-sec2fresh-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 184, 0.1) 0%, transparent 100%);
}


/* ===========================================================
           SECTION 3 — ELEGANT SPLIT REGULATORY PANEL
        =========================================================== */

.gss-sec3fresh-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F0F4F8 0%, #E8EFF7 100%);
}

.gss-sec3fresh-container {
    max-width: 1150px;
    margin: 0 auto;
}

.gss-sec3fresh-panel {
    display: flex;
    background: #e9eff7;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0px 20px 60px rgba(0, 40, 100, 0.12); */
    flex-wrap: wrap;
    /* border: 1px solid #DDE7F3; */
    gap: 40px;
}

.gss-sec3fresh-left,
.gss-sec3fresh-right {
    flex: 1 1;
    min-width: 320px;
    padding: 30px 29px;
    text-align: center;
    position: relative;
    gap: 20px;
    position: relative;
}

.gss-sec3fresh-left {
    background: linear-gradient(135deg, #1E5BA8 0%, #0056B8 50%, #004A9C 100%);
    color: #fff;
}

.gss-sec3fresh-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.gss-sec3fresh-right {
    background: linear-gradient(135deg, #00120c 0%, #05d7bc 100%);
    color: #1E3A5F;
    color: #fff;
}

.reg-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.gss-sec3fresh-left .reg-icon {
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.gss-sec3fresh-right .reg-icon {
    background: linear-gradient(135deg, #E8F2FF 0%, #D6E9FF 100%);
    border: 3px solid #C1DEFF;
    box-shadow: 0px 8px 25px rgba(0, 86, 184, 0.15);
}

.gss-sec3fresh-panel:hover .reg-icon {
    transform: scale(1.1) rotate(5deg);
}

.reg-icon i {
    font-size: 38px;
}

.gss-sec3fresh-left .reg-icon i {
    color: #FFFFFF;
}

.gss-sec3fresh-right .reg-icon i {
    color: #0056B8;
}

.gss-sec3fresh-section h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 200;
    letter-spacing: -0.5px;
}

.gss-sec3fresh-left h3 {
    color: #FFFFFF;
}

.gss-sec3fresh-right h3 {
    color: #ffffff;
}

.gss-sec3fresh-section p {
    font-size: 16px;
    line-height: 1.9;
    max-width: 450px;
    margin: 0 auto;
    color: #FFFFFF;
}

.gss-sec3fresh-left p {
    color: rgba(255, 255, 255, 0.95);
}

.gss-sec3fresh-right p {
    color: #fff;
}


/* Background images for section 3 */

.gss-sec3fresh-bg-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.08;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.gss-sec3fresh-left .gss-sec3fresh-bg-image {
    opacity: 0.12;
}

.gss-sec3fresh-content-wrapper {
    position: relative;
    z-index: 1;
}


/* ============================================================
   SECTION BASE
============================================================ */

.contact-banners {
    margin-top: -130px;
}

.contact-header {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 100px;
}

.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;
}


/* 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;
}

@media (max-width: 992px) {
    .contactWrapper::after {
        display: none;
    }
}


/* ============================================================
   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;
}


/* Map */

.contactRight iframe {
    border-radius: 12px;
    margin-top: 20px;
    width: 100%;
    height: 230px;
}

.Audit-Expertise {
    padding: 80px 0px;
    background-color: #add8e636;
}


/* Parent card container */

.Audit-Expertise-2 {
    padding: 80px 0px 60px;
}

.Audit-Expertise-2-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    color: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    transition: transform .25s ease, box-shadow .25s ease;
}


/* Hover effect */

.Audit-Expertise-2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.45);
}


/* Image wrapper */

.Audit-Expertise-2-card .Audit-Expertise-2-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


/* Content area */

.Audit-Expertise-2-card .Audit-Expertise-2-card-content {
    padding: 18px 18px 20px;
}


/* Title */

.Audit-Expertise-2-card .Audit-Expertise-2-card-title {
    margin: 0 0 12px;
    font-weight: 200;
}


/* Text paragraphs */

.Audit-Expertise-2-card .Audit-Expertise-2-card-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #000000;
    margin-bottom: 10px;
}

.tech-transfer-section {
    background: linear-gradient(135deg, #78fffc00 0%, #55baf3 40%, #fff 100%);
    padding: 60px 0;
}


/* LEFT PANEL */

.tech-transfer-section .intro-box h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tech-transfer-section .intro-box p {
    font-size: 16px;
    color: #333;
}


/* RIGHT PANEL CARD WRAPPER */

.tech-transfer-section .info-list {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 25px 28px;
}


/* EACH ITEM */

.tech-transfer-section .info-item+.info-item {
    border-top: 1px solid #ececec;
    padding-top: 20px;
    margin-top: 18px;
}

.tech-transfer-section .info-item h5 {
    font-weight: 200;
    margin-bottom: 6px;
    color: #0d6efd;
}

.tech-transfer-section .info-item p {
    margin: 0;
    color: #4d4d4d;
    font-size: 15px;
}

.development-hero {
    position: relative;
    padding: 110px 0 120px;
    background: url("../Images/GMP-audits/Product-development.webp") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}


/* gradient overlay */

.development-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgb(11 110 199 / 79%), rgba(0, 0, 0, .45));
}


/* decorative curve */

.development-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 120px;
    background: #fff;
    clip-path: ellipse(70% 50% at 30% 100%);
}


/* SECTION */

.cmo-section {
    background: #f6f8fb;
    padding: 70px 0px;
}


/* HEADER */

.cmo-section .cmo-heading {
    font-weight: 800;
    font-size: 32px;
}

.cmo-section .cmo-subtext {
    max-width: 700px;
    margin: 10px auto 0;
    color: #5b5b5b;
}


/* CARD */

.cmo-section .cmo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .07);
    transition: .25s ease;
    height: 100%;
}

.cmo-section .cmo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, .09);
}


/* IMAGE */

.cmo-section .cmo-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


/* TEXT */

.cmo-section .cmo-body {
    padding: 18px 20px 22px;
}

.cmo-section .cmo-body h5 {
    font-weight: 200;
    margin-bottom: 6px;
}

.cmo-section .cmo-body p {
    color: #444;
    font-size: 15px;
    margin: 0;
}


/* HEADER TEXT */

.development-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.development-hero .hero-inner h2 {
    /* font-weight: 900; */
    font-size: 40px;
}

.development-hero .hero-inner p {
    max-width: 700px;
    margin-top: 10px;
    color: #e7e7e7;
}


/* GLASS CARDS SECTION */

.development-hero .steps-row {
    margin-top: 45px;
}

.development-hero .dev-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    padding: 31px 22px 20px;
    min-height: 150px;
    position: relative;
    height: 100%;
}


/* step number */

.development-hero .dev-card .dev-badge {
    position: absolute;
    top: -16px;
    left: 18px;
    background: #ffffff;
    color: #000;
    font-weight: 900;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30px;
}


/* headings + text */

.development-hero .dev-card h5 {
    font-weight: 200;
    margin-bottom: 6px;
}

.development-hero .dev-card p {
    margin: 0;
    color: #f3f3f3;
    font-size: 14.5px;
}


/* Responsive */

@media (max-width: 991px) {
    .gss-services-section .gss-service-row {
        padding: 30px 20px;
    }
    .gss-services-section .gss-service-image {
        height: 260px;
        clip-path: none;
        border-radius: 14px;
    }
    .gss-services-section .gss-service-content {
        text-align: center;
        padding: 25px 0 0;
    }
    .gss-services-section .gss-service-content p {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .Audit-Expertise-2-card {
        max-width: 100%;
        margin: 12px;
    }
}


/* Responsive */

@media (max-width: 992px) {
    .contactLeft,
    .contactRight {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .why-gss {
        text-align: center;
    }
    .why-gss .why-gss-img {
        margin-top: 50px;
    }
    .why-gss .feature-box {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .services-section .service-card {
        margin-bottom: 30px;
    }
    .services-section .service-card .image-container {
        height: 180px;
    }
    .certifications-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .partner-item {
        height: 72px;
    }
    .vision-mission-section {
        padding: 60px 0;
    }
    /* .vision-mission-section .section-header h2 {
        font-size: 32px;
    } */
    .vision-mission-section .card {
        padding: 40px 30px 0;
        margin-bottom: 30px;
    }
    .vision-mission-section .card-title {
        font-size: 24px;
    }
    .counter-section {
        padding: 40px 0;
        background-attachment: scroll;
    }
    .counter-section .section-header h2 {
        font-size: 32px;
    }
    .counter-section .section-header p {
        font-size: 16px;
    }
    .counter-section .counter-card {
        padding: 30px 20px;
    }
    .counter-section .counter-value {
        font-size: 42px;
    }
    .counter-section .counter-title {
        font-size: 16px;
    }
    .commitments-section {
        padding: 60px 0;
    }
    .commitments-section .section-header h2 {
        font-size: 2rem;
    }
    .commitments-section .section-header p {
        font-size: 1rem;
    }
    .commitments-section .commitment-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    .commitments-section .commitment-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .commitments-section .commitment-card .icon-wrapper i {
        font-size: 2rem;
    }
    .commitments-section .commitment-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .counter-section {
        padding: 50px 0;
    }
    .counter-section .section-header h2 {
        font-size: 36px;
    }
    .counter-section .counter-card {
        margin-bottom: 20px;
    }
    .regulatory-timeline .timeline {
        flex-direction: column;
        align-items: center;
    }
    .regulatory-timeline .timeline::before {
        display: none;
    }
    .regulatory-timeline .timeline__step {
        width: 80%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .counter-section .counter-value {
        font-size: 38px;
    }
    .counter-section .counter-suffix {
        font-size: 30px;
    }
    .counter-section .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .counter-section .icon-wrapper svg {
        width: 30px;
        height: 30px;
    }
    .commitments-section .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width:992px) {
    .pv-wrapper .pv-hero {
        grid-template-columns: 1fr;
    }
    .pv-wrapper .pv-illustration {
        order: -1
    }
    .pv-wrapper .pv-card {
        height: auto;
    }
    .development-hero .dev-card {
        height: auto;
    }
    .cmo-section .cmo-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .pv-flowchart .pv-flow-step:not(:last-child)::after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%);
    }
    .pv-intro-section {
        padding: 60px 0;
    }
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .gss-sec1fresh-container {
        grid-template-columns: 1fr;
        padding: 0px 12px;
    }
    .gss-sec2fresh-title {
        font-size: 28px;
    }
    .gss-sec3fresh-left::after {
        display: none;
    }
    .gss-sec3fresh-left,
    .gss-sec3fresh-right {
        min-width: 100%;
    }
}


/* Responsive Adjustments */

@media (max-width: 991.98px) {
    .about-gss .about-gss__title {
        font-size: 1.7rem;
    }
    .inside-bg {
        background-color: #f6f8fc;
        position: relative;
        height: auto;
        display: none;
    }
}

@media (max-width: 575.98px) {
    .about-gss {
        padding: 2.5rem 0;
        background-color: #fff;
    }
}


/* Responsive tweaks */

@media (max-width: 992px) {
    .section-header {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    header {
        height: auto !important;
    }
    .navbar-nav {
        align-items: start;
        justify-content: start;
        gap: 8px;
    }
    .nav-top {
        background: transparent;
        font-family: 'Poppins', sans-serif;
        z-index: 10;
        position: absolute;
        bottom: 85px;
        left: 50%;
        transform: translate(-50%, 10px);
        display: none;
    }
    .navbar-nav .dropdown-menu {
        padding: 10px 0px;
    }
    .navbar-nav .dropdown-item {
        padding: 10px 18px;
    }
    .navbar-nav .dropdown-item::after {
        width: 22px;
        height: 22px;
        display: none;
    }
    .service-banner {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    br {
        display: none !important;
    }
    .pv-wrapper {
        padding: 60px 0px 30px;
    }
    .pv-flow-wrapper {
        margin-left: 10px;
    }
    .pv-flow-footer {
        margin-left: 10px;
    }
    .pvSection,
    .gss-sec1fresh-section {
        padding-top: 30px 12px 30px;
    }
    .contact-banners {
        margin-top: 0;
        padding-top: 0px;
        padding-bottom: 0px;
        width: 100%;
    }
    .contact-banners img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    .contact-header {
        position: absolute;
        z-index: 1;
        bottom: 0%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    .contactSection {
        padding: 0px 12px 80px;
        background: #f4f6fa;
        position: relative;
    }
}