:root {
    --primary: #F11628;
    --secondary: #515151;
    --light: #EEF9FF;
    --dark: black;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s 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);
    }
}

#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: #F11628;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: #F11628 !important;
    border-color: #F11628 !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: #F11628;
    }

    .navbar-dark .navbar-brand h1 {
        color: #F11628;
    }
}

@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: -1px;
        left: 50%;
        background:#F11628;
        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: #F11628;
    }
}


/*** 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-top: -150px;
}

.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; 
}




@media only screen and (max-width: 767px) {
    .sample{
        margin-top: -400px;
    }
    .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;
    }
}









.service-section {
    padding: 40px 0;
}

.service-section h1,
.service-section h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.service-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.service-section .service-icon {
    text-align: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.service-section .service-icon h4 {
    margin-top: 15px;
    font-weight: bold;
}

.service-section .img-fluid {
    max-width: 120px;
    height: 100px;
}





.Read-button{
    background-color: #F11628;
    color: white;
    padding: 10px;
    border-radius: 20px;
    width: 170px;
    border: 2px solid #F11628;
}






.gallery-container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

h1 {
    color: red;
}

.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gallery-item {
    width: 300px;
    margin: 10px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px; 
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    overflow: hidden; 
}

.flip-card-front {
    background-color: #2980b9;
    color: white;
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.flip-card-back p {
    font-size: 20px;
    text-transform: uppercase;
}







.service-section-1 {
    text-align: center;
    padding: 50px 20px;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.service-section-1 h1 {
    font-size: 36px;
    color: white;
    margin-bottom: 40px;
}

.services-container-1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; 
    margin: 20px;
}

.service-card-1 {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card-1:hover {
    transform: translateY(-10px);
}

.service-icon-1 {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.service-title-1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.service-description-1 {
    font-size: 16px;
    color: #666;
}





.footer-1 {
    background-color: #111;
    color: #fff;
    padding: 40px 40px 0; 
    text-align: center;
}
.footer-container-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    gap: 20px;
}

.footer-section-1 {
    flex: 1;
    min-width: calc(25% - 20px); /* Adjusted to fit 4 columns with gap */
    margin-bottom: 20px;
    padding: 10px;
}


.footer-title-1 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    color: white;
}

.footer-title-1::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #e74c3c;
    margin: 5px 0;
}

.footer-section-1 p,
.footer-section-1 a {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

.footer-section-1 a {
    text-decoration: none;
    color: #e74c3c;
}

.footer-links-1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-1 li {
    margin-bottom: 10px;
}

.footer-links-1 li a {
    text-decoration: none;
    color: #ddd;
}

.footer-links-1 li a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.footer-bottom-1 {
    background-color: #000;
    text-align: center;
    padding: 10px 0;
    color: white;
    font-size: 12px;
}

.no-underline {
    text-decoration: none;
    color: inherit;
}

.no-underline:hover {
    text-decoration: none;
    color: inherit;
}



.vision-mission-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 20px 0;
}

.vision-mission-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.vision-mission-icon-container {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.vision-mission-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vision-mission-content {
    flex-grow: 1;
}

.vision-mission-heading {
    font-size: 24px;
    font-weight: bold;
    color: #e50914;
    margin-bottom: 10px;
}

.vision-mission-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.zigzag-left {
    flex-direction: row;
}

.zigzag-right {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
    .vision-mission-card {
        flex-direction: column;
        text-align: center;
    }

    .vision-mission-icon-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .vision-mission-heading {
        font-size: 20px;
    }

    .vision-mission-description {
        font-size: 14px;
    }

    .vision-mission-icon {
        width: 100px;
        height: 100px;
    }
}








.back-to-top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}












.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; 
    }
}





.location-table-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.location-custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.location-custom-table th, .location-custom-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.location-custom-table thead th {
    background-color: #b3f3f3;
    font-weight: bold;
    font-size: 16px;
}

.location-custom-table tbody tr:nth-child(even) {
    background-color: #e6ffff;
}

.location-custom-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.location-custom-table tbody td {
    font-size: 14px;
}










.license-table-container {
    width: 100%;
    margin: 20px 0;
}

.license-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.license-show-entries select {
    margin-left: 5px;
    padding: 5px;
}

.license-search {
    display: flex;
    align-items: center;
}

.license-search input {
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.license-custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.license-custom-table th, .license-custom-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.license-custom-table thead th {
    background-color: #b3f3f3;
    font-weight: bold;
}

.license-custom-table thead th.hover-orange:hover {
    background-color: #f6531b;
    color: #fff;
}

.license-custom-table tbody tr:nth-child(even) {
    background-color: #b3f3f3;
}

.license-custom-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.license-custom-table tbody td a {
    color: #f6531b;
    text-decoration: none;
}

.license-custom-table tbody td a:hover {
    text-decoration: underline;
}




@media only screen and (max-width: 767px) {
    .license-table-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .license-show-entries, .license-search {
        width: 100%;
        margin-bottom: 10px;
    }

    .license-show-entries select, .license-search input {
        width: 100%;
        margin: 5px 0;
    }

    .license-custom-table thead {
        display: none;
    }

    .license-custom-table tbody tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #ddd;
    }

    .license-custom-table tbody tr td {
        /* display: flex; */
        justify-content: space-between;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #ddd;
    }

    .license-custom-table tbody tr td:last-child {
        border-bottom: none;
    }

    .license-custom-table tbody tr td:before {
        content: attr(data-label);
        flex-basis: 40%;
        font-weight: bold;
        text-align: left;
        padding-right: 10px;
        color: #333;
    }

    .license-custom-table tbody tr td a {
        display: block;
        width: fit-content;
        margin-top: 5px;
    }
}













.location-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
    font-family: Arial, sans-serif;
}

.map-container {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.info-container {
    flex: 1;
    padding-left: 20px;
}

.info-title {
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 10px;
    font-weight: bold;
}

.info-container p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.info-container strong {
    color: #000;
}

@media (max-width: 768px) {
    .location-section {
        flex-direction: column;
        align-items: center;
    }

    .info-container {
        padding-left: 0;
        text-align: center;
    }

    .map-container,
    .info-container {
        width: 100%;
    }
}










.contact-form-elegant {
    max-width: 800px;
    margin: 0 auto;
    background: #e4e1e1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-column {
    flex: 0 0 48%;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.contact-input, .contact-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.contact-input:focus, .contact-textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact-field-wrapper {
    margin-bottom: 20px;
}

.contact-submit-button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit-button:hover {
    background-color: #0056b3;
}










.custom-gallery-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    margin: 10px auto;
    max-width: 1200px; 
}

.custom-gallery-item {
    flex: 1 1 22%; 
    max-width: 22%;
    height: 300px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid black; */
}

.custom-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-gallery-wrapper:only-child .custom-gallery-item {
    flex: 1;
    max-width: 100%;
}











@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;
    }




    .footer-1 {
        background-color: #111;
        color: #fff;
        padding: 37px 19px 0;
        text-align: center;
    }



}








.map-location{
    width: 100%;
    height: 450px;
    border:0;
}


@media only screen and (max-width: 600px){
    
.map-location{
    width: 100%;
    height: 250px;
    border:0;
}
}


