:root {
    --primary: #A1045A;
    --secondary: #515151;
    --light: #EEF9FF;
    --dark: black;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1s infinite ease-in-out;
    animation: sk-rotateplane 1s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.btn-about {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color:  #611e65;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
/* 
  .btn-about:hover {
    color: #611e65;
    background: transparent;
    border: 2px solid #611e65 ;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
   */
#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: #F11628;
}

.btn-secondary:hover {
    box-shadow: #F11628;
}

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

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

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

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




.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: black;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #000000;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #A1045A;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: #A1045A !important;
    border-color: #A1045A !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: #611e65;;
    }

    .navbar-dark .navbar-brand h1 {
        color: #611e65;;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 20px;
        left: 50%;
        background: #611e65;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: #A1045A;
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(112, 119, 129, 0.7);  */
    z-index: 1;
    height: 600px;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    margin-bottom: 66px;
    color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}








.security-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.security-content {
    flex: 1;
    padding-right: 20px;
    color: #a94442;
    font-size: 1.1em;
}

.security-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.security-image {
    flex: 1;
    text-align: right;
}

.security-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #a94442;
}

.sample {
    margin-top: -100px;
}


@media only screen and (max-width: 767px) {
    .sample {
        margin-top: -40px;
    }

    .security-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .security-content {
        padding-right: 0;
        margin-bottom: 15px;
        font-size: 1em;
    }

    .security-image {
        text-align: center;
        width: 100%;
    }

    .security-image img {
        max-width: 80%;
        margin: 0 auto;
    }
}









.no-underline {
    text-decoration: none;
    color: inherit;
}

.no-underline:hover {
    text-decoration: none;
    color: inherit;
}


.back-to-top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #611e65;
    color: white;
    border: 1px solid #611e65;
}



.banner-container {
    background-image: url('../images/cyber-personal.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.banner-text {
    margin-top: 120px;
    font-size: 54px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 20px;
    position: relative;
    z-index: 2;
    /* background-color: rgba(0, 0, 0, 0.5); */
    border-radius: 10px;
}




@media only screen and (max-width: 767px) {
    .banner-container {
        height: 250px;
    }

    .banner-text {
        margin-top: 0;
        font-size: 32px;
        padding: 10px;
    }
}




@media only screen and (max-width: 600px) {
    .logo-image {
        height: 100px;
        width: 190px;
    }
}



@media only screen and (max-width: 767px) {
    #header-carousel .carousel-item img {
        height: 200px;
        object-fit: cover;
    }

    #header-carousel .carousel-caption {
        bottom: 20px;
        padding: 0 15px;
    }

    #header-carousel .carousel-caption .p-3 {
        padding: 10px;
        max-width: 100%;
    }

    #header-carousel .carousel-caption h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    #header-carousel .carousel-caption a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .carousel-caption {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(112, 119, 129, 0.0);
        z-index: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        display: none;
    }


}






.layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.layout-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.layout-title::before {
    content: "";
    width: 5px;
    height: 50px;
    background-color: #ffd700;
    margin-right: 15px;
}

.layout-title h2 {
    color: #ffcccc;
    font-weight: normal;
    margin: 0;
}

.layout-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.layout-image-column {
    flex: 1;
    overflow: hidden;
}

.layout-image-column img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.layout-image-column img:hover {
    transform: scale(1.1);
}







.slider-container-2 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
}

.slider-container-1 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.slider-title {
    text-align: left;
    margin-bottom: 20px;
}

.slider-title h2 {
    color: #1e2f97;
    font-weight: bold;
    margin: 0;
}

.slider-container {
    width: 960px;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin: 40px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(320px * 20);
}

.slider-item {
    width: 320px;
    height: 300px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.slider-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-transform: capitalize;
}

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

.slider-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.slider-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        margin: 20px;
        height: auto;
    }

    .slider-item {
        width: 100%;
        height: auto;
    }

    .slider-item img {
        height: 150px;
    }

    .slider {
        width: calc(100% * 20);
    }

    .slider-buttons {
        transform: translateY(-120%);
    }

    .slider-buttons button {
        padding: 8px;
    }
}






.container-primary {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.brand-title {
    margin-top: 0;
    font-size: 18px;
    color: #555;
}

.primary,
.secondary {
    margin-bottom: 40px;
}

.primary h2,
.secondary h2 {
    color: #c85c00;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 24px;
}

.grid-primary,
.grid-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grid-primary img,
.grid-secondary img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


@media (max-width: 768px) {

    .grid-primary,
    .grid-secondary {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}








.custom-clients-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.custom-clients-section h1 {
    font-size: 60px;
    color: #A45B09;
    margin-bottom: 10px;
}

.custom-clients-section h2 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.custom-clients-carousel {
    width: 80%;
    margin: 0 auto;
}

.custom-clients-carousel img {
    max-width: 100%;
    height: auto;
}

.custom-slick-slide {
    margin: 0 15px;
}

.custom-slick-prev,
.custom-slick-next {
    width: 30px;
    height: 30px;
}











.custom-banner-container {
    width: 100%;
    height: 300px;
    background-image: url('../images/abt.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 100px 0;

}

.custom-banner-container-contact {
    width: 100%;
    height: 300px;
    background-image: url('../images/contact.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}

.custom-banner-container-tmt {
    width: 100%;
    height: 300px;
    background-image: url('../images/tmt-banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}

.custom-banner-container-tmt {
    width: 100%;
    height: 300px;
    background-image: url('../images/tmt-banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}

.custom-banner-container-plates {
    width: 100%;
    height: 300px;
    background-image: url('../images/ms-plates-banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}

.custom-banner-container-structural {
    width: 100%;
    height: 300px;
    background-image: url('../images/structural-banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}

.custom-banner-container-colis {
    width: 100%;
    height: 300px;
    background-image: url('../images/ppgi-banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}

.custom-banner-container-roof {
    width: 100%;
    height: 300px;
    background-image: url('../images/roof-banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 70px 0;
}






.main-container-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: -100px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.image-side {
    flex: 1;
    padding-right: 20px;
    text-align: center;
}

.image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 30px 0px 30px 0px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.text-side {
    flex: 1;
    padding-left: 20px;
}

.text-side h2 {
    margin-top: 20px;
}

.text-side p {
    text-align: justify;
}

.clearfix {
    width: 100%;
    height: 0;
    clear: both;
    display: block;
    content: "";
}

.product-section {
    margin-top: 20px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-card {
    width: 200px;
    margin-bottom: 20px;
    text-align: center;
}

.product-card img {
    width: 250px;
    height: auto;
}

.product-card p {
    margin-top: 10px;
    font-weight: bold;
}

.advantages-list {
    list-style-type: disc;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .image-side,
    .text-side {
        padding: 0;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
    }
}





.contact-section-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px 0;

}

.contact-detail-card {
    width: 30%;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 200px;
}

.contact-detail-icon {
    font-size: 50px;
    color: #ff497a;
    margin-bottom: 10px;
}

.contact-detail-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-detail-info {
    font-size: 16px;
    margin: 0;
    color: #333;
}




.address {
    margin-left: -100px;
}

.contact-head {
    text-align: center;
    margin-top: -100px;
}


@media (min-width: 375px) and (max-width: 554px) {

    .address {
        margin: 0px;
    }

    .desktop-slider {
        display: none;
    }

    .Pleasure {
        display: none;
    }

    .main-container-1 {
        margin-top: 0px;
    }

    .contact-head {
        text-align: center;
        margin-top: 0px;
    }

}



@media (min-width: 320px) and (max-width: 554px) {


    .address {
        margin: 0px;
    }

    .desktop-slider {
        display: none;
    }

    .Pleasure {
        display: none;
    }

    .main-container-1 {
        margin-top: 0px;
    }

    .contact-head {
        text-align: center;
        margin-top: 0px;
    }

}








.mobile-banner-slider {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mobile-banner-slider img {
    width: 100%;
    display: block;
}

.mobile-slider-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mobile-slider-content img {
    flex: 0 0 100%;
}

.mobile-prev,
.mobile-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.mobile-prev {
    left: 10px;
}

.mobile-next {
    right: 10px;
}

@media screen and (max-width: 768px) {
    .mobile-banner-slider {
        display: block;
    }
}









.mobile-banner {
    display: none;
}

@media (max-width: 768px) {
    .mobile-banner {
        display: block;
        width: 100%;
        height: auto;
    }

    .mobile-banner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}















.header-container {
    background-color: #2c3e50;
    padding: 20px;
    text-align: left;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    color: white;
}

.main-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.main-content-1 {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
}

.info-block {
    width: 22%;
    text-align: center;
    margin: 10px;
}

.info-block img {
    width: 100%;
    height: 230px;
}

.info-block p {
    background-color: lightgray;
    padding: 10px;
    font-size: 16px;
}



@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        align-items: center;
        margin: 10px;
    }

    .info-block {
        width: 90%;
        margin: 10px 0;
    }

    .info-block img {
        height: auto;
    }

    .info-block p {
        font-size: 14px;
        padding: 8px;
    }
}


.news-container {
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
}

.news-item {
    display: block;
    color: black;
    text-decoration: none;
    margin: 5px 0;
    padding: 10px;
    background-color: white;
    border-left: 3px solid gray;
}

.news-item:hover {
    border-left-color: black;
}









footer {
    background-color: #222;
    color: #fff;
    padding: 20px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    border-bottom: 1px solid #555;
}

.footer-section {
    flex: 1;
    margin: 0 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    /* margin-bottom: 10px; */
    font-size: 14px;
}

.footer-bottom {
    padding: 10px;
    font-size: 12px;
    /* background-color: #111; */
}

.footer-bottom a {
    color: #bbb;
}

.footer-bottom a:hover {
    color: #fff;
}






.container-1 {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
}

.header-1 {
    background-color: #eeeeee;
    padding: 10px;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.content-1 {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.text-1 {
    width: 60%;
    padding-right: 40px;
    text-align: justify;
}

.text-1 p {
    margin: 0 0 20px;
}

/* .text-1 a {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
} */

.image-1 {
    width: 40%;
}

.image-1 img {
    width: 100%;
    height: auto;
}





.animated-underline {
    display: inline-block;
    position: relative;
}

.animated-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: black;
    animation: underline-animation 0.6s forwards;
}

@keyframes underline-animation {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}




.industry-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/kabson/backgroundd.jpeg') no-repeat center center;
    background-size: cover;
    flex-wrap: wrap;
    position: relative;
    padding: 50px;
    height: 100vh;
}

.industry-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(199, 204, 206, 0.884);
    z-index: -1;
}



.industry-heading {
    width: 100%;
    text-align: center;
    font-size: 48px;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.industry-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.industry-sector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.industry-icon {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.863);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.industry-icon img {
    width: 70%;
    z-index: 2;
}

.industry-sector p {
    margin-top: 10px;
    color: #000;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

/* .upperheader {
    margin-top: -100px;
} */
/* 
@media (max-width: 768px) {
    .industry-row {
        flex-direction: column;
        align-items: center;
    }

    .industry-heading {
        font-size: 32px;
    }

    .industry-icon {
        width: 120px;
        height: 120px;
    }

    .industry-icon img {
        width: 60%;
    }

    .upperheader {
        margin-top: 20px;
    }
}

 */






.gallery-container {
    text-align: center;
}

.tabs {
    margin-top: 20px;
}

.tab-button {
    padding: 10px 10px;
    margin-right: 10px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    font-size: 16px;
    border-radius: 5px;
}

.tab-button.active {
    background-color:#611e65;
    color: white;
    
}

.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}


.gallery-image {
    width: 300px;
    height: auto;
    margin: 10px;
}





/* 
.director-message-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    text-align: center;
}

.director-message-heading {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.director-message-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

.director-message-content {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
    text-align: justify;
}

.quote {
    font-style: italic;
    color: #7f8c8d;
    margin: 20px 0;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.director-message-signature {
    font-weight: bold;
    font-size: 20px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 30px;
}

.happy-clients-title {
    font-size: 24px;
    color: #2980b9;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.client-list li {
    font-size: 18px;
    color: #34495e;
    margin: 10px 20px;
    background-color: #ecf0f1;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.client-list li:hover {
    transform: translateY(-5px);
    background-color: #3498db;
    color: #fff;
}

@media (max-width: 768px) {
    .director-message-heading {
        font-size: 26px;
    }

    .director-message-content {
        font-size: 16px;
    }

    .director-message-signature {
        font-size: 18px;
    }

    .happy-clients-title {
        font-size: 22px;
    }
}



.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
}

.profile-card {
    background-color: #007bff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    height: 300px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.profile-details h3 {
    color: white;
    font-size: 18px;
    margin: 10px 0 5px;
}

.profile-details p {
    color: white;
    font-size: 14px;
}




.certificate-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.view-certificate-btn {
    padding: 5px 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
} */






.content {
    margin: 40px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    color: #A1045A;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

ul {
    margin-left: 20px;
}

li {
    line-height: 1.6;
}





.main-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.text-section {
    margin-right: 20px;
}

h1 {
    color: #A1045A;
    font-size: 28px;
    margin-bottom: 0.5em;
}

h2 {
    color: #A1045A;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

.li {
    list-style-type: disc;
    padding: 10px 0;
    line-height: 1.6;
    border-bottom: 1px solid #ccc;
    margin-left: 20px;
}

li:last-child {
    border-bottom: none;
}

.item-reagents,
.item-karl,
.item-clinical,
.item-ph,
.item-redox,
.item-fine,
.item-ph-paper,
.item-proteins,
.item-quaternary,
.item-stain,
.item-bio {
    font-weight: normal;
    color: #333;
}










.glassware-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.glassware-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.text-content {
    flex: 1;
}

.image-content img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.glassware-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.glassware-section h2 {
    font-size: 28px;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.glassware-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #A1045A;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.email-link:hover {
    background-color: #9b43ca;
    color: white;
}










.contact-section {
    background-color: #f9f9f9;
    padding: 50px;
    font-family: 'Roboto', sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #A1045A;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #A1045A;
}

/* Contact Information styling */
.contact-info {
    flex: 0.5;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info p i {
    margin-right: 10px;
    color: #A1045A;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        margin-top: 30px;
    }
}





.bg-body {
    background-image: url('../images/kabson/bg-body-left.png'), url('../images/kabson/bg-body-right.png');
    background-position: top left, top -80px right;
    background-repeat: no-repeat, no-repeat;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.text-section {
    width: 60%;
}

.image-section {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-about h1 {
    color: #e30613;
}

.event-item {
    display: flex;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 150px;
    height: 100px;
    margin-right: 15px;
    border: 1px solid #646464;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.event-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.event-info i {
    margin-right: 5px;
}

.event-link {
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
    color: #611e65;
}

.view-button {
    margin-left: 500px;
    margin-top: -70px;
}







.downloads-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.downloads-list {
    width: 70%;
}

.downloads-title {
    font-size: 22px;
    color: #C80000;
    margin-bottom: 20px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s;
}

.download-item:hover {
    background-color: #f0f0f0;
}

.download-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 18px;
}

.file-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.file-type-size {
    color: #888;
    font-size: 12px;
}

.download-thumbnail {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail-image {
    width: 150px;
    height: auto;
}



.laboratory-section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #fff;
}

.laboratory-section-content {
    width: 70%;
}

.laboratory-section-content h2 {
    color: #e31e24;
    font-size: 28px;
    margin-bottom: 20px;
}

.laboratory-section-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 40px;
}

.laboratory-section-list li {
    font-size: 16px;
    /* line-height: 1.8; */
    color: #333;
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
}

.laboratory-section-list li:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #e31e24;
    border-radius: 50%;
    margin-right: 10px;
}

.laboratory-section-images {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laboratory-hex-image {
    width: 350px;
    height: 350px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-size: cover;
    background-position: center;
}




.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}





.popup-container {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.popup-layout {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.popup-image img {
    width: 250px;
    border-radius: 8px;
    margin-right: 20px;
}

/* 
.popup-text {
    font-family: 'Arial', sans-serif;
} */

.popup-text h2 {
    font-size: 28px;
    color: #000;
    margin: 0;
}

.popup-text h2 span {
    color: #A1045A;
    font-style: italic;
    font-size: 32px;
}

@media only screen and (max-width: 600px) {
    .popup-mobile {
        display: none;
    }
    .container-1 {
        padding: 0 15px;
    }

    .content-1 {
        flex-direction: column;
        align-items: center;
    }

    .text-1 {
        width: 100%;
        padding-right: 0;
        text-align: left;
    }

    .image-1 {
        width: 100%;
        margin-top: 20px;
    }

    .text-1 a {
        margin-top: 10px;
    }

    .header-1 {
        font-size: 20px;
    }
    .industry-container {
        padding: 20px;
        height: auto;
    }

    .industry-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .industry-row {
        flex-direction: column;
        align-items: center;
    }

    .industry-sector {
        margin: 15px 0;
    }

    .industry-icon {
        width: 100px;
        height: 100px;
    }

    .industry-icon img {
        width: 50%;
    }

    .industry-sector p {
        font-size: 16px;
    }
    .tabs {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        margin: 5px 0;
        width: 100%;
        font-size: 14px;
    }

   

    .gallery-container {
        padding: 0 15px;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px;
    }

    .text-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-section {
        width: 100%;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
        margin-left: 33px;
    }

    .event-image {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
    }

    .event-details {
        text-align: center;
    }

    .view-button {
        margin: 0;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: left;
        padding: 10px;
    }

    .footer-section {
        margin: 10px 0;
    }

    .footer-section ul {
        padding-left: 0;
    }

    .footer-section ul a {
        display: inline-block;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 5px;
        font-size: 10px;
    }
    .upperheader {
        margin-top: 20px;
    }
    .upperside{
        margin-top: 0px;
    }
    .back-to-top {
        display: none;
        /* position: fixed;
        right: 90px;
        bottom: 45px;
        z-index: 99; */
    }

    .profile-container {
        flex-direction: column;
        align-items: center;
    }

    .profile-card {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }

    .profile-image img {
        width: 150px;
        height: 150px;
    }

    .profile-details h3 {
        font-size: 16px;
    }

    .profile-details p {
        font-size: 12px;
    }


    .certificate-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-certificate-btn {
        width: 100%;
        font-size: 16px;
        padding: 8px;
    }
    
    .certificate-container h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .laboratory-section-container {
        flex-direction: column;
        padding: 20px;
    }

    .laboratory-section-content, 
    .laboratory-section-images {
        width: 100%;
        text-align: center;
    }

    .laboratory-section-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .laboratory-section-list {
        columns: 1;
        column-gap: 20px;
    }

    .laboratory-hex-image {
        width: 250px;
        height: 250px;
    }



    .glassware-section {
        padding: 20px;
    }

    .glassware-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .text-content {
        width: 100%;
        text-align: center;
    }

    .glassware-section h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .glassware-section h2 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .glassware-section p {
        font-size: 16px;
        line-height: 1.4;
        text-align: left;
    }

    .image-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .email-link {
        font-size: 16px;
        padding: 8px 16px;
    }


   
 

    .modal-content {
        width: 95%;
    }

    .mySlides img {
        height: auto;
        max-height: 300px;
    }

    .close {
        font-size: 30px;
    }

    .prev, .next {
        font-size: 18px;
    }



    .career-container {
        flex-direction: column;
    }

    .career-info {
        margin-top: 30px;
    }

    .career-form h2, .career-info h2 {
        font-size: 24px;
    }

    .career-form label, .career-form input, .career-form textarea, .career-info p {
        font-size: 14px;
    }

    .career-form button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .career-form {
        padding: 20px;
    }

    .career-info {
        padding: 20px;
    }

    .contact-info p {
        font-size: 11px;
        margin-bottom: 15px;
        color: #555;
    }
}