/* Home-Page*/

        
        
        
/*_____________SLIDER___________________________  */    
        .slider-wrapper {
            margin:0;
            width: 100vw;
            width: 100vw;
            position: relative;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out, transform 0.5s ease-in-out;
        }
        .slide-image {
        min-width: 100%; /* Ensures only one slide is shown at a time */
        opacity: 1; /* Initially hidden */
        transition: opacity 0.8s ease-in-out; /* Fade effect */
        }
        .slide-image img {
            width: 100vw;
            height: auto;
            object-fit: contain;
        }

        .buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            margin-left:20px;
        }

        .buttons #prev {
            font-size: 18px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 20px;
            margin-left:0;
            cursor: pointer;
        }
        .buttons #next {
            font-size: 18px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 20px;
            margin-right:40px;
            cursor: pointer;
        }
        
        .about-logos {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 40px;
          margin-bottom: 75px;
        }
        
        .about-logo {
          height: 100px;
          width: auto;
          margin-bottom: 20px
        }
    .diff-box {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        height: fit-content;
        background-color: #fafafa;
    }
    .diff-box-wrap .diff-box .diff-pt-box {
        width: 48%;
        padding: 10px;
        background: #fafafa;
    }
    .diff-pt {
        padding: 0px;
    }
    .diff-pt ul {
        list-style-type: none;
        margin-left: 10%;
        margin-top: 5%;
        padding: 10px;
        font-family: "khand";
    }
    .diff-pt ul li {
        list-style-type: none;
        border-left: 5px solid #daa71d;
        margin-bottom: 5px;
        padding-left: 10px;
        font-size: larger;
    }
    .diff-img {
    width: 50%;
    }
    
    .messages-wrapper {
        padding-bottom: 60px
    }
    
    .message-box-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }
    
    .message-box-wrap .message-box {
        width: 49%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }
    
    .message-box-wrap .message-box .per-img {
        width: 27%
    }
    
    .message-box-wrap .message-box .per-img img {
        height: 100%;
        object-fit: cover
    }
    
    .message-box-wrap .message-box .msg-con-box {
        width: 70%;
        padding: 10px;
        background: #fafafa
    }
    
    .message-box-wrap .message-box .msg-con-box .per-name-box {
        margin-bottom: 10px
    }
    
    .message-box-wrap .message-box .msg-con-box .per-name-box h3 {
        font-size: 20px;
        font-weight: 500
    }
    
    .message-box-wrap .message-box .msg-con-box .per-name-box h3 span {
        font-size: 14px;
        color: #185988;
        font-family: "Roboto", sans-serif
    }
    
    .message-box-wrap .message-box .msg-con-box .per-msg p {
        font-size: 14px;
        color: dimgray
    }
    
    .message-box-wrap .message-box .msg-con-box .per-msg .know-more-btn {
        font-size: 14px;
        color: #185988;
        margin-top: 10px;
        display: inline-block
    }
    
    .message-box-wrap .message-box .msg-con-box .per-msg .know-more-btn:hover {
        text-decoration: none
    }
    @media screen and (max-width: 1024px) {
    .message-box-wrap .message-box {
        width: 100%;
        margin-bottom: 20px;
        }
    }
    @media screen and (max-width: 1024px) {
        .message-box-wrap .message-box .per-img {
            width: 32%;
        }
    }
    @media screen and (max-width: 480px) {
        .message-box-wrap .message-box .per-img, .message-box-wrap .message-box .msg-con-box {
            width: 100%;
        }
    }
    

    
    @media screen and (max-width: 980px) {
    .inHeader {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

        @media screen and (max-width: 768px) {
          .about-logos {
            flex-direction: column;
            gap: 20px;
          }
          .about-logo {
            height: 75px;
            margin-bottom: 20px;
            align-content: center;
          }
        }
        
    /* Adjust button size for smaller screens */
    @media screen and (max-width: 768px) {
        .buttons button {
            padding: 8px 12px;
            font-size: 14px;
        }
    }
    
    /* Adjust for very small screens */
    @media screen and (max-width: 480px) {
        .buttons #next{
            padding: 6px 12px;
            font-size: 10px;
            margin-right:30px;
        }
            .buttons #prev {
            padding: 6px 12px;
            font-size: 10px;
            margin-left:-10px;
        }
    }
    body.popup-open {
          overflow: hidden;
          height: 100vh;
        }
    
        #popupContainer {
          position: fixed;
          top: 0;
          left: 0;
          width: 100vw;
          height: 100vh;
          background-color: rgba(0, 0, 0, 0.4);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 9999;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.3s ease;
          overflow-x: hidden;
        }
    
        #popupContainer.active {
          opacity: 1;
          pointer-events: auto;
        }
    
        #popupContainer.closing #popupContent {
          transform: translateY(100%);
        }
    
        #popupContent {
          background: #fff;
          width: 80vw;
          max-height: 90vh;
          border-radius: 12px;
          overflow-y: auto;
          padding: 16px;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          display: flex;
          flex-direction: column;
          transform: translateY(100%);
          transition: transform 0.4s ease, bottom 0.4s ease, width 0.4s ease, left 0.4s ease;
          position: relative;
        }
    
        #popupContainer.active #popupContent:not(.minimized) {
          transform: translateY(0);
        }
    
        #popupContent.minimized {
          position: fixed;
          bottom: 10px;
          left: 50%;
          transform: translate(-50%, 0);
          width: 100%;
          max-width: 400px;
          height: auto;
          padding: 12px 16px;
          overflow: hidden;
          border-radius: 12px;
          cursor: pointer;
          transition: all 0.4s ease;
          z-index: 10000;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
    
        #popupContent.minimized #popupBody {
          display: none;
        }
    
        #popupContent.minimized #popupHeader {
          justify-content: left;
          font-size: 16px;
          margin-bottom: 0;
        }
    
        #popupContent.minimized #popupControls {
          position: absolute;
          right: 10px;
          top: 10px;
        }
    
        #popupContainer.minimized {
          background-color: transparent;
          pointer-events: none;
        }
    
        #popupContainer.minimized #popupContent {
          pointer-events: auto;
        }
    
        #popupHeader {
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-weight: bold;
          font-size: 18px;
          margin-bottom: 10px;
        }
    
        #popupControls button {
          margin-left: 5px;
          border: none;
          background: #eee;
          padding: 4px 10px;
          border-radius: 4px;
          cursor: pointer;
          font-size: 16px;
        }
    
        #popupControls button:hover {
          background: #ccc;
        }
    
        #popupBody {
          overflow-y: auto;
        }
    
        #popupMedia video,
        #popupMedia img {
          width: 100%;
          height: auto;
          max-height: 60vh;
          object-fit: contain;
        }
    
        h3.style-head {
          margin: 0;
        }
    
        .mr-b2 {
          margin-bottom: 12px;
        }
        .cta-wrapper {
        background: url(assets/images/cta-bg.jpg) repeat;
        text-align: center;
        font-size: 1rem;
        margin-top: 0px;
        padding: 60px 0px;
        }
        .cta-wrapper .cta-txt {
            text-align: center;
            font-size: 1.75rem;
        }
        .cta-btn {
            align-self: center;
            background: rgba(200, 200, 200, .5);
            position: relative;
            padding: 5px 15px;
            display: flex;
            margin: 0 auto;
            font-size: calc(2rem + 1vw);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: 1px solid #185988;
            border-radius: 25px;
            outline: none;
            overflow: hidden;
            text-align: center;
        }
        .cta-wrapper .cta-btn a {
        font-family: "Poppins", sans-serif;
        font-size: calc(2rem + 2vw);
        color: #185988;
        text-decoration: none;
        width: fit-content;
        text-align: center !important;
        }
        @media screen and (max-width: 480px) {
            .cta-btn {
                border-radius: 10px;
            }
        }
        @media screen and (max-width: 480px) {
            .cta-wrapper .cta-btn a {
                font-family: "Poppins", sans-serif;
                font-size: calc(1rem + 2vw);
            }
        }
                .facilities-wrapper {
        padding: 60px 0;
        background: #f7f7f7;
        }
        .mid-container {
            width: 80%;
            margin: 0px auto;
        }
        .sec-heads {
            margin-bottom: 60px;
        }
        .facilities-wrapper .facilitie-box-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .facilities-wrapper .facilitie-box-wrap .facilitie-box {
            width: 170px;
            text-align: center;
            margin: 0 16px;
            margin-bottom: 25px;
            padding: 20px 8px;
        }
        .facilities-wrapper .facilitie-box-wrap .facilitie-box .fac-icon-box {
        width: 125px;
        padding: 20px;
        margin: 0 auto;
        margin-bottom: 15px;
        border: solid 4px #E6E6E6;
        }
        .facilities-wrapper .facilitie-box-wrap .facilitie-box h3 {
        font-size: 14px;
        font-weight: 500;
        }
        @media screen and (max-width: 480px) {
        .facilities-wrapper .facilitie-box-wrap .facilitie-box {
            width: 40%;
        }
        }
        @media screen and (max-width: 375px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                margin: 0 8px 15px 8px;
            }
        }
        @media screen and (max-width: 425px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                margin: 0 9.5px 20px 9.5px;
            }
        }
        @media screen and (max-width: 480px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                width: 40%;
            }
        }
        @media screen and (max-width: 600px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                width: 46%;
            }
        }
        @media screen and (max-width: 640px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                width: 172px;
            }
        }
        @media screen and (max-width: 700px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                width: 190px;
            }
        }
        @media screen and (max-width: 768px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                width: 210px;
            }
        }
        @media screen and (max-width: 800px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                width: 220px;
                margin: 0 10px 20px 10px;
            }
        }
        @media screen and (max-width: 991px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                margin: 0 4px 8px 4px;
            }
        }
        @media screen and (max-width: 1024px) {
            .facilities-wrapper .facilitie-box-wrap .facilitie-box {
                margin: 0 7px 14px 7px;
            }
        }

/* OUR VISION PAGE*/
.our-mission-text p {
    color: #fff;
    text-align: center;
    }
.our-mission-text ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    .our-mission-text ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.our-mission-text ul li {
    display: block;
    width: fit-content;
    text-align: center;
    color: #eb9500;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    margin-top: 15px;
    position: relative;
    }
    
 
 
/* SAFESCHOOL PAGE*/
.normal-section {
    width: 100%;
}
.text-only-tab .web-table {
    position: relative;
    padding: 2%;
    padding-top: 0;
}
.web-table {
    width: 100%;
}

.text-only-tab .web-table:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #eb9500;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.table-name {
    width: 100%;
    margin-bottom: 20px;
}
.main-table {
    width: 100%;
}
.sec-heads {
    margin-bottom: 60px;
}
h2.main-head {
    font-family: "Poppins", sans-serif;
    position: relative;
    text-align: center;
}
h2.main-head:after {
    position: absolute;
    content: "";
    background-image: url(../images/icons/svg/ribbon-m.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 300px;
    height: 30px;
    left: 0;
    right: 0;
    margin-top: -14px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    top: 100%;
}
.icon-txt-image-ul {
    width: 100%;
    list-style-type: none;
}
.icon-txt-image-ul li {
    display: block;
    margin-bottom: 30px;
    position: relative;
}
.icon-txt-image-ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #eb9500;
}
.icon-txt-image-ul li:nth-child(even) .iti-li-icon-text {
    flex-direction: row-reverse;
}
.iti-li-icon-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 15px;
}
.iti-li-icon {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #eb9500;
}
.iti-li-text {
    width: 90%;
    padding: 15px;
}    
    
    