/* =========================
   Responsive CSS
   ========================= */
@media (min-width: 1200px) {

    .header nav ul {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 4px;
        height: 100%;
    }

    .submenu {
        align-items: flex-start !important;
    }

    .nav-menu>li:nth-of-type(4) {
        margin-right: auto;
    }

    .nav-menu .logo {
        flex-shrink: 0;
        margin-right: 30px;
    }

    .nav-menu .logo+li {
        margin-left: auto;
    }

    .arabic-page .nav-menu .logo+li {
        margin-left: unset;
        margin-right: auto;
    }

    .arabic-page .nav-menu>li:nth-of-type(4) {
        margin-right: unset;
        margin-left: auto;
    }

    .arabic-page .nav-menu .logo {
        margin-right: 0;
        margin-left: 30px;
    }

    .submenu-submenu>a>img {
        filter: invert();
    }
}

@media (max-width: 1440px) {
    .logo {
        width: 230px;
        height: 83px;
    }

    .logo img {
        width: 140px;
    }

    .header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header ul li a {
        font-size: 15.5px;
    }

    .environmental-container {
        padding-right: 40px;
        padding-left: 40px;
    }

    .env-grid {
        gap: 40px;
    }
}

/* Small Desktop / Laptop */
@media (max-width: 1240px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header ul li a {
        font-size: 14px;
    }

    .logo {
        width: 200px;
        height: 72px;
    }

    .logo img {
        width: 120px;
    }

    .solution-card:nth-child(4) {
        border-right: 1px solid rgba(41, 50, 117, 0.12);
    }

    .solution-card:nth-child(5) {
        border-bottom: 1px solid rgba(41, 50, 117, 0.12);
    }

    .solution-card:nth-child(3),
    .solution-card:nth-child(6) {
        border-right: none;
    }
}

/* Laptop */
@media (max-width: 1200px) {
    .header {
        gap: 16px;
    }

    .logo img {
        width: 140px;
    }

    .header nav ul {
        gap: 14px;
        justify-content: flex-start;
    }

    .has-submenu:hover>a>img {
        transform: unset;
    }

    .header ul a {
        font-size: 16px;
    }

    .btn-wrapper {
        gap: 12px;
    }

    .btn span {
        font-size: 16px;
    }

    .common-heading {
        font-size: 32px;
        line-height: 44px;
    }

    .career-intro-section .common-heading {
        line-height: 40px;
    }

    .stat-section>div>span:first-child {
        font-size: 40px;
        line-height: 38px;
    }

    .about-section,
    .business-section,
    .projects-section,
    .blogs-section,
    .footer,
    .investors-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .impact-wrapper h3 {
        padding-left: 20px;
        font-size: 22px;
    }

    .arabic-page .impact-wrapper h3 {
        padding-left: 0;
        padding-right: 20px;
    }

    .impact-wrapper p {
        font-size: 16px;
        line-height: 24px;
    }

    .business-card-content .btn-gray {
        min-width: 165px;
    }

    .blogs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }


    .header {
        align-items: center;
        z-index: 1000;
    }

    .menu-wrapper {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 360px;
        max-width: 85%;
        height: 100vh;
        background: rgba(30, 30, 30, 0.96);
        backdrop-filter: blur(16px);
        padding: 100px 28px 30px;
        transition: 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .header ul li a {
        justify-content: space-between;
    }

    .arabic-page .navbar {
        right: unset;
        left: -100%;
    }

    .arabic-page .navbar.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-submenu .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        background: transparent;
        padding: 0 0 0 14px;
        box-shadow: none;
    }

    .has-submenu {
        flex-direction: column;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .has-submenu .submenu li {
        border: 0;
        margin-top: 14px;
    }

    .has-submenu .submenu li a {
        padding: 11px 12px;
        color: #fff;
        text-align: left;
    }

    .arabic-page .has-submenu .submenu li a {
        text-align: right;
    }

    .nav-menu>li:last-child {
        padding-bottom: 36px;
    }

    .has-submenu.active>a>.submenu-icon {
        transform: rotate(180deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    .logo-mobile {
        display: flex;
    }

    .language-btn-mobile {
        display: flex;
        padding: 0;
    }

    .nav-menu .logo {
        display: none;
    }

    .nav-menu .language-btn {
        display: none;
    }

    .header ul li a {
        backdrop-filter: unset;
    }

    .submenu-submenu {
        width: 100%;
        flex-direction: column;
    }

    .submenu-submenu>a .submenu-icon {
        transform: none;
    }

    .submenu-submenu.active>a .submenu-icon {
        transform: rotate(180deg);
    }

    .header nav ul.submenu-menu {
        position: static;
        min-width: 100%;
        width: 100%;
        display: none !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0 0 0 18px;
        border-radius: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: auto;
        justify-content: flex-start;
    }

    .header nav .submenu-submenu.active>ul.submenu-menu {
        display: flex !important;
    }

    .header .submenu-menu li {
        width: 100%;
        margin-top: 8px;
    }

    .header .submenu-menu li a {
        width: 100%;
        text-align: left;
    }

    .gov-card .section-header {
        gap: 20px;
        margin-bottom: 20px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .hero-section {
        height: 760px;
    }

    .hero-content {
        padding: 120px 20px 40px;
    }

    .hero-content h1 {
        font-size: 28px;
        max-width: 520px;
        margin-top: 0;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 24px;
        max-width: 500px;
        margin: 20px 0 28px;
    }

    .hero-custom-pagination {
        right: 15px;
    }

    .about-section {
        flex-direction: column;
        padding-top: 55px;
        padding-bottom: 55px;
        gap: 30px;
    }

    .about-img,
    .about-content {
        width: 100%;
    }

    .about-content {
        padding: 0;
    }

    .impact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-wrapper>div {
        height: 420px;
    }

    .impact-wrapper p {
        opacity: 1;
        visibility: visible;
    }

    .business-card-wrapper {
        min-height: 420px;
    }

    .solutions-section .common-heading,
    .solutions-section>p {
        max-width: 580px;
    }

    .business-card {
        padding: 45px 28px 30px;
    }

    .business-card>div {
        align-items: flex-start;
        flex-direction: column;
    }

    .business-card p {
        max-width: 100%;
    }

    .solutions-section {
        padding: 50px 20px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-section {
        flex-direction: column;
        padding: 55px 20px;
    }

    .why-section p {
        margin-bottom: 24px;
    }

    .why-img,
    .why-content {
        width: 100%;
    }

    .why-img img {
        border-radius: 4px;
        max-height: 520px;
    }

    .investors-section {
        flex-direction: column;
    }

    .investors-content,
    .investors-img {
        width: 100%;
    }

    .investors-img img {
        max-height: 500px;
    }

    .investors-content-wrapper {
        flex-direction: column;
    }

    .blogs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-section>div {
        padding: 40px 24px;
    }

    .business-wrapper {
        flex-direction: column;
    }

    .business-card-wrapper>img {
        object-position: top;
    }

    .business-card-wrapper {
        min-height: 500px;
    }
}

/* Small Tablet */
@media (max-width: 767px) {
    .common-heading {
        font-size: 28px;
        line-height: 38px;
    }

    .career-intro-section .common-heading {
        line-height: 32px;
    }

    .stat-section>div>span:first-child {
        font-size: 28px;
        line-height: 28px;
    }

    .stat-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-section>div {
        padding: 26px 18px;
    }

    .section-label {
        padding: 9px 12px;
        font-size: 12px;
        line-height: 14px;
    }

    .logo img {
        width: 125px;
    }

    .btn {
        padding: 9px 13px;
        border-radius: 10px;
    }

    .btn span {
        font-size: 15px;
        line-height: 20px;
    }

    .btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-section {
        height: 680px;
    }

    .hero-content {
        padding: 100px 20px 35px;
    }

    .hero-content h1 {
        font-size: 25px;
        max-width: 90%;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 22px;
        max-width: 90%;
        margin: 16px 0 24px;
    }

    .hero-custom-pagination {
        right: 10px;
        width: 18px;
    }

    .hero-custom-pagination .splide__pagination__page {
        height: 36px;
    }

    .hero-custom-pagination p {
        font-size: 12px;
    }

    .about-section {
        padding: 45px 20px;
    }

    .about-content .common-heading,
    .why-content .common-heading,
    .investors-content .common-heading {
        line-height: 34px;
    }


    .arrow-icon {
        width: 40px;
        height: 40px;
    }

    .arrow-icon img {
        width: 16px;
        height: auto;
        object-fit: cover;
    }

    .business-card h3 {
        margin: 10px 0 6px;
    }


    .about-content h6,
    .about-content p {
        font-size: 15px;
        line-height: 24px;
    }

    .impact-section {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .impact-section>p {
        margin-bottom: 20px;
    }

    .impact-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .impact-wrapper>div {
        height: 360px;
        border-radius: 18px;
        padding: 30px 20px;
    }

    .impact-wrapper h3 {
        height: 70px;
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 30px;
        max-width: 100%;
    }

    .business-section {
        padding: 40px 15px;
    }

    .business-section>p {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 14px;
    }

    .business-card-wrapper {
        min-height: 545px;
        border-radius: 22px;
    }

    .business-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .business-card-wrapper>img {
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
    }

    .business-card h3 {
        font-size: 22px;
        line-height: 26px;
    }

    .business-card p {
        font-size: 15px;
        line-height: 20px;
    }

    .solutions-section {
        padding: 45px 20px;
        align-items: flex-start;
    }

    .solutions-section .common-heading,
    .solutions-section>p {
        text-align: left;
    }

    .solutions-section>p {
        font-size: 15px;
        line-height: 23px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 160px;
        padding: 28px 22px;
    }

    .projects-section {
        padding: 55px 20px 45px;
    }

    .projects-section>p {
        font-size: 15px;
        line-height: 23px;
    }

    .project-card {
        padding: 22px;
    }

    .project-card span {
        font-size: 14px;
        padding: 8px 16px;
    }

    .project-card h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .project-card p {
        font-size: 15px;
        line-height: 21px;
    }

    .projects-section .splide__arrow {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .projects-section .splide__arrow--prev {
        left: -10px;
    }

    .projects-section .splide__arrow--next {
        right: -10px;
    }

    .why-section {
        padding: 45px 20px;
    }

    .why-content p,
    .why-content ul li {
        font-size: 15px;
        line-height: 23px;
    }

    .investors-section {
        padding: 45px 20px;
    }

    .investors-content {
        padding: 35px 22px;
    }

    .investors-content .common-heading {
        margin-top: 24px;
    }

    .blogs-section {
        padding: 50px 20px;
    }

    .blogs-sec-heading {
        margin-bottom: 28px;
    }

    .blogs-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blogs-wrapper h3 {
        margin-top: 22px;
    }

    .blog-card p {
        margin-bottom: 16px;
    }

    .footer {
        padding: 45px 20px 28px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-center {
        padding: 40px 0 28px;
    }

    .copyright {
        flex-direction: column;
        margin-top: 28px;
        gap: 8px;
    }

    .copyright p,
    .copyright p a {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-content span {
        margin-bottom: 12px;
    }

    .footer-content a {
        margin-bottom: 6px;
    }

    .business-card-wrapper::after {
        height: 220px;
    }

    .stat-section>div>span:nth-child(2) {
        margin: 12px 0 6px;
    }

    .contact-intro-section {
        padding: 40px 20px;
    }

    .contact-intro-section p {
        font-size: 15px;
        line-height: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .common-heading {
        font-size: 23px;
        line-height: 32px;
  
    }
    .trusted-brands-sec .common-heading{
                text-align: center;
    }
    .career-intro-section .common-heading {
        line-height: 28px;
    }

    .career-card {
        border-radius: 16px;
    }

    .investors-content>div {
        padding: 32px 20px;
    }

    .logo img {
        width: 96px;
    }

    .logo {
        width: 150px;
        height: 54px;
    }

    .header {
        gap: 14px;
    }

    .investors-content>div h3 {
        font-size: 15px;
        line-height: 18px;
    }

    .investors-content>div p {
        font-size: 15px;
        line-height: 21px;
    }

    .stat-section>div>span:first-child {
        font-size: 22px;
        line-height: 22px;
    }

    .stat-section>div {
        padding: 20px 14px;
    }

    .why-content ul {
        padding-inline: 10px;
    }

    .hero-section {
        height: 620px;
    }

    .hero-content h1 {
        font-size: 20px;
        max-width: 305px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 21px;
    }

    .hero-custom-pagination {
        display: none;
    }

    .btn-wrapper {
        flex-wrap: unset;
    }

    .btn-wrapper .btn {
        padding: 8px 10px;
        gap: 6px;
    }

    .btn-wrapper .btn span {
        font-size: 12px;
        line-height: 16px;
    }

    .about-content p {
        margin: 14px 0 26px;
    }

    .impact-wrapper>div {
        height: 300px;
    }

    .solution-card>h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .project-card {
        padding-left: 20px;
        padding-right: 20px;
        min-height: 400px;
    }

    .project-card::before {
        height: 100%;
        background: rgba(0, 0, 0, 0.40);
    }

    .blog-card>div:nth-child(2) {
        gap: 10px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    .business-card-wrapper::before {
        background: rgba(0, 0, 0, 0.60);
    }

    .solutions-section>p {
        max-width: 340px;
    }

    .projects-section .splide__arrow {
        width: 32px;
        height: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-content a {
        font-size: 14px;
    }

    .footer-content span {
        font-size: 18px;
    }

    .footer-logo img {
        width: 130px;
    }

    .hero-content p {
        margin: 12px 0 18px;
    }

    .investors-content>p:first-of-type {
        font-size: 15px;
    }

    .blog-card p,
    .blog-card .media-more-btn,
    .stat-section>div>p,
    .stat-section>div>span:nth-child(2) {
        font-size: 15px;
        line-height: 20px;
    }

    .stat-section>div>span:nth-child(2) {
        font-size: 13px;
        line-height: 17px;
    }

    .stat-section>div>p {
        font-size: 12px;
        line-height: 17px;
    }

    .investors-content>p:last-of-type {
        font-size: 13px;
    }

    .media-more-btn {
        font-size: 16px;
        line-height: 20px;
    }

    .blogs-wrapper h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .business-card h3 {
        font-size: 20px;
        line-height: 24px;
    }
}


/* Project Page - Laptop */
@media (max-width: 1199px) {
    .common-hero-section {
        height: 620px;
        padding: 90px 35px;
    }

    .management-hero {
        padding-bottom: 80px;
    }

    .single-blog-hero {
        padding-bottom: 60px !important;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-card-wrapper {
        padding: 28px 20px;
    }

    .project-content-item {
        gap: 50px 20px;
    }

    .healthcare-banner {
        padding: 80px 35px;
    }

    .career-intro-section {
        gap: 30px;
    }

    .career-arrow {
        width: 40px;
        height: 40px;
    }

    .career-arrow img {
        width: 16px;
        height: auto;
    }


    .healthcare-banner-wrapper {
        padding: 70px 30px 50px;
    }
}

/* Project Page - Tablet */
@media (max-width: 991px) {
    .common-hero-section {
        height: 520px;
        padding: 80px 25px;
    }

    .career-intro-section {
        flex-direction: column;
    }

    .career-intro-section .common-heading {
        text-align: center;
    }

    .career-intro-section p {
        text-align: center;
    }

    .management-hero {
        padding-bottom: 60px;
    }

    .common-hero-section h1 {
        font-size: 32px;
        text-align: center;
    }

    .common-hero-section p {
        font-size: 16px;
        line-height: 22px;
    }

    .intro-section {
        padding: 55px 20px 40px;
    }

    .intro-section p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 35px;
    }

    .project-content {
        padding: 45px 20px 100px;
    }

    .project-content-item,
    .project-content-item.active {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .project-item-img {
        height: 420px;
    }

    .project-item-card h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .project-item-card>p {
        width: 100%;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .healthcare-banner h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .healthcare-banner p {
        margin-bottom: 35px;
    }
}

/* Project Page - Small Tablet */
@media (max-width: 767px) {
    .common-hero-section {
        height: 460px;
        padding: 70px 18px;
    }

    .management-hero {
        padding-bottom: 50px;
    }

    .single-blog-hero {
        padding-bottom: 50px !important;
    }

    .why-content {
        flex-direction: column;
    }

    .common-hero-section h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .common-hero-section p {
        font-size: 15px;
        line-height: 21px;
    }

    .intro-section {
        padding: 45px 16px 35px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .project-card-wrapper {
        padding: 22px 18px;
        gap: 15px;
    }

    .project-card-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .project-card-wrapper h2 {
        font-size: 16px;
        line-height: 22px;
    }

    .project-content {
        padding: 35px 16px 70px;
    }

    .project-item-img {
        height: 360px;
    }

    .project-item-img-content {
        padding: 22px;
    }

    .project-item-img-content>span {
        padding: 8px 16px;
        font-size: 14px;
        line-height: 18px;
    }

    .project-item-img-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .project-item-img-content>div>span {
        font-size: 14px;
        line-height: 20px;
    }

    .project-item-card h3 {
        font-size: 20px;
        line-height: 28px;
        margin: 18px 0 10px;
    }

    .project-item-card>p {
        font-size: 15px;
        line-height: 21px;
    }

    .investors-content {
        grid-template-columns: 1fr;
        padding: 25px 0 0;
    }

    .why-img img {
        min-height: 130px;
    }

    .healthcare-banner-wrapper {
        padding: 50px 20px 40px;
    }

    .blogs-section-2+.healthcare-banner-wrapper {
        padding: 40px 20px;
    }

    .single-blog-page-wrapper .healthcare-banner-wrapper,
    .esg-reporting+.healthcare-banner-wrapper {
        padding-top: 40px;
    }

    .single-blog-hero h1 {
        margin-top: 10px;
    }

    .healthcare-banner {
        padding: 60px 22px;
    }

    .healthcare-banner h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .healthcare-banner p {
        font-size: 15px;
        line-height: 22px;
        margin: 10px 0 30px;
    }

    .common-hero-section span {
        font-size: 15px;
        line-height: 15px;
    }

    .blog-content-wrapper {
        padding: 40px 20px 50px;
        gap: 18px;
    }

}

/* Project Page - Mobile */
@media (max-width: 480px) {
    .common-hero-section {
        height: 400px;
        padding: 60px 20px;
    }

    .management-hero {
        background-position: 70%;
    }

    .single-blog-hero {
        padding-bottom: 40px !important;
    }

    .common-hero-section h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .common-hero-section p {
        font-size: 14px;
        line-height: 20px;
    }


    .common-hero-section span {
        font-size: 14px;
        line-height: 14px;
    }

    .intro-section p {
        font-size: 15px;
        line-height: 22px;
    }

    .project-item-img {
        height: 310px;
    }

    .project-item-img-content {
        padding: 18px;
    }

    .project-item-img-content p {
        font-size: 15px;
        line-height: 24px;
    }

    .project-item-img::after {
        height: 140px;
    }

    .healthcare-banner {
        padding: 50px 16px;
        border-radius: 10px;
    }

    .healthcare-banner .btn-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .healthcare-banner .btn-wrapper .btn {
        min-width: 165px;
               justify-content: center;
    }

    .healthcare-banner p {
        margin-bottom: 20px;
    }

    .healthcare-banner h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .healthcare-banner p {
        font-size: 14px;
        line-height: 21px;
    }
}


/* Blog Page Responsive */

/* Blog Pagination - Tablet */
@media (max-width: 991px) {
    .page-navigation {
        padding: 0 20px 20px;
        gap: 10px;
    }

    .page {
        width: 42px;
        height: 42px;
        font-size: 17px;
        line-height: 22px;
        border-radius: 9px;
    }
}

/* Blog Pagination - Small Tablet */
@media (max-width: 767px) {
    .page {
        width: 38px;
        height: 38px;
        font-size: 16px;
        line-height: 20px;
        border-radius: 8px;
    }

    .blog-content-wrapper p,
    .popup-content p {
        font-size: 16px;
        line-height: 20px;
    }

    .popup-content span {
        font-size: 15px;
        line-height: 20px;
        margin: 6px 0 14px;
    }

    .page svg {
        width: 18px;
        height: 18px;
    }

    .blog-content-wrapper img {
        margin-top: 12px;
    }

    .single-blog-page-wrapper .blogs-section .common-heading {
        margin-bottom: 32px;
        text-align: center;
    }
}

/* Blog Pagination - Mobile */
@media (max-width: 480px) {
    .page {
        width: 34px;
        height: 34px;
        font-size: 15px;
        line-height: 18px;
        border-radius: 7px;
    }

    .page svg {
        width: 16px;
        height: 16px;
    }

    .single-blog-page-wrapper .blogs-section .common-heading {
        margin-bottom: 24px;
        text-align: center;
    }
}




/* Management Page */
@media (max-width: 767px) {

    .popup-box {
        max-width: 100%;
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding: 35px 22px 25px;
        max-height: 100vh;
        overflow-y: auto;
    }

    .popup-close {
        top: 12px;
        right: 12px;
    }

    .arabic-page .popup-close {
        left: 12px;
    }

    .popup-img img {
        margin: 0 auto;
    }

    .career-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-intro-section {
        padding: 40px 20px;
    }

    .career-intro-section {
        gap: 12px;
    }

    .career-card h3 {
        font-size: 20px;
    }

    .career-card-top p {
        font-size: 15px;
        line-height: 20px;
        margin-top: 16px;
    }

    .career-card>p {
        font-size: 15px;
        line-height: 20px;
        margin-top: 10px;
    }

    .career-arrow {
        width: 32px;
        height: 32px;
    }

    .career-arrow img {
        width: 12px;
    }

    .career-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .career-section {
        padding: 40px 20px;
    }
}

/* Contact Page */
/* Responsive */
@media (max-width: 1200px) {
    .contact-section {
        padding: 0 40px;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-info h3 {
        margin-bottom: 35px;
    }

    .info-item {
        gap: 18px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 18px 20px;
    }

    .contact-form select {
        background-position: right 20px center;
    }

    .arabic-page .contact-form select {
        background-position: left 20px center;
    }

    .contact-form {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 20px;
    }

    .contact-form {
        padding: 0;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        padding: 40px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 0 20px;
    }

    .contact-wrapper {
        padding: 10px;
        gap: 10px;
        border-radius: 10px;
    }

    .contact-info {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .contact-info h3 {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 0.7px;
        margin-bottom: 25px;
    }

    .info-item {
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 16px;
    }

    .info-item img {
        width: 22px;
        height: 22px;
        margin-top: 4px;
    }

    .info-item p,
    .info-item a,
    .info-item span {
        font-size: 16px;
        line-height: 26px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        width: 39px;
        height: 39px;
        padding: 7px;
    }

    .social-icons a img {
        width: 24px;
        height: 24px;
    }

    .contact-form form {
        gap: 12px;
    }

    .form-row {
        gap: 12px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 16px 18px;
        border-radius: 10px;
        font-size: 16px;
    }

    .contact-form select {
        background-position: right 18px center;
    }

    .arabic-page .contact-form select {
        background-position: left 18px center;
    }

    .contact-form input::placeholder,
    .contact-form select::placeholder,
    .contact-form textarea::placeholder {
        font-size: 16px;
    }

    .contact-form textarea {
        height: 120px;
    }

    .contact-form button {
        border-radius: 10px;
        font-size: 18px;
        padding: 13px 10px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 0 20px;
    }

    .contact-info {
        padding: 25px 16px;
    }

    .info-item {
        gap: 12px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px 16px;
    }

    .contact-form select {
        background-position: right 16px center;
    }

    .arabic-page .contact-form select {
        background-position: left 16px center;
    }
}


/* Single Career Page */

@media (max-width: 1200px) {
    .career-detail-section {
        padding: 0px 30px 50px;
    }

    .career-detail-wrapper {
        gap: 30px;
    }

    .career-info-box {
        padding: 40px 30px;
        max-width: 450px;
    }

    .apply-section {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .career-detail-wrapper {
        flex-direction: column;
    }

    .career-content {
        max-width: 100%;
        padding-bottom: 0;
    }

    .career-info-box {
        max-width: 100%;
    }

    .career-content .common-heading {
        margin: 40px 0 20px;
    }

    .career-info-box .common-heading {
        margin-bottom: 35px;
    }

    .job-info-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .single-career-hero p {
        font-size: 15px;
        line-height: 22px;
        margin: 16px 0 8px;
    }

    .single-career-hero div {
        gap: 10px;
    }

    .single-career-hero div span {
        font-size: 15px;
        line-height: 24px;
    }

    .career-detail-section {
        padding: 5px 20px 40px;
    }

    .career-detail-wrapper {
        gap: 24px;
    }

    .career-content .common-heading {
        margin: 35px 0 18px;
    }

    .career-content p,
    .career-list li {
        font-size: 15px;
        line-height: 22px;
    }

    .career-list {
        gap: 14px;
    }

    .career-list li {
        gap: 14px;
        align-items: flex-start;
    }

    .arabic-page .common-intro-section .career-list li {
        padding-right: 24px;
    }

    .career-list li::before {
        width: 9px;
        height: 13px;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .common-intro-section .career-list {
        gap: 12px;
        margin-bottom: 18px;
    }

    .philip-hero+.common-intro-section .career-list,
    .gena-hero+.common-intro-section .career-list {
        margin-bottom: 14px;
    }

    .career-info-box {
        padding: 30px 20px;
    }

    .career-info-box .common-heading {
        margin-bottom: 28px;
    }

    .job-info-item {
        margin-bottom: 24px;
    }

    .job-info-item span {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .job-info-item p {
        font-size: 16px;
        line-height: 22px;
    }

    .apply-section {
        width: calc(100% - 40px);
        padding: 30px 20px;
    }

    .apply-section .common-heading {
        line-height: 36px;
    }

    .apply-form {
        margin-top: 28px;
    }

    .apply-form .form-row {
        flex-direction: column;
    }

    .apply-form input,
    .apply-form select,
    .apply-form textarea {
        font-size: 15px;
        line-height: 22px;
        padding: 12px 18px;
    }

    .apply-form select {
        background-position: right 18px center;
    }

    .arabic-page .apply-form select {
        background-position: left 18px center;
    }

    .apply-form textarea {
        min-height: 120px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .career-detail-section {
        padding-top: 22px;
    }

    .career-info-box {
        padding: 25px 20px;
    }

    .apply-section {
        width: calc(100% - 40px);
        padding: 25px 20px;
    }

    .career-content .common-heading {
        margin: 18px 0 10px;
    }

    .apply-form {
        margin-top: 24px;
    }
}


/* Who we Are Page */

@media (max-width: 1199px) {
    .who-intro-section {
        padding: 60px 40px 60px 0;
        gap: 36px;
    }

    .arabic-page .who-intro-section {
        padding-left: 40px;
        padding-right: 0;
    }

    .who-intro-content p {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 26px;
    }

    .who-intro-content .career-list {
        gap: 22px;
    }

    .mission-card {
        padding: 32px 24px;
    }

    .about-story {
        padding: 60px 0 45px 30px;
        gap: 30px;
    }

    .arabic-page .about-story {
        padding-left: 0;
        padding-right: 30px;
    }

    .about-story-content .common-heading {
        max-width: 560px;
        margin: 14px 0 20px;
    }

    .subsidiary-card {
        padding: 26px 22px;
    }

    .subsidiary-card:nth-child(6) img {
        width: 170px;
    }

    .about-text-section {
        gap: 40px;
        padding: 40px 30px;
    }

    .milestone-timeline-wrapper {
        padding: 45px 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr 210px 70px 210px 1fr;
    }

    .timeline-card {
        width: 210px;
        height: 168px;
    }

    .timeline-card img {
        width: 128px;
        height: auto;
        object-fit: cover;
    }

    .timeline-item:nth-child(1) .timeline-card img {
        width: 97px;
    }

    .timeline-item:nth-child(2) .timeline-card img {
        width: 128px;
    }

    .timeline-item:nth-child(3) .timeline-card img {
        width: 133px;
    }

    .timeline-item:nth-child(4) .timeline-card img {
        width: 137px;
    }

    .timeline-item:nth-child(5) .timeline-card img {
        width: 78px;
    }

    .timeline-item:nth-child(6) .timeline-card img {
        width: 132px;
    }

    .timeline-item:nth-child(7) .timeline-card img {
        width: 103px;
    }

    .timeline-item:nth-child(8) .timeline-card img {
        width: 132px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .legacy-impact-section {
        padding: 60px 30px;
    }
}

@media (max-width: 991px) {
    .who-intro-section {
        padding: 55px 30px;
        flex-direction: column;
        gap: 30px;
    }

    .timeline-item:nth-of-type(odd) .timeline-card {
        transform: scaleX(-1);
    }

    .timeline-item:nth-of-type(odd) .timeline-card img {
        transform: scaleX(-1);
    }

    .arabic-page .timeline-item:nth-of-type(odd) .timeline-card {
        transform: scaleX(1);
    }

    .arabic-page .timeline-item:nth-of-type(odd) .timeline-card img {
        transform: scaleX(1);
    }



    .arabic-page .who-intro-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .who-intro-img img {
        max-height: 480px;
        border-radius: 10px;
    }

    .who-intro-content {
        padding: 0;
    }

    .who-intro-content p {
        max-width: 100%;
    }

    .mission-section {
        padding: 45px 24px;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .mission-card h3 {
        font-size: 20px;
    }

    .about-story {
        padding: 55px 24px;
        flex-direction: column;
        gap: 30px;
    }

    .arabic-page .about-story {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-story-content {
        padding-bottom: 0;
    }

    .about-story-content .common-heading {
        max-width: 100%;
    }

    .about-story-content p {
        max-width: 100%;
    }

    .about-story-img img {
        max-height: 480px;
        border-radius: 10px;
    }

    .subsidiaries-section {
        padding: 45px 24px 30px;
    }

    .subsidiaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-text-section {
        width: calc(100% - 48px);
        padding: 35px 24px;
        gap: 24px;
        flex-direction: column;
    }

    .about-text-section p {
        max-width: 100%;
    }

    .milestone-section {
        padding-top: 55px;
    }

    .milestone-section .common-heading {
        margin: 14px 0 30px;
    }

    .milestone-timeline-wrapper {
        padding: 40px 24px;
        gap: 28px;
    }

    .milestone-timeline-wrapper::before {
        left: 44px;
        top: 70px;
        bottom: 70px;
        transform: none;
    }

    .arabic-page .milestone-timeline-wrapper::before {
        left: unset;
        right: 44px;
    }

    .timeline-item {
        min-height: auto;
        grid-template-columns: 60px 1fr;
        gap: 20px;
        align-items: flex-start;
    }

    .timeline-dot {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 3;
        width: 44px;
        height: 44px;
        margin-top: 4px;
        justify-self: start;
    }

    .timeline-item:nth-of-type(odd) .timeline-dot::after {
        left: unset;
        right: -16px;
    }

    .arabic-page .timeline-item:nth-of-type(odd) .timeline-dot::after {
        left: -16px;
        right: unset;
    }

    .timeline-dot::after {
        height: 18px;
    }

    .timeline-content,
    .timeline-item:nth-of-type(odd) .timeline-content,
    .timeline-item:nth-of-type(even) .timeline-content {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin: 0;
    }

    .arabic-page .timeline-item:nth-of-type(odd) .timeline-content {
        margin: 0;
    }

    .arabic-page .timeline-item:nth-of-type(even) .timeline-content {
        margin: 0;
    }

    .timeline-card,
    .timeline-item:nth-of-type(odd) .timeline-card,
    .timeline-item:nth-of-type(even) .timeline-card {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin-top: 6px;
    }

    .timeline-content p,
    .timeline-item:nth-of-type(even) .timeline-content p {
        max-width: 100%;
    }

    .legacy-impact-section {
        padding: 55px 24px;
    }
}

@media (max-width: 767px) {
    .who-intro-section {
        padding: 40px 20px;
        gap: 24px;
    }

    .arabic-page .who-intro-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .who-intro-img img {
        max-height: 400px;
    }

    .who-intro-content p {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.36px;
        margin-bottom: 22px;
    }

    .who-intro-content .career-list {
        gap: 16px;
    }

    .mission-section {
        padding: 40px 20px;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .mission-icon {
        width: 80px;
        height: 80px;
        padding: 24px;
    }

    .mission-icon img {
        width: 36px;
        height: 36px;
    }

    .mission-card h3 {
        font-size: 20px;
        margin: 24px 0 14px;
    }

    .mission-card p {
        font-size: 15px;
        line-height: 23px;
        max-width: 100%;
    }

    .about-story {
        padding: 40px 20px;
        gap: 24px;
    }

    .arabic-page .about-story {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-story-content .common-heading {
        margin: 12px 0 18px;
    }

    .about-story-content p {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
    }

    .about-story-img img {
        max-height: 400px;
    }

    .subsidiaries-section {
        padding: 40px 20px 28px;
    }

    .subsidiaries-section>p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .subsidiary-card {
        padding: 26px 20px;
        border-radius: 10px;
    }

    .subsidiary-card:first-child img {
        width: 115px;
        margin-bottom: 14px;
    }

    .subsidiary-card:nth-child(2) img {
        width: 120px;
        margin-bottom: 20px;
    }

    .subsidiary-card:nth-child(3) img {
        width: 80px;
        margin-bottom: 20px;
    }

    .subsidiary-card:nth-child(4) img {
        width: 140px;
        margin-bottom: 22px;
    }

    .subsidiary-card:nth-child(5) img {
        width: 100px;
        margin-bottom: 18px;
    }

    .subsidiary-card:nth-child(6) img {
        width: 160px;
        margin: 6px 0 24px;
    }

    .subsidiary-card p {
        max-width: 100%;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
    }

    .about-text-section {
        width: calc(100% - 40px);
        margin-top: 28px;
        padding: 30px 20px;
        border-radius: 14px;
        gap: 18px;
    }

    .about-text-section p {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
    }

    .milestone-section {
        padding-top: 45px;
    }

    .milestone-section .common-heading {
        margin: 12px 0 24px;
    }

    .milestone-timeline-wrapper {
        padding: 35px 20px;
        gap: 24px;
    }

    .milestone-timeline-wrapper::before {
        left: 38px;
        top: 58px;
        bottom: 58px;
    }

    .arabic-page .milestone-timeline-wrapper::before {
        left: unset;
        right: 38px;
    }

    .timeline-item {
        grid-template-columns: 48px 1fr;
    }

    .timeline-dot {
        width: 36px;
        height: 36px;
    }

    .timeline-dot::before {
        width: 10px;
        height: 10px;
    }

    .timeline-year {
        font-size: 26px;
        line-height: 34px;
        padding-bottom: 8px;
        margin-bottom: 10px;
        border-bottom-width: 3px;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 22px;
    }

    .legacy-impact-section {
        padding: 45px 20px;
    }

    .legacy-impact-section p {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.36px;
    }
}

@media (max-width: 575px) {
    .about-story-img img {
        max-height: 340px;
    }

    .subsidiary-card {
        padding: 24px 18px;
    }

    .about-text-section {
        padding: 26px 20px;
    }

    .milestone-timeline-wrapper {
        padding: 32px 20px;
    }

    .legacy-impact-section p {
        font-size: 17px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .who-intro-img img {
        max-height: 300px;
    }

    .milestone-timeline-wrapper::before {
        bottom: 32px;
    }

    .who-intro-content p {
        font-size: 18px;
        line-height: 24px;
    }


    .who-intro-content p {
        margin-bottom: 18px;
    }

    .mission-card {
        padding: 26px 18px;
    }

    .who-hero p {
        margin-top: 4px;
    }

    .about-story-img img {
        max-height: 300px;
    }

    .subsidiaries-section {
        padding: 36px 20px 24px;
    }

    .subsidiary-card:first-child img {
        width: 105px;
    }

    .subsidiary-card:nth-child(2) img {
        width: 110px;
    }

    .subsidiary-card:nth-child(3) img {
        width: 72px;
    }

    .subsidiary-card:nth-child(4) img {
        width: 128px;
    }

    .subsidiary-card:nth-child(5) img {
        width: 92px;
    }

    .subsidiary-card:nth-child(6) img {
        width: 145px;
    }

    .milestone-timeline-wrapper::before {
        left: 36px;
    }

    .arabic-page .milestone-timeline-wrapper::before {
        left: unset;
        right: 36px;
    }

    .timeline-item {
        grid-template-columns: 44px 1fr;
    }

    .timeline-year {
        font-size: 24px;
        line-height: 32px;
    }

    .legacy-impact-section {
        padding: 40px 20px;
    }
}


/* Investors Page */
@media (max-width: 1440px) {
    .investor-hero {
        padding-bottom: 80px;
    }
}

@media (max-width: 1200px) {
    .investor-hero-content {
        gap: 30px;
    }

    .investor-hero {
        padding-bottom: 80px;
    }

    .stock-card {
        padding: 22px;
    }

    .offering-section {
        padding: 60px 30px;
    }

    .summary-table td,
    .summary-table th {
        padding: 18px 30px;
    }

    .offered-img {
        max-width: 520px;
    }

    .offered-content {
        padding: 40px 30px;
    }

    .method-card {
        padding: 35px 35px;
    }

    .allocation-icon {
        width: 170px;
        height: 150px;
        margin: 40px 24px 40px 18px;
    }

    .allocation-icon img {
        width: 120px;
    }

    .allocation-item>div:nth-child(2) {
        padding: 40px 30px;
    }

    .info-links {
        gap: 20px;
        padding: 30px 35px 40px;
    }

    .info-box h3 {
        padding: 40px 35px 18px;
    }

    .email-box {
        padding: 21px 35px;
    }

    .announcement-left {
        gap: 30px;
    }

    .announcement-left p {
        max-width: 760px;
    }

    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .investor-hero-content {
        gap: 28px;
    }

    .investor-hero {
        padding-bottom: 60px;
        height: 600px;
    }

    .investor-hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
        text-align: left;
    }

    .stock-ticker {
        padding: 24px 30px;
    }

    .offering-section {
        padding: 55px 30px;
    }

    .offering-section p {
        margin: 12px 0 28px;
    }

    .summary-table-wrapper {
        overflow-x: auto;
    }

    .offered-section {
        flex-direction: column;
    }

    .offered-img {
        max-width: 100%;
        height: 420px;
    }

    .offered-content {
        padding: 40px 30px;
    }

    .offered-content p {
        max-width: 100%;
        margin: 20px 0 16px;
        font-size: 16px;
        line-height: 26px;
    }

    .method-section {
        padding: 60px 30px 45px;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-card {
        padding: 32px 30px;
    }

    .allocation-section {
        padding: 45px 20px;
    }

    .allocation-box {
        margin-top: 35px;
    }

    .allocation-item {
        flex-direction: column;
        gap: 30px;
    }

    .allocation-icon {
        width: 150px;
        height: 135px;
        margin: 30px 30px 0;
    }

    .allocation-icon img {
        width: 105px;
    }

    .allocation-item>div:nth-child(2) {
        width: 100%;
        padding: 28px 30px 35px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.30);
    }

    .arabic-page .allocation-item>div:nth-child(2) {
        border-right: 0;
    }

    .arabic-page .investor-hero-content h1 {
        text-align: right;
    }

    .allocation-item p {
        font-size: 16px;
        line-height: 26px;
        margin-top: 20px;
    }

    .info-section {
        padding: 30px 20px 0;
    }

    .info-links {
        grid-template-columns: 1fr;
    }

    .announcement-item {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .announcement-left {
        width: 100%;
        gap: 24px;
        align-items: flex-start;
    }

    .announcement-right {
        width: 100%;
        justify-content: space-between;
        padding: 18px 0 0;
        border-left: 0;
        border-top: 1px solid #EDEDF1;
    }

    .arabic-page .announcement-right {
        border-right: 0;
    }

    .resources-section {
        padding: 45px 30px;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resource-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .investor-hero-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 24px;
    }

    .investor-hero-content p {
        max-width: 420px;
    }

    .investor-hero {
        padding-bottom: 60px;
        height: 700px;
    }

    .investor-hero {
        max-height: unset;
    }

    .investor-hero-content h1 {
        font-size: 24px;
        letter-spacing: 0.48px;
        margin-bottom: 10px;
    }

    .stock-card {
        width: 100%;
        max-width: 420px;
        padding: 20px;
    }


    .stock-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .stock-card>span {
        font-size: 18px;
        line-height: 24px;
    }

    .stock-card ul {
        margin-top: 16px;
        padding: 16px;
        gap: 10px;
    }

    .stock-card li {
        align-items: flex-start;
        gap: 10px;
    }

    .stock-ticker {
        padding: 20px;
    }

    .stock-ticker-content {
        gap: 16px;
        padding-left: 16px;
    }

    .stock-ticker p,
    .stock-ticker span {
        font-size: 16px;
        line-height: 22px;
    }

    .offering-section {
        padding: 45px 20px;
    }

    .offering-section p {
        font-size: 15px;
        line-height: 24px;
        margin: 10px 0 24px;
    }

    .summary-table td,
    .summary-table th {
        padding: 16px 20px;
        font-size: 15px;
        line-height: 24px;
    }

    .offered-img {
        height: 340px;
    }

    .offered-content {
        padding: 35px 20px;
    }

    .offered-content p {
        font-size: 16px;
        line-height: 26px;
        margin: 18px 0 14px;
    }

    .offered-content p:nth-of-type(2) {
        font-size: 15px;
        line-height: 24px;
    }

    .method-section {
        padding: 45px 20px 40px;
    }

    .method-section .common-heading {
        margin-bottom: 24px;
    }

    .method-card {
        padding: 28px 20px;
    }

    .method-card h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .method-card p {
        font-size: 16px;
        line-height: 26px;
    }

    .allocation-section {
        padding: 40px 20px;
    }

    .allocation-box {
        margin-top: 28px;
    }

    .allocation-icon {
        width: 130px;
        height: 120px;
        margin: 24px 20px 0;
        padding: 22px;
    }

    .allocation-icon img {
        width: 90px;
    }

    .allocation-item>div:nth-child(2) {
        padding: 24px 20px 30px;
    }

    .allocation-item h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .allocation-item p {
        font-size: 16px;
        line-height: 26px;
        margin-top: 18px;
    }

    .info-section {
        padding: 25px 20px 0;
    }

    .info-box h3 {
        padding: 30px 20px 18px;
        font-size: 18px;
        line-height: 26px;
    }

    .info-links {
        padding: 24px 20px 30px;
        gap: 18px;
    }

    .info-links>div {
        gap: 10px;
    }

    .info-links div span:first-child,
    .info-links div span {
        font-size: 16px;
        line-height: 26px;
    }

    .email-box {
        padding: 22px 20px;
        gap: 18px;
        align-items: flex-start;
    }

    .email-box img {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .email-box p {
        font-size: 16px;
        line-height: 26px;
    }

    .announcements-section {
        padding: 45px 20px;
    }

    .announcements-section .common-heading {
        margin-bottom: 24px;
    }

    .announcement-item {
        padding: 20px;
        gap: 18px;
    }

    .announcement-left {
        gap: 18px;
    }

    .announce-icon {
        width: 60px;
        height: 60px;
        padding: 14px;
        flex-shrink: 0;
    }

    .announce-icon img {
        width: 32px;
        height: 32px;
    }

    .announcement-left p {
        font-size: 15px;
        line-height: 22px;
    }

    .announcement-right {
        gap: 20px;
    }

    .announcement-right span {
        font-size: 15px;
        line-height: 22px;
    }

    .resources-section {
        padding: 40px 20px;
    }

    .resources-section .common-heading {
        margin-bottom: 24px;
    }

    .resource-card {
        padding: 30px 16px;
        gap: 20px;
    }

    .resource-card h3 {
        font-size: 15px;
        line-height: 24px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .stock-card {
        max-width: 100%;
        border-radius: 10px;
    }

    .investor-hero {
        padding-bottom: 40px;
        padding-top: 140px;
    }

    .investor-hero-content {
        height: 100%;
        justify-content: space-between;
    }

    .offered-img {
        height: 280px;
    }

    .email-box {
        flex-direction: column;
    }

    .announcement-left {
        flex-direction: column;
    }

    .announcement-right img {
        width: 12px;
        height: 24px;
    }

    .investor-hero::after {
        height: 90%;
    }
}


/* Subsidries Pages */
@media (max-width: 1199px) {
    .common-intro-section {
        gap: 36px;
    }

    .common-intro-section>div {
        max-width: none;
    }

    .cr-section {
        padding: 50px 30px;
    }

    .custom-table thead th {
        padding: 18px 32px;
    }

    .genalive-table thead th,
    .genalive-table tbody td {
        padding: 18px;
    }

    .genalive-table thead th:first-child,
    .genalive-table tbody td:first-child {
        padding: 18px 32px;
    }

    .custom-table tbody td {
        padding: 20px 32px;
    }

    .section-header {
        gap: 20px;
        margin-bottom: 20px;
    }

    .section-header-icon {
        width: 70px;
        height: 70px;
    }

    .section-header-icon img {
        width: 36px;
    }
}

@media (max-width: 991px) {
    .common-intro-section {
        padding: 60px 30px;
        gap: 30px;
    }

    .fms-logo {
        width: 190px;
        margin-bottom: 30px;
    }

    .alhammad-logo {
        width: 120px;
        margin-bottom: 24px;
    }

    .gena-logo {
        width: 216px;
        margin-bottom: 40px;
    }

    .philip-logo {
        width: 270px;
        margin-bottom: 30px;
    }

    .premma-logo {
        width: 220px;
        margin-bottom: 28px;
    }

    .common-intro-right {
        padding-top: 0;
    }

    .premma-hero+.common-intro-section .common-intro-right {
        padding-top: 0;
    }

    .cr-section {
        padding: 45px 30px;
    }

    .section-small-heading {
        margin-bottom: 30px;
    }

    .custom-table thead th {
        padding: 18px 24px;
    }

    .custom-table tbody td {
        padding: 20px 24px;
    }

    .genalive-table thead th:first-child,
    .genalive-table tbody td:first-child {
        padding: 20px 24px;
    }

    .ownership-table tbody td,
    .ownership-table thead th {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
        line-height: 20px;
        white-space: normal;
        text-align: center;
    }

    .genalive-table thead th:first-child,
    .genalive-table tbody td:first-child {
        text-align: left;
    }

    .activities-table th:first-child,
    .activities-table td:first-child {
        width: 38%;
    }

    .activities-table th:last-child,
    .activities-table td:last-child {
        width: 62%;
    }

    .ownership-section {
        padding: 60px 30px 0;
        gap: 34px;
    }

    .nephroplus-overview-section h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .common-intro-section {
        padding: 50px 20px;
        flex-direction: column;
        gap: 24px;
    }

    .common-intro-section>div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .fms-logo {
        width: 170px;
        margin-bottom: 24px;
    }

    .alhammad-logo {
        width: 100px;
        margin-bottom: 20px;
    }

    .gena-logo {
        width: 190px;
        margin-bottom: 30px;
    }

    .philip-logo {
        width: 220px;
        margin-bottom: 24px;
    }

    .premma-logo {
        width: 190px;
        margin-bottom: 20px;
    }

    .common-intro-section p {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
        margin-bottom: 18px;
    }

    .common-intro-right h2 {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3;
        margin-bottom: 18px;
    }

    .cr-section {
        padding: 40px 20px;
    }

    .section-small-heading {
        max-width: 100%;
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0.3px;
    }

    .custom-table {
        border-radius: 10px;
    }

    .custom-table thead th {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
        padding: 16px 14px;
    }

    .custom-table tbody td {
        max-width: none;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
        padding: 16px 14px;
        word-break: normal;
    }

    .arabic-page .custom-table tbody td {
        font-size: 16px;
    }


    .genalive-table thead th,
    .genalive-table tbody td {
        padding: 16px 14px;
    }

    .genalive-table thead th:first-child,
    .genalive-table tbody td:first-child {
        padding: 16px 14px;
    }

    .activities-table th:first-child,
    .activities-table td:first-child {
        width: 40%;
    }

    .activities-table th:last-child,
    .activities-table td:last-child {
        width: 60%;
    }

    .ownership-section {
        padding: 50px 20px 0;
        gap: 28px;
    }

    .ownership-section-gray {
        padding: 40px 16px !important;
    }

    .common-intro-section h3 {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.3px;
        margin: 2px 0 12px;
    }

    .nephroplus-overview-section h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .nephroplus-overview-section {
        padding: 40px 20px;
    }

    .section-header-icon {
        width: 50px;
        height: 50px;
    }

    .section-header-icon img {
        width: 26px;
    }

    .section-header {
        gap: 16px;
    }

    .pillar-card {
        padding-bottom: 26px;
    }
}

@media (max-width: 575px) {
    .common-intro-section {
        padding: 40px 20px;
        gap: 22px;
    }

    .fms-logo {
        width: 155px;
        margin-bottom: 22px;
    }

    .alhammad-logo {
        width: 90px;
        margin-bottom: 16px;
    }

    .gena-logo {
        width: 165px;
        margin-bottom: 22px;
    }

    .philip-logo {
        width: 180px;
        margin-bottom: 22px;
    }

    .premma-logo {
        width: 165px;
        margin-bottom: 18px;
    }

    .cr-section {
        padding: 36px 20px;
    }

    .section-small-heading {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 23px;
    }

    .custom-table thead th {
        font-size: clamp(11px, 2vw, 15px);
        line-height: normal;
        padding: 14px 10px;
    }

    .custom-table tbody td {
        font-size: clamp(11px, 2vw, 15px);
        line-height: normal;
        padding: 14px 10px;
    }

    .genalive-table thead th,
    .genalive-table tbody td {
        padding: 14px 10px;
    }

    .genalive-table thead th:first-child,
    .genalive-table tbody td:first-child {
        padding: 14px 10px;
    }

    .activities-table th:first-child,
    .activities-table td:first-child {
        width: 36%;
    }

    .activities-table th:last-child,
    .activities-table td:last-child {
        width: 64%;
    }

    .ownership-section {
        padding: 44px 20px 0;
        gap: 24px;
    }

    .ownership-table thead th,
    .ownership-table tbody td {
        text-align: center;
    }

}

@media (max-width: 480px) {

    .custom-table thead th,
    .custom-table tbody td {
        font-size: 12px;
        line-height: 17px;
    }

    .arabic-page .custom-table tbody td {
        font-size: 14px;
    }

    .ownership-table thead th,
    .ownership-table tbody td {
        font-size: 10px;
        line-height: 15px;
        padding: 14px 6px;
        text-align: center;
    }

    .ownership-section .section-small-heading {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 400px) {

    .ownership-table thead th,
    .ownership-table tbody td {
        font-size: clamp(7px, 2vw, 12px);
        line-height: normal;
    }
}


/* ============================= */
/* Responsive - Leadership Pages */
/* ============================= */

@media (max-width: 1200px) {
    .management-intro-section {
        gap: 70px;
    }

    .management-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .management-card {
        gap: 14px;
    }

    .management-card img {
        max-width: 135px;
    }

    .board-member-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "featured featured"
            "card1 card2"
            "card3 card4"
            "card5 card6";
    }

    .board-member-wrapper .management-card.featured {
        min-height: 360px;
        max-height: 630px;
    }

    .management-card.featured .management-content h3 {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .comittee-section {
        padding: 50px 30px 60px;
    }

    .comittee-section>div {
        padding: 30px;
    }

    .comittee-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-member-section {
        padding: 60px 30px 0;
    }

    .board-member-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "featured featured"
            "card1 card2"
            "card3 card4"
            "card5 card6";
    }

    .board-member-wrapper .management-card {
        min-height: 95px;
    }

    .board-member-wrapper .management-card.featured {
        min-height: 320px;
    }

    .board-member-wrapper .management-card img {
        height: auto;
    }

    .management-card.featured div>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .management-intro-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 60px 30px;
    }

    .management-intro-section div div {
        max-width: 100%;
    }

    .management-intro-section p {
        width: 100%;
        max-width: 100%;
    }

    .management-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .management-card img {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    .comittee-section {
        gap: 24px;
    }

    .comittee-section>div {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .comittee-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .board-member-section {
        padding: 50px 20px 0;
    }

    .board-member-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "featured"
            "card1"
            "card2"
            "card3"
            "card4"
            "card5"
            "card6";
        gap: 12px;
    }

    .board-member-wrapper .management-card {
        min-height: auto;
        padding: 12px;
        gap: 14px;
    }

    .board-member-wrapper .management-card.featured {
        min-height: auto;
        max-height: unset;
    }

    .management-card.featured {
        flex-direction: column;
    }

    .management-card.featured>div:first-child {
        max-width: 100%;
    }

    .management-card.featured div>img {
        height: auto;
        object-fit: cover;
    }

    .management-card.featured .management-content {
        padding-top: 0;
    }

    .management-card.featured .management-content h3 {
        font-size: 24px;
        letter-spacing: 0.48px;
    }

    .management-card.featured button {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 0;
        margin-top: 40px;
    }

    .management-intro-section {
        padding: 50px 20px;
        gap: 24px;
    }

    .management-intro-section span {
        font-size: 15px;
        line-height: 22px;
    }

    .management-intro-section div div {
        font-size: 28px;
        line-height: 36px;
    }

    .management-intro-section p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .management-section {
        padding: 0 20px;
    }

    .leaders-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .management-section .leaders-heading {
        margin-bottom: 32px;
    }

    .leaders-heading::after {
        width: 90px;
        height: 5px;
    }

    .management-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .management-card {
        padding: 12px;
        gap: 14px;
    }

    .management-card img {
        max-width: 130px;
        border-radius: 10px;
    }

    .management-content {
        padding-top: 8px;
    }

    .management-content h3 {
        font-size: 18px;
        letter-spacing: 0.36px;
        margin-bottom: 8px;
    }

    .management-content span {
        font-size: 15px;
        line-height: 22px;
    }

    .popup-box .popup-content .common-heading {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .comittee-section {
        padding: 40px 20px 50px;
    }

    .header nav ul {
        gap: 0;
    }

    .comittee-section>div {
        padding: 20px;
    }

    .board-member-section {
        padding: 40px 20px 0;
    }

    .board-member-wrapper .management-card,
    .management-card {
        align-items: flex-start;
    }

    .board-member-wrapper .management-card:not(.featured),
    .management-wrapper .management-card,
    .comittee-wrapper .management-card {
        flex-direction: column;
    }

    .board-member-wrapper .management-card img,
    .management-card img {
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .management-card.featured div>img {
        aspect-ratio: auto;
    }

    .board-member-wrapper .management-card:not(.featured)>div:first-child {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .management-section .management-wrapper .management-card>div:first-child {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        position: static;
    }

    .board-member-wrapper .management-card.featured>div:first-child {
        width: 100%;
        height: auto;
        aspect-ratio: 253 / 380;
    }

    .board-member-wrapper .management-card.featured>div:first-child img {
        object-position: top center;
    }

    .management-content {
        width: 100%;
    }

    .management-intro-section {
        padding: 40px 20px;
    }

    .management-intro-section div div {
        font-size: 26px;
        line-height: 34px;
    }

    .leaders-heading {
        font-size: 24px;
    }
}


/* ================================
   Our Business Pages Responsive
================================ */

/* Laptop */
@media (max-width: 1200px) {
    .business-hero {
        padding: 60px 40px;
    }

    .medtech-units-section,
    .medtech-critical-section,
    .medtech-partners-section,
    .medtech-serve-section {
        padding: 60px 40px;
    }

    .manufacturing-page .medtech-partners-section {
        padding: 50px 30px;
    }

    .arabic-page .clinical-page .medtech-partners-section {
        padding-left: 40px;
    }

    .arabic-page .pl-0 {
        padding-left: 40px !important;
    }

    .medtech-why-section {
        padding: 60px 40px 67px;
    }

    .medtech-future-section {
        padding: 60px 40px;
    }

    .medtech-units-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .medtech-critical-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .medtech-critical-item:nth-child(5n) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .medtech-critical-item:nth-child(3n) {
        border-right: 0;
    }

    .medtech-critical-item:nth-child(n + 6) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .medtech-critical-item:nth-child(n + 10) {
        border-bottom: 0;
    }

    .medtech-serve-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .medtech-two-col,
    .medtech-future-box {
        gap: 35px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .business-hero {
        padding: 50px 30px;
    }

    .business-hero h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .business-hero>span {
        font-size: 18px;
        line-height: 28px;
    }

    .business-intro-section {
        padding: 60px 30px;
    }

    .section-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .medtech-units-section,
    .medtech-critical-section,
    .medtech-partners-section,
    .medtech-serve-section {
        padding: 60px 30px;
    }

    .manufacturing-page .medtech-partners-section {
        padding: 40px 30px;
    }

    .clinical-page .medtech-partners-section {
        padding-left: 30px;
    }

    .clinical-page .medtech-two-img {
        border-radius: 20px;
    }

    .pl-0 .medtech-two-img {
        border-radius: 20px;
    }

    .arabic-page .clinical-page .medtech-partners-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .pl-0 {
        padding-left: 30px !important;
    }

    .arabic-page .pl-0 {
        padding-right: 30px !important;
        padding-left: 30px !important;
    }

    .medtech-why-section {
        padding: 60px 30px 67px;
    }

    .medtech-future-section {
        padding: 60px 30px;
    }

    .medtech-section-head {
        margin-bottom: 30px;
    }

    .medtech-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .medtech-two-img {
        height: auto;
    }

    .medtech-two-img img {
        height: auto;
    }

    .medtech-two-content p {
        max-width: 100%;
    }

    .medtech-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .medtech-why-grid ul {
        grid-template-columns: 1fr;
    }

    .medtech-why-grid ul li:last-child {
        grid-column: auto;
    }

    .medtech-future-box {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 28px;
    }

    .arabic-page .medtech-future-box {
        padding: 30px;
    }

    .healthcare-page .medtech-future-box {
        padding: 30px;
    }

    .arabic-page .healthcare-page .medtech-future-box {
        padding: 30px;
    }

    .medtech-future-content {
        padding: 0;
    }


    .medtech-future-content p {
        max-width: 100%;
    }

    .medtech-future-img img {
        height: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .business-hero {
        padding: 40px 20px;
    }

    .business-hero h1 {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: 1.2px;
    }

    .business-hero>span {
        font-size: 18px;
        line-height: 26px;
        margin-top: 10px;
    }

    .business-hero p {
        font-size: 15px;
        line-height: 23px;
        margin: 8px 0 26px;
    }


    .esg-page .business-hero p {
        margin-top: 12px;
    }

    .esg-page .management-intro-section {
        margin-bottom: 10px;
    }

    .business-intro-section {
        padding: 50px 20px;
    }

    .business-intro-section p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .section-heading {
        margin-bottom: 14px;
    }

    .medtech-section-head {
        margin-bottom: 26px;
    }

    .medtech-section-head p,
    .medtech-section-head span {
        font-size: 15px;
        line-height: 22px;
    }

    .medtech-section-head span {
        margin-top: 16px;
    }

    .medtech-units-section,
    .medtech-critical-section,
    .medtech-partners-section,
    .medtech-serve-section {
        padding: 50px 20px;
    }

    .manufacturing-page .medtech-partners-section {
        padding: 40px 20px;
    }

    .clinical-page .medtech-partners-section {
        padding-left: 20px;
    }

    .arabic-page .clinical-page .medtech-partners-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pl-0 {
        padding-left: 20px !important;
    }

    .arabic-page .pl-0 {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .medtech-why-section {
        padding: 50px 20px 57px;
    }

    .medtech-future-section {
        padding: 50px 20px;
    }

    .medtech-units-grid {
        grid-template-columns: 1fr;
    }

    .medtech-unit-card {
        border-radius: 16px;
    }

    .medtech-unit-icon {
        width: 70px;
        height: 70px;
        margin: -35px 0 20px 20px;
    }

    .arabic-page .medtech-unit-icon {
        margin-right: 20px;
        margin-left: 0;
    }

    .medtech-unit-icon img {
        width: 45px;
    }

    .medtech-unit-content {
        padding: 0 22px 30px 20px;
    }

    .medtech-unit-content h3 {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 12px;
    }

    .medtech-unit-content p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .medtech-critical-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
    }

    .medtech-critical-item,
    .medtech-critical-item:nth-child(3n),
    .medtech-critical-item:nth-child(5n) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .medtech-critical-item:nth-child(2n) {
        border-right: 0;
    }

    .medtech-critical-item:nth-child(n + 10) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .medtech-critical-item:nth-child(n + 9) {
        border-bottom: 0;
    }

    .medtech-critical-item {
        padding: 30px 12px 26px;
    }

    .medtech-critical-item img {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }

    .medtech-critical-item:nth-child(2) img {
        width: 43px;
        height: 43px;
    }

    .medtech-critical-item:nth-child(3) img {
        width: 40px;
        height: 40px;
    }

    .medtech-critical-item:nth-child(4) img {
        width: 36px;
        height: 36px;
    }

    .medtech-critical-item:nth-child(5) img {
        width: 39px;
        height: 39px;
    }

    .medtech-critical-item:nth-child(6) img {
        width: 44px;
        height: 44px;
    }

    .medtech-critical-item:nth-child(7) img {
        width: 42px;
        height: 42px;
    }

    .medtech-critical-item:nth-child(8) img {
        width: 48px;
        height: 48px;
    }

    .medtech-critical-item:nth-child(9) img {
        width: 40px;
        height: 40px;
    }

    .medtech-critical-item:nth-child(10) img {
        width: 41px;
        height: 41px;
    }

    .medtech-critical-item p {
        font-size: 15px;
        line-height: 21px;
    }

    .medtech-two-col {
        gap: 24px;
    }

    .medtech-two-img {
        border-radius: 16px;
    }

    .medtech-two-content p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .medtech-serve-grid {
        grid-template-columns: 1fr;
    }

    .medtech-serve-card:nth-child(1) p {
        max-width: 267px;
    }

    .medtech-serve-card:nth-child(2) p,
    .medtech-serve-card:nth-child(3) p,
    .medtech-serve-card:nth-child(4) p,
    .medtech-serve-card:nth-child(5) p {
        max-width: 235px;
    }

    .medtech-serve-card {
        padding: 28px 18px 38px;
        border-radius: 16px;
    }

    .medtech-serve-card p {
        font-size: 15px;
        line-height: 22px;
    }

    .medtech-why-grid ul li {
        padding: 18px 18px 18px 20px;
        gap: 16px;
        font-size: 15px;
        line-height: 22px;
    }

    .medtech-why-grid ul li::before {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .medtech-future-box {
        padding: 20px;
        border-radius: 12px;
        gap: 22px;
    }

    .arabic-page .medtech-future-box {
        padding: 20px;
    }

    .healthcare-page .medtech-future-box {
        padding: 20px;
    }

    .arabic-page .healthcare-page .medtech-future-box {
        padding: 20px;
    }

    .medtech-future-content p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .esg-approach {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .business-hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .section-heading {
        font-size: 24px;
        line-height: 30px;
    }

    .medtech-critical-item,
    .medtech-critical-item:nth-child(2n),
    .medtech-critical-item:nth-child(3n),
    .medtech-critical-item:nth-child(5n) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .medtech-critical-item:last-child {
        border-bottom: 0;
    }

    .medtech-unit-content h3 {
        font-size: 18px;
        line-height: 23px;
    }

    .business-hero {
        height: 560px;
    }
}


/* Responsive CSS */

@media (max-width: 1200px) {

    .clinical-units-section,
    .clinical-partnership-section,
    .clinical-serve-section {
        padding: 60px 40px;
    }

    .clinical-partner-card {
        padding: 35px 35px 30px;
    }

    .clinical-serve-card {
        padding: 28px 26px;
    }

    .clinical-serve-card {
        gap: 25px !important;
    }
}

@media (max-width: 991px) {

    .clinical-units-section,
    .clinical-partnership-section,
    .clinical-serve-section {
        padding: 50px 30px;
    }

    .clinical-units-grid,
    .clinical-partnership-grid {
        grid-template-columns: 1fr;
    }

    .clinical-unit-img::after {
        height: 150px;
    }

    .clinical-unit-logo {
        left: 24px;
        bottom: 24px;
        width: calc(100% - 48px);
    }

    .clinical-unit-content {
        padding: 25px 24px 32px;
    }

    .clinical-partner-card {
        padding: 32px 28px;
    }

    .clinical-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clinical-serve-card {
        padding: 28px 24px;
    }

    .clinical-serve-card p {
        font-size: 15px;
        line-height: 22px;
    }

    .esg-page .management-intro-section div div {
        max-width: 522px;
    }
}

@media (max-width: 767px) {

    .clinical-units-section,
    .clinical-partnership-section,
    .clinical-serve-section {
        padding: 45px 20px;
    }

    .clinical-unit-card,
    .clinical-partner-card,
    .clinical-serve-card {
        border-radius: 16px;
    }

    .clinical-unit-img::after {
        height: 130px;
    }

    .clinical-unit-logo {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }

    .clinical-unit-card:nth-child(1) .clinical-unit-logo img {
        width: 115px;
    }

    .clinical-unit-card:nth-child(2) .clinical-unit-logo img {
        width: 130px;
    }

    .clinical-unit-logo h3 {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0.36px;
    }

    .clinical-unit-content {
        padding: 22px 20px 28px;
    }

    .clinical-unit-content .career-list {
        gap: 20px;
    }

    .clinical-partner-card {
        padding: 28px 22px;
    }

    .clinical-partner-card:nth-child(1) .clinical-partner-logo img {
        width: 160px;
        margin-top: 5px;
        margin-bottom: 35px;
    }

    .clinical-partner-card:nth-child(2) .clinical-partner-logo img {
        width: 145px;
        margin-bottom: 28px;
    }

    .clinical-partner-card h3 {
        font-size: 18px;
        line-height: 26px;
        gap: 8px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .clinical-partner-card h3 span {
        font-size: 15px;
        line-height: 22px;
    }

    .clinical-partner-card p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .clinical-serve-grid {
        grid-template-columns: 1fr;
    }

    .clinical-serve-card {
        padding: 24px 20px;
    }

    .clinical-serve-card:nth-child(1) img {
        width: 58px;
        height: 58px;
    }

    .clinical-serve-card:nth-child(2) img,
    .clinical-serve-card:nth-child(3) img,
    .clinical-serve-card:nth-child(4) img {
        width: 52px;
        height: 52px;
    }

    .clinical-serve-card:nth-child(5) img {
        width: 56px;
        height: 56px;
    }

    .clinical-serve-card:nth-child(6) img {
        width: 54px;
        height: 54px;
    }

    .clinical-serve-card p {
        max-width: 100% !important;
        font-size: 15px;
        line-height: 22px;
    }

    .clinical-serve-card {
        gap: 22px !important;
    }

    .section-header h3 {
        font-size: 18px;
        line-height: 21px;
    }

    .pillar-card p,
    .esg-approach>p {
        font-size: 16px;
        line-height: 20px;
    }

    .esg-approach>p {
        margin-bottom: 24px;
    }

    .pillars-grid,
    .pillars-grid.pillars-grid-2col {
        grid-template-columns: 1fr;
    }


    .environmental-section,
    .environmental-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {

    .clinical-units-section,
    .clinical-partnership-section,
    .clinical-serve-section {
        padding: 40px 20px;
    }

    .environmental-section,
    .environmental-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .clinical-units-grid,
    .clinical-partnership-grid,
    .clinical-serve-grid {
        gap: 10px;
    }

    .clinical-unit-img::after {
        height: 120px;
    }

    .clinical-unit-logo {
        left: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .clinical-unit-card:nth-child(1) .clinical-unit-logo img {
        width: 105px;
    }

    .clinical-unit-card:nth-child(2) .clinical-unit-logo img {
        width: 120px;
    }

    .clinical-unit-logo h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .clinical-unit-content {
        padding: 20px 18px 24px;
    }

    .clinical-partner-card {
        padding: 24px 18px;
    }

    .clinical-partner-card:nth-child(1) .clinical-partner-logo img {
        width: 145px;
        margin-bottom: 28px;
    }

    .clinical-partner-card:nth-child(2) .clinical-partner-logo img {
        width: 130px;
        margin-bottom: 24px;
    }

    .clinical-partner-card h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .clinical-serve-card {
        padding: 22px 18px;
    }

    .clinical-serve-card {
        gap: 18px !important;
    }
}

@media (min-width: 1440px) {
    .section-heading {
        font-size: 32px;
    }

    .manufacturing-page .medtech-partners-section {
        padding-inline: 70px;
    }
}



/* ================================
   Manufacturing Page Responsive
================================ */

/* Laptop */
@media (max-width: 1200px) {
    .mfg-intro-section {
        padding: 60px 30px;
    }

    .mfg-intro-box {
        padding: 45px 35px;
    }

    .mfg-platform-section {
        padding: 50px 30px;
    }

    .mfg-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mfg-platform-card {
        gap: 18px;
    }

    .mfg-dark-section {
        padding: 50px 30px;
    }

    .mfg-dark-grid {
        gap: 35px;
    }

    .mfg-advantage-section {
        padding: 50px 30px;
    }

    .mfg-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .manufacturing-page .medtech-partners-section {
        padding: 40px 24px !important;
    }

    .mfg-intro-section {
        padding: 50px 24px;
    }

    .mfg-intro-box {
        padding: 40px 28px;
        border-radius: 16px;
    }

    .mfg-intro-box .section-heading {
        margin-bottom: 24px;
    }

    .mfg-platform-section {
        padding: 45px 24px;
    }

    .mfg-platform-grid {
        margin: 30px 0;
    }

    .mfg-platform-card {
        border-radius: 16px;
        padding: 18px;
    }

    .mfg-dark-section {
        padding: 45px 24px;
    }

    .mfg-dark-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mfg-dark-col .section-heading {
        max-width: 100%;
    }

    .mfg-dark-col p {
        max-width: 100%;
    }

    .mfg-advantage-section {
        padding: 45px 24px;
    }

    .mfg-advantage-card {
        padding: 30px 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .manufacturing-page .medtech-partners-section {
        padding: 40px 20px !important;
    }

    .mfg-intro-section {
        padding: 40px 20px;
    }

    .mfg-intro-box {
        padding: 32px 20px;
        border-radius: 14px;
    }

    .mfg-intro-box .section-heading {
        margin-bottom: 20px;
    }

    .mfg-intro-box p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .mfg-platform-section {
        padding: 40px 20px;
    }

    .mfg-platform-section p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .mfg-platform-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 26px 0;
    }

    .mfg-platform-card {
        padding: 16px;
        gap: 16px;
        border-radius: 14px;
    }

    .mfg-card-icon {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
    }

    .mfg-card-icon img {
        width: 40px;
        height: 40px;
    }

    .mfg-platform-card:nth-child(2) .mfg-card-icon img,
    .mfg-platform-card:nth-child(5) .mfg-card-icon img {
        width: 32px;
        height: 32px;
    }

    .mfg-platform-card:nth-child(1) .mfg-card-icon img,
    .mfg-platform-card:nth-child(4) .mfg-card-icon img {
        width: 34px;
        height: 34px;
    }

    .mfg-platform-card:nth-child(3) .mfg-card-icon img,
    .mfg-platform-card:nth-child(7) .mfg-card-icon img {
        width: 36px;
        height: 36px;
    }

    .mfg-platform-card span {
        font-size: 15px;
        line-height: 22px;
        max-width: 78%;
    }

    .mfg-dark-section {
        padding: 40px 20px;
    }

    .mfg-dark-grid {
        gap: 26px;
    }

    .mfg-dark-col p,
    .mfg-dark-col h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .mfg-dark-col p:nth-child(2) {
        margin-bottom: 18px;
    }

    .mfg-dark-col h3 {
        margin: 14px 0 16px;
    }

    .mfg-dark-col .career-list {
        gap: 10px;
        margin-bottom: 18px;
    }

    .mfg-advantage-section {
        padding: 40px 20px;
    }

    .mfg-advantage-section .medtech-section-head {
        margin-bottom: 24px;
    }

    .mfg-advantage-grid,
    .mfg-advantage-grid.mfg-advantage-grid-3col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mfg-advantage-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .mfg-adv-icon img {
        width: 58px;
        height: 58px;
        margin-bottom: 12px;
    }

    .mfg-advantage-card:nth-child(1) .mfg-adv-icon img {
        width: 62px;
        height: 62px;
        margin-bottom: 16px;
    }

    .mfg-advantage-card:nth-child(2) .mfg-adv-icon img {
        width: 70px;
        height: 70px;
    }

    .mfg-advantage-card:nth-child(3) .mfg-adv-icon img {
        width: 60px;
        height: 60px;
    }

    .mfg-advantage-card:nth-child(4) .mfg-adv-icon img {
        width: 56px;
        height: 56px;
    }

    .mfg-advantage-card:nth-child(7) .mfg-adv-icon img {
        width: 54px;
        height: 54px;
    }

    .mfg-advantage-card p {
        font-size: 15px;
        line-height: 22px;
        max-width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mfg-intro-box {
        padding: 28px 18px;
    }

    .mfg-platform-card {
        align-items: flex-start;
    }

    .mfg-card-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
    }

    .mfg-dark-col .career-list {
        padding-left: 0;
    }

    .arabic-page .mfg-dark-col .career-list {
        padding-right: 0;
    }

    .manufacturing-page .business-hero .btn-wrapper .btn span {
        font-size: 11px;
        line-height: 15px;
    }

    .manufacturing-page .mfg-advantage-section .medtech-section-head .section-heading {
        font-size: 23px;
    }
}

/* ================================
   Healthcare Page Responsive
================================ */

/* Laptop */
@media (max-width: 1200px) {
    .healthcare-tech-section {
        padding: 50px 40px;
    }

    .healthcare-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .healthcare-tech-card {
        padding: 24px 30px 30px;
    }

    .healthcare-page .medtech-partners-section:not(.pl-0) {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .medtech-unit-card .career-list {
        gap: 22px;
    }

    .social-cards {
        flex-direction: column;
    }

    .gov-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .healthcare-tech-section {
        padding: 45px 30px;
    }

    .healthcare-tech-grid {
        gap: 16px;
    }

    .gov-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .healthcare-tech-card {
        padding: 28px 25px;
        align-items: flex-start;
    }

    .healthcare-tech-logo {
        justify-content: flex-start;
    }

    .healthcare-tech-card p {
        max-width: 100%;
    }

    .healthcare-page .medtech-two-content p,
    .healthcare-page .medtech-partners-section:not(.pl-0) .medtech-two-content p,
    .healthcare-page .medtech-future-content p,
    .healthcare-page .business-intro-section p {
        max-width: 100%;
    }

    .healthcare-page .medtech-units-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .healthcare-page .medtech-future-section {
        padding-top: 35px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .medtech-unit-card .career-list {
        gap: 18px;
    }

    .env-grid {
        flex-direction: column;
    }

    .env-grid>div {
        width: 100%;
    }

    .social-grid {
        flex-direction: column;
    }

    .social-grid>div {
        width: 100%;
    }

    .social-sec-img img {
        max-width: 460px;
    }

    .social-cards {
        flex-direction: row;
    }

    .social-sec-content>p {
        max-width: 100%;
    }

    .reporting-grid {
        flex-direction: column;
    }

    .reporting-grid>div {
        width: 100%;
    }

    .esg-reporting {
        padding-right: 30px;
    }

    .arabic-page .esg-reporting {
        padding-left: 30px;
    }

    .reporting-content p {
        max-width: 670px;
    }

    .reporting-img img {
        border-radius: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .healthcare-tech-section {
        padding: 40px 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .healthcare-tech-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .healthcare-tech-card {
        border-radius: 10px;
        padding: 24px 20px;
    }

    .healthcare-tech-logo img {
        width: 130px;
        margin-bottom: 14px;
    }

    .healthcare-tech-logo img {
        width: 130px;
        margin-bottom: 14px;
    }

    .healthcare-tech-card:nth-child(2) .healthcare-tech-logo img {
        width: 155px;
        margin-bottom: 24px;
    }

    .healthcare-tech-card:nth-child(3) .healthcare-tech-logo img {
        width: 140px;
        margin-bottom: 16px;
    }

    .healthcare-tech-card:nth-child(4) .healthcare-tech-logo img {
        width: 90px;
        margin-bottom: 20px;
    }

    .healthcare-tech-card:nth-child(5) .healthcare-tech-logo img {
        width: 190px;
        margin-bottom: 16px;
    }

    .healthcare-tech-card:nth-child(6) .healthcare-tech-logo img {
        width: 120px;
        margin-bottom: 16px;
    }


    .healthcare-tech-card p {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.3px;
    }

    .healthcare-page .medtech-partners-section:not(.pl-0) {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .healthcare-page .medtech-units-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .healthcare-page .medtech-future-section {
        padding-top: 10px;
    }

    .mfg-dark-col .career-list {
        margin-top: 14px;
    }

    .healthcare-page .mfg-dark-col:nth-child(2) p:nth-child(2) {
        margin-bottom: 14px;
    }

    .healthcare-page .mfg-advantage-card p {
        max-width: 100%;
    }

    .medtech-unit-card .career-list {
        gap: 14px;
    }

    .healthcare-page .mfg-advantage-card:nth-child(n) .mfg-adv-icon img {
        max-width: 58px;
        max-height: 58px;
        width: auto;
        height: auto;
        margin-bottom: 16px;
    }

    .healthcare-page .mfg-advantage-card:nth-child(7) .mfg-adv-icon img {
        max-width: 64px;
        max-height: 64px;
    }

    .env-left .section-heading {
        margin-bottom: 14px;
    }

    .env-left p+p,
    .env-right p,
    .social-card p+p {
        margin-top: 20px;
    }

    .env-right>span,
    .social-card h3,
    .social-sec-content .section-heading {
        margin-bottom: 20px;
    }

    .env-left p,
    .env-right li,
    .env-right p,
    .social-sec-content>p,
    .social-card p,
    .governance-section>p {
        font-size: 16px;
        line-height: 20px;
    }

    .gov-card p,
    .reporting-content p {
        font-size: 15px;
        line-height: 20px;
    }

    .gov-card p+p,
    .reporting-content p+p {
        margin-top: 20px;
    }

    .reporting-grid {
        gap: 30px;
    }

    .section-header h3 {
        max-width: 100%;
    }

    .gov-card {
        padding-bottom: 30px;
    }

    .gov-cards-wrapper {
        margin-top: 24px;
    }

    .env-right ul {
        gap: 6px;
    }

    .social-impact,
    .governance-section,
    .esg-reporting {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .social-cards {
        flex-direction: column;
    }

    .social-card {
        padding: 32px 20px;
    }

    .gov-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .healthcare-tech-section {
        padding: 35px 20px;
    }

    .social-impact,
    .governance-section,
    .esg-reporting {
        padding-left: 20px;
        padding-right: 20px;
    }

    .arabic-page .esg-reporting {
        padding-left: 20px;
    }

    .healthcare-tech-card {
        padding: 22px 18px;
    }

    .healthcare-tech-logo img {
        width: 120px;
    }

    .healthcare-tech-logo img {
        width: 120px;
        margin-bottom: 14px;
    }

    .healthcare-tech-card:nth-child(2) .healthcare-tech-logo img {
        width: 145px;
        margin-bottom: 22px;
    }

    .healthcare-tech-card:nth-child(3) .healthcare-tech-logo img {
        width: 130px;
        margin-bottom: 16px;
    }

    .healthcare-tech-card:nth-child(4) .healthcare-tech-logo img {
        width: 85px;
        margin-bottom: 20px;
    }

    .healthcare-tech-card:nth-child(5) .healthcare-tech-logo img {
        width: 170px;
        margin-bottom: 16px;
    }

    .healthcare-tech-card:nth-child(6) .healthcare-tech-logo img {
        width: 110px;
        margin-bottom: 16px;
    }

    .healthcare-page .medtech-partners-section:not(.pl-0),
    .healthcare-page .medtech-units-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .healthcare-hero::after {
        height: 100%;
    }

    .environmental-container {
        border-radius: 16px;
    }
}

@media (max-width: 575px) {

    .platform-card:nth-child(2),
    .platform-card:nth-child(3),
    .platform-card:nth-child(4),
    .platform-card:nth-child(5) {
        margin-left: -40px;
        margin-left: 0;
    }

    .platform-card-content span {
        max-width: 100%;
    }

    .platform-card-content {
        width: 90%;
    }

    .platform-card:first-child .platform-card-content {
        padding-right: 0;
    }

}

@media (max-width: 1199px) {

    .homepage .about-section {
        padding: 60px 40px;
    }

    .home-about-section {
        padding: 60px 40px !important;
        gap: 30px !important;
    }

    .home-about-media {
        min-height: 520px;
    }

    .sustainablility-content {
        padding: 60px 25px;
    }

    .sustainablility-content::after {
        width: 380px;
        height: 550px;
    }

    .platforms-section {
        padding: 60px 25px;
    }

    .trusted-brands-sec {
        padding: 60px 25px;
    }

    .certifications-card {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .homepage .about-section {
        padding: 50px 30px;
    }

    .homepage .about-content .career-list {
        gap: 16px;
        margin: 24px 0 28px;
    }

    .about-img-wrapper {
        margin-bottom: 40px;
    }

    .home-about-section {
        grid-template-columns: minmax(0, 1fr) !important;
        padding: 50px 30px !important;
        gap: 40px !important;
    }

    .home-about-media {
        min-height: 420px;
    }

    .home-about-note {
        max-width: 220px !important;
    }

    .project-location {
        left: 0;
        padding: 8px;
        gap: 10px;
    }

    .project-desc {
        max-width: 220px;
    }

    .sustainablility-section {
        flex-direction: column;
    }

    .sustainablility-content {
        padding: 50px 25px;
        width: 100%;
    }

    .sustainablility-content::after {
        display: none;
    }

    .sustainablility-img {
        width: 100%;
        margin-left: 0;
    }

    .platforms-section {
        padding: 50px 25px;
    }

    .value-chain {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .value-chain>span {
        text-align: center;
    }

    .value-chain>span.chain-center {
        white-space: normal;
        order: initial;
        flex: initial;
        gap: 0;
    }

    .value-chain>span.chain-center::before,
    .value-chain>span.chain-center::after {
        display: none;
    }

    .platforms-slider {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 24px;
    }

    .platform-card {
        width: calc(50% - 12px);
    }

    .platform-card:first-child .platform-card-content {
        padding-right: 0;
    }

    .trusted-brands-sec {
        padding: 50px 25px;
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-card {
        font-size: 18px;
        padding: 22px;
    }
}

@media (max-width: 767px) {

    .homepage .hero-content>span {
        font-size: 15px;
        line-height: 22px;
        margin: 16px 0 28px;
    }

    .homepage .about-section {
        padding: 40px 20px;
    }

    .homepage .about-content .common-heading {
        max-width: 100%;
    }

    .homepage .about-content p {
        max-width: 100%;
    }

    .homepage .about-content .career-list {
        flex-direction: column;
        gap: 16px;
        margin: 24px 0 28px;
    }

    .home-about-section {
        padding: 40px 20px !important;
        gap: 32px !important;
    }

    .home-about-copy .common-heading,
    .home-about-copy p {
        max-width: 100% !important;
    }

    .home-about-media {
        min-height: 320px;
    }

    .home-about-note {
        top: 6px !important;
        max-width: 180px !important;
    }

    .home-about-note p {
        font-size: 11px !important;
        line-height: 15px !important;
    }

    .project-location {
        bottom: -64px;
    }

    .about-img-wrapper {
        min-height: 400px;
    }

    .project-location div span:first-child {
        font-size: 16px;
        line-height: 21px;
    }

    .project-desc {
        margin-bottom: 16px;
    }

    .footer-content div span:nth-child(2) {
        margin-top: 20px;
    }

    .project-card p {
        max-width: 100%;
    }

    .project-grid {
        min-height: auto;
        margin-bottom: 32px;
    }

    .project-filters {
        gap: 8px;
        margin-bottom: 28px;
    }

    .project-filters button {
        font-size: 15px;
        padding: 10px 18px 9px 18px;
    }

    .sustainablility-content {
        padding: 40px 20px;
    }

    .sustainablility-content p {
        font-size: 16px;
        line-height: 22px;
        max-width: 100%;
    }

    .sustainablility-content .btn {
        margin-top: 24px;
    }

    .platforms-section {
        padding: 40px 20px;
    }

    .platforms-section>p {
        font-size: 15px;
        margin: 6px 0 32px;
    }

    .value-chain>span {
        font-size: 15px;
    }

    .value-chain>span.chain-center {
        font-size: 14px;
    }

    .platform-card {
        width: 100%;
    }

    .platform-card-heading span {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .platform-card-content {
        margin-top: 24px;
    }

    .platform-card-content span {
        font-size: 18px;
    }

    .platform-card-content p {
        font-size: 15px;
        max-width: 100%;
    }

    .trusted-brands-sec {
        padding: 40px 20px;
    }

    .trusted-brands-sec div span {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .trusted-brands-sec>div+div {
        margin-top: 36px;
    }

    .subsidiaries-card {
        padding: 16px;
        max-height: none;
    }

    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .principal-card {
        padding: 16px 20px;
        max-height: none;
    }

    .principal-card img {
        max-width: 110px;
        max-height: 70px;
        object-fit: contain;
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .certifications-card {
        padding: 20px;
        font-size: 16px;
        line-height: 22px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {

    .grid-6,
    .grid-5,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .platform-card-content span {
        font-size: 16px;
        max-width: 100%;
    }

    .subsidiaries-card,
    .principal-card {
        padding: 14px;
    }

    .project-location {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-img-wrapper {
        min-height: 380px;
        padding-top: 50px;
    }

    .home-about-section {
        padding: 32px 16px !important;
        gap: 24px !important;
    }

    .home-about-media {
        min-height: 260px;
    }

    .home-about-note {
        max-width: 150px !important;
    }

    .home-about-note p {
        font-size: 10px !important;
        line-height: 14px !important;
    }

    .home-about-location {
        padding: 6px 8px !important;
        gap: 8px !important;
    }
}


@media (max-width: 1024px) {
    .project-details-section {
        padding: 50px 30px;
    }

    .project-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-logos-wrapper {
        flex-direction: row;
    }

    .project-location-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 30px;
        margin-top: 60px;
    }

    .project-detail-content>div>p {
        max-width: 100%;
    }

    .arabic-page .project-location {
        bottom: -50px;
        left: 0;
        right: unset;
    }

    .arabic-page .about-img-wrapper{
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .project-details-section {
        padding: 40px 20px;
    }

    .project-detail-content {
        gap: 30px;
    }

    .project-meta {
        padding: 10px 18px;
    }

    .project-meta span {
        font-size: 14px;
        line-height: 24px;
    }

    .project-meta span:last-child::before {
        margin: 0 14px;
    }

    .project-detail-content>div>span {
        font-size: 18px;
        line-height: 24px;
    }

    .project-detail-content>div>span+p {
        margin-top: 20px;
    }

    .project-detail-content>div>p {
        font-size: 16px;
        line-height: 24px;
    }

    .project-logos-wrapper div {
        padding: 20px;
        gap: 20px;
    }

    .project-logos-wrapper div span {
        font-size: 14px;
    }

    .project-location-wrapper {
        padding: 40px 20px;
        margin-top: 40px;
        gap: 30px;
    }

    .project-location-icon {
        width: 60px;
        height: 60px;
        border-radius: 30px;
    }

    .project-location-icon img {
        width: 28px;
        height: 28px;
    }

    .project-location-detail {
        gap: 24px;
    }

    .project-location-detail>div {
        gap: 16px;
    }

    .project-location-detail span {
        font-size: 15px;
    }

    .project-location-detail p {
        font-size: 15px;
        max-width: 100%;
    }

    .project-logos-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .project-detail-content {
        gap: 24px;
    }

    .project-location-detail>div {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .project-location-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .project-location-icon img {
        width: 24px;
        height: 24px;
    }
}


@media (max-width: 1200px) {
    .header nav ul.submenu-menu {
        position: static;
        left: auto !important;
        right: auto !important;
        width: 100%;
        min-width: 100%;
        padding-left: 18px;
        margin-top: 8px;
    }

    .arabic-page .header nav ul.submenu-menu {
        padding-left: 0;
        padding-right: 18px;
    }

    .arabic-page .header .submenu-menu li a {
        text-align: right;
    }
}

@media (min-width: 481px) and (max-width: 1200px) {
    .medtech-units-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}