/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Universal selector */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

@media(max-width:576px) {
    * {
        font-size: 13px;
    }
}

/* button Css */
.universal-button {
    position: relative;
    display: inline-block;
    background-color: transparent;
    padding: 10px 50px;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.universal-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #EEA23F;
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 50px;
}

.universal-button:hover {
    color: #fff;
}

.universal-button:hover::before {
    width: 100%;
}

/* ----------------------------------------------- */

/* NavBar Section */
.nav-bar-header{
    width: 100%;
    position: sticky;
    z-index: 10000;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.top-portion-nav {
    width: 80%;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.top-portion-nav i {
    color: #EEA23F;
}

.nav-item-links {
    padding: 0 5px;
}

.nav-item-links i {
    padding-right: 10px;
    color: #EEA23F;
}

.navbar-toggler {
    border: none;
}

.product-drop-menu {
    width: 300px;
    border-radius: 2px;
    border: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.product-drop-container a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding: 10px 0;
    transition: all .1s ease;
}

.product-drop-container a:hover {
    color: #fff;
    background-color: #EEA23F;
    transition: .1s;
    transform: translateX(5px);
    text-align: center;
    box-shadow: none;
    border: none;
}

.product-drop-container a:hover i {
    color: #fff;
}

.service-dropdown {
    height: auto;
    width: 600px;
    border-radius: 2px;
    border: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.service-card-body-drop {
    width: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
}

.service-card-body-drop h5 {
    padding: 10px 0;
}

.service-card-body-drop a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding: 10px 0;
    transition: all .1s ease;
}

.service-card-body-drop a:hover {
    color: #fff;
    background-color: #EEA23F;
    transition: .1s;
    transform: translateX(5px);
    text-align: center;
}

.service-card-body-drop a:hover i {
    color: #fff;
}

.dropdown-item:hover {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-item-links .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item-links:hover .dropdown-menu {
    display: block;
    opacity: 1;
    position: absolute;
    z-index: 1000;
}

@media (max-width:768px) {
    .dropdown-menu {
        width: auto;
    }
}

/* ---------------------------------------------- */
/* Acounts and Inventory */
.AccAndInven-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/BackgroundImg/Acc&Inv.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* POS */
.POS-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/BackgroundImg/POS.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* D&LIS */
.D-LIS-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/BackgroundImg/Lis.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Pharmacy */
.pharmacy-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/BackgroundImg/pharmacy.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* School and College ERP */
.S-C-ERP-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/BackgroundImg/school.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hospital Management Erp */
.HME-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/BackgroundImg/HMS_ERP.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.HME-content-container{
    width: 80%;
    padding: 5% 0;
}

.HME-content-container img{
    width: 100%;
}

#HME-content{
    padding: 0 5%;
}

/* Services */
.static-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/static.avif');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dynamic-background{
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/dynamic.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.static-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/static.avif');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cloud-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/cloud\ management.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.enterise-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/enterprise.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.customer-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/customsoftware.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.cloud-based-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/cloudbasedsolu.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.android-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/android.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.ios-background {
    height: 40vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,.7)), url('/img/services/background/ios.jpg');
    background-position: center;
    background-size: cover;
    color: #EEA23F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


@media (max-width:767px){
    .HME-content-container img{
        width: 70%;
    }
    #HME-col-image{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* -------------------------------------------------- */

/* Set up the container with flexbox */
.containerI {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    width: 80%;
}

/* Style for both columns */
.columnI {
    width: 60%; /* each column takes up 48% of the width */
}

/* Specific styling for the image in the first column */
.columnI img {
    width: 50%; /* Make the image responsive */
    height: 25vw;
}

/* Styling for text content in the second column */
.columnII {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.columnII h2 {
    font-size: 24px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 10px;

}

@media (max-width:768px){
    .containerI {
        display: block;
        margin: auto;

    }
    .columnI img {
        margin-left: 90px;
        width: 100%;
        height: 30vw;
    }
    .columnII{
        width: 100%;
        margin: auto;
    }
    .columnII h2 {
        text-align: center;
        font-size: 20px;
    }
}

@media (max-width:475px){

}

/* Internship Page End */

/* carrer page */
.cG h2 {
    text-align: center;
    font-size: 50px;
    margin: 50px 0;
}
.cG p {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;

}
.jobs-list-container {
    max-width: 900px;
    margin: 20px auto;
    font-family: "Rubik", sans-serif;
  }
  
  .jobs-list-container h2 {
    font-size: 30px;
    border-left: 4px solid #023047;
    padding-left: 20px;
    
  }
  
  .jobs-list-container .jobs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  
  .jobs-list-container .jobs img {
    width: 60px;
  }
  
  .jobs-list-container .job {
    box-shadow: 0 4px 24px -8px rgba(2, 48, 71, 0.2);
    padding: 24px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 400ms ease;
    text-align: justify;
  }
  
  .jobs-list-container .job:hover {
    transform: scale(1.03);
  }
  
  .jobs-list-container .open-positions {
    position: absolute;
    top: 40px;
    right: 24px;
    color: #e63946;
  }
  
  .jobs-list-container .job-title {
    font-size: 20px;
    padding: 10px 0;
    margin: 0;
    color: #023047;
  }
  
  .jobs-list-container .details {
    margin-top: 6px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    flex: 1;
  }
  
  .jobs-list-container .details-btn {
    text-decoration: none;
    border: 1px solid #023047;
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    transition: all 400ms ease;
  }
  
  .jobs-list-container .details-btn:hover {
    background: #023047;
    color: #fff;
  }
  
  .jobs-list-container .job-search {
    width: 100%;
    padding: 12px 24px;
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    box-sizing: border-box;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  @media (max-width:768px){
    /* Career Page */
    .jobs-list-container .jobs  {
        grid-template-columns: 1fr 1fr;
      
    }

    #career{
        width: 80%;
        margin: auto;
    }
  }

  @media (max-width:475px){
    /* carrer page */
    .jobs-list-container .jobs  {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 24px;
    }

    /* Contact Page */
    #contact {
        padding: 8vw 4vw;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;
    }
    #contact .getin {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact .form {
        width: 100%;
        padding: 40px 30px;
    }
    #contact .form .form-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        widows: 100%;
    }
    #contact .form .form-row input {
        width: 100%;
    }
  }
/* Carrer Page End */



/* Blog Page Start */
#blog-home {
    background-image: linear-gradient(rgb(0,0,0,.4), rgb(0,0,0,.4)), url('/img/blogs-img/blog-top-bg.avif');
    width: 100%;
    height: 40vh;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
#blog-home h2 {
    text-align: center;
    color: #EEA23F;
    font-size: 2.5rem;
}
#blog-home p {
    text-align: center;
    color: #EEA23F;
    font-size: 16px;
}

#blog-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vw;
}

#blog-container .blogs {
    width: 60%;
}

#blog-container .blogs img {
    width: 100%;
    border-radius: 19px;
}
#blog-container .blogs .post {
    padding-bottom: 60px;
}

#blog-container .blogs .post h3 {
    color: #29303B;
    padding: 15px 0 10px 0;
}
#blog-container .blogs .post p {
    color: #757373;
    padding-bottom: 20px;
}
#blog-container .blogs .post a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: rgb(21, 21, 100);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;   
}

#blog-container .cate {
    width: 30%;
}

#blog-container .cate h2 {
    padding-bottom: 7px;
}

#blog-container .cate a {
    font-size: 20px;
    padding-bottom: 5px;
    text-decoration: none;
    color: #757373;
    font-weight: 800;
    line-height: 30px;
}
hr {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    unicode-bidi: isolate;
    overflow: hidden;
    border-style: inset;
    border-width: 1px;
}

/* post page for blog page */
#blog-container .blogpost {
    width: 60%;
    margin: 0 auto;
}
#blog-container .blogpost p {
    text-align: justify;
    padding-bottom: 60px !important;
}

@media (max-width:768px){
    #blog-home p {
        font-size: 0.8rem;
    }
    #blog-container {
        padding: 8vw 4vw;
    }
    #blog-container .blogs .post h3 {
        color: #29303B;
        padding: 15px 0 10px 0;
        font-size: 24px;
    }
    #blog-container .blogs .post p {
        color: #757373;
        padding-bottom: 20px;
        font-size: 14px;
    }
    #blog-container .cate {
        width: 30%;
        font-size: 30px;
    }

        #blog-container .cate a {
            font-size: 18px;
        }

}

@media (max-width:475px){
    #blog-home {
        width: 100%;
        height: 30vh;
        padding-top: 20px;
        }
        #blog-home p {
            font-size: 0.8rem;
        }
      
        #blog-container {
            flex-direction: column-reverse;
        }
 
        #blog-container .blogs {
            width: 100%;
        }
        #blog-container .cate {
            width: 100%;
        }
        #blog-container .cate a {
            font-size: 20px;
            width: 100%;
            padding-bottom: 5px;
            color: #757373;
            font-weight: 500;
            line-height: 20px;
        }
        #blog-container .blogs img {
         margin-top: 5px;
         border-radius: 19px;
        } 
        #blog-container .blogs .post h3 {
         color: #29303B;
         padding: 15px 0 10px 0;
         font-size: 24px;
         }
     
        #blog-container .blogs .post p {
            color: #757373;
            padding: 0;
            font-size: 14px;
         }

         #blog-container .cate a {
            font-size: 20px;
            font-weight: 600;
        }
}
/* blog page end */





/* Contact Page Start */
/* Contact Section */
.pdec{
   height: 40vh; 
    background-image: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)), url('/img/Contact-back-img/contact-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EEA23F;
    flex-direction: column;
}

.pdec h2 {
    font-size: 2.5rem;
    font-style: bold;
    text-align: center;
}
.pdec p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
}
#contact {
    padding: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#contact .getin {
    width: 350px;
}

#contact .getin h2 {
    color: #2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
}
#contact .getin p {
    text-decoration: none;
    /* font-style: italic; */
    font-size: 25px;
    /* color: #686875; */
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e4ed;
}
#contact .getin h3 {
    color: #2c234d;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}
#contact .getin .getin-details div {
    display: flex;
}
#contact .getin .getin-details div .get {
    font-size: 18px;
    line-height: 22px;
    color: #EEA23F;
    margin-right: 20px;
}
#contact .getin .getin-details div p {
    text-align: justify;
    font-size: 16px;
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
}
.pro-links {
    margin-top: 10px;
}

.pro-links i {
    color: black;
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    transition: 0.3s ease;
}
.pro-links i:hover {
    background-color: rgb(231, 142, 83);
    color: #fff;
    border: 1px solid black;
}
#contact .getin .getin-details .pro-links i {
    margin-right: 8px;
}
#contact .form {
    width: 80%;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .5); /* Solid black shadow */
    transition: box-shadow 0.3s ease-in-out;
}

#contact .form:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .7); /* Solid black shadow on hover */
}

#contact .form h4 {
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

#contact .form p {
    color: #686875;
    line-height: 24px;
    padding-bottom: 25px;
}

#contact .form .form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

#contact .form button {
    font-size: 0.9rem;
    padding: 13px 25px;
    background-color: rgb(21, 21, 100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1); /* Solid black shadow for button */
}

#contact .form button:hover {
    background-color: rgb(30, 30, 130);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 1); /* Solid black shadow on hover */
}

#contact .form button:active {
    background-color: rgb(15, 15, 90);
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1); /* Solid black shadow when active */
}

#map {
    width: 100%;
    height: 70vh;
    margin-bottom: 8vw;
}
#map iframe{
    width: 100%;
    height: 100%;
}

@media (max-width:768px){
    #contact {
        padding: 8vw 4vw;
    }
    #contact .getin {
        width: 250px;
    }
}

@media(max-width:475px){
    #contact {
        padding: 8vw 4vw 4vw 8vw;
        display: block;
        align-items: flex-start;
        align-content: flex-end;
        justify-content: flex-start;
    }
    #contact .getin {
        width: 100%;
        margin-bottom: 30px;
    }    
    .h2, h2 {
        font-size: 1.9rem;
        font-weight: 500px;
        text-align: center;
    }
    p {
        font-size: 1rem;
        padding-left: 20px;
        margin-bottom: 1rem;
    }
    #contact .form {
        width: 90%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
        transition: box-shadow 0.3s ease-in-out;
    }

    #contact .form .form-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        widows: 100%;
    }
    #contact .form .form-row input {
        width: 100%;
    }
}
/* Contact Page End */



/* About Page Start */


/* trust section in about */
/* trust */
.about-p{
    padding: 0;
}

#about-container h4{
    font-size: 30px;
    font-weight: 700;
    color: #EEA23F;
}

#trust {
    text-align: center;
    padding: 6vw;
}
#trust h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #5e89cd;
    font-size: 50px;
    padding-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

#trust .trust-img {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#trust .trust-img img {
    width: 90px;
    height: auto;
}

@media (max-width:768px){
    #trust h2 {
        font-size: 2rem;
        padding-bottom: 10px;
    }


}

@media(max-width:475px){
    

    #about-container ul{
        width: 90%;
        margin: auto;
    }

    #trust h2 {
        font-size: 1.3rem;
        padding-bottom: 10px;
    }
    #trust .trust-img {
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #trust .trust-img img {
        width: 50px;
        height: auto;
    }
}
/* About Page End */


/* team page strat */
.team-container{
    width: 80%;
}

.team-header h1{
    color: #EEA23F;
    margin: 50px 0;
    font-weight: 900;
}

.team-header p{
    margin: 50px 0;
}

.team-header{
    text-align: center;
}

#team-card{
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#team-card img{
    width: 70%;
}

#team-card a{
    padding: 2%;
    color: #000;
    font-size: 18px;
    border: 1px solid #EEA23F;
    transition: all .2s ease;
}

#team-card a:hover{
    background-color: #EEA23F;
    color: white;
}

@media (max-width:475px){
    .team-header h1{
        margin: 20px 0;
    }
    .team-container p{
        margin: 20px 0;
        padding-left: 20px;
        padding: 0;
    }
    
    
}



/* team page end */






/* ------------------------------------------------ */
