
/* Button Styles */
.btn-outline-light {
    border-color: #fff;
    color: #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: #373b61;
}

/* Header Styles */
header {
    background-color: #f8f9fa;
    padding: 60px 0;
    
}

/* Custom Card Styles */
.custom-card {
    width: 100%;
    border: 2px solid #3498db;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 20px;
}

/* Partner Card with Background Image */
.adb-card {
    width: auto;
    background-image: url('assets/img/Certified_Reseller_badge_1_line.png'); /* Replace with the actual path to your image */
    background-size: cover; /* Ensures the image covers the entire background of the element */
    background-position: center; /* Centers the background image */
}

/* Card Title Styles */
.card-title {
    color: #3498db;
}

/* Card Text Styles */
.card-text {
    color: #555;
}

/* Partner Styles */
.ms-partner {
    background-color: #3498db; /* Microsoft */
}
.cis-partner {
    background-color: #2ecc71; /* Cisco */
}
.len-partner {
    background-color: #e74c3c; /* Lenovo */
}
.sps-partner {
    background-color: #9b59b6; /* Sophos */
}

/* Card Footer Styles */
.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
}

/* Icon Holder Styles */
.icon-holder {
    font-size: 24px;
    margin-right: 10px;
    color: #3498db; /* Customize the icon color */
}

/* Partner Name Styles */
.partner-name {
    font-weight: bold;
    color: #555;
    font-size: 24px;
    text-align: left; /* Adjust text alignment */
}

/* Card Hover Effect */
.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Carousel Control Styles */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    background: none;
    border: none;
    font-size: 30px;
    color: #3498db;
}

/* Partner Image Styles */
.partner-image {
    max-width: 100%;
    margin-top: 0px;
    height: 152px; /* Set a specific height */
}

/* Navigation Bar Styles */
.navbar {
    background-color: #004aad; /* Dark Blue */
}

.navbar-brand img {
    width: auto;
    height: 50px;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-right: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffdd57; /* Yellow */
}

.navbar-nav .nav-link.active {
    color: #ffdd57; /* Yellow */
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none; /* Remove focus outline */
    border: 2px solid #fff; /* Add back the border (customize color as needed) */
    box-shadow: 0 2px 4px rgba(b, b, b, 0.1); /* Add back the shadow effect */
/* Added by me*/
    background-color: #46ACC2;
    display: flex;
    padding: 16px;
    font-family: sans-serif;
    color: white;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 400px;
    width: 100%;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.close-popup {
    cursor: pointer;
    font-size: 24px;
    color: #000;
}

.close-popup:hover {
    color: #ff0000;
}

.popup form .form-control {
    margin-bottom: 10px;
}

.popup form .btn-primary {
    background-color: #004aad;
    border-color: #004aad;
    transition: background-color 0.3s, border-color 0.3s;
}

.popup form .btn-primary:hover {
    background-color: #ffdd57;
    border-color: #ffdd57;
}

.popup #popupTimer {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Carousel Control Styles */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    background: none;
    border: none;
    font-size: 30px;
    color: #3498db;
}


@media (max-width: 768px) {
    .Navbar__Link-toggle {
        align-self: flex-end;
        display: initial;
        position: absolute;
        cursor: pointer;
    }
}
