body {
    margin: 0;
    padding: 0;
    overflow-x:hidden;
   
}
/* home */
.floating-card {
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
}
.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.btn-red {
    background-color:RGB(255, 226, 44);
    border-color: RGB(255, 226, 44);
    border-radius: 8px;

}
.btn-red:hover {
    background-color: rgb(223, 1, 0);
    border-color: rgb(223, 1, 0);
    color: #fff;
}
.text-content {
    line-height: 2; /* Adjust line height as needed */
    
}
.text-upper-center{
    background-color: rgb(235, 235, 235);
    line-height: 2;
}
.text-upper-justify {
    padding-left: 15px;
    padding-right: 15px;
}
.upper_name {
    font-size: 2rem;
    font-weight: bold;
}
.desc-exp {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    color: #555;
}
.text-center{
    font-size: 20px;
}
.hover-effect img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.hover-effect img:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* about us */
/* Table Styling */
.custom-table {
    margin-top: 1rem;
}

.custom-table th,
.custom-table td {
    text-align: center;
    vertical-align: middle;
}

.thead-dark th {
    background-color: #343a40;
    color: #fff;
}

/* Form Styling */
.custom-form {
    margin-top: 1rem;
}

.custom-form .form-group {
    margin-bottom: 1rem;
}

.custom-input,
.custom-textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    width: 100%;
}

.custom-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #0056b3;
}

/* header */
.header .company-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
} 
.company-name {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 30px !important;
    font-weight: bold;
    margin-left: 0px;
}
.navbar-custom {
    background-color: RGB(255, 226, 44); /* Set your desired background color */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
}

.company-name {
    font-size: 1.2rem; /* Adjust the font size */
    font-weight: bold; /* Optionally make it bold */
    margin-left: 10px; /* Adjust spacing from the logo */
}

.navbar-nav .nav-link {
    color: #333333; /* Set link color */
    font-weight: bold; /* Optionally make links bold */
    margin-right: 15px; /* Adjust spacing between links */
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* Change color on hover */
}

/* social Media */
.navbar-text {
    font-size: 1rem; /* Adjust text size */
}

.navbar-text a {
    color: #555555; /* Set color for email and social links */
}

.navbar-text a:hover {
    color: #007bff; /* Change color on hover */
}

.navbar-text .ml-3,
.navbar-text .mr-3 {
    color: #ccc; /* Set color for separator */
}
/* get in touch */
.btn-get-in-touch{
    background-color: rgb(223, 1, 0);
    color: white;
    border-radius: 50px;
    padding: 10px 10px;
 
}
.btn-get-in-touch:hover {
    color: black;
    background-color:  RGB(255, 226, 44);
    border-color: #333;
   
}


.contact-info {
    font-size: 20px; /* Adjust size as needed */
    margin: 0;
    font-weight: 800;
}
/* footer */
.footer {
    padding: 20px 0;
    background-color: #343a40;
    color: #ffffff;
}

.footer h5 {
    margin-bottom: 20px;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.footer .social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.5em;
}

.footer .social-icons a:hover {
    color: #cccccc;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color:  rgb(223, 1, 0);
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 100px;
    font-size: 1.2em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .col-md-4 {
        margin-bottom: 20px;
    }
}
