/* footer */
/* Social Widget Styling */
.social-widget {
  margin-top: 25px; /* Adds space between the paragraph text and the icons */
}

.social-widget .follow-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff; /* Adjust if your footer text color is different */
  letter-spacing: 0.5px;
}

.social-icons-container {
  display: flex;
  gap: 12px; /* Space between the circles */
}

.social-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;  /* Adjusted size to better fit a footer column */
  height: 45px; /* Adjusted size to better fit a footer column */
  background-color: #273469; /* Dark blue background */
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* Keeps the icon white even if the theme tries to overwrite link colors */
.social-circle i {
  color: #ffffff; 
  font-size: 22px;
}

/* Hover effect */
.social-circle:hover {
  opacity: 0.8;
  color: #ffffff;
  transform: translateY(-2px); /* Slight lift effect on hover */
}
.header-style-two {
    background-color: transparent !important;
}

.header-style-two .outer-container {
    background-color: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-style-two .main-menu .navigation>li>a,
.header-style-two .search-btn,
.header-style-two .mobile-nav-toggler {
    color: #000000 !important;
}

.header-style-two .mobile-nav-toggler span {
    background-color: #000000 !important;
}

.header-style-two .main-menu .navigation>li>a:hover,
.header-style-two .search-btn:hover,
.header-style-two .mobile-nav-toggler:hover {
    color: #ffaa17 !important;
}

.header-style-two .mobile-nav-toggler:hover span {
    background-color: #ffaa17 !important;
}

.header-style-two .main-menu .navigation>li {
    padding: 15px 0 !important;
}

.header-style-two .header-lower .logo {
    padding: 15px 0 15px 15px !important;
}

.header-style-two .header-lower .logo img {
    max-height: 46.5px !important;
}

.sticky-header .main-menu .navigation>li {
    padding: 15px 0 !important;
}

.sticky-header .logo {
    padding: 15px 0 15px 15px !important;
}

.sticky-header .logo img {
    max-height: 46.5px !important;
}

.header-style-two .header-lower .main-box,
.sticky-header .inner-container {
    height: 77px !important;
}

@media (min-width: 1024px) {
    .header-style-two .main-box .left-box {
        display: contents;
    }

    .header-style-two .main-box .nav-outer {
        margin-left: 35px !important;
    }
}

/* Developer Portal Styles */
.dev-hero {
    background: linear-gradient(135deg, #e8f5b0 0%, #d0f0e8 25%, #f5d0e8 65%, #e8c8f0 100%);
    padding: 60px 0 50px;
    margin-top: 77px;
}

.dev-welcome-box {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 40px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.dev-welcome-box h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2e44;
    margin-bottom: 12px;
}

.dev-welcome-box p {
    font-size: 14px;
    color: #2a4060;
    line-height: 1.8;
    margin: 0;
}

.dev-section-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 8px;
    line-height: 1.1;
}

.dev-sub-title {
    font-size: 30px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 16px;
    margin-top: 36px;
}

.dev-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.dev-body {
    font-size: 14px;
    color: #2a4060;
    line-height: 1.8;
    margin-bottom: 16px;
}

.dev-list {
    font-size: 14px;
    color: #2a4060;
    line-height: 1.8;
    padding-left: 22px;
    margin-bottom: 16px;
}

.dev-list li {
    margin-bottom: 5px;
}

/* Info cards row */
.dev-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.dev-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 18px 22px;
    flex: 1;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dev-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-card p,
.dev-card li {
    font-size: 13px;
    color: #2a4060;
    line-height: 1.7;
    margin: 0;
}

.dev-card ul {
    padding-left: 16px;
    margin: 0;
}

/* Code blocks */
.dev-code-wrap {
    background: #1a2e44;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.dev-code-label {
    font-size: 11px;
    color: #7ab8e8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dev-code-wrap code,
.dev-code-wrap pre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #d4f0a0;
    white-space: pre-wrap;
    word-break: break-all;
    margin: 0;
    background: none;
    padding: 0;
}

.dev-code-wrap .code-string {
    color: #f0c080;
}

.dev-code-wrap .code-key {
    color: #80d8f0;
}

/* URL box */
.dev-url-box {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(26, 58, 92, 0.15);
    border-radius: 8px;
    padding: 12px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #1a3a5c;
    word-break: break-all;
    margin-bottom: 16px;
}

/* Parameters table */
.dev-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
}

.dev-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #2a4060;
}

.dev-table thead tr {
    background: rgba(26, 58, 92, 0.12);
}

.dev-table thead th {
    padding: 12px 16px;
    font-weight: 700;
    color: #1a3a5c;
    text-align: left;
    border-bottom: 2px solid rgba(26, 58, 92, 0.15);
}

.dev-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.4);
}

.dev-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.2);
}

.dev-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(26, 58, 92, 0.08);
    vertical-align: top;
}

.badge-mandatory {
    display: inline-block;
    background: #e85c5c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.badge-optional {
    display: inline-block;
    background: #5c8ee8;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Response list */
.dev-response-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.dev-response-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #2a4060;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.dev-response-list li .resp-label {
    font-weight: 600;
    color: #1a3a5c;
    white-space: nowrap;
    min-width: 260px;
}

@media (max-width: 600px) {
    .dev-section-title {
        font-size: 34px;
    }

    .dev-sub-title {
        font-size: 22px;
    }

    .dev-response-list li {
        flex-direction: column;
    }

    .dev-response-list li .resp-label {
        min-width: unset;
    }
}
