.serviceSection03 .panelLayout {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.serviceSection03 .sidebar {
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 8px;
}

.serviceSection03 .sidebar .menu {
    list-style-type: none;
    padding: 0;
}

.serviceSection03 .sidebar .menu li {
    margin: 15px 0;
}

.serviceSection03 .sidebar .menu li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.serviceSection03 .sidebar .menu li a:hover {
    color: #3498db;
}

.serviceSection03 .mainContent {
    padding: 20px;
}

.serviceSection03 .mainContent .content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.serviceSection03 .mainContent .content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.serviceSection03 .mainContent .content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
    
.bg-dbmediaorange {
    background-color: #ff790d !important;
}
.text-dbmediaorange {
    color: #ff790d !important;
}
.bg-dbmediacyan {
    background-color: #00d1ff !important;
}
.text-dbmediacyan {
    color: #00d1ff !important;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  left:37px;
  min-width: 190px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ff790d;
  color:#fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.custom-alert {
        position: fixed;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #f8d7da;
        color: #721c24;
        padding: 15px 30px;
        border: 1px solid #f5c6cb;
        border-radius: 5px;
        z-index: 999999;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
    }
    .custom-alert button {
        background-color: transparent;
        border: none;
        color: #721c24;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
    }