@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: "Poppins", sans-serif;
    --font-two: "Montserrat", sans-serif;
    --primary-color: #ce3820;
    --secondary-color: #002a72;
    --hover-color: #7f170f;
    --third-color: #f8f9fa;
}

body,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family) !important;
}

* {
    pointer-events: auto !important;
}

p {
    font-size: 15px;
}

::-webkit-scrollbar {
    width: 2px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

::-webkit-scrollbar-track {
    background: var(--third-color);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

#preloader img {
    width: 250px;
    animation: popInOut 1.5s ease-in-out forwards;
}

/* Pop In and Out Animation */
@keyframes popInOut {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    30% {
        transform: scale(1.1);
        opacity: 1;
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fade-out effect */
#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Top Sub Navigation */
.top-nav {
    background-color: var(--secondary-color);
    border-bottom: 1px solid #dee2e6;
    padding: 3px 0;
    font-size: 0.875rem;
}

.top-nav a {
    color: var(--third-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 12px;
}

.top-nav a:hover {
    color: var(--primary-color);
}

.language-select {
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 0.875rem;
}

.cramsn_logo {
    width: 130px;
    height: auto;
    padding: 4px 0px;
}

/* Google Translate Styling */
#google_translate_element {
    margin-left: 5px;
    min-width: 120px;
    display: inline-block !important;
}

/* Show loading text before Google Translate loads */
#google_translate_element:empty::before {
    content: "Language";
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #f8f9fa;
}

/* Style Google Translate dropdown */
.goog-te-combo {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    color: #6c757d !important;
    cursor: pointer !important;
    min-width: 100px !important;
}

.goog-te-combo:hover {
    border-color: var(--secondary-color) !important;
    background: white !important;
}

.goog-te-combo:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25) !important;
}

/* Hide Google Translate banner and branding */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    display: none;
}

.goog-te-gadget-simple .goog-te-menu-value:before {
    content: 'Language: ';
    color: #6c757d;
}

body {
    top: 0 !important;
}

.cramsn-bg-dark {
    background-color: var(--secondary-color) !important;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.cramsn_sec_dark {
    background-color: var(--primary-color) !important;
}

/* Style the Google Translate gadget */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0.875rem !important;
    color: #6c757d !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

/* Mobile Google Translate styling */
@media (max-width: 991.98px) {
    #google_translate_element {
        margin: 0.5rem 0;
        display: block !important;
        text-align: center;
    }

    .goog-te-combo {
        width: auto !important;
        max-width: 200px !important;
        margin: 0 auto !important;
        display: inline-block !important;
    }

    .goog-te-gadget-simple .goog-te-menu-value:before {
        content: '';
    }
}

/* Main Navigation */
.main-navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: #000 !important;
    padding: 0rem 0.4rem !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 400;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    position: relative;
}

.navbar {
    position: relative;
    /* default */
    width: 100%;
    transition: all 0.3s ease-in-out;
    /* smooth animation */
    z-index: 9;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    z-index: 10000;
}


/* Top nav active states */
.top-nav a.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    padding: 2rem 0;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: flex;
    gap: 2rem;
}

.mega-menu-column {
    flex: 1;
}

.mega-menu-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--primary-color);
}

.mega-menu-tab:hover,
.mega-menu-tab.active {
    background-color: var(--secondary-color);
    color: white;
}

.tab-content {
    display: none;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-height: 300px;
}

.tab-content.active {
    display: block;
}

.mega-menu-content {
    display: flex;
    gap: 2rem;
}

.mega-menu-column {
    flex: 1;
}

.mega-menu-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.mega-menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--hover-color));
    transition: left 0.2s ease;
    z-index: -1;
}

.mega-menu-tab:hover::before {
    left: 0;
}

.mega-menu-tab:hover {
    color: white;
    transform: translateX(3px);
    text-decoration: none;
}

.mega-menu-tab.active {
    color: var(--secondary-color);
    transform: none;
    background-color: #e3f2fd;
    border-left: 3px solid var(--secondary-color);
    font-weight: 600;
}

.mega-menu-tab.active::before {
    left: -100%;
}

.mega-menu-tab.active:hover {
    color: white;
    transform: translateX(3px);
}

.mega-menu-tab.active:hover::before {
    left: 0;
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--hover-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-content h6 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Mobile Off-Canvas Styles */
@media (max-width: 991.98px) {

    /* Off-canvas overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Off-canvas menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background-color: #fff;
        z-index: 10000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 0;
    }

    .navbar-collapse.show {
        left: 0;
    }

    /* Off-canvas header */
    .offcanvas-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;

    }

    .offcanvas-title {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 0;
    }

    .btn-close-offcanvas {
        background: none;
        border: none;
        color: var(--secondary-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: end;
        margin-right: 20px;

    }

    /* Mobile navigation styles */
    .navbar-nav {
        padding: 0rem 0;
        width: 100%;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        padding: 10px;
    }

    .navbar-nav .dropdown-menu {
        position: absolute !important;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* Dropdown arrow for mobile */
    .nav-link[data-mega-menu]::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
    }

    .nav-link[data-mega-menu].active::after {
        transform: rotate(180deg);
    }

    /* Mobile mega menu adjustments */
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        transform: none;
        transition: all 0.3s ease;
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        margin: 0;
        max-height: 0;
        overflow: hidden;
    }

    .mega-menu.show {
        transform: none;
        max-height: 600px;
        padding: 1rem 1.5rem;
    }

    .mega-menu-content {
        flex-direction: column;
        gap: 1rem;
    }

    .mega-menu-column {
        width: 100%;
    }

    .mega-menu-tab {
        padding: 0.75rem 1rem;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .tab-content {
        position: relative !important;
        min-height: auto;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 6px;
    }

    .service-item {
        flex-direction: row;
        text-align: left;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        animation: none;
        opacity: 1;
        transform: none;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
        margin-bottom: 0;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .service-content h6 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .service-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .top-nav {
        text-align: center;
        padding: 0rem 0;
    }

    .top-nav .d-flex {
        flex-direction: column;
        gap: 8px;
    }

    .top-nav a {
        font-size: 0.8rem;
        margin: 0 8px;
    }

    /* Hide regular navbar toggler */
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

.language-select {
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Google Translate Styling */
#google_translate_element {
    margin-left: 5px;
    min-width: 120px;
    display: inline-block !important;
}

/* Show loading text before Google Translate loads */
#google_translate_element:empty::before {
    content: "Language";
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #f8f9fa;
}

/* Style Google Translate dropdown */
.goog-te-combo {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    color: #6c757d !important;
    cursor: pointer !important;
    min-width: 100px !important;
}

.goog-te-combo:hover {
    border-color: var(--secondary-color) !important;
    background: white !important;
}

.goog-te-combo:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25) !important;
}

/* Hide Google Translate banner and branding */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    display: none;
}

.goog-te-gadget-simple .goog-te-menu-value:before {
    content: 'Language: ';
    color: #6c757d;
}

body {
    top: 0 !important;
}

/* Style the Google Translate gadget */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0.875rem !important;
    color: #6c757d !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

/* Mobile Google Translate styling */
@media (max-width: 991.98px) {
    #google_translate_element {
        margin: 0.5rem 0;
        display: block !important;
        text-align: center;
    }

    .goog-te-combo {
        width: auto !important;
        max-width: 200px !important;
        margin: 0 auto !important;
        display: inline-block !important;
    }

    .goog-te-gadget-simple .goog-te-menu-value:before {
        content: '';
    }
}

.navbar-nav .nav-link {

    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 400;
    position: relative;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--secondary-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block !important;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    font-size: 12px !important;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    padding: 8px 8px 6px 8px !important;
}

.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
    background-color: var(--secondary-color) !important;
    color: var(--third-color) !important;
    border-left-color: var(--primary-color) !important;
    /* transform: translateX(5px); */
}

.dropdown-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-item ul li {
    border-bottom: 1px solid #eaeaea;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #e9ecef;
}

/* Desktop hover behavior */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}




/*======================================= Home page=================================== */
.cramsn_home_section {
    height: 89vh;
}

.arrow-item {
    max-width: 9%;
}

.single-arrow-item {
    max-width: 40%;
}

.cramsn_home_section::before {
    --background-overlay: '';
    background-color: transparent;
    background-image: linear-gradient(90deg, #000000 -50%, #ececec00 100%);
    content: var(--background-overlay);
    display: block;
    position: absolute;
    mix-blend-mode: var(--overlay-mix-blend-mode);
    opacity: var(--overlay-opacity);
    transition: var(--overlay-transition, .3s);
    border-radius: var(--border-radius);
    border-style: var(--border-style);
    border-color: var(--border-color);
    border-block-start-width: 0px;
    border-inline-end-width: 0px;
    border-block-end-width: 0px;
    border-inline-start-width: 0px;
    top: calc(0px - 0px);
    left: calc(0px - 0px);
    width: max(100% + 0px + 0px, 100%);
    height: max(100% + 0px + 0px, 100%);
    transition: background 0.3s, .3s, border-radius 0.3s, .3s, opacity 0.3s, .3s;
}

.cramsn_home_section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_content {
    position: absolute;
    bottom: 20%;
    left: 8%;
}

.content-wrapper {
    max-width: 630px;
    z-index: 2;
    position: relative;
}

.welcome-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--third-color);
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
    position: relative;
}

.welcome-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    animation: expandLine 1s ease-out 1.2s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
    color: var(--third-color);
    font-family: var(--font-family);
}

.main-heading .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 1.1rem;
    color: #b0bec5;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.button-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.8s forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    position: relative;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
    border: 0px !important;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: var(--third-color) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--third-color) !important;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--third-color) !important;
    border-radius: 50px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--third-color) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-icon {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    margin-bottom: 2px;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn_cta span {
    position: relative;
}

.btn_cta svg {
    width: 100%;
    max-width: 13%;
    margin-top: 10px;
}

.btn_cta i {
    position: absolute;
    left: 20px;
    top: 3px;
    font-size: 20px;
    color: #fff;
}

.cramsn_life .btn_cta svg {
    width: 100%;
    max-width: 11%;
    margin-top: 10px;
}

.cramsn_events h2 {
    font-size: 48px;
    color: var(--secondary-color);
}
.cramsn_events .event_head img{
    border-radius: 20px;
}
.cramsn_events .event_head::before{
    border-radius: 20px;
    max-width: 90%;
}

.event_head {
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 20px !important;
    position: relative;
}

.event_head::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    max-width: 100%;
    height: 100%;
    right: -2px;
    top: 0px;
    border-radius: 0px;
    z-index: -1;
    opacity: 0;
}

.event_head:hover::before {
    opacity: 1;
}

.event_head .event_date,
.event_head .event_location {
    font-size: 16px;
}

/*.event_head img {*/
/*    border-radius: 20px;*/
/*}*/

/* Responsive design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .button-container {
        justify-content: center;
    }
}

.service_section .cramsn_pattern,
.cramsn_advantages .cramsn_pattern {

    position: absolute;
    left: -120px;
    width: 100%;
    max-width: 40%;
    top: -58px;
}

.cramsn_pattern_two {
    position: absolute;
    right: 0px;
    bottom: -80px;
    width: 100%;
    max-width: 40%;
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .about_cramsn_section .left_div h2,
    .service_section h2,
    .infrastructure_section h2,
    .acceridation_section h2,
    .cramsn_life h2,
    .cramsn_faq h2,
    .cramsn_cta h2,
    .latest-updates h2,
    .cramsn_newslatter h2 {
        font-size: 34px !important;
    }

    .button-container {
        flex-direction: column;
    }

    .cramsn_footer_links li a {
        font-size: 0.7rem !important;
    }

    .center_image img {
        height: 230px !important;
    }
}

.about_cramsn_section .left_div h2 {
    font-size: 48px;
    font-family: var(--font-family);
    color: var(--secondary-color);
}

.about_cramsn_section .right_div p {
    font-size: 16px;
    text-align: justify;
    font-weight: 300;
    line-height: 25px;
}

.about_cramsn_section .left_div .btn-icon {
    height: 25px;
}

.service_section {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
    transition: border-radius 0.4s ease;
}

.cramsn_gradient {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 35%);
    transition: border-radius 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.2)" opacity="0.8"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="300" cy="200" r="2" fill="rgba(255,255,255,0.3)" opacity="0.6"><animate attributeName="opacity" values="0.3;0.9;0.3" dur="6s" repeatCount="indefinite"/></circle><circle cx="700" cy="150" r="2.5" fill="rgba(255,255,255,0.25)" opacity="0.7"><animate attributeName="opacity" values="0.25;0.75;0.25" dur="5s" repeatCount="indefinite"/></circle></svg>');
}

.molecular-bg {
    position: absolute;
    right: 15%;
    top: 10%;
    width: 60%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><g stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"><circle cx="400" cy="300" r="50"/><circle cx="300" cy="200" r="30"/><circle cx="500" cy="200" r="30"/><circle cx="350" cy="400" r="25"/><circle cx="450" cy="400" r="25"/><line x1="400" y1="300" x2="300" y2="200"/><line x1="400" y1="300" x2="500" y2="200"/><line x1="400" y1="300" x2="350" y2="400"/><line x1="400" y1="300" x2="450" y2="400"/></g></svg>');
    opacity: 0.3;
    animation: rotate 60s linear infinite;
}

.service_section:hover {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.service_section h2 {
    font-size: 48px;
    color: var(--third-color);
    font-weight: 500;
}

.service_section h3 {
    color: var(--primary-color);
    font-family: (var(--font-family));
}

.service_section h5 {
    font-family: (var(--font-family));
    font-weight: 400;
}

.service_section p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family) !important;
    line-height: 25px;
}

.service_section .card {
    height: 100%;
    border-radius: 20px;
}

.service_section img.services_image {
    height: 240px;
    object-fit: cover;
}

.back_white {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 360px;
    left: 0;
    bottom: 0px;
    z-index: 0;
}

.solutions_div {
    position: relative;
    z-index: 1;
}

.solutions_div .card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
    height: 100%;
}

.infrastructure_section h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
}

.counter {
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.infrastructure_section .card_item {
    padding: 30px 20px 0px 25px;
    border-radius: 20px;
}

.infrastructure_section .card_item h4 {
    font-weight: 500;
    font-family: var(--font-family);
}

.infrastructure_section .card_item h5 {
    font-weight: 300;
    font-family: var(--font-family);
}

.infrastructure_section .card_item p {
    display: flex;
    justify-content: flex-end;
    font-size: 100px;
    line-height: 90px;
}

.infrastructure_section .card_item p span {
    font-weight: 500;
    font-family: var(--font-two);
    color: var(--secondary-color);
}

.card_item:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.card_item:hover h4,
.card_item:hover p span {
    color: var(--primary-color);
}

.acceridation_section h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
}

.acceridation_section .btn_cta svg {
    width: 100%;
    max-width: 11%;
    margin-top: 10px;
}

.accredation_right {
    text-decoration: none;
    color: var(--third-color);
    position: relative;
    cursor: pointer;
}

.circle {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background: rgb(255, 255, 255);
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 18px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

.circle p {
    margin: 5px 0 0;
    font-size: 11px;
    text-align: center;
}

.circle_div p {
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

/* Positioning for hex layout */
.circle_div .center {
    top: 190px;
    left: 190px;
}

.top {
    top: 60px;
    left: 190px;
}

.top-right {
    top: 125px;
    left: 303px;
}

.bottom-right {
    top: 254px;
    left: 303px;
}

.bottom {
    top: 320px;
    left: 190px;
}

.bottom-left {
    top: 255px;
    left: 78px;
}

.top-left {
    top: 125px;
    left: 78px;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .hex-circle-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 300px;
        position: relative;
        /* padding: 20px; */
    }

    .circle_div .center {
        top: 159px;
        left: 130px;
    }

    .top {
        top: 60px;
        left: 130px;
    }

    .bottom {
        top: 260px;
        left: 130px;
    }

    .top-right {
        top: 110px;
        left: 216px;
    }

    .bottom-right {
        top: 210px;
        left: 217px;
    }

    .top-left {
        top: 109px;
        left: 43px;
    }

    .bottom-left {
        top: 209px;
        left: 44px;
    }

    .circle {
        /* position: static; */
        width: 100px;
        height: 100px;
        font-size: 10px;
    }

    .circle img {
        height: 50px;
    }

    .circle p {
        font-size: 10px;
    }

    .cramsn_sustainability {
        height: 750px !important;
    }
}


.cramsn_sustainability {
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    transition: border-radius 0.3s ease-in-out;
    margin: 135px 0px 0px 0px;
    height: 590px;
}

.cramsn_sustainability:hover {
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.cramsn_sustainability .nav-link {
    font-size: 32px;
    color: rgb(155, 155, 155) !important;
    font-weight: 300;
    padding-top: 0px;
    padding-bottom: 0px;
}

.cramsn_sustainability .nav-link.active {
    background-color: transparent !important;
    color: var(--third-color) !important;
}

.cramsn_sustainability .tab-content {
    display: block !important;
    visibility: visible !important;
    position: initial !important;
    background: transparent !important;
    opacity: 1;
}

.cramsn_sustainability .tab-content p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}

.cramsn_sustainability .tab-content ul li {
    font-weight: 300;
    line-height: 60px;
    border-bottom: 1px solid var(--third-color);
    font-family: var(--font-family);
}

@media screen and (max-width: 781px) {
    .cramsn_sustainability:hover {
        border-top-left-radius: 3rem !important;
        border-top-right-radius: 3rem !important;
    }

    .cramsn_sustainability .nav-pills {
        flex-wrap: nowrap;
        gap: 25px;
        justify-content: center;
    }

    .cramsn_sustainability .nav-link {
        font-size: 18px !important;
        padding: 0px;
    }
}


.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 18px 0;
}

.faq-question {
    font-weight: 400;
    cursor: pointer;
    position: relative;
    font-size: 20px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 300;
    color: var(--third-color);
}

/* slider section */


.booking-slider-item {
    background: var(--color-gray-dark);
    position: relative;
}

.booking-slider-item__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    /* background-color: rgba(0, 0, 0, 0.6); */
    font-size: 16px;
    font-weight: 400;
    line-height: calc(24 / 14);
    position: absolute;
    left: 4px;
    top: 4px;
    z-index: 1;
}

.booking-slider-item__badge::before {
    content: "";
    flex-shrink: 0;
    display: block;
    aspect-ratio: 1;
    width: 18px;
    background-size: 100%;
}

.booking-slider-item__image {
    display: block;
    height: 360px;
    transition: height 0.6s ease-out;
    overflow: hidden;
}

.booking-slider-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    transition: transform 0.6s ease-out;
    border-radius: 20px;
}

@media (hover: hover) and (pointer: fine) {
    .booking-slider-item__image:hover img {
        transform: scale(1.05);
    }
}

.booking-slider-item__content {
    padding: 30px;
}

@media screen and (max-width: 574.9px) {
    .booking-slider-item__content {
        padding: 30px 20px;
    }
}

.booking-slider-item__price {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.booking-slider-item__price small {
    font-weight: 400;
    font-size: 18px;
}

.booking-slider-item__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.booking-slider-item__title a {
    display: block;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .booking-slider-item__title a:hover {
        opacity: 0.75;
    }
}

.booking-slider-item__address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.booking-slider-item__address-icon {
    flex-shrink: 0;
    width: 16px;
}

.booking-slider-item__address-icon img {
    display: block;
    width: 100%;
    height: auto;
}

.booking-slider-item__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.35;
    color: var(--color-gray-bright);
}

.booking-slider-item__footer {
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.6s ease-in;
}

.booking-slider-item__footer-inner {
    padding-top: 24px;
}

.booking-slider-item__amenities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-block: 20px;
    border: 1px solid #ffffff1a;
    border-left: 0;
    border-right: 0;
    margin-bottom: 24px;
}

.booking-slider-item__amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-gray-light);
}

.booking-slider-item__amenity-icon {
    flex-shrink: 0;
    width: 20px;
}

.booking-slider-item__amenity-icon img {
    display: block;
    width: 100%;
    height: auto;
}

.booking-slider-item__amenity-text {
    padding-top: 2px;
}

@media screen and (max-width: 574.9px) {
    .booking-slider-item__amenity {
        gap: 6px;
        font-size: 12px;
    }

    .booking-slider-item__amenity-icon {
        width: 16px;
    }

    .booking-slider-item__amenity-text {
        padding-top: 1px;
    }

    .home_content {
        left: 4%;
    }

    .btn_cta svg {
        max-width: 17%;
    }

    .solutions_div .btn_cta svg {
        max-width: 18%;
    }


    .cramsn_life .btn_cta svg {
        max-width: 17%;
    }

    .col-lg-12.scroll-section {
        padding: 0px 0px 0px 0px !important;
    }

    .cramsn_advantages h2,
    .cramsn_about_content h2,
    .cramsn_chairman_message h2,
    .cramsn_core_values h2,
    .cramsn_leaders h2 {
        font-size: 34px !important;
    }

    .cramsn_core_values .values-list {
        height: 130vh !important;
    }

}

.booking-slider-item__btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.booking-slider-item__btn-icon {
    flex-shrink: 0;
    display: block;
    aspect-ratio: 1;
    width: 24px;
    position: relative;
    overflow: hidden;
}

.booking-slider-item__btn-icon::before,
.booking-slider-item__btn-icon::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("https://bato-web-agency.github.io/bato-shared/img/slider-2/icon-btn-arrow.svg") center center no-repeat;
    background-size: 100%;
}

.booking-slider-item__btn-icon::after {
    position: absolute;
    top: 100%;
    right: 100%;
}

.booking-slider__slide:not(.swiper-slide-active) .booking-slider-item__image {
    height: 360px;
    padding: 85px 0px 0px 0px;
    width: 240px;
}

.booking-slider__slide:not(.swiper-slide-active) .booking-slider-item__footer {
    max-height: 0;
}

@media (hover: hover) and (pointer: fine) {

    .booking-slider-item__btn:hover .booking-slider-item__btn-icon::before,
    .booking-slider-item__btn:hover .booking-slider-item__btn-icon::after {
        animation: btn-arrow-move 0.4s ease forwards;
    }
}

@media (hover: none) {

    .booking-slider-item__btn:active .booking-slider-item__btn-icon::before,
    .booking-slider-item__btn:active .booking-slider-item__btn-icon::after {
        animation: btn-arrow-move 0.4s ease forwards;
    }
}

.cramsn_life p {
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.cramsn_life h2,
.cramsn_faq h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
}

.cramsn_cta h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
}

.latest-updates h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
}

.latest-updates img {
    border-radius: 20px;
}

.center_image img {
    height: 400px;
}

.trigger-btn {
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


/* Button Styling */
.search-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#searchInput {
    caret-color: var(--theme-style-one);
    color: var(--theme-style-one) !important;
}

/* Modal Styling */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #08243ceb;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}

/* Modal Content */
.search-box {
    position: relative;
    width: 100%;
    max-width: 85%;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background: none;
}

/* Search Input & Button */
.search-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    padding: 0px 60px;
    border: none;
    border-radius: 11px;
    line-height: 0px;
}

#searchForm {
    display: flex;
    column-gap: 20px;
}

#searchForm input {
    border-top: 0px solid;
    border-left: 0px solid;
    border-right: 0px solid;
    border-radius: 0px;
    margin: 0px;
}

/* Change Placeholder Color */
#searchForm input::placeholder {
    color: rgb(255, 255, 255);
    opacity: 1;
}

#searchForm input:focus-visible {
    outline: none;
}

/* Show Modal Class */
.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
}

.popup {
    background: white;
    padding: 20px;
    width: 600px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-container.active {
    opacity: 1;
    visibility: visible;
}

.popup-container.active .popup {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.trigger-btn {
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.popup h3 {
    font-family: var(--font-family-two) !important;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.cramsn_newslatter {
    background-color: #f3f3f3;
}

.cramsn_newslatter h2 {
    font-size: 46px;
    font-weight: 500;
    color: var(--secondary-color);
}

.news_icon {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
    padding: 6% 9% 6% 9%;
    width: 100%;
    max-width: 50%;
    margin: auto;
    border-radius: 10px;
    cursor: pointer;
}

.news_icon i {
    color: #fff;
    font-size: 32px;
}

.news_sub_text {
    font-size: 13px;
    font-weight: 300;
}

.right-links {
    display: flex;
    position: fixed !important;
    top: 52%;
    transform: translateY(-50%);
    z-index: 1000;
    right: 0;
}

.right-links .list_links {
    display: flex;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}

.right-links .list_links .link_body {
    background: var(--secondary-color);
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
}

.right-links .list_links .link_body ul,
.right-links .list_links .link_body ul li {
    display: flex;
}

.right-links .list_links .link_body .social_links {
    transform: rotate(180deg);
    padding: 0%;
    margin: 0px;
}

.right-links .list_links .link_body .social_links li {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
}

.right-links .list_links .link_body .social_links li a,
.right-links .list_links .link_body .social_links li span {
    position: relative;
    display: block;
    height: 43px;
    width: 43px;
    padding: 12px;
}


.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--primary-color) !important;
    left: 2px;
    top: 2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 2px;
    top: 2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover {
    background-color: var(--secondary-color);
}

.progress-wrap:hover svg.progress-circle path {
    stroke: var(--primary-color);
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--third-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.progress-wrap::after {
    color: var(--third-color);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
}

/* ===================================== About Page =========================================== */
.hero_banner {
    position: relative;
}

.hero_banner h2 {
    position: absolute;
    color: var(--third-color);
    bottom: 50px;
    left: 6%;
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 400;
}

.cramsn_about_content h2 {
    font-family: var(--font-family);
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_about_content p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cramsn_chairman_message img {
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.cramsn_chairman_message h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_chairman_message p {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}

.cramsn_chairman_message h5 {
    color: var(--primary-color);
}

.solutions_div p {
    font-weight: 300;
    line-height: 25px;
    font-size: 16px;
}

.cramsn_mission_vision img.mision_img,
.cramsn_mission_vision img.vision_img {
    height: 325px;
    object-fit: cover;
}

/* =================================core values ================================= */
.cramsn_core_values h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_core_values .values-list {
    height: 80vh;
    color: white;
    background-size: cover;
    background-position: center;
    transition: background 1s ease-in-out;
    overflow: hidden;
}


.cramsn_core_values .values-list .item_l {
    text-align: left;
    position: absolute;
    left: 5%;
    top: 30%;
    width: 100%;
    max-width: 80%;
}

.cramsn_core_values .values-list .item_i {
    text-align: left;
    position: absolute;
    left: 5%;
    top: 30%;
    width: 100%;
    max-width: 80%;
}

.cramsn_core_values .values-list .item_f {
    text-align: left;
    position: absolute;
    left: 5%;
    top: 25%;
    width: 100%;
    max-width: 80%;
}

.cramsn_core_values .values-list .item-e {
    text-align: left;
    position: absolute;
    left: 5%;
    top: 25%;
    width: 100%;
    max-width: 80%;
}

.cramsn_core_values p.core_value {
    font-weight: 300;
    font-size: 16px;
}

.cramsn_core_values .content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cramsn_core_values .content.active {
    opacity: 1;
    transform: translateY(0);
}

.cramsn_core_values .navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #ffffff66;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    z-index: 1;
    position: absolute;
    top: 0;
    width: 100%;
}

.cramsn_core_values .nav-btn {
    background: rgba(255, 255, 255, 0);
    border: none;
    padding: 10px 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    width: 100%;
}

.cramsn_core_values .nav-btn.item_one.active {
    background: var(--primary-color);
    color: var(--third-color);
    border-radius: 6px;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}

.cramsn_core_values .nav-btn.item_two.active {
    background: var(--primary-color);
    color: var(--third-color);
    border-radius: 6px;
    transform: translateX(20px);
    transition: all 0.5s ease-in-out;
}

.cramsn_core_values .nav-btn.item_three.active {
    background: var(--primary-color);
    color: var(--third-color);
    border-radius: 6px;
    transform: translateX(30px);
    transition: all 0.5s ease-in-out;
}

.cramsn_core_values p {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
}

.cramsn_core_values .nav-btn.item_four.active {
    background: var(--primary-color);
    color: var(--third-color);
    border-radius: 6px;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}

#main-container {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0px;
}

.cramsn_leaders h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_leaders h3 {
    font-size: 18px;
}

.cramsn_leaders p {
    font-size: 12px;
    font-weight: 300;
    line-height: 25px;
}

.cramsn_leaders a {
    background-color: var(--secondary-color);
    padding: 3px 5px 2px 5px;
    border-radius: 4px;
}

.cramsn_leaders a i {
    color: var(--third-color);
}

.cramsn_advantages h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_advantages p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
}

.top-items {
    position: absolute;
    top: -100px;
    width: 100%;
    max-width: 100%;
    z-index: 10;
}

.cramsn_images {
    width: 100%;
    max-width: 100%;
    height: 210px;
}

.scroll-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.col-lg-12.scroll-section {
    padding: 0px 0px 0px 85px;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.card-container {
    flex: 0 0 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.4s ease;
    border: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-container:hover img {
    border-top: 2px solid var(--primary-color);
}

.card-container:hover {
    background-color: #ffffff;
}

.card-container:hover h4 {
    color: var(--primary-color);
}

.card-container p {
    color: var(--third-color);
}

.card-container:hover p {
    color: var(--secondary-color);
}

.card-container h4 {
    color: #ffffff;
    font-weight: 300;
    padding: 30px 30px 30px 30px;
    line-height: 30px;
    font-size: 20px;
}

.advantages-text {
    color: #ffffff6b;
}

.card-container img {
    border-radius: 20px;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.card-container:hover .card-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.4s ease;
    z-index: 1;
}

.card-container:hover .card-overlay {
    background: rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
    .card-container {
        flex: 0 0 70%;
    }
}



.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.slide {
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.slide.center {
    transform: scale(1.2);
    z-index: 2;
}

.slide-content {
    padding: 40px 30px 0px;
}

.slide-content img {
    border-radius: 10px;
}


.event-slide {
    text-align: center;
}

.event-slide .slide-title {
    margin-bottom: 20px;
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a2a2a24d;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

/* Responsive Design */
@media (min-width: 1024px) {
    .slide {
        width: 350px;
    }
}

@media (max-width: 1023px) {
    .slide {
        width: 300px;
    }

    .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .slide {
        width: 280px;
    }



    .carousel-container {
        padding: 20px;
    }



    .slide-content {
        height: 350px;
        padding: 30px 25px;
    }

    .slide-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .slide {
        width: 260px;
    }

    .slide-content {
        height: 320px;
        padding: 25px 20px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

}

.mision_vision_item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    cursor: pointer;
    transform-origin: 50% 50%;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.flip-card-front {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flip-card-back {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 2rem;
}

.vision_items {
    background-image: url(../media/about/Visiion.png);
    background-size: contain;
    background-position: left;
    height: 100%;
    width: 100%;
}

.mision_items {
    background-image: url(../media/about/Misiion.png);
    background-size: contain;
    background-position: left;
    height: 100%;
    width: 100%;
}

@keyframes glow {
    from {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    }

    to {
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.9), 0 0 120px rgba(255, 215, 0, 0.4);
    }
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background: #79b1e2;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    bottom: -10px;
    margin: 0px;
    text-align: left;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
    font-weight: 300;
}

.dna-icon {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 150px;
    height: 150px;
    opacity: 0.3;
}

.dna-helix {
    width: 100%;
    height: 100%;
    border: 3px solid #74b9ff;
    border-radius: 50%;
    position: relative;
    animation: rotate 4s linear infinite;
}

.dna-helix::before,
.dna-helix::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #74b9ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.dna-helix::before {
    left: -10px;
}

.dna-helix::after {
    right: -10px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .mision_vision_item {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .flip-card {
        height: 350px;
    }

    .mission-title {
        font-size: 2rem;
    }

    .mission-text {
        font-size: 0.9rem;
    }
}

/* .services_layout .container {
    position: relative;
} */

.services_layout .cramsn_pattern-top {
    position: absolute;
    width: 100%;
    max-width: 28%;
    top: -47px;
    left: -30px;
    z-index: 1;
}

.services_layout .cramsn_pattern-bottom {
    position: absolute;
    width: 100%;
    max-width: 28%;
    bottom: -47px;
    right: 0px;
    z-index: 1;
}

.services_layout .container {
    /* background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
    transition: border-radius 0.4s ease; */
    border-radius: 30px;
}

.services_layout h2 {
    font-size: 48px;
    color: var(--third-color);
}

.services_layout .sub_text {
    padding-top: 5px;
    font-weight: 200;
    color: var(--third-color);
}

.services_layout .services_timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
}

.timeline-container {
    width: 100%;
    max-width: 1200px;
    padding: 0px 0px;
}

.timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 16%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 1;
    width: 100%;
    max-width: 68%;
}

.progress-line {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    width: 0%;
    /* transition: width 0.8s ease-in-out; */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-circle:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* .step-circle.active {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
} */

.inner-circle {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-circle.active .inner-circle {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.step-content h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
    max-width: 230px;
    font-weight: 200;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .timeline-line {
        left: 50%;
        right: auto;
        top: 10%;
        bottom: 10%;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }

    .progress-line {
        width: 100%;
        height: 0%;
        transition: height 0.8s ease-in-out;
    }

    .timeline-step {
        width: 100%;
        max-width: 300px;
    }

    .step-content p {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 60px;
        height: 60px;
    }

    .inner-circle {
        width: 20px;
        height: 20px;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }
}

.cramsn_area_expertise h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.data-element {
    width: 100%;
    max-width: 24%;
    border: 1px solid var(--third-color);
    border-radius: 20px;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.data-element:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 4px solid var(--primary-color);
}

.data-element.show {
    opacity: 1;
    transform: translateY(0);
}

.data-element h4 {
    color: var(--third-color);
}

.data-element p {
    color: var(--third-color);
    font-weight: 200;
    margin: 0px;
}

.ds-items {
    width: 100%;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 7px 13px -3px, rgb(0 0 0 / 15%) 0px -5px 0px inset;
    background: transparent;
    transition: background 0.6s ease, border-radius 0.4s ease;
}

.ds-items a {
    padding: 15px 30px;
    color: #000;
}

.ds-items:hover {
    background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%);
    animation: gradientMove 3s ease infinite;
    transition: border-radius 0.4s ease;

}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ds-items:hover a {
    color: var(--third-color);
}

.cramsn_services_modals h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.service_item {
    background-color: #f3f3f3;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
}

.service_item ul {
    margin: 0px;
    padding: 20px 0px 0px 0px;
}

.service_item ul li {
    padding: 0px 0px 10px 0px;
}

.service_item ul li span {
    font-weight: 300;
}

.service_item:hover h3 {
    color: var(--primary-color);
}

.service_item::before {
    content: '';
    position: absolute;
    bottom: -4px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    left: 0px;
    z-index: -1;
    border-radius: 20px;
    opacity: 0;
}

.service_item:hover::before {
    opacity: 1;
}

.services_cta {
    background: linear-gradient(106deg, rgba(0, 42, 114, 1) 55%, rgba(7, 114, 211, 1) 100%);
    transition: border-radius 0.4s ease;
}

.services_cta h2 {
    font-size: 48px;
}

.services_cta h2,
.services_cta p {
    color: var(--third-color);
}

.services_cta p {
    color: var(--third-color);
    font-weight: 300;
}

.services_cta .btn_cta i {
    position: absolute;
    left: 12px;
    top: 3px;
    font-size: 15px;
    color: var(--secondary-color)
}

/* .drug_product_tabs */
.drug_product_tabs {
    height: 370px;
    position: relative;
    z-index: 1;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 50px;
    /* padding: 8px; */
    /* margin-bottom: 40px; */
    border: 1px solid #f8f9fa94;
    width: 100%;
    max-width: 50%;
    margin: auto;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 10px;
    border: none;
    border-radius: 40px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    /* box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3); */
    transform: translateY(0px);
}

/* Tab Content */
.drug_product_tabs .tab-content {
    /* display: none; */
    visibility: hidden;
    /* animation: fadeIn 0.5s ease-in-out; */
    background-color: transparent;
    min-height: 200px;
    width: 100%;
    max-width: 90%;
    margin: auto;
}

.drug_product_tabs .tab-content.active {
    /* display: block; */
    visibility: visible;
    padding: 0px;
    margin-top: 15px;

}

.tab-content.active .content-wrapper {
    border: 1px solid #f8f9fa94;
    border-radius: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drug_product_tabs .content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    align-items: center;
}

.content-list {
    list-style: none;
    margin: 0px;
}

.content-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 200;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    transition: all 0.3s ease;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li:hover {
    color: white;
    transform: translateX(10px);
}

/* .content-list li::before {
            content: '▶';
            margin-right: 15px;
            color: #ff6b6b;
            font-size: 12px;
            transition: transform 0.3s ease;
        } */

.content-list li:hover::before {
    transform: translateX(5px);
}

/* Image Container */
.image-container {
    width: 300px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(238, 90, 36, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        } */

/* .image-container:hover .image-overlay {
            opacity: 1;
        } */

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .tab-nav {
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100px;
    }

    .drug_product_tabs .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-container {
        width: 100%;
        height: 200px;
        order: -1;
    }

    .content-list li {
        font-size: 15px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
        min-width: 90px;
    }

    .content-list li {
        font-size: 14px;
    }

    .image-container {
        height: 180px;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.capacity_items {
    text-align: center;
    color: var(--third-color);
    margin-bottom: 45px;
}

.capacity_items h6 {
    margin-bottom: 14px;
}

.capacity_items h6 span {
    font-size: 13px;
    font-weight: 300;
}

.capacity_items h3 {
    font-size: 38px;
}

.capacity_items h3 span {
    font-size: 20px;
    padding: 0px 0px 0px 6px;
}

.services_cta .cramsn_pattern-bottom {
    position: absolute;
    bottom: -69px;
    width: 100%;
    max-width: 23%;
    right: 0px;

}

.cramsn_supporting_services .service_item {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 45px;
    height: 100%;
    position: relative;
    border: 1px solid var(--secondary-color);
    /* box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 7px 13px -3px, rgb(0 0 0 / 15%) 0px -5px 0px inset; */
}

.cramsn_supporting_services .service_item ul li {
    padding: 10px 0px 10px 0px;
}

.cramsn_supporting_services .service_item:hover {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
}

.cramsn_supporting_services .service_item:hover h3,
.cramsn_supporting_services .service_item:hover span,
.cramsn_supporting_services .service_item:hover i {
    color: var(--third-color);
}

.cramsn_supporting_services .service_item::before {
    opacity: 1;
    background-color: #00000029;
}

.cramsn_supporting_services .service_item:hover::before {
    background-color: var(--primary-color);
}

.cramsn_choose h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_choose .choose_items {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
    border-radius: 20px;
    height: 100%;
    padding: 40px 28px;
}

.cramsn_choose .choose_items h4 {
    color: var(--third-color);
    font-weight: 300;
}

.cramsn_choose .choose_items p {
    color: var(--third-color);
    font-weight: 200;
    font-size: 14px;
}

.choose_items {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.choose_items.show {
    opacity: 1;
    transform: translateY(0);
}

.cramsn_knowledgehub h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_knowledgehub .hud_items h3 {
    font-size: 38px;
}

.hud_items span {
    font-size: 18px;
}

.right_bottom {
    border-right: 1px solid var(--secondary-color);
}

.cramsn_knowledgehub p {
    font-weight: 300;
    color: #000;
}

.brochure_items {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d5d5d5 !important;
    padding: 10px;
    border-radius: 20px !important;
    position: relative;
    background-color: var(--third-color);
}

.brochure_items::before {
    content: '';
    background-color: var(--primary-color);
    position: absolute;
    width: 100%;
    height: 100%;
    right: -6px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
}

.brochure_items:hover::before {
    opacity: 1;
}

.brochure_items:hover h3,
.brochure_items:hover i {
    color: var(--primary-color);
}

.brochure_items img {
    max-width: 35%;
    border-radius: 10px;
}

.content_brochure {
    padding: 0px 20px 0px 20px;
}

.content_brochure span {
    color: #b3b3b3;
    
}

.content_brochure h3 {
    padding: 10px 0px;
    color: #000;
}

.content_brochure i {
    cursor: pointer;
    font-size: 24px;
    color: #000;
}

.service_item p {
    font-weight: 300;
}

.service_item:hover p {
    color: var(--third-color);
}

.cramsn-patch {
    background-color: #c7c5ed3b;
}

.Infra-manufacturing .sub-txt {
    font-size: 13px;
    font-weight: 200;
    color: #e8e8e8a3;
    padding: 0px 24px;
}

.Infra-manufacturing h3 {
    font-size: 30px;
}

.Infra-manufacturing h3 span {
    font-size: 20px;
}

.logo-sections h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.logo-sections img {
    max-width: 75%;
}

.contact_cramsn h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.contact_cramsn a {
    color: var(--secondary-color);
}

.contact_cramsn a p {
    color: #000;
}

.contact_items {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 10px;
    height: fit-content;
}

.contact_items i {
    color: var(--third-color);
    font-size: 20px;
}





/* .form-container {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 900px;
            color: white;
        } */

.form-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* .form-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        } */

/* .form-section {
            display: flex;
            flex-direction: column;
            gap: 25px;
        } */
#bookingForm {
    position: relative;
    z-index: 1;
}

.input-group {
    position: relative;
}

.input-group label {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 400;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.747);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.input-group textarea {
    background: #ffffff17;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgb(255, 255, 255);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.error-message {
    color: #ff4757;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
    animation: slideIn 0.3s ease;
}

.error-message.show {
    display: block;
}

.input-group.error input,
.input-group.error textarea {
    border-bottom-color: #ff4757;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.service-category {
    margin-bottom: 30px;
}

.service-category h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-item input[type="checkbox"]:checked {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-item label {
    font-size: 1rem;
    cursor: pointer;
    margin: 0;
}

.services-error {
    color: #ff4757;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

.services-error.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.book-button {
    /* grid-column: 1 / -1; */
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0);
    color: white;
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 20px;
    letter-spacing: 1px;
    width: 100%;
    /* max-width: 75%; */
}

.book-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.book-button:active {
    transform: translateY(0);
}

/* Success message */
.success-message {
    background: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
    animation: slideIn 0.3s ease;
}

.success-message.show {
    display: block;
}

.form-section h5 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 7px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
        margin: 10px;
    }

    .form-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 15px;
    }

    .book-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 25px 15px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-section {
        gap: 20px;
    }

    .service-category {
        margin-bottom: 25px;
    }
}

.cta_services svg {
    width: 100%;
    max-width: 50px;
}

.ds-items:hover i {
    color: var(--primary-color) !important;
}

.cta_services i {
    position: absolute;
    left: 17px;
    bottom: -4px;
    color: #989898;
    font-size: 18px;
}

.cramsn_box {
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 7px 13px -3px, rgb(0 0 0 / 15%) 0px -5px 0px inset;
    background: transparent;
    transition: background 0.6s ease, border-radius 0.4s ease;
    height: 100%;
}

.cramsn_box:hover {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 35%);
    transition: border-radius 0.4s ease;
}

.cramsn_box:hover p {
    color: var(--third-color);
}

.cramsn_collaboration h5 {
    color: var(--third-color);
    line-height: 30px;
}

.cramsn_collaboration p {
    color: var(--third-color);
    font-weight: 300;
    font-size: 15px;
    padding: 5px 16px 0px 16px;
}

.cramsn_manufacturing h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.cramsn_product_tabs .tab-nav {
    max-width: 100%;
    background-color: #eaeaea;
    box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 7px 13px -3px, rgb(0 0 0 / 15%) 0px -5px 0px inset;
    border-radius: 0px;
    position: sticky;
    top: 0px;
    z-index: 9;
}

.cramsn_product_tabs .tab-btn {
    font-size: 14px;
    white-space: normal;
    border-radius: 0px;
    color: #000;
    font-weight: 400;
}

.cramsn_product_tabs .tab-btn.active {
    background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%);
    animation: gradientMove 3s ease infinite;
    transition: border-radius 0.4s ease;
    color: var(--third-color);
}

.services_item {
    border: 1px solid #000;
    border-radius: 10px;
    position: relative;
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 60%);
    transition: border-radius 0.4s ease;
    border: 1px solid #ffffff00;
}

.services_item::before {
    content: '';
    position: absolute;
    bottom: -10px;
    background-color: var(--primary-color);
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 10px;

}

.services_item:hover {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 60%);
    transition: border-radius 0.4s ease;
    border: 1px solid #ffffff00;
}

.services_item p,
.services_item h5,
.services_item i {
    color: var(--third-color);
}

.services_item i {
    font-size: 14px;
}

.services_item p {
    font-weight: 300;
    font-size: 14px;
}

.cramsn_product_tabs .drug_product_tabs {
    height: 520px;
}

.cdmo_services .drug_product_tabs {
    height: 690px;
}

.cramsn_highlights {
    position: absolute;
    bottom: 49px;
    left: 20px;
    text-align: center;
    padding: 0px 16px;
    color: #fff;
    width: 100%;
    max-width: 80%;
}

.cramsn_highlights p {
    font-size: 12px;
}

.ds-cmo .carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 35%);
    transition: border-radius 0.4s ease;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.unit-slide {
    min-width: 100%;
    padding: 40px 75px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.unit-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.unit-tabs {
    display: flex;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.unit-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.unit-tab.active {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.unit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.unit-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.unit-acres {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.unit-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    position: relative;
}

.feature:not(:last-child)::after {
    content: '|';
    margin-left: 15px;
    opacity: 0.5;
}

.audit-badge {
    position: absolute;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.unit-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 20px;
    border-top: 1px solid var(--third-color);
    padding-top: 25px;
}

.detail-section h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 300;
    opacity: 0.9;
}

.detail-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

.carousel-indicators {
    display: none !important;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #dc2626;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    padding: 7px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-controls:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .unit-slide {
        padding: 25px;
    }

    .unit-title {
        font-size: 2rem;
    }

    .unit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .unit-features {
        flex-direction: column;
        gap: 10px;
    }

    .feature:not(:last-child)::after {
        display: none;
    }

    .unit-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audit-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 15px;
        align-self: flex-start;
    }

    .carousel-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    /* .carousel-container {
        margin: 10px;
    } */

    .unit-slide {
        padding: 20px;
    }

    .unit-title {
        font-size: 1.5rem;
    }

    .unit-tabs {
        gap: 8px;
    }

    .unit-tab {
        padding: 8px 15px;
        font-size: 12px;
    }

    .acceridation_section .btn_cta svg {
        max-width: 17%;
    }

    .btn_cta i {
        left: 22px;
    }

    .news_icon i {
        color: #fff;
        font-size: 20px;
    }

    .vision_items {
        background-size: cover;
        background-position: center;
    }

    .cramsn_core_values .values-list {
        height: 90vh !important;
    }

    .cramsn_core_values .values-list .item_l,
    .cramsn_core_values .values-list .item_i,
    .cramsn_core_values .values-list .item_f,
    .cramsn_core_values .values-list .item-e {
        top: 15%;
        max-width: 90%;
    }

    .data-element {
        width: 100%;
        max-width: 100%;
        border: 1px solid var(--third-color);
        border-radius: 20px;
        padding: 30px 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s ease;
    }

    .timeline-line {
        left: 16%;
        right: auto;
        top: -1%;
        bottom: 10%;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }

    .timeline-step {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: left;
        text-align: left;
    }

    .drug_product_tabs {
        height: 600px;
    }

    .step-circle {
        right: -1px;
        position: relative;
        top: 15px;

    }

    .timeline-line {
        position: absolute;
    }

    .step-content p {
        margin-left: 50px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;


    }

    .tab-nav {
        display: flex;
        /* background: rgba(255, 255, 255, 0.1); */
        border-radius: 50px;
        /* padding: 8px; */
        /* margin-bottom: 40px; */
        border: 1px solid #f8f9fa94;
        width: 100%;
        max-width: 100%;
        margin: auto;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services_cta .btn_cta i {
        position: absolute;
        left: 9px;
        top: 2px;
        font-size: 15px;
        color: var(--secondary-color);
    }

    .border-leftend {
        border-right: none !important;
    }

    .right_bottom {
        border-right: 0px solid var(--secondary-color);
    }

    .testimonial-container {
        width: 100%;
        max-width: 100% !important;
    }

    .content_brochure p {
        font-size: 12px;
        margin-bottom: 0px;
    }

    .content_brochure h3 {
        padding: 0px 0px;
        font-size: 12px;
    }

    .content_brochure span {
        color: #b3b3b3;
        font-size: 13px;
    }

    .cdmo_services .drug_product_tabs {
        height: 1400px;
    }

    .tab-btn {
        padding: 10px 15px;

        min-width: 80px;
    }

    .cramsn_product_tabs .tab-btn {
        font-size: 10px;
        white-space: normal;
        border-radius: 0px;
        color: #000;
        font-weight: 400;
    }

    .cramsn_product_tabs .drug_product_tabs {
        height: 800px;
    }


}

@media (min-width: 360px) and (max-width: 380px) {
    .step-circle {
        right: -10px;
        position: relative;
        top: 15px;

    }
}

.quote-icon {
    color: var(--primary-color);
    font-size: 52px;
}

.border-leftend {
    border-right: 1px solid var(--third-color);
}

.open-title {
    font-size: 20px;
    font-weight: 500;
}

.open_exp,
.open_location,
.open-desc-head {
    font-size: 18px;
    font-weight: 500;
}

/* =================================career page ============================= */
.career_testimonial {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-container {
    width: 100%;
    max-width: 80%;
    padding: 18px 35px 18px 18px;
    border: 1px solid;
    border-radius: 1.5rem;
}

.testimonial-grid {
    display: grid;
    gap: 0rem;
}

.career_testimonial .image-container {
    position: relative;
    width: 100%;
    max-width: 90%;
    height: 300px;
    perspective: 1000px;
    box-shadow: none !important;
}

.testimonial-image {
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career_testimonial .name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    margin-top: 10px;
}

.designation {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.career_testimonial .quote {
    font-size: 16px;
    line-height: 1.5;
}

.arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}

.arrow-button {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 0px;
}

.arrow-button:hover {
    background-color: var(--primary-color);
}

.arrow-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #f1f1f7;
    transition: transform 0.3s;
}

.arrow-button:hover svg {
    fill: #ffffff;
}

.prev-button:hover svg {
    transform: rotate(-12deg);
}

.next-button:hover svg {
    transform: rotate(12deg);
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 0.5fr 1fr;
    }

    .arrow-buttons {
        padding-top: 0;
    }
}

.quote-icon {
    color: var(--primary-color);
    font-size: 52px;
}

.header {
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 35%);
    transition: border-radius 0.4s ease;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.meeting-duration {
    background: #f8f9fa;
    padding: 15px 30px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-weight: 500;
    color: #495057;
}

.datetime-section {
    display: flex;
    min-height: 500px;
}

.date-picker {
    flex: 1;
    padding: 30px;
    border-right: 1px solid #e9ecef;
}

.time-picker {
    flex: 1;
    padding: 30px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.timezone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
}

.calendar {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
}

.month-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #667eea;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.nav-btn:hover {
    background: #f0f0f0;
}

.month-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-header {
    text-align: center;
    padding: 12px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.day:hover {
    background: #e3f2fd;
}

.day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.day.disabled:hover {
    background: none;
}

.day.today {
    border: 2px solid var(--secondary-color);
}

.day.selected {
    background: var(--secondary-color);
    color: white;
}

.day.other-month {
    color: #ccc;
}

.time-slots {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.time-slot {
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    background: white;
}

.time-slot:hover {
    border-color: var(--secondary-color);
    background: #f0f4ff;
}

.time-slot.selected {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.form-section {
    padding: 30px;
    background: #f8f9fa;
    display: none;
}

.form-section.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-right: 0px;
    border-left: 0px;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.error {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #0772D3;
    background: linear-gradient(106deg, rgba(7, 114, 211, 1) 0%, rgba(0, 42, 114, 1) 35%);
    transition: border-radius 0.4s ease;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.selected-datetime {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.selected-datetime h2 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 48px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    display: none;
    margin-bottom: 20px;
}

.globe-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .datetime-section {
        flex-direction: column;
    }

    .date-picker {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom scrollbar */
.time-slots::-webkit-scrollbar {
    width: 6px;
}

.time-slots::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


/* ============================================Detail pages layout ====================================== */
.list_capabilities h2 {
    font-size: 48px;
    color: var(--secondary-color);
}

.list_capabilities h4 {
    font-size: 20;
}

.list_capabilities p {
    font-size: 15px;
    font-weight: 300;
}

.list_capabilities .tabs-wrapper {
    display: flex;
    height: 100%;
    position: relative;
    align-items: baseline;
}

/* Tab Navigation */
.list_capabilities .tab-nav {
    width: 280px;
    padding: 0px 0px;
    overflow: hidden;
    display: block;
    border-radius: 0px;
    margin: 0px;
    position: sticky;
    top: 60px;
}

.list_capabilities .tab-button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #000000;
    padding: 10px 46px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.list_capabilities .tab-button:hover {
    background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%);
    animation: gradientMove 3s ease infinite;
    transition: border-radius 0.4s ease;
    color: var(--third-color);
}


.list_capabilities .tab-button.active {
    background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%);
    animation: gradientMove 3s ease infinite;
    transition: border-radius 0.4s ease;
    color: #ffffff;
}

.list_capabilities .tab-button.active::before {
    transform: scaleY(1);
}

.list_capabilities .tab-icon {
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.list_capabilities .tab-button:hover .tab-icon,
.list_capabilities .tab-button.active .tab-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Tab Content */
.list_capabilities .tab-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    opacity: 1;
    position: relative;
    display: block;
    visibility: visible;
    background: transparent;
    border-left: 1px solid rgba(146, 146, 146, 0.445);
    min-height: auto;
    margin: 0px 0px 40px 35px;
    padding: 0px;
    border-radius: 0px !important;
}

.list_capabilities .tab-pane {
    opacity: 0;
    transform: translateY(20px);
    /* slight slide */
    visibility: hidden;
    position: absolute;
    padding: 0px 40px;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.list_capabilities .tab-pane.active {
    /* opacity: 1;
            transform: translateX(0);
            pointer-events: all; */
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    position: relative;
}

.list_capabilities .tab-pane h2 {
    color: var(--primary-color);
    font-size: 1.9em;
    margin-bottom: 20px;
    font-weight: 400;
}

.list_capabilities .tab-pane h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
}

.list_capabilities .tab-pane p {
    color: #000000;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.list_capabilities .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.list_capabilities .feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list_capabilities .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.list_capabilities .feature-card h3 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.list_capabilities .feature-card p {
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {


    .list_capabilities .tabs-wrapper {
        flex-direction: column;
    }

    .list_capabilities .tab-nav {
        width: 100%;
        background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
        padding: 15px 10px;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .list_capabilities .tab-nav::-webkit-scrollbar {
        display: none;
    }

    .list_capabilities .tab-nav::before {
        height: 3px;
    }

    .list_capabilities .tab-button {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 12px 20px;
        margin: 0 5px;
        font-size: 14px;
        text-align: center;
        border-radius: 25px;
        white-space: nowrap;
    }

    .list_capabilities .tab-button:hover,
    .list_capabilities .tab-button.active {
        transform: none;
        border-radius: 25px;
    }

    .list_capabilities .tab-button::before {
        display: none;
    }

    .list_capabilities .tab-content {
        width: 100%;
    }

    .list_capabilities .tab-pane {
        padding: 20px;
        position: relative;
        height: auto;
    }

    .list_capabilities .tab-pane h2 {
        font-size: 2em;
    }

    .list_capabilities .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .list_capabilities .tab-pane {
        padding: 15px;
    }

    .list_capabilities .tab-pane h2 {
        font-size: 1.8em;
    }

    .list_capabilities .feature-card {
        padding: 20px;
    }
}

/* Loading Animation */
.list_capabilities .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.detail_points {
    position: relative;
    display: flex;
}

.detail_points svg {
    width: 40px;
}

/* .list_capabilities .tab-button:hover .detail_item, */
.detail_points:hover .detail_item,
.tab-button:hover .detail_item,
.detail_points.active .detail_item {
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><polygon points='100,20 170,60 170,140 100,180 30,140 30,60' stroke='%23fff' stroke-width='3' fill='%23fff'/></svg>") !important;
}

.list_capabilities .tab-button:hover .detail_item,
.list_capabilities .tab-button.active .detail_item {
    color: var(--primary-color);
}

.detail_item {
    position: absolute;
    z-index: 9;
    top: 4px;
    left: 4px;
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><polygon points='100,20 170,60 170,140 100,180 30,140 30,60' stroke='%23000' stroke-width='3' fill='%23fff'/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    width: 35px;
    height: 35px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_capabilities .tab-button {
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 0px 13px -3px, rgb(0 0 0 / 5%) 0px -2px 0px inset;
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 276px;
}

.box-items p {
    font-size: 12px;
}

.box-items i {
    color: var(--third-color);
    font-size: 12px;
}

.sub-three {
    font-weight: 400 !important;
    font-size: 18px !important;
    margin: 25px 0px 10px 0px !important;
    color: var(--primary-color) !important;
}

.list_capabilities li {
    position: relative;
}

.list_capabilities li::before {
    content: ">";
    position: absolute;
    top: 0px;
    left: -20px;
}

.list_capabilities img {
    width: 100%;
}

@media (min-width: 1920px) and (max-width: 2500px) {
    .cramsn_core_values .values-list {
        height: 35vh;
    }
}

.ds-cmo-elements .data-element {
    height: 140px;
}

.ds-cmo-elements h6 {
    font-weight: 200;
    font-size: 13px;
    line-height: 20px;
}

#portfolio {
    position: relative;
    z-index: 9999;
}

.advantage_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.advantage_item img {
    width: 100%;
    max-width: 25%;
}

.advantage_item p {
    color: var(--third-color);
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 300 !important;
}

.advantage_item:hover p {
    color: var(--primary-color);
    font-weight: 300 !important;
}

.list_capabilities .tab-panes h2 {
    font-size: 30px;
    color: var(--primary-color);
    padding: 15px 0px;
}

@media (min-width: 320px) and (max-width: 359px) {
    .cramsn-border-end {
        border-right: 1px solid #dee2e600 !important;
    }

    .date-picker {
        padding: 30px 0px;
    }

    .form-section#formSection {
        padding: 0px 0px;
    }
}

@media (min-width: 360px) and (max-width: 370px) {
    .btn_cta i {
        left: 20px;
    }

    .solutions_div .btn_cta i {
        left: 19px;
    }

    .btn_cta svg {
        max-width: 18%;
    }

    .form-section#formSection {
        padding: 0px 0px;
    }

    .form-content {
        gap: 0px;
    }

    .advantage_item img {
        width: 100%;
        max-width: 20%;
    }

    .advantage_item {
        gap: 10px;
    }

    .cramsn_core_values p {
        font-size: 14px;
    }

    .timeline-step {
        align-items: flex-start;
    }

    .step-circle {
        right: -1px;
        position: relative;
        top: 0px;
    }

    .step-circle {
        width: 60px;
        height: 50px;
    }

    .step-content p,
    .step-content h3 {
        margin-left: 35px;
    }

    .timeline-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line {
        left: 14%;
        right: auto;
        top: 10%;
    }

    .service_item,
    .cramsn_supporting_services .service_item {
        padding: 40px 40px;
    }

    .services_cta .btn_cta i {
        left: 12px;
    }

    .services_cta .btn_cta svg {
        max-width: 22%;
    }

    .cramsn-border-end {
        border-right: 1px solid #dee2e600 !important;
    }

    .capacity_items {
        text-align: left;
    }

    .cramsn_area_expertise .cta_services {
        width: 100%;
        max-width: 15%;
    }

    .cramsn_area_expertise .cta_services i {
        left: 14px;
        bottom: -1px;
        font-size: 14px;
    }

    .ds-cmo-elements .data-element {
        height: auto;
    }

    .drug_product_tabs .tab-content {
        max-width: 100%;
    }

    .cramsn_product_tabs .tab-btn {
        font-size: 12px;
        min-width: 100px;
    }

    .cramsn_knowledgehub .hud_items h3 {
        font-size: 30px;
    }

    .cramsn_product_tabs .drug_product_tabs {
        height: 100%;
    }

    .cramsn_highlights {
        position: absolute;
        bottom: 29px;
    }

    .calendar-grid {
        gap: 0px;
    }

    .date-picker {
        flex: 1;
        padding: 30px 0px;
    }

    .header {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    .form-grid {
        margin-top: 20px;
    }

    #meetingForm {
        padding-bottom: 20px;
    }

    .selected-datetime h2 {
        font-size: 30px;
    }

    .date-picker {
        padding: 30px 0px;
    }

    .list_capabilities .tab-content {
        margin: 0px 0px 40px 0px;
    }

    .list_capabilities .tab-button {
        width: 250px;
    }

    .list_capabilities .tab-button {
        padding: 12px 50px;
    }

    .list_capabilities .tab-nav {
        background: linear-gradient(90deg, #fff 0%, #fff 100%);
        top: 0px;
        z-index: 99999;
    }

    .list_capabilities .tab-content {
        border-left: 1px solid rgb(146 146 146 / 0%);
    }

    .detail_item {
        top: 5px;
        left: 14px;
    }
}

.cramsn-border-end {
    border-right: 1px solid #dee2e6;
}

 .cramsn_newslatter .active {
        background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%) !important;
        animation: gradientMove 3s ease infinite;
        transition: border-radius 0.4s ease;
    }

    .navigation-item {
        border-radius: 20px;
    }

@media (min-width: 371px) and (max-width: 425px) {
    .detail_item {
        top: 5px;
        left: 14px;
    }

    .list_capabilities .tab-content {
        border-left: 1px solid rgb(146 146 146 / 0%);
    }

    .list_capabilities .tab-nav {
        background: linear-gradient(90deg, #fff 0%, #fff 100%);
        top: 0px;
        z-index: 99999;
    }

    .list_capabilities .tab-button {
        padding: 12px 50px;
    }

    .list_capabilities .tab-button {
        width: 250px;
    }

    .date-picker {
        padding: 30px 0px;
    }

    .header p {
        font-size: 1rem;
    }

    .selected-datetime h2 {
        font-size: 30px;
    }

    #meetingForm {
        padding-bottom: 20px;
    }

    .form-grid {
        margin-top: 20px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .header {
        padding: 15px;
    }

    .date-picker {
        flex: 1;
        padding: 30px 0px;
    }

    .calendar-grid {
        gap: 0px;
    }

    .cramsn_highlights {
        position: absolute;
        bottom: 29px;
    }

    .cramsn_product_tabs .drug_product_tabs {
        height: 100%;
    }

    .cramsn_knowledgehub .hud_items h3 {
        font-size: 30px;
    }

    .cramsn_product_tabs .tab-btn {
        font-size: 12px;
        min-width: 100px;
    }

    .drug_product_tabs .tab-content {
        max-width: 100%;
    }

    .ds-cmo-elements .data-element {
        height: auto;
    }

    .cramsn_area_expertise .cta_services i {
        left: 14px;
        bottom: -1px;
        font-size: 14px;
    }

    .cramsn_area_expertise .cta_services {
        width: 100%;
        max-width: 15%;
    }

    .btn_cta i {
        left: 24px;
    }

    .form-section#formSection {
        padding: 0px 0px;
    }

    .form-content {
        gap: 0px;
    }

    .advantage_item img {
        width: 100%;
        max-width: 20%;
    }

    .advantage_item {
        gap: 10px;
    }

    .cramsn_core_values p {
        font-size: 14px;
    }

    .timeline-step {
        align-items: flex-start;
    }

    .step-circle {
        right: -1px;
        position: relative;
        top: 0px;
    }

    .step-circle {
        width: 60px;
        height: 50px;
    }

    .step-content p,
    .step-content h3 {
        margin-left: 35px;
    }

    .timeline-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line {
        left: 18%;
        right: auto;
        top: 10%;
    }

    .service_item,
    .cramsn_supporting_services .service_item {
        padding: 40px 40px;
    }

    .services_cta .btn_cta svg {
        max-width: 22%;
    }

    .services_cta .btn_cta i {
        left: 12px;
    }

    .cramsn-border-end {
        border-right: 1px solid #dee2e600 !important;
    }

    .capacity_items {
        text-align: left;
    }

    .list_capabilities .tab-content {
        margin: 0px 0px 40px 0px;
    }

    .button-container {
        max-width: 75%;
    }

    .services_cta h2 {
        font-size: 30px;
    }

    .services_cta p {
        font-size: 12px;
    }

    .services_layout h2 {
        font-size: 43px;
    }

}

@media (min-width: 990px) and (max-width: 1200px) {
    .btn_cta i {
        position: absolute;
        left: 16px;
        top: 7px;
        font-size: 15px;
        color: #fff;
    }
    .home_content {
        bottom: 10%;
        left: 10%;
    }
    .main-heading,.about_cramsn_section .left_div h2,.service_section h2,.service_section h2,.infrastructure_section h2,.acceridation_section h2{
        font-size: 38px;
    }
    .button-container a.btn{
        font-size: 14px !important;
    }
    p{
        font-size: 14px !important;
    }
    .infrastructure_section .card_item p {
        font-size: 100px !important;
    }
    .infrastructure_section .card_item h5{
        font-size: 15px;
    }
    .event_head .event_date, .event_head .event_location{
          font-size: 14px !important;
    }
    .cramsn_supporting_services .service_item{
        padding: 40px 25px;
    }
}

@media (min-width: 426px) and (max-width: 480px) {
    .btn_cta svg {
        max-width: 15%;
    }

    .form-section {
        padding: 0px 30px;
    }

    .form-content {
        gap: 0px;
    }
}
@media (min-width: 1350px) and (max-width: 1549px) {
   
}
@media (min-width: 1550px) and (max-width: 1749px) {
    .about_cramsn_section .left_div h2{
        font-size: 38px;
    }
    .home_content {
        left: 13%;
    }

    .service_section .cramsn_pattern,
    .cramsn_advantages .cramsn_pattern {
        left: -10px;
        max-width: 20%;
    }

    .btn_cta i {
        left: 24px;
    }

    .navbar-nav .nav-link {
        padding: 0rem 0.9rem !important;
    }

    .services_layout .cramsn_pattern-top {
        max-width: 16%;
        top: 10%;
        left: 10%;
        z-index: 1;
    }

    .services_layout .cramsn_pattern-bottom {
        max-width: 16%;
        bottom: -47px;
        right: 10%;
    }

    .cramsn_logo {
        width: 200px;
        height: auto;
        padding: 9px 0px;
    }
     .acceridation_section{
        margin-bottom: 50px;
    }
    .circle {
        position: absolute;
        width: 140px;
        height: 140px;
    }
    .circle_div .center {
        top: 190px;
        right: 100px;
        left: inherit;
    }
    .top-right {
        top: 125px;
        right: -24px;
        left: inherit;
    }
    .top {
        top: 51px;
        right: 95px;
        left: inherit;
    }
    .bottom-right {
        top: 264px;
        right: -19px;
        left: inherit;
    }
    .bottom {
        top: 329px;
        right: 105px;
        left: inherit;
    }
    .top-left {
        top: 116px;
        right: 219px;
        left: inherit;
    }
    .bottom-left {
        top: 255px;
        right: 224px;
        left: inherit;
    }
        .cramsn_core_values .values-list {
        height: 55vh;
    }
}
.navigation .nav-btn:hover{
    border-radius: 6px !important;
    background: var(--primary-color);
}
@media (min-width: 1750px) and (max-width:1919px) {
    .cramsn_core_values .values-list {
        height: 45vh;
    }

    .tab-btn {
        padding: 21px 10px;
    }

    .drug_product_tabs .tab-content {
        max-width: 75%;
    }

    .services_layout .cramsn_pattern-top {
        left: 10%;
        max-width: 18%;
    }

    .services_layout .cramsn_pattern-bottom {
        max-width: 18%;
        right: 10%;
    }

    .cramsn_logo {
        width: 200px;
        height: auto;
        padding: 9px 0px;
    }
     .acceridation_section{
        margin-bottom: 50px;
    }
    .circle {
        position: absolute;
        width: 140px;
        height: 140px;
    }
    .circle_div .center {
        top: 190px;
        right: 100px;
        left: inherit;
    }
    .top-right {
        top: 125px;
        right: -24px;
        left: inherit;
    }
    .top {
        top: 51px;
        right: 95px;
        left: inherit;
    }
    .bottom-right {
        top: 264px;
        right: -19px;
        left: inherit;
    }
    .bottom {
        top: 329px;
        right: 105px;
        left: inherit;
    }
    .top-left {
        top: 116px;
        right: 219px;
        left: inherit;
    }
    .bottom-left {
        top: 255px;
        right: 224px;
        left: inherit;
    }
}

@media (min-width: 1920px) and (max-width: 2339px) {
    .acceridation_section{
        margin-bottom: 50px;
    }
    .circle {
        position: absolute;
        width: 140px;
        height: 140px;
    }
    .circle_div .center {
        top: 190px;
        right: 100px;
        left: inherit;
    }
    .top-right {
        top: 125px;
        right: -24px;
        left: inherit;
    }
    .top {
        top: 51px;
        right: 95px;
        left: inherit;
    }
    .bottom-right {
        top: 264px;
        right: -19px;
        left: inherit;
    }
    .bottom {
        top: 329px;
        right: 105px;
        left: inherit;
    }
    .top-left {
        top: 116px;
        right: 219px;
        left: inherit;
    }
    .bottom-left {
        top: 255px;
        right: 224px;
        left: inherit;
    }
    .mission-text {
        font-size: 1.3rem;
    }

    .mission-title {
        font-size: 2.8rem;
    }

    .cramsn_newslatter .active {
        background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%) !important;
        animation: gradientMove 3s ease infinite;
        transition: border-radius 0.4s ease;
    }

    .navigation-item {
        border-radius: 20px;
    }

    .cramsn_collaboration h5 {
        font-size: 28px;
    }

    .home_content {
        position: absolute;
        bottom: 4%;
        left: 20%;
    }

    .cramsn_logo {
        width: 150px;
        height: auto;
        padding: 9px 0px;
    }

    .btn_cta i {
        left: 23px;
    }

    .service_section .btn_cta i {
        left: 25px;
    }

    .service_section .cramsn_pattern,
    .cramsn_advantages .cramsn_pattern {
        max-width: 25%;
    }

    .back_white {
        bottom: -1px;
    }

    .cramsn_core_values .values-list {
        height: 50vh;
    }

    .services_layout .cramsn_pattern-top {
        max-width: 17%;
        top: 12%;
        left: 13%;
    }

    .services_layout .cramsn_pattern-bottom {
        max-width: 16%;
        bottom: -47px;
        right: 12%;
    }

    .drug_product_tabs .tab-content {
        max-width: 66%;
    }

    .tab-btn {
        padding: 21px 10px;
    }

    .drug_product_tabs .tab-content {
        max-width: 75%;
    }
}

@media (min-width: 2340px) and (max-width: 2500px) {
    .btn_cta i {
        position: absolute;
        left: 24px;
    }

    .service_section .cramsn_pattern,
    .cramsn_advantages .cramsn_pattern,
    .cramsn_pattern_two {
        max-width: 20%;
    }

    .back_white {
        bottom: -2px;
    }

    .services_layout .cramsn_pattern-top {
        position: absolute;
        width: 100%;
        max-width: 16%;
        top: -47px;
        left: 17%;
        z-index: 1;
    }

    .services_layout .cramsn_pattern-bottom {
        position: absolute;
        width: 100%;
        max-width: 16%;
        bottom: -47px;
        right: 16%;
        z-index: 1;
    }

    .services_layout .cramsn_pattern-top {
        position: absolute;
        width: 100%;
        max-width: 20%;
        top: -47px;
        left: 15%;
        z-index: 1;
    }

    .services_layout .cramsn_pattern-bottom {
        position: absolute;
        width: 100%;
        max-width: 20%;
        bottom: -101px;
        right: 16%;
        z-index: 1;
    }

    .drug_product_tabs .tab-content {
        max-width: 67%;
    }

    .list_capabilities p {
        font-size: 18px;
        font-weight: 300;
    }
            .cramsn_core_values .values-list {
        height: 40vh;
    }
     .acceridation_section{
        margin-bottom: 50px;
    }
    .circle {
        position: absolute;
        width: 140px;
        height: 140px;
    }
    .circle_div .center {
        top: 190px;
        right: 100px;
        left: inherit;
    }
    .top-right {
        top: 125px;
        right: -24px;
        left: inherit;
    }
    .top {
        top: 51px;
        right: 95px;
        left: inherit;
    }
    .bottom-right {
        top: 264px;
        right: -19px;
        left: inherit;
    }
    .bottom {
        top: 329px;
        right: 105px;
        left: inherit;
    }
    .top-left {
        top: 116px;
        right: 219px;
        left: inherit;
    }
    .bottom-left {
        top: 255px;
        right: 224px;
        left: inherit;
    }
}
@media (min-width: 2510px) and (max-width: 2690px){
    .home_content {
        position: absolute;
        bottom: 9%;
        left: 26%;
    }
        .cramsn_core_values .values-list {
        height: 40vh;
    }
     .acceridation_section{
        margin-bottom: 50px;
    }
    .circle {
        position: absolute;
        width: 140px;
        height: 140px;
    }
    .circle_div .center {
        top: 190px;
        right: 100px;
        left: inherit;
    }
    .top-right {
        top: 125px;
        right: -24px;
        left: inherit;
    }
    .top {
        top: 51px;
        right: 95px;
        left: inherit;
    }
    .bottom-right {
        top: 264px;
        right: -19px;
        left: inherit;
    }
    .bottom {
        top: 329px;
        right: 105px;
        left: inherit;
    }
    .top-left {
        top: 116px;
        right: 219px;
        left: inherit;
    }
    .bottom-left {
        top: 255px;
        right: 224px;
        left: inherit;
    }
}
@media (min-width: 2691px) and (max-width: 3290px){
    .home_content {
        position: absolute;
        bottom: 9%;
        left: 26%;
    }
        .cramsn_core_values .values-list {
        height: 40vh;
    }
     .acceridation_section{
        margin-bottom: 50px;
    }
    .circle {
        position: absolute;
        width: 140px;
        height: 140px;
    }
    .circle_div .center {
        top: 190px;
        right: 100px;
        left: inherit;
    }
    .top-right {
        top: 125px;
        right: -24px;
        left: inherit;
    }
    .top {
        top: 51px;
        right: 95px;
        left: inherit;
    }
    .bottom-right {
        top: 264px;
        right: -19px;
        left: inherit;
    }
    .bottom {
        top: 329px;
        right: 105px;
        left: inherit;
    }
    .top-left {
        top: 116px;
        right: 219px;
        left: inherit;
    }
    .bottom-left {
        top: 255px;
        right: 224px;
        left: inherit;
    }
}
.list_capabilities .tabs-wrapper {
    padding-top: 20px;
}

.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}

.descrip {
    font-size: 12px;
    color: #999;
}

dd {
    margin-bottom: 0px;
}

.nesttabs a.nav-link {
    background-color: #eef1f6;
    border: 1px solid #cfd6e1;
    border-radius: 0px;
    color: #000;
    z-index: 1;

}

.nesttabs a.nav-link.active {
    background-color: #FFF;
    z-index: 10000;
    box-shadow: 0px 18px 12px -12px rgba(226, 231, 237, 1);
    border-right: #FFF;
}

.nesttabs .container {
    background-color: #FFF;
    padding: 12px;
}

.nesttabs {
    padding: 12px;
    background-color: #dce1e9;
}

.cramsn_media .tab-content{
    visibility: visible;
    display: block;
    opacity: 1;
    position: relative;
}
/* SECTION VERTICAL TABS */
#experienceTab.nav-pills .nav-link.active {
    color: var(--third-color) !important;
    background-color: var(--primary-color);
    border-radius: 0px;
    /*border-left: 3px solid var(--primary-color);*/
}
#experienceTab.nav-pills .nav-item.active{
   
    background: linear-gradient(106deg, #ce3820 0%, #7f170f 90%);
    animation: gradientMove 3s ease infinite;
}
#experienceTab.nav-pills .nav-item.active a{
     color: var(--third-color) !important;
}
#experienceTab.nav-pills .nav-item {
     border-radius: 20px;
    box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 7px 13px -3px, rgb(0 0 0 / 15%) 0px -5px 0px inset;
    margin-top: 7px;
}


/* STUB  LINKS */
#experienceTab a {
    color: var(--primary-color);
    transition: 0.3s eas-in-out;
}
#experienceTab a:hover {
    color: var(--secondary-color);
}