* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: linear-gradient(to bottom, #3a3b40 2%, #5f6064 3%, #d7d7db 5%, #ccccd2 100%, #cbc8c8 100%);
    font-family: 'Poppins', sans-serif;
}

.navbar {
    width: 100vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:  #656769;
}
.navbar .logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 17px;
}

.navbar .logo .pic img {
    width: 100px;
    height: auto;
    margin-left: 65px;
}

.navbar .logo .text {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-top: 38px;
    color: white;
}

.navbar .links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 26px;
}

.navbar .links a:nth-child(2) {
    color: rgb(142, 30, 30);
}

.navbar .links a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
}

.navbar .links a:hover {
    color: rgb(142, 30, 30);
}

.navbar .start a {
    padding: 13px;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 7px;
    margin-right: 65px;
    margin-left: 115px;
}

.navbar .start a:hover {
    color: #fff;
    background-color: rgb(142, 30, 30);
}

.menu-icon {
    display: none;
    font-size: 30px;
    margin-right: 20px;
    color: rgb(142, 30, 30);
    padding: 1px 6px; 
    border: 1px solid rgb(142, 30, 30);
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar .links,
    .navbar .start {
        display: none;
    }

    .navbar .menu-icon {
        display: block;
        cursor: pointer;
        margin-right: 10px;
    }
   
    .navbar .links.show {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        position: fixed; /* Fix position to overlay content */
        top: 80px; /* Adjust according to navbar height */
        left: 0;
        z-index: 11; /* Ensure it's above other content */
    }
    .navbar .logo{
        gap: 5px;
    }
    .navbar .logo .pic img {
        margin-left: 10px;
        width: 70px;
        height: auto;
    }
    .navbar .logo .text {
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        margin-top: 24px;
    }
    
    .navbar .links.show a{
        padding: 10px 0;
        margin-left: 10px;
        text-decoration: underline;
    }
}


.section1 {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 50px;
    background:  linear-gradient(to bottom, #5f6064 3%, #cacad0 100%, #ccccd2 100) ;
}

.section1 .textt {
    width: 100vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section1 .textt h1 {
    font-weight: 800;
    font-size: 55px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25em;
    margin-top: 10px;
    padding: 0 400px;
}

.section1 .textt p {
    margin-top: 10px;
    margin-left: 280px;
    margin-right: 272px;
    line-height: 24px;
    margin-bottom: 40px;
}

.section1 .uagb-ifb-separatr {
    width: 60px;
    border-top-width: 2px;
    border-top-color: rgb(142, 30, 30);
    border-top-style: solid;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section1 .textt h1 {
        font-size: 35px;
        padding: 0 20px; 
    }

    .section1 .textt p {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.section3 {
    margin-top: 50px;
    padding: 20px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.section3 .images {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 20px;
}

.section3 .images img {
    width: 45%;
    height: 500px;
    object-fit: cover;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    border-bottom-left-radius: 250px;
    border-bottom-right-radius: 250px;
}

.section3 .images img:nth-child(2) {
    margin-top: 100px;
}

.section3 .text-container {
    margin-left: 25px;
    width: 50%;
    padding: 50px 32px;
}

.section3 .text-container h1,
.section3 .text-container h3,
.section3 .text-container p,
.section3 .text-container a {
    margin: 10px 0;
}

.section3 .text-container h1 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: bolder;
}

.section3 .uagb-ifb-separater {
    width: 60px;
    border-top-width: 2px;
    border-top-color: rgb(142, 30, 30);
    border-top-style: solid;
    margin-bottom: 38px;
}

.section3 .text-container p {
    margin-bottom: 39px;
    font-size: 17px;
    color: rgb(98, 97, 97);
}


@media screen and (max-width: 767px) {
    .section3 {
        flex-direction: column; 
        align-items: center; 
        padding: 10px; 
    }

    .section3 .images {
        width: 100%; 
        margin-left: 0; 
        margin-bottom: 20px; 
    }

    .section3 .images img {
        width: 90%; 
        height: auto; 
        margin: 0 auto;
        border-radius: 38%; 
    }
    .section3 .uagb-ifb-separater {
margin: 0 auto;
    }
    .section3 .images img:nth-child(1) {
        display: none; 
    }

    .section3 .text-container {
        width: 100%; 
        padding: 20px; 
        margin-left: 0; 
    }

    .section3 .text-container h1 {
        font-size: 28px; 
text-align: center;   
margin-bottom: 23px; }

    .section3 .text-container p {
        font-size: 15px; 
        text-align: center;
        margin-top: 24px;
    }
}


.section4 {
    margin-top: 80px;
}

.overlay-text {
    position: relative;
    background-image: url('okyy.jpg'); 
    background-size: cover;
    background-position: center;
    height: 300px; 
    display: flex;
    color: white;
    text-align: center;
    flex-direction: row;
    width: 94%;
    align-items: center;
    margin: 0 auto;
    border-radius: 60px;
    padding: 0 180px;
}

.section4 .overlay-text > div {
    flex: 1;
    position: relative;
}

.section4 .overlay-text > div.s1 {
    margin-left: 50px; 
}

.section4 .overlay-text h1 {
    font-size: 2.5rem;
    margin: 0;
}

.section4 .overlay-text p {
    font-size: 1.25rem;
}

.vertical-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px; 
}

.vertical-line hr {
    border: none; 
    border-left: 2px solid white; 
    height: 100%; 
    width: 0; 
}
#hrtag{
    display: none;
}

@media (max-width: 767px) {
    .overlay-text {
        flex-direction: column;
        padding: 0; 
        height: auto; 
    }

    .overlay-text > div {
        margin: 20px 0; 
    }

    .vertical-line {
        display: none; 
    }

    .section4 .overlay-text h1 {
        font-size: 2rem; 
    }
#hrtag{
    width: 90%;
    display: block;
    color: rgb(142, 30, 30);
    height: 1px;
}
    .section4 .overlay-text p {
        font-size: 1rem; 
    }
}

.sectionn2 {
    width: 95%;
    margin: 0 auto;
    margin-top: 90px;
    border-radius: 56px;
}

.sectionn2 h1 {
    font-weight: 700;
    font-size: 40px;
    margin-top: 90px;
    text-align: center;
}

.sectionn2 .uagb-separator {
    border-top-style: solid;
    border-top-width: 2px;
    width: 60px;
    border-color: rgb(142, 30, 30);
    margin-left: 47%;
    margin-top: 35px;
    margin-bottom: 50px;
}

.sectionn2 .grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sectionn2 .grid-container .city {
    text-align: center;
    flex: 0 1 calc(25% - 20px);
    
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.sectionn2 .grid-container .city .city-name {
    color: rgba(0, 0, 0, 0.7);
    padding: 5px;
}

.sectionn2 .grid-container .city .city-name h3 {
    color: rgb(49, 46, 46);
    font-size: 19px;
}

.sectionn2 .grid-container .city .city-name p {
    color: rgb(56, 54, 54);
    margin-top: 15px;
    margin-bottom: 20px;
}

.sectionn2 .grid-container .city .city-name i {
    color: rgb(142, 30, 30);
    margin-top: 15px;
    font-size: 130px;
    margin-bottom: 30px;
}


@media (max-width: 767px) {
    .sectionn2 {
        margin-top: 40px; 
    }

    .sectionn2 .uagb-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .sectionn2 .grid-container {
        flex-direction: column; 
        align-items: center; 
    }

    .sectionn2 .grid-container .city {
        flex: 0 1 100%; 
        max-width: 400px; 
    }
}




.section8 {
    height: 500px;
    background-image: url('imagee1.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-direction: column;
    width: 94%;
    margin: 0 auto;
    margin-top: 100px;
    border-radius: 59px;
    overflow: hidden;
    transform: scaleX(1); 
}

.section8::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    z-index: 0;
}

.section8 .text-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1; 
    text-align: center; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px;
    border-radius: 10px;
}

.section8 .text-overlay .uagb-ifb-separatr {
    width: 60px;
    border-top-width: 2px;
    border-top-color: rgb(142, 30, 30);
    border-top-style: solid;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.section8 .text-overlay .h11 {
    color: #ffffff;
    font-size: 25px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.section8 .text-overlay .paraaa {
    color: #ffffff;
    font-size: 17px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.buttonn {
    padding: 17px 22px;
    background-color: rgb(142, 30, 30);
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 50px;
}

.buttonn a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 1;
}

.buttonn p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}


@media screen and (max-width: 767px) {
    .section8 {
        height: 350px; 
    }

    .section8 .text-overlay .h11 {
        font-size: 15px;
        width: 100%;
    }

    .section8 .text-overlay .paraaa {
        font-size: 15px;
        width: 100%;
        line-height: 1.6rem;

    }

    .buttonn {
        padding: 14px 18px;
    }

    .buttonn p {
        font-size: 14px;
    }
}

.section9 {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    flex-direction: row;
    background-color: #d5d3d3; 
    padding: 0 20px; 
    box-sizing: border-box; 
}

.section9 .links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px; 
}

.section9 .links a:first-child {
    color: rgb(142, 30, 30);
    font-weight: bold;
}

.section9 .links a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: bold;
}

.section9 .links a:hover {
    color: rgb(142, 30, 30);
}

.section9 .copyy {
    text-align: center;
    font-size: 14px; 
}
@media (max-width: 768px) {
    .section9 {
        flex-direction: column;
        height: auto;
        padding: 10px; 
        text-align: center; 
    }

    .section9 .links {
        flex-direction: column;
        gap: 10px; 
        margin-bottom: 10px; 
    }

    .section9 .links a {
        font-size: 15px; 
    }

    .section9 .copyy {
        font-size: 12px; 
        margin-top: 10px; 
    }
}