/* Hide & Show */
.mobile-view {
    display: none;
}

/* Logo size */
.logo {
    height: 63px !important;
    /* set your preferred height */
    width: auto;
    /* keeps the image aspect ratio */
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 0 !important;
    align-items: center;
}

/* For smaller screens */
@media (max-width: 768px) {
    .logo {
        height: 45px;
    }
}

/* Footer CSS */
/* Social Medial iCON CSS */
.footer-social a i {
    color: #fff !important;
    /* White color */
    font-size: 20px;
    /* Adjust icon size if needed */
    transition: 0.3s;
    /* Smooth hover effect */
}

.footer-social a i:hover {
    color: #ff830f !important;
    /* Example hover color (Twitter blue) */
}

.address-line {
    display: flex;
    /* vertically center text with icon */
    gap: 8px;
    /* space between icon and text */
    margin: 0;
    /* remove default <p> spacing */
    margin-bottom: 1rem;
}

.address-line i {
    color: #fff;
    /* icon color */
    font-size: 16px;
    /* adjust size */
    margin-top: 5px;
}

.text {
    text-align: justify;
}

/* Used For CSS Contact Page */
.contact-text p a {
    color: #787878;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text p a:hover {
    color: #2c7bdb;
    text-decoration: underline;
}

/* custom code  */
/* quote */
.quote {
    padding: 100px 0px;
    background-image: url(../img/home/promise-background.webp);
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.quote h1 {
    font-size: 5rem;
}

/* .contact-text {
    color: #fff;
} */

/* Dropdown Navbar Link CSS */
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #4827ab !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    font-weight: 600;
}

/* Capsule Buttons */
.capsule-btn {
    border-radius: 50px !important;
    padding: 8px 25px;
    border: 1px solid #ddd;
    color: #2c7bdb;
    background: #fff;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 5px;
}

.capsule-btn.active,
.capsule-btn:hover {
    background: #ff830f;
    color: #fff;
}

.capsule-submit {
    border-radius: 50px;
    padding: 10px 35px;
    border: none;
    background: #28a745;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease;
}

.capsule-submit:hover {
    background: #218838;
}

.otp-btn {
    padding: 3px 3px !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2c7bdb;
    background: none;
    border: 1px solid #2c7bdb !important;
    border-radius: 0;
    transition: .3s;
}

/* .form-check-label {
    color: aliceblue;
}

.form-select {
    background-color: #161b2a !important;
} */

.contact-link {
    color: #787878;
    /* Bootstrap Blue */
    text-decoration: none;
    /* Remove underline */
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ff830f;
    /* Darker blue on hover */
    text-decoration: underline;
}

a {
    /* color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); */
    text-decoration: none !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #2c7bdb !important;
}

/* whatsapp icon */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-whatsapp a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.cm-space {
    padding: 3rem 0;
}

.top-page-title {
    margin-top: 5rem;
}

.contact-info {
    height: 160px;
}

.form-select {
    border: var(--bs-border-width) solid #091521;
}

.input-group-text {
    border-color: #091521;
}

.otp-input-group {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.otp-input-group input {
    text-align: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
}

/* Hide number input arrows */
.otp-input-group input::-webkit-outer-spin-button,
.otp-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input-group input[type=number] {
    -moz-appearance: textfield;
}

.otp-resend-info {
    font-size: 0.9em;
    text-align: center;
    margin-top: 10px;
}

/* button {
    background: linear-gradient(135deg, #6665F1, #2c7bdb);
    color: white;
    border: 2px solid #6665F1;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

button:hover {
    background: linear-gradient(135deg, #2c7bdb, #6665F1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 86, 246, 0.3);
} */
.buttonOtp {
    background-color: #2c7bdb;
    /* Primary blue color */
    border: none;
    border-radius: 50px;
    /* Makes the button capsule-shaped */
    color: white;
    padding: 10px 30px;
    /* Adjust padding for a smaller, more refined size */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 50%;
    /* Make the button half the width of its container */
    margin: 15px auto 0;
    /* Center the button horizontally */
    display: block;
    /* Required for auto margins to work */
}

.buttonOtp:hover {
    background-color: #0056b3;
    /* Darker shade on hover */
    transform: translateY(-2px);
    /* Lifts the button slightly on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.buttonOtp:active {
    transform: translateY(0);
    /* Pushes the button down on click */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/* Service Dropdown CSS */
/* Fix flickering and enable smooth hover dropdown */
.services-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.services-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* contact page css */
/* Button styling */
.view-btn {
    background-color: #2c7bdb;
    color: #fff;
    font-size: 16px;
    /* transition: background 0.3s ease; */
}

.view-btn:hover {
    background: #ff830f;
    color: #fff !important;
}

.btn-light:hover {
    background: #ff830f;
    color: #fff !important;
}

.btn-light {
    background-color: #2c7bdb;
    color: #fff;
}

.info-prompt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* carsoul css */
.carousel-control-next{
    width: 8% !important;
    background:linear-gradient(90deg,transparent,rgba(0,0,0,0.2));
}
.carousel-control-prev {
    width: 8% !important;
    background:linear-gradient(90deg,rgba(0,0,0,0.2),transparent);
}

.margin-tt-5 {
    margin-top: 5.5rem;
}

/* side nav for mobile */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
}

.sidenav a, .sidenav h4 {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    display: block;
    transition: 0.3s;
    cursor: pointer;
}

/* .sidenav a:hover, .sidenav h4:hover {
    background: #575757;
} */

/* .sidenav .closebtn {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 30px;
    color: #000;
} */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 40px;
    margin-left: 50px;
}

.active-data {
    color: #4827ab !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    font-weight: 600;
}

/* Dropdown Style */
.dropdown-container {
    display: none;
    padding-left: 20px;
}

.dropdown-container a {
    font-size: 16px;
}

/* Open Button */
.mobile-view span {
    font-size: 30px;
    /* cursor: pointer; */
    color: #111;
    margin-right: 25px;
}