********* Template CSS *********
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --heading-font: "Poppins", sans-serif;

}


/*** 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: 800 !important;
}

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

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


/*** Button ***/
.btn {
    font-family: var(--heading-font);
    font-weight: 400;
    transition: .5s;
}

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

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.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-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: var(--heading-font);
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

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

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

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !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: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@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: var(--primary);
        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: var(--primary);
    }
}

.full-width-image {
    position: relative; /* Allows positioning of elements inside */
    width: 100%; /* Make the container take the full width */
    height: 100vh; /* Set the height of the container to full viewport height */
    overflow: hidden; /* Hide any overflow */
}

.full-width-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    z-index: -1; /* Send the image to the background */
}




/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

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

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

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

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


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/*------------------------- About Section --------------------------- */
        
.transparent-box {
    background-color: rgba(155, 155, 155, 0.5);
    /* Black background with 50% opacity */
    color: #000000;
    /* Ensure text is readable */
    border-radius: 8px;
    /* Optional: Adds rounded corners */

    /* @media (max-width: 480px) {
        #about .col-lg-6.d-lg-flex {
            display: none;
        }

        #about .col-lg-6 {
            margin-left: 0;
        }
    } */
}

/*------------------------ project-history--------------------------- */
#project-history .section-title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #06A3DA;
    margin-bottom: 30px;
}

.table-responsive {
    margin-top: 20px;
}

.table {
    border-collapse: separate;
    border-spacing: 0 10px;
    /* Adds space between rows */
}

.table-bordered {
    border: none;
}

.table-bordered th,
.table-bordered td {
    border: none;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.table th {
    text-align: center;
    background-color: #06A3DA;
    color: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Shadow for header */
}

.table td {
    vertical-align: middle;
    color: #000000;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

/* --------------------footer----------------------------- */
/* Footer Styling */
.footer .bg-primary {
    background-color: #061429 !important;
}

.footer .footer-about .logo img {
    /* max-height: 60px; */
    max-height: 250px;
    margin-right: auto;
    /* width: 350px; */
}

.footer .footer-about p {
    margin: 20px 0;
    font-size: 16px;
}

.footer .footer-about .social-links a,
.footer .btn-primary.btn-square {
    font-size: 18px;
    display: inline-block;
    /* background: #333333; */
    color: #ffffff;
    line-height: 1;
    padding: 8px 12px;
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .footer-about .social-links a:hover,
.footer .btn-primary.btn-square:hover {
    background: #00aaff;
    color: #ffffff;
}

.footer .footer-links h4,
.footer .section-title-sm h3 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
}

.footer .footer-links h4::after,
.footer .section-title-sm h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #00aaff;
}

.footer .footer-links ul,
.footer .link-animated {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li,
.footer .link-animated a {
    padding: 8px 0;
}

.footer .footer-links ul li a,
.footer .link-animated a {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .footer-links ul li a:hover,
.footer .link-animated a:hover {
    color: #00aaff;
    padding-left: 5px;
}

.footer .footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
}

.footer .footer-contact p {
    margin-bottom: 10px;
}

.footer .footer-contact strong {
    color: #00aaff;
}

.footer .copyright {
    background-color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
    color: #ffffff;
}

.footer .credits {
    font-size: 14px;
    color: #aaaaaa;
    margin-top: 10px;
}

.footer .credits a {
    color: #00aaff;
    text-decoration: none;
}

.footer .credits a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.company-logo{
    width: 250px;
    height: auto;
    margin-right: 270px;
}
