.title {
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 24px;
}



.container-in {
    width: 100%;
    /* max-width: 1500px; */
    margin: 0 auto;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  
}


.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}


.col {
    flex: 1;
}


.content-section {
    background: #f4f4f4 ;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}
.content-section3 {
   background-image: url(../images/isobg-ar.jpg);
   background-size: cover;
   background-repeat: no-repeat;
    padding: 20px;
    /* border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    width: 100%;
}

.content-section4 {
    background-image: url(../images/isobg4ar.jpg);
    background-size: cover;
    background-repeat: no-repeat;
     padding: 20px;
     /* border-radius: 12px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); */
     transition: all 0.3s ease-in-out;
     text-align: center;
     margin-bottom: 10px;
     font-size: 18px;
     width: 100%;
 }
.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.9);
}


.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
  
}

.section-title:hover {
    color: #005bb5;
}


.ultitle {
    list-style: none;
    padding: 0;
    text-align: right;
 
}
.ultitle2 {
    list-style: none;
    padding: 0;
    text-align: right;
 
}
.ultitle li {
    font-size: 18px;
    padding: 5px;
    /* background: #f1f1f1; */
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ultitle2 li {
    font-size: 18px;
    padding: 5px;
    background: #f1f1f1; 
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;

}
.ultitle li:hover {
    background: linear-gradient(to right, #005bb5, #9fbfdf);
    color: rgb(255, 255, 255);
    transform: scale(1.03);
}

.ultitle2 li:hover {
    background: linear-gradient(to right, #005bb5, #9fbfdf);
    color: rgb(255, 255, 255);
    transform: scale(1.03);
}

.button-1:hover {
    background: linear-gradient(to right, #005bb5, #9fbfdf);
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .container-in {
        padding: 30px 15px;
    }

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }

    .section-title {
        font-size: 20px;
    }

    ul li {
        font-size: 16px;
        padding: 8px;
    }

    .button-1 {
        font-size: 16px;
        padding: 10px 15px;
    }
}

.container4 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.containerrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    width: 90%; 
    max-width: 1200px;
}

.item {
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 3%;
    border: 1px solid rgb(236, 236, 236);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(128, 128, 128, 0.5);
}


@media screen and (max-width: 900px) {
    .containerrow {
        grid-template-columns: repeat(2, 1fr); 
    }
}


@media screen and (max-width: 600px) {
    .containerrow {
        grid-template-columns: repeat(1, 1fr); 
    }
}