:root {
    --primary: #e02454;
    --light: #FFF5F3;
    --dark: #103741;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
}


/* ========================================== 20-10-25*/ 
    /* --- Popup Overlay --- */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
        background: rgb(0 0 0 / 81%);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      animation: fadeIn 0.5s ease-in-out;
    }

    /* --- Popup Box --- */
    .popup-box {
      /* background: linear-gradient(135deg, #007bff, #00bcd4); */
      color: white;
      border-radius: 15px;
      padding: 40px 30px;
      width: 90%;
      max-width: 480px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      animation: popUp 0.5s ease-out;
      position: relative;
    }

    /* --- Close Button --- */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 22px;
      color: #fff;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .close-btn:hover {
      transform: scale(1.2);
    }

    /* --- Content --- */
    .popup-box h2 {
      margin: 0;
      font-size: 1.8em;
      letter-spacing: 1px;
    }
    .popup-box h3 {
      margin-top: 10px;
      font-size: 1.3em;
      font-weight: 500;
    }
    .popup-box p {
      margin: 15px 0;
      font-size: 1em;
      line-height: 1.5;
    }

    /* --- Button --- */
    .popup-btn {
      display: inline-block;
      background: #fff;
      color: #007bff;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }
    .popup-btn:hover {
      background: #f1f1f1;
      transform: translateY(-3px);
    }
  /* --- Animations --- */
    @keyframes popUp {
      0% { transform: scale(0.7); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }

    /* --- Responsive --- */
    @media (max-width: 480px) {
      .popup-box h2 { font-size: 1.5em; }
      .popup-box p { font-size: 0.95em; }
    }
/* =========================================== 20-10-25*/

.pop {
    position: fixed;
    width: 85%;
    height: 75%;
    z-index: 3000;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
}
.pop .pop-first-inner{
    width: 100%;
    height: 100%;
    position: relative;
}
.pop .pop-first-inner img{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.pop-first-inner .cal {
    position: absolute;
    top: 8px;
    right: 35px;
    background: #fff;
    padding: 8px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

p {
    text-align: justify;
}

.sunit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

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

@media (max-width: 800px) {
    .text-primary {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .text-primary {
        font-size: 13.5px;
    }
}

@media (max-width: 380px) {
    .text-primary {
        font-size: 11.5px;
    }
}

@media (max-width: 325px) {
    .text-primary {
        font-size: 10px;
    }
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: 0px;
    /* box-shadow: 0px 3px 8px rgba(43, 43, 43, 0.295); */
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }

}

/*** Top and Bottom borders go out ***/
.navbar-light .navbar-nav .nav-link:after,
.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    top: 30px;
    bottom: 30px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: var(--bs-primary);
    opacity: 0;
    transition: all 0.5s;
}

.navbar-light .navbar-nav .nav-link:before {
    bottom: auto;
}

.navbar-light .navbar-nav .nav-link:after {
    top: auto;
}

.navbar-light .navbar-nav .nav-link:hover:before,
.navbar-light .navbar-nav .nav-link.active:before {
    top: 20px;
    opacity: 1;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    bottom: 20px;
    opacity: 1;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/
/*** Header ***/
.header-carousel::before,
.header-carousel::after {
    /* .page-header::before,
.page-header::after { */
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after {
    /* .page-header::after { */
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.for-header-link-section {
    color: #d4d5d6 !important;
    transition: 0.5s;
}

.for-header-link-section:hover {
    color: #FFFFFF !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

/*  */


.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

@media(max-width:380px) {
    .sub-title::before {
        content: "";
        width: 85px;
        position: absolute;
        bottom: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-bottom: -8px;
        margin-right: -85px;
        border: 1px solid var(--bs-secondary) !important;
    }

    .section-title .sub-style::before {
        content: "";
        width: 85px;
        position: absolute;
        bottom: 50%;
        left: 16px;
        transform: translateY(-50%);
        margin-bottom: -6px;
        margin-left: -100px;
        border: 1px solid var(--bs-secondary) !important;
    }

}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/

/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}

@media(max-width:992px) {
    .for-column-reverse {
        flex-direction: column-reverse;
    }
}

@media(max-width:430px) {
    .for-about-sub-image-margin-top {
        margin-top: -102px !important;
    }
}

/* headmaster start */

.home-headmaster-main-section {
    width: 100%;
    height: auto;
}

.home-headmaster-main-section .main-inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 45px;
    margin-bottom: 50px;
}

.home-headmaster-main-section .main-inner .sub-first {
    width: 51%;
    height: 430px;
    /* border: 5px solid #009dff; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-headmaster-main-section .main-inner .sub-first .sub-first-inner {
    width: 100%;
    height: 100%;
}

.home-headmaster-main-section .main-inner .sub-first .sub-first-inner img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 5px 19px -10px rgba(0, 0, 0, 0.5);
}

.home-headmaster-main-section .main-inner .sub-second {
    width: 100%;
}

.home-headmaster-main-section .main-inner .sub-second .sub-second-fisrt-heading {
    width: auto;
    height: auto;
    text-align: start;
    display: flex;
    align-items: center;
}

.home-headmaster-main-section .main-inner .sub-second .sub-second-fisrt-heading h4 {
    font-size: 17px;
    font-weight: 700;
    color: #009dff;
}

@media(max-width:1500px) {
    .home-headmaster-main-section .main-inner .sub-first {
        width: auto;
        height: auto;
        margin-right: 50px;
    }

    .home-headmaster-main-section .main-inner .sub-first .sub-first-inner {
        width: 450px;
        height: 499px;
        /* margin: 5px; */

        padding: 5px;
    }
}

@media(max-width:992px) {
    .home-headmaster-main-section .main-inner {
        width: 100%;
        display: grid;
        row-gap: 3%;
    }

    .home-headmaster-main-section .main-inner .sub-first {
        width: 100%;
        height: auto;
        margin: auto;
    }

    .home-headmaster-main-section .main-inner .sub-first .sub-first-inner {
        width: 100%;
        height: 497px;
    }

    .home-headmaster-main-section .main-inner .sub-first .sub-first-inner img {
        width: 100%;
        height: 100%;
        /* margin: 5px 5px; */
    }

    .home-headmaster-main-section .main-inner .sub-second {
        margin: auto;
        width: 100%;
    }

    .home-headmaster-main-section .main-inner .sub-second .sub-second-second-heading {
        height: auto;
    }
}

@media(max-width:450px) {
    .home-headmaster-main-section .main-inner {
        row-gap: 2%;
    }

    .home-headmaster-main-section .main-inner .sub-first {
        width: 100%;
    }

    .home-headmaster-main-section .main-inner .sub-first .sub-first-inner {
        width: 100%;
        height: 390px;
    }

    .home-headmaster-main-section .main-inner .sub-second {
        margin: auto;
        width: 95%;
    }
}

@media(max-width:330px) {
    .home-headmaster-main-section .main-inner {
        row-gap: 1%;
    }

    .home-headmaster-main-section .main-inner .sub-first {
        width: 100%;
    }

    .home-headmaster-main-section .main-inner .sub-first .sub-first-inner {
        width: 100%;
        height: 330px;
    }
}

/* headmaster end */
/*** headhaster ***/
.for_p {
    margin-top: 0 !important;
}

.custom-wrapper {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin-top: 100px;
}

.green-box,
.blue-box,
.main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.green-box,
.blue-box {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #d4ff33;
    /* green for .green-box */
}

.green-box {
    top: -7%;
    left: -7%;
    z-index: 0;
}

.blue-box {
    top: 7%;
    left: 7%;
    background-color: #000958;
    border-bottom-right-radius: 50px;
    z-index: 1;
}

.main-image {
    position: relative;
    z-index: 2;
    border-bottom-right-radius: 50px;
    display: block;
    max-width: 100%;
    height: auto;
}

.signature {
    width: 100%;
    max-width: 340px;
    text-align: right;
    font-style: italic;
    margin-top: 40px;
    padding-right: 10px;
}


.icon-box {
    text-align: left;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: margin-top 0.3s ease;
}

.icon-box:hover {
    margin-top: -10px;
}

.icon-box i {
    font-size: 30px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .custom-wrapper {
        margin: auto;
    }
}



.owl-next-custom {
    width: 100px;
    position: relative;
    bottom: 500px;
    left: 92%;
}

.owl-prev-custom {
    width: 100px;
    position: relative;
    bottom: 465px;
}

@media (max-width: 768px) {
    .owl-next-custom {
        bottom: 492px;
        left: 85%;
    }

    .owl-prev-custom {
        bottom: 455px;
    }
}

@media (max-width: 430px) {
    .owl-next-custom {
        bottom: 485px;
        left: 72%;
    }

    .owl-prev-custom {
        bottom: 448px;
    }
}

@media (max-width: 325px) {
    .owl-next-custom {
        bottom: 485px;
        left: 62%;
    }

    .owl-prev-custom {
        bottom: 448px;
    }
}

/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}

/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/

/*** faculty Start ***/

.item .faculty-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;

}

.item .faculty-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.faculty .faculty-item .name h5 {
    color: white;
}

.faculty .faculty-item .name {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: var(--bs-primary);
    /* semi-transparent overlay */
    color: white;
    transition: 0.3s;
}

.faculty .faculty-item .name .role {
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.faculty .faculty-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faculty-item:hover .faculty-hover {
    opacity: 1;
}

.faculty-item:hover .name .role {
    opacity: 1;
}

.faculty-item:hover .name {
    background: var(--bs-secondary);
}

/*** faculty end ***/

/*** gallery Start ***/
.gallery .gallery-item .gallery-img img {
    height: 400px;
    width: 100%;
}

.gallery .gallery-item {
    position: relative;
}

.gallery .gallery-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    height: 100%;
}

.gallery .gallery-item .gallery-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
    border: 2px white solid;
    padding: 10px;

}

.gallery .gallery-item:hover .gallery-btn {
    opacity: 1;
}

.gallery-btn:hover {
    background: var(--bs-secondary);
}

/*** gallery End ***/
/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}


.jit_notice-card {
    /* background-color: white; */
    width: 300px;
    height: 181px;
    /* padding: 20px; */
    /* border-radius: 12px; */
    /* box-shadow: 0 0 10px rgb(0 0 0 / 26%); */
    overflow: hidden;
}

/* .jit_notice-header {
      font-weight: bold;
      color: #444;
      font-size: 18px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    } */

/* .jit_notice-header i {
      color: #FFC107;
    } */

.jit_header_border {
    display: block;
    margin-top: 8px;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.jit_notice-content {
    margin-top: 10px;
    color: #fffff5;
    font-size: 15px;
}

.jit_notice-content i {
    margin-right: 5px;
    color: #fffff5;

}

.jit_emoji {
    margin-left: 5px;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}

/*** copyright end ***/
.for-padding-top {
    padding-top: 0px !important;
}

.for-padding-button {
    padding-bottom: 0px !important;
}

.for-margin-countries {
    margin-bottom: 59px !important;
}

.turka-main .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.turka-main .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

/*  */


.turka-main .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    /* font-size: 35px; */
    color: var(--bs-primary);
}

.turka-main .row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.turka-main .for_p {
    margin-top: 0 !important;
}

.turka-main .custom {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin-top: 100px;
}

.turka-main .green,
.blue,
.main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.turka-main .green,
.blue {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #d4ff33;
    /* green for .green-box */
}

.turka-main .green {
    top: -7%;
    left: -7%;
    z-index: 0;
}

.turka-main .blue {
    top: 7%;
    left: 7%;
    background-color: #000958;
    border-bottom-right-radius: 50px;
    z-index: 1;
}

.turka-main .main-image {
    position: relative;
    z-index: 2;
    border-bottom-right-radius: 50px;
    display: block;
    max-width: 100%;
    height: auto;
}

.turka-main .sign {
    width: 100%;
    max-width: 340px;
    text-align: right;
    font-style: italic;
    margin-top: 40px;
    padding-right: 10px;
}

.turka-main .icon-box {
    text-align: left;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: margin-top 0.3s ease;
}

.turka-main .icon-box:hover {
    margin-top: -10px;
}

.turka-main .icon-box i {
    font-size: 30px;
    margin-bottom: 10px;
}

.turka-main .row {
    margin-bottom: 40px;
}

@media (max-width:991px) {
    .turka-main .row1 {
        display: grid;
        align-items: center;
        justify-content: space-between;
    }

    .turka-main .for_p {
        margin: auto;
    }
}

@media (max-width:770px) {
    .turka-main .row1 {
        display: grid;
        align-items: center;
        justify-content: space-between;
    }

    .turka-main .for_p {
        margin: auto;
    }
}

.turka-main .for_p {
    margin: auto;
}

@media (max-width: 430px) {
    .turka-main .sub-title {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        /* font-size: 15px; */
        color: var(--bs-primary);
    }

    .turka-main .custom {
        position: relative;
        width: fit-content;
        max-width: 70%;
        margin: 50px 60px 0px 60px;
    }

    .turka-main .icon-box {
        text-align: left;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: margin-top 0.3s ease;
        margin-bottom: 20px;
    }
}

@media(max-width:380px) {
    .turka-main .sub-title {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        /* font-size: 15px; */
        color: var(--bs-primary);
    }

    .turka-main .custom {
        position: relative;
        width: fit-content;
        max-width: 70%;
        margin: 50px 40px 0px 40px;
    }

    .turka-main .yio {
        display: grid;
    }

    .turka-main .icon-box {
        text-align: left;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: margin-top 0.3s ease;
        margin-bottom: 20px;
    }

    .turka-main .text-muted {
        font-size: 13px;
        color: #6c757d !important;
    }
}

.top-section {
    width: 100%;
    height: auto;
}

.top-section img {
    width: 100%;
}

.footer-button-section {
    width: 100%;
    height: auto;
    background-color: #fff;
}

.footer-button-section .container .row .row-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.footer-button-section .container .row .row-inner .footer-links {
    font-weight: 600;
}

.footer-button-section .container .row .row-inner .footer-right {
    font-weight: 600;
}

@media (max-width:430px) {
    .footer-button-section .container .row .row-inner {
        flex-direction: column;
    }
}

.footer-whatsapp-icon {
    position: fixed;
    display: block;
    padding: 10px 19px;
    bottom: 70px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 99;
    transition: 0.5s;
}

.footer-whatsapp-icon:hover {
    color: #505050;
}

/* start home-welcome-section */
.home-welcome-body-section {
    width: 100%;
    height: auto;
    background-color: #FFF0F5;
}