html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    max-width: 100vw;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #fff;
    color: #333;
    padding-top: 0px;
    padding-bottom: 3rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Update Banner */
/* .update-banner-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(195, 107, 0.95);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: fadeDown 0.6s ease-out;
} */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger menu - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #646766;
    transition: 0.3s;
}

/* .navbar { */
    /* width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 45px;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 70px;
    padding: 0 40px;
    box-sizing: border-box; */
    /* width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 0px;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0 40px;
    height: 70px;
} */

/* .navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    width: 200px;
}

.navbar .lang {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.navbar .lang i {
    margin-left: 5px;
}

.navbar .lang img {
    width: 20px;
    border-radius: 3px;
}

.navbar .lang span {
    font-size: 18px;
    color: #646766;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

.navbar ul li a {
    color: #646766;
    font-weight: 500;
    transition: 0.3s;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: #d29b6f;
} */

.lang {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.hero {
    background-image: url('https://media.atrium-pm.com/images/1772357204231-18485e1411534b07.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    margin-top: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(200, 210, 222, 0.5) 70%,
        rgba(200, 210, 222, 0) 100%
    );
    max-width: 100vw;
    left: 0;
    right: 0;
}

.quote-box {
    position: relative;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.7) 10%,
        rgba(83, 106, 139, 0.5) 100%,
        rgba(180, 163, 163, 0) 100%
    );
    color: #fff;
    padding: 130px 130px;
    margin-top: 25px;
    border-radius: 30px;
    max-width: 900px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.6;
    z-index: 1;
    box-sizing: border-box;
}

style>body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

.About-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 120px;
    gap: 60px;
}

.about-title {
    flex: 1;
    font-size: 38px;
    font-weight: 500;
    color: #DB7125;
    /* اللون البرتقالي اللي في الصورة */
    position: relative;
    margin-top: 200px;
   
}

.about-title::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 250px;
    width: 120px;
    height: 2px;
    background-color: #DB7125;
    transform: translateY(-50%);
}

.about-text {
    flex: 2;
    font-size: 23px;
    line-height: 1.7;
    color: #333;
    max-width: 620px;

}

/* للأجهزة اللوحية */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 8%;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .about-text p {
        font-size: 17px;
    }

    .about-image img {
        max-width: 500px;
    }
}

/* للموبايلات */
@media (max-width: 600px) {
    .about-section {
        padding: 40px 6%;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image img {
        max-width: 100%;
    }
}



.story-section {
    background-color: #F8E2D3;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 10100px;
    margin: auto;
    position: relative;

}

.story-text {
    width: 55%;
}

.story-text h2 {
    color: #DB7125;
    font-size: 38px;
    font-weight: 500;

    position: relative;
}

.story-text h2::after {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: #b36b2b;
    margin-left: 15px;
    vertical-align: middle;
}

.story-text p {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
    max-width: 400px;
}

.story-image {
    width: 40%;
    align-self: flex-end;
    /* دي اللي بتحط الصورة في اليمين */
    margin-top: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
    /* وقت التأخير قبل ما تبدأ الحركة */

}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-image img {
    width: 100%;
    border-radius: 15px;

}

@media (max-width: 768px) {
    .story-section {
        padding: 20px;
    }

    .story-text h2 {
        font-size: 26px;
    }

    .story-image {
        width: 80%;
        align-self: center;
    }
}
 .sec-wrapper-unique {
     width: 90%;
     margin: auto;
     padding: 40px 0;
    margin-top: 60px;
 }

 .services-title-unique {
     font-size: 36px;
     font-weight: 600;
     margin-bottom: 30px;
     color: #415270;
 }

 .layout-grid-unique {
     display: grid;
     grid-template-columns: 45% 50%;
     gap: 70px;
    padding-right: 35px;
 }

 /* Images section */
 .image-group-unique {
     display: grid;
     grid-template-columns: 1fr 1fr;
     margin-left: 30px;
    
 }

 .image-item-unique {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 5px;
 }

 /* Text section */
 .text-group-unique {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .text-box-unique {
     background:#8d929c;
     padding: 20px;
     border-radius: 8px;
     font-size: 20px;
     line-height: 1.6;
     max-width: 400px;
     color: white;
 }

 .text-box-wide-unique {
     grid-column: span 2;
 }

 /* Responsive */
 @media(max-width: 850px) {
     .layout-grid-unique {
         grid-template-columns: 1fr;
     }

     .text-group-unique {
         grid-template-columns: 1fr;
     }

     .text-box-wide-unique {
         grid-column: span 1;
     }
 }

.journey-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 120px;
    gap: 60px;
   
}

.journey-text {
    flex: 1;

}

.journey-text h2 {
    color: #DB7125;
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 500;
}

.journey-text p {
    font-size: 25px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 300px;
}

.journey-text button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    font-size: 18px;
    color: #DB7125;
    border: 1.5px solid #DB7125;
    border-right: none;
    border-radius: 10px;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.journey-text button:hover {
    background-color: #c27030;
    color: white;
}

.watch-btn {
    background-color: #c47a3d;
    /* لون البني الذهبي */
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.watch-btn:hover {
    background-color: #a8642f;
    /* لون أغمق عند التمرير */
    transform: scale(1.05);
}

.journey-text i {
    font-size: 25px;
    font-style: normal;

}

.journey-image {
    flex: 1;
    text-align: right;
    margin-top: 100px;
    margin-right: 40px;

}

.journey-image img {
    width: 60%;
    border-radius: 10px;

}

/* 📱 Responsive Styles */
@media (max-width: 900px) {
    .journey {
        flex-direction: column;
        text-align: center;
    }

    .text-content p {
        margin: auto;
    }

    .image-content {
        margin-top: 30px;
    }
}


.vmv-section {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.vmv-container {
    width: 90%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vmv-card {
    background: linear-gradient(135deg, #a57d6d, #7e675c);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.vmv-icon {
    width: 55px;
    margin-bottom: 18px;
}

.vmv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.vmv-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .vmv-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .vmv-container {
        grid-template-columns: 1fr;
    }
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 120px;
    gap: 40px;
    margin: 30px;


}


.about-title {
    flex: 1;
    font-size: 38px;
    font-weight: 500;
    color: #DB7125;
    /* اللون البرتقالي اللي في الصورة */
    position: relative;
    margin-top: 200px;
    margin-left: -1px;

}

.highlight {
    position: relative;
    display: inline-block;
    color: #415270;
    font-weight: 600;
    font-size: 50px;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30%;
    /* ← دي بتتحكم في مكان الخط بالنسبة للكلمة */
    width: 120%;
    height: 0.40em;
    /* ← دي بتتحكم في سُمك الماركر */
    background-color: #fff47d;
    /* اللون الأصفر */
    z-index: -1;
    /* علشان يكون ورا النص */
    border-radius: 4px;
}

.about-title::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 270px;
    width: 120px;
    height: 2px;
    background-color: #DB7125;
    transform: translateY(-50%);
}

.different-text {
    flex: 2;
    font-size: 23px;
    line-height: 1.7;
    color: #333;
    max-width: 620px;
    margin-top: 80px;


}

/* للأجهزة اللوحية */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 8%;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .about-text p {
        font-size: 17px;
    }

    .about-image img {
        max-width: 500px;
    }
}

/* للموبايلات */
@media (max-width: 600px) {
    .about-section {
        padding: 40px 6%;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image img {
        max-width: 100%;
    }
}

.culture-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 100px;
    flex-wrap: wrap;
    /* عشان يسمح بالنزول تحت في الشاشات الصغيرة */
    margin-top: 50px;


}


.text {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    margin-left: 20px;
}

.text h2 {
    font-size: 2.5rem;
    color: #DB7125;
    font-weight: 500;
}

.text h2 span {
    color: #f1b92b;
    font-weight: 500;
}

.divider {
    height: 4px;
    width: 100px;
    background-color: #f5c400;
    margin: 16px 0 40px 0;
}

.text h3 {
    font-size: 1.8rem;
    color: #3b4873;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 500px;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-left: 80px;

}

/* 🌟 للموبايل */
@media (max-width: 768px) {
    .culture-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .text {
        max-width: 100%;
    }

    .text h2 {
        font-size: 2rem;
    }

    .text h3 {
        font-size: 1.4rem;
    }

    .image img {
        max-width: 100%;
        margin-top: 30px;
    }
}


.risk-approach {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    color: #2f3b52;
    font-family: "Poppins", sans-serif;
    margin-right: 50px;
    margin-top: 100px;

}

/* ----- Title ----- */
.risk-approach h2 {
    font-size: 32px;
    color: #C4743D;
    font-weight: 400;
    margin-bottom: 50px;
}


/* ----- Icons Row ----- */
.approach-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.approach-icons .item img {
    width: 70px;
    height: 70px;

}

.approach-icons .item p {
    margin-top: 10px;
    font-weight: 500;
}

.center-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;


}

.line {
    width: 70px;
    height: 2px;
    background-color: #c27030;
}

/* ----- Subtitle ----- */
.subtitle {
    font-size: 20px;
    margin: 20px 0;
    line-height: 1.6;
}

.subtitle span {
    font-style: italic;
    color: #555;
}

/* ----- Divider Line ----- */
hr {
    width: 70%;
    margin: 40px auto;
    border: 0;
    border-top: 1px solid #c27030;
    opacity: 0.4;

}

/* ----- Core Values Section ----- */
.core-values-title {
    font-size: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #2f3b52;
    font-weight: 400;

}

.core-values {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 20px;

}

.core-values div {
    text-align: center;
}

.core-values img {
    width: 50px;
    height: 50px;

}

.core-values p {
    font-size: 15px;
    color: #2f3b52;
    font-weight: 500;
}


.leadership-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #eef2f7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.leadership-section .divider{
    background-color: #d5a877d9;
    margin-left: 40%;
    width: 280px;
    margin-bottom: 30px;
}

.leadership-section h2 {
    font-size: 36px;
    color: #2f3b52;

}

.leaders-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.leader {
    position: relative;
    width: 180px;
    transition: transform 0.3s;
    margin-top: 20px;
    margin-bottom: 60px;
    margin-right: 30px;
}

.leader img {
    width: 100%;
    border-radius: 30%;
    border-color: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    border: 3px solid #d5a877d9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.leader:hover img {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

.leader-name {
    position: absolute;
    bottom: 10px;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d5a877d9;
    color: white;
    padding: 6px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;

}

.leader br {
    font-weight: 400;
}

/* Add responsive styles at the end */

/* Responsive navbar for tablets/mobiles */
@media (max-width: 991px) {
    /* .navbar ul {
        display: flex;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        width: 250px;
        background-color: white;
        flex-direction: column;
        padding: 60px 20px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: right 0.3s ease;
    } */

    /* .navbar ul.show {
        right: 0;
    } */

    /* .hamburger {
        display: flex;
        z-index: 1001;
    } */

    /* .navbar .lang {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        padding: 0 20px;
    }

    .navbar ul li {
        margin: 15px 0;
    }

    .navbar ul li a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar ul::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar ul.show::before {
        opacity: 1;
        visibility: visible;
    } */

    .hero {
        height: 70vh;
        /* margin: 10px; */
    }

    .quote-box {
        padding: 40px 30px;
        max-width: 90%;
        font-size: 20px;
        margin: 10px;
    }

    .About-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        margin: 10px;
    }

    .about-title {
        font-size: 28px;
        margin-top: 50px;
        margin-left: 0;
        text-align: center;
    }

    .about-title::after {
        display: none;
    }

    .about-text {
        font-size: 16px;
        max-width: 100%;
        text-align: left;
    }

    .story-section {
        flex-direction: column;
        padding: 30px 20px;
        max-width: 100%;
        margin: 10px auto;
        text-align: center;
    }

    .story-text {
        width: 100%;
    }

    .story-text h2 {
        font-size: 24px;
    }

    .story-text h2::after {
        width: 60px;
        margin-left: 10px;
    }

    .story-text p {
        font-size: 16px;
        max-width: 100%;
    }

    .story-image {
        width: 80%;
        margin-top: 30px;
        align-self: center;
    }

    .journey-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        margin-top: 30px;
        text-align: center;
    }

    .journey-text h2 {
        font-size: 24px;
    }

    .journey-text p {
        font-size: 16px;
        max-width: 100%;
    }

    .journey-text button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .journey-image {
        margin-top: 0;
        margin-right: 0;
        text-align: center;
    }

    .journey-image img {
        width: 80%;
    }

    .vision-mission {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        margin-top: 30px;
        margin-right: 0;
    }

    .card-mission,
    .card-vision {
        flex: 1 1 100%;
        padding: 30px 20px;
    }

    .card-mission h3,
    .card-vision h3 {
        font-size: 24px;
    }

    .vision-mission p {
        font-size: 14px;
    }

    .about-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        margin: 10px;
    }

    .about-title {
        font-size: 24px;
        margin-top: 30px;
        margin-left: 0;
        text-align: center;
    }

    .about-title::after {
        display: none;
    }

    .highlight {
        font-size: 32px;
    }

    .highlight::after {
        width: 100%;
    }

    .different-text {
        font-size: 16px;
        margin-top: 20px;
        max-width: 100%;
    }

    .culture-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        margin-top: 30px;
        text-align: center;
    }

    .text {
        max-width: 100%;
        margin-left: 0;
    }

    .text h2 {
        font-size: 24px;
    }

    .text h3 {
        font-size: 20px;
    }

    .text p {
        font-size: 16px;
        max-width: 100%;
    }

    .image {
        margin-top: 0;
    }

    .image img {
        margin-left: 0;
        max-width: 100%;
    }

    .risk-approach {
        padding: 30px 20px;
        margin-right: 0;
        margin-top: 50px;
    }

    .risk-approach h2 {
        font-size: 24px;
    }

    .approach-icons {
        flex-direction: row; /* Keep horizontal */
        gap: 20px; /* Reduce gap for mobile */
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .approach-icons .item {
        flex-shrink: 0; /* Prevent items from shrinking too much */
    }

    .approach-icons .item img {
        width: 50px; /* Smaller icons on mobile */
        height: 50px;
    }

    .approach-icons .item p {
        font-size: 12px; /* Smaller text */
        margin-top: 5px;
    }

    .center-icon img {
        width: 60px; /* Smaller center icon */
        height: 60px;
        margin-bottom: 15px;
    }

    .line {
        width: 40px; /* Shorter lines on mobile */
        height: 2px;
    }

    .core-values-title {
        font-size: 22px;
    }

    .core-values {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    /* Leadership Section Mobile */
    .leadership-section {
        padding: 30px 20px;
    }

    .leadership-section h2 {
        font-size: 28px;
    }

    .leadership-section .divider {
        margin-left: 35%;
        width: 200px;
    }

    .leaders-container {
        gap: 20px;
    }

    .leader {
        width: 150px;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .leader-name {
        font-size: 12px;
        padding: 4px 20px;
        bottom: -40px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    body {
        padding-top: 0px;
    }

    .navbar .logo img {
        width: 130px;
    }

    .hero {
        height: 60vh;
    }

    .quote-box {
        padding: 30px 20px;
        font-size: 18px;
    }

    .about-title {
        font-size: 20px;
    }

    .highlight {
        font-size: 28px;
    }

    .different-text {
        font-size: 14px;
    }

    .story-text h2 {
        font-size: 20px;
    }

    .story-text p {
        font-size: 14px;
    }

    .journey-text h2 {
        font-size: 20px;
    }

    .journey-text p {
        font-size: 14px;
    }

    .text h2 {
        font-size: 20px;
    }

    .text h3 {
        font-size: 18px;
    }

    .text p {
        font-size: 14px;
    }

    .risk-approach h2 {
        font-size: 20px;
    }

    .approach-icons {
        gap: 15px;
    }

    .approach-icons .item img {
        width: 40px;
        height: 40px;
    }

    .approach-icons .item p {
        font-size: 10px;
    }

    .center-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .line {
        width: 30px;
        height: 2px;
    }

    .core-values-title {
        font-size: 18px;
    }

    .leadership-section h2 {
        font-size: 24px;
    }

    .leader {
        width: 120px;
    }

    .leader-name {
        font-size: 10px;
        padding: 3px 15px;
    }
}

/* Fix main overflow issues */
* {
    max-width: 100vw;
    box-sizing: border-box;
}

.story-section {
    max-width: 90vw;
    overflow-x: hidden;
}
.About-section,
.journey-section,
.vision-mission,
.about-section,
.culture-section,
.risk-approach,
.leadership-section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Update the mobile responsive section */
@media (max-width: 991px) {
    /* ... other existing rules ... */

    .approach-icons {
        flex-direction: row; /* Keep horizontal */
        gap: 20px; /* Reduce gap for mobile */
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .approach-icons .item {
        flex-shrink: 0; /* Prevent items from shrinking too much */
    }

    .approach-icons .item img {
        width: 50px; /* Smaller icons on mobile */
        height: 50px;
    }

    .approach-icons .item p {
        font-size: 12px; /* Smaller text */
        margin-top: 5px;
    }

    .center-icon img {
        width: 60px; /* Smaller center icon */
        height: 60px;
        margin-bottom: 15px;
    }

    .line {
        width: 40px; /* Shorter lines on mobile */
        height: 2px;
    }

    /* ... rest of existing mobile rules ... */
}

/* Extra small screens - make it even more compact */
@media (max-width: 480px) {
    .approach-icons {
        gap: 15px;
    }

    .approach-icons .item img {
        width: 40px;
        height: 40px;
    }

    .approach-icons .item p {
        font-size: 10px;
    }

    .center-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .line {
        width: 30px;
        height: 2px;
    }

    /* ... rest of existing extra small screen rules ... */
}