/********** Template CSS **********/
:root {
    --primary: #4AC4F3;
    --light: #EDF5FF;
    --dark: #202942;
}


/*** Spinner ***/
#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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


  


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

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

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

/* words coresol h1 Style */

.carousel h1 {
    height: 60px; /* Adjust height if needed */
    display: flex;
    align-items: center;
    justify-content: center;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn.btn-primary {
    color: var(--light);
}

.btn.btn-light {
    color: var(--primary);
}

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

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

.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: 50px;
}


/*** Navbar ***/
.navbar {
    position: fixed !important; /* Force fixed position */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1050; /* Ensure it stays above other elements */
    background: #FFFFFF; /* White navbar */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
    padding: 10px 15px; /* Adjust padding */
}

/* Navbar Links */
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 20px 0;
    font-weight: 500;
    color: black; /* Make text black */
    transition: color 0.3s ease-in-out;
}

/* Hover & Active Effect */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #4DBEE3; /* Blue hover effect */
}

/* Navbar Brand Logo */
.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

/* Mobile View */
@media (max-width: 991.98px) {
    .navbar {
        background: #FFFFFF !important; /* White background in mobile */
    }

    .navbar .navbar-collapse {
        margin-top: 50px; /* Prevent content overlap */
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: black;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #4DBEE3; /* Blue hover effect */
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

.about-section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}



/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 9rem 0;
    background: url(../img/bg-bottom.png) center bottom no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/* General Hover Effect */
.advanced-feature-item {
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Soft 3D effect */
}

.advanced-feature-item:hover {
    background-color: var(--bs-primary);
    color: rgb(0, 0, 0);
    border-color: var(--bs-primary);
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.advanced-feature-item:hover h5, 
.advanced-feature-item:hover p {
    color: rgb(7, 0, 0);
}

/* Additional Features */
.feature-item,
.advanced-feature-item {
    height: 100%;
    transition: .5s;
}

/* Lift effect for feature items */
.feature-item:hover {
    margin-top: -15px;
}

/* Ensure smooth transitions */
.advanced-feature-item * {
    transition: .5s;
}

/* Product Card */

.product-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #ccc;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-weight: bold;
    color: #333;
}

.product-price {
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
}

.product-card a {
    text-decoration: none;
    color: #007bff;
}
.product-container {
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto;
  }
  .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  table tr td {
    vertical-align: top;
  }


/*** Process ***/
.process {
    padding: 0;
    list-style: none;
}

.process li {
    position: relative;
    display: flex;
    padding-bottom: 25px;
}

.process li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: var(--primary);
}

.process li:last-child {
    padding-bottom: 0;
}

.process li:last-child:after {
    display: none;
}

.process li span {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    z-index: 1;
}

.process li p {
    margin: 0;
}








/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 3rem;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #858585;
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #858585;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}