   .services-item-description p {
       text-align: justify;
   }

   .prague-services-wrapper {
       min-height: 690px;
   }

   .container_ceo {
       max-width: 1200px;
       margin: 40px auto;
       background-color: #fff;
       border-radius: 12px;
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
       overflow: hidden;
       display: flex;
       flex-direction: column;
       min-height: 650px;
       position: relative;
   }

   .header-banner {
       background: linear-gradient(135deg, #1a237e, #4a148c);
       height: 8px;
       width: 100%;
   }

   .content-wrapper {
       display: flex;
       flex: 1;
   }

   .image-side {
       flex: 0 0 40%;
       background: linear-gradient(135deg, #f5f7fa, #e8edf5);
       position: relative;
       overflow: hidden;
       animation: fadeInLeft 1s ease-out;
   }

   .image-container {
       position: relative;
       height: 100%;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       padding: 40px 30px;
   }

   .ceo-image {
       width: 250px;
       height: 250px;
       border-radius: 50%;
       object-fit: cover;
       border: 6px solid white;
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
       animation: fadeInUp 1.2s ease-out, pulse 3s infinite alternate;
       transition: transform 0.3s ease;
   }

   .ceo-image:hover {
       transform: scale(1.05);
   }

   .ceo-name {
       margin-top: 25px;
       font-weight: 700;
       font-size: 24px;
       color: #1a237e;
       text-align: center;
   }

   .ceo-title {
       font-size: 16px;
       color: #4a148c;
       opacity: 0.9;
       text-align: center;
       margin-top: 5px;
       letter-spacing: 1px;
   }

   .company-logo {
       margin-top: 40px;
       width: 130px;
       opacity: 0.85;
       transition: opacity 0.3s ease;
   }

   .company-logo:hover {
       opacity: 1;
   }

   .message-side {
       flex: 0 0 60%;
       padding: 50px 40px;
       position: relative;
       animation: fadeInRight 1s ease-out;
       background: #ffffff;
   }

   .quote-mark {
       font-size: 120px;
       position: absolute;
       top: 34px;
       left: 20px;
       color: rgba(0, 0, 0, 0.03);
       z-index: 0;
   }

   .message-content {
       position: relative;
       z-index: 1;
   }

   .message-title {
       font-size: 26px;
       color: #1a237e;
       margin-bottom: 25px;
       border-bottom: 2px solid #e0e0e0;
       padding-bottom: 15px;
       position: relative;
   }

   .message-title::after {
       content: '';
       position: absolute;
       bottom: -2px;
       left: 0;
       width: 80px;
       height: 2px;
       background-color: #4a148c;
       animation: expandWidth 1.5s ease-out forwards;
   }

   .message-body {
       font-size: 16px;
       line-height: 1.8;
       margin-bottom: 30px;
   }

   .message-body p {
       margin-bottom: 18px;
       animation: fadeInUp 0.8s ease-out;
       animation-fill-mode: both;
   }

   .message-body p:nth-child(1) {
       animation-delay: 0.2s;
   }

   .message-body p:nth-child(2) {
       animation-delay: 0.4s;
   }

   .message-body p:nth-child(3) {
       animation-delay: 0.6s;
   }

   .message-body p:nth-child(4) {
       animation-delay: 0.8s;
   }

   .message-body p:nth-child(5) {
       animation-delay: 1s;
   }

   .message-signature {
       font-style: italic;
       font-size: 18px;
       color: #4a148c;
       margin-top: 30px;
       text-align: right;
       position: relative;
       padding-right: 10px;
       animation: fadeInUp 1.2s ease-out;
   }

   .message-signature::before {
       content: '';
       position: absolute;
       bottom: -8px;
       right: 0;
       width: 100px;
       height: 1px;
       background-color: #4a148c;
       opacity: 0.5;
   }

   .decoration-element {
       position: absolute;
       width: 150px;
       height: 150px;
       border-radius: 50%;
       background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(74, 20, 140, 0.08));
       bottom: 30px;
       right: 30px;
       z-index: 0;
   }

   /* Animations */
   @keyframes fadeInDown {
       from {
           opacity: 0;
           transform: translateY(-30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeInLeft {
       from {
           opacity: 0;
           transform: translateX(-50px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   @keyframes fadeInRight {
       from {
           opacity: 0;
           transform: translateX(50px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes pulse {
       0% {
           box-shadow: 0 0 0 0 rgba(74, 20, 140, 0.4);
       }

       70% {
           box-shadow: 0 0 0 10px rgba(74, 20, 140, 0);
       }

       100% {
           box-shadow: 0 0 0 0 rgba(74, 20, 140, 0);
       }
   }

   @keyframes expandWidth {
       from {
           width: 0;
       }

       to {
           width: 80px;
       }
   }

   /* Responsive design */
   @media (max-width: 992px) {
       .content-wrapper {
           flex-direction: column;
       }

       .image-side,
       .message-side {
           flex: 0 0 100%;
       }

       .image-container {
           padding: 40px 30px;
       }

       .ceo-image {
           width: 200px;
           height: 200px;
       }

       .message-side {
           padding: 40px 30px;
       }
   }

   @media (max-width: 576px) {
       .container_ceo {
           margin: 10px auto;
       }

       .message-side {
           padding: 30px 20px;
       }

       .ceo-image {
           width: 180px;
           height: 180px;
       }
   }

   .mission h3,
   .vision h3 {
       text-transform: uppercase;
   }

   .mission,
   .vision {

       min-height: 337px;
       width: 100%;
       display: flex;
       justify-content: center;
       align-items: center;
       padding: 40px;
       transition: all 0.8s ease;
       position: relative;
   }

   .mission {
       background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
       color: white;
   }

   .vision {
       background: linear-gradient(135deg, #57ba45 0%, #579f4a 100%);

       color: white;
   }

   .mission_vision .content {
       text-align: center;
       opacity: 0;
       transform: translateY(50px);
       transition: all 1s ease;
   }

   .mission .content {
       animation: slideInLeft 1s forwards 0.5s;
   }

   .vision .content {
       animation: slideInRight 1s forwards 0.5s;
   }

   .mission_vision .content p {
       color: #000;
   }

   .mission h2 {
       text-transform: uppercase;
   }

   .vision h2 {
       text-transform: uppercase;
   }

   @keyframes slideInLeft {
       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   @keyframes slideInRight {
       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   .mission::before,
   .vision::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -50%;
       width: 200%;
       height: 200%;
       background: rgba(255, 255, 255, 0.05);
       transform: rotate(-45deg);
       z-index: 1;
       animation: moveBackground 10s linear infinite;
   }

   @keyframes moveBackground {
       0% {
           transform: rotate(-45deg) translateX(-100%);
       }

       100% {
           transform: rotate(-45deg) translateX(0);
       }
   }

   .companies-container {
       display: flex;
       justify-content: center;
       align-items: center;
       gap: 30px;
       position: relative;
       margin-top: 6em;
   }

   .company-card {
       width: 300px;
       height: 700px;

       background-color: white;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       padding: 30px;
       text-align: center;
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
   }

   .company-card:hover {
       transform: translateY(-10px) rotateX(5deg);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   }

   .center-card {
       transform: translateY(-50px);
       z-index: 10;
       border-top: 5px solid #3498db;
   }

   .company-card h2 {
       margin-bottom: 15px;
       color: #333;
       font-size: 24px;
   }

   .company-card p {
       color: #666;
       margin-bottom: 20px;
       font-style: italic;
   }


.company-card .contact-btn {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 18px;
    font-weight: 700;
    background-color:#c7551d;
    border: none;
       color: #ffffff;
      border-radius: 6px;
    padding: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    text-transform: uppercase;
    position: absolute;
    bottom: 15px;
    left: 25%;
    /*background-image: url(../img/arrow-btn.png);*/
    /*background-repeat: no-repeat;*/
    /*background-position: 100% 43%;*/
}
   /*.company-card .contact-btn {*/
   /*    display: inline-block;*/
   /*    background-color: #3498db;*/
   /*    color: white;*/
   /*    padding: 10px 20px;*/
   /*    text-decoration: none;*/
   /*    border-radius: 5px;*/
   /*    transition: background-color 0.3s ease;*/
   /*}*/

   /*.company-card .contact-btn:hover {*/
   /*        color: #bb0c13;*/
   /*}*/

   .company-card .more-info {
       display: block;
       margin-top: 15px;
       color: #3498db;
       text-decoration: none;
       font-weight: bold;
   }

   .company-card::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -50%;
       width: 200%;
       height: 200%;
       background: rgba(52, 152, 219, 0.1);
       transform: rotate(-45deg);
       z-index: -1;
       animation: moveBackground 10s linear infinite;
   }

   @keyframes moveBackground {
       0% {
           transform: rotate(-45deg) translateX(-100%);
       }

       100% {
           transform: rotate(-45deg) translateX(0);
       }
   }

   .companies_cards {
       z-index: 10;
       position: relative;
       padding-top: 3em;
   }

   .company-card {
       width: 300px;
       background-color: white;
       border-radius: 15px;
       box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
       padding: 30px;
       text-align: center;
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
       border-top: 4px solid #2c3e50;
   }

   .company-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
   }

   /*.image_logo {*/
   /*    margin-bottom: 20px;*/
   /*    max-width: 100%;*/
   /*    height: auto;*/
   /*    object-fit: contain;*/
   /*}*/
   
   .image_logo {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    
    /* Enhancements */
    padding: 8px;
    background-color: #fff; /* Optional: makes shadow more visible */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image_logo:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


   .company-card h2 {
       color: #2c3e50;
       margin-bottom: 15px;
       font-size: 24px;
       text-transform: uppercase;
   }

   .company-card>p:nth-of-type(1) {
       color: #7f8c8d;
       font-style: italic;
       margin-bottom: 20px;
   }

   .contact_hed {
       font-weight: bold;
       color: #2980b9;
       margin: 15px 0;
       font-size: 1.2rem;
   }

   .company-card>p:nth-of-type(3) {
       color: #34495e;
       margin-bottom: 15px;
   }

   .company-card a {
       color: #2980b9;
       text-decoration: none;
       transition: color 0.3s ease;
   }

  
   .company-card a:hover {
    color: #2980b9;
    text-decoration: none;
}

   /*.contact-btn {*/
   /*    display: inline-block;*/
   /*    background-color: #2c3e50;*/
   /*    color: white;*/
   /*    padding: 10px 20px;*/
   /*    border-radius: 5px;*/
   /*    margin-top: 15px;*/
   /*    text-transform: uppercase;*/
   /*    letter-spacing: 1px;*/
   /*    transition: background-color 0.3s ease;*/
   /*}*/

   /*.contact-btn:hover {*/
   /*    background-color: #34495e;*/
   /*}*/




.main_company{
        width: 420px;
    margin-top: -7em;
        border-top: 4px solid #e5ad46;
}

 @media screen and (max-width: 480px) {

        .main_company {
                width: 393px;
                margin-top: 0;       
                        order: -1;
        }
    }
   .company-card::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -50%;
       width: 200%;
       height: 200%;
       background: rgba(44, 62, 80, 0.05);
       transform: rotate(-45deg);
       z-index: -1;
       animation: moveBackground 10s linear infinite;
   }

   @keyframes moveBackground {
       0% {
           transform: rotate(-45deg) translateX(-100%);
       }

       100% {
           transform: rotate(-45deg) translateX(0);
       }
   }

   @media (max-width: 768px) {

       .heading.dark .content p {
           text-align: justify;
       }

       .heading .title {
           text-align: right;
       }

       .team-wrapper {
           padding-top: 0;
       }
   }

   .achievements p {
       margin-bottom: 0 !important;
   }
   
   
   
    .about_smou_grp {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
    }

    .about_smou_grp .image-section {
        position: relative;
        flex: 1;
        min-width: 300px;
    }

    .about_smou_grp .image-row {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .about_smou_grp .image {
        width: 100%;
        max-width: 330px;
        border-radius: 25px;
        object-fit: cover;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

   
    .about_smou_grp .text-section {
        flex: 1;
        min-width: 300px;
    }

    .about_smou_grp .since {
        color: #c49c65;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about_smou_grp h1 {
        font-size: 36px;
        line-height: 1.2;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .about_smou_grp p {
        font-size: 19px;
        color: #666;
        line-height: 32px;
        margin-bottom: 15px;
        text-align: right;
    }
    
    
        @media (max-width: 768px) {

        .companies-container {
            flex-direction: column;
        }

        .center-card {
            transform: none;
        }
    }
    
    
     .ceo-section {
        background-color: #766553;
    }

    .ceo_container {
        display: flex;
        max-width: 100%;
        margin: 40px auto;
        margin-bottom: 0;
    }

   

    .ceo_container .left {
        flex: 1;
        background: url(../img/smou_ceo.jpg) no-repeat top center;
        /* Pulls the image from the top */
        background-size: cover;
        min-height: 700px;
        position: relative;
        background-color: #766553;
    }



    .ceo_container .right {
        flex: 1;
        padding: 60px 40px;
        background-color: #dcd3c5;
        position: relative;
    }


    .ceo_container .right::before {
        content: "“";
        font-size: 114px;
        font-weight: 600;
        position: absolute;
        top: 39px;
        left: 20px;
        color: #6d6b68;
        font-family: serif;
    }



    .ceo_container .right::after {
        content: "”";
        font-size: 114px;
        font-weight: 600;
        position: absolute;
        bottom: 10px;
        right: 20px;
        color: #6d6b68;
        font-family: serif;
    }





    .ceo_container .content {
        margin-top: 40px;
        color: #2f2e2b;
        line-height: 1.7;
    }

    .ceo_container .content h2 {
        margin-top: 0;
        font-size: 22px;
        font-weight: 600;
        color: #111111;
    }

    .ceo_container .content p {
        color: #111111;
        font-size: 19px;
        line-height: 32px;
        text-align: right;
    }

    .ceo_container .signature {
        margin-top: 30px;
        font-style: normal;
        font-weight: 600;
    }

    .ceo_container .signature p {
        margin: 5px 0;
    }
    
        @media screen and (max-width: 480px) {

.ceo_container {
        
        flex-direction: column;
}
    }
    
    
    
    
.container-mission {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
}

.container-mission .left-section {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
}

.container-mission .right-section {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* Header styles */
.container-mission .header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.container-mission .ready-text {
    color: #FF5F00;
    font-weight: 600;
    font-size: 14px;
    margin-right: 15px;
    text-transform: uppercase;
}

.container-mission .header-line {
    height: 1px;
    background-color: #E0E0E0;
    flex-grow: 1;
    max-width: 60px;
}

.container-mission h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #002855;
    margin-bottom: 25px;
}

.container-mission .description {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Feature box styles */
.container-mission .feature-box {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.container-mission .icon-container {
    position: relative;
    margin-left: 20px;
    flex-shrink: 0;
}

.container-mission .icon {
    width: 50px;
    height: 50px;
    background-color: #e11319;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.container-mission .icon svg {
    width: 24px;
    height: 24px;
}

.container-mission .icon-accent {
    position: absolute;
    width: 20px;
    height: 50px;
    background-color: #FF5F00;
    border-radius: 10px 0 0 10px;
    right: -10px;
    top: 10px;
    z-index: 1;
}

.container-mission .feature-text {
    color: #666;
    font-size: 19px;
}

/* Image grid styles */
.container-mission .image-grid {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.container-mission .image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.container-mission .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-mission .image-top {
    width: 60%;
    height: 45%;
    right: 0;
    top: 0;
    z-index: 3;
}

.container-mission .image-middle {
    width: 50%;
    height: 40%;
    left: 0;
    bottom: 20%;
    z-index: 2;
}

.container-mission .image-bottom {
    width: 60%;
    height: 45%;
    right: 10%;
    bottom: 0;
    z-index: 3;
}

.container-mission .blue-accent {
    position: absolute;
    width: 15%;
    height: 25%;
    background-color: #5abd48;
    left: 20%;
    top: 15%;
    z-index: 1;
}

.container-mission .light-blue-accent {
    position: absolute;
    width: 10%;
    height: 15%;
    background-color: #E6F0FF;
    left: 30%;
    bottom: 10%;
    z-index: 1;
    border-radius: 4px;
}

.container-mission .orange-accent {
    position: absolute;
    width: 10%;
    height: 15%;
        background-color: #e11319;
    right: 5%;
    bottom: 5%;
    z-index: 1;
}
.content-sec{
    
}
/* Responsive styles */
@media (max-width: 992px) {
    .container-mission {
        flex-direction: column;
    }
    
        .container-mission .left-section {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
        .container-mission .image-grid {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .container-mission h1 {
        font-size: 32px;
    }
    
        .container-mission .image-grid {
        min-height: 500px;
    }
    
        .container-mission .image-top,.container-mission .image-bottom {
        width: 70%;
    }
    
        .container-mission .image-middle {
        width: 60%;
    }
}

@media (max-width: 576px) {
    .container-mission .image-grid {
        min-height: 400px;
    }
    
        .container-mission .image-top,.container-mission .image-middle,.container-mission .image-bottom {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    
        .container-mission .blue-accent,.container-mission .light-blue-accent,.container-mission .orange-accent {
        display: none;
    }
}


 .achievements-section {
        background: url('../img/building_bg.jpeg') no-repeat center center/cover;
        position: relative;
        padding: 80px 20px;
        color: #fff;
    }

    .achievements-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.65);
        /* dark overlay */
        z-index: 0;
    }

    .achievements-container {
        max-width: 1000px;
        margin: auto;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .achievements-container h2 {
        font-size: 2.8em;
        margin-bottom: 30px;

        color: #f5f5f5;
        text-transform: uppercase;
    }

    .achievements-container p {
        font-size: 1.1em;
        line-height: 1.8;
        margin-bottom: 30px;
        color: #f0f0f0;
        text-align: right;
    }



    @media (max-width: 768px) {
        .achievements-container h2 {
            font-size: 2em;
        }

        .achievements-container p {
            font-size: 1em;
        }
    }
    .core_quote{
            text-align: center;
            font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
    padding: 20px;
    }
    .core_quote_start{
         font-size: 4rem;
        color: #e5ad46;
        opacity: 0.3;
        position: absolute;
        top: -10px;
        left: 0;
        line-height: 1;
    }
    
    .core_quote_end{
         font-size: 4rem;
        color: #e5ad46;
        opacity: 0.3;
        position: absolute;
        bottom: -30px;
        right: 0;
        line-height: 1;
    }
    
    
     .core_card {
        width: 100%;
        max-width: 800px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        padding: 15px;
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin-bottom: 1em;
    }

    .core_card .image-container-core {
        flex: 0 0 125px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .core_card .image-container-core img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .core_card .content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .core_card .headingcore {
        color: #2d2a54;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 0;
        text-transform: uppercase;
    }

    .core_card .description {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }



    .core_card .text {
        font-size: 19px;
        line-height: 1.5;
            color: #7e7d7d;
    }


    /* Responsive styles */
    @media (max-width: 768px) {
        .core_card {
            flex-direction: column;
        }

        .core_card .image-container-core {
            flex: 0 0 auto;
            margin-bottom: 20px;
        }
    }
    
        @media screen and (max-width: 480px) {

.core_card .image-container-core img {
        width: 50vw;
}|
.core_card {
    gap: 0
}
    }
    
       .innovation-values ul{
                        margin-right:30px;    color: #7e7d7d;
                    }
                    .innovation-values ul li, .innovation-values em{
                            font-size: 19px;
                    }
                    