/* ================= GLOBAL ================= */

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.text-justify {
    text-align: justify;
}
.text-inherit {
    color: inherit !important;
}

.section-padding {
    padding: 25px 0;
}

/* ================= BUTTONS ================= */

.btn-light-custom {
    background: #fff;
    border: 1px solid #000;
    padding: 9px 30px;
    border-radius: 8px;
    font-weight: 600;
}
.btn-light-custom:hover {
    background: #fff;
}

/* ================= NAVBAR ================= */

/* Navbar */
.custom_navbar {
    padding: 10px 0;
    background-color: #fff;
}

/* Logo */
.custom_logo {
    height: 70px;
}

/* Center Menu */
.custom_menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Menu Links */
.custom_navbar .nav-link {
    margin: 0 7px;
    font-weight: 500;
    color: #333 !important;
}

.custom_navbar .nav-link:hover {
    color: #ff7a2f !important;
}

/* Right Section */
.custom_right {
    gap: 15px;
}

/* Search */
.custom_search_form {
    position: relative;
}

.custom_search_input {
    width: 220px;
    padding-right: 40px;
    border-radius: 30px;
    border: 1px solid #ddd;
    height: 40px;
}

.custom_search_input:focus {
    box-shadow: none;
    border-color: #ff7a2f;
}

.custom_search_btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555;
}

.custom_search_btn:hover {
    color: #ff7a2f;
}

/* Login Button */
.custom_login_btn {
    padding: 8px 18px;
    border-radius: 25px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
    transition: 0.3s;
}

.custom_login_btn:hover {
    opacity: 0.9;
}

/* Button */
.btn-orange {
    background: linear-gradient(45deg, #ff7a2f, #ff5e00);
    color: #fff;
    padding: 9px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange:hover {
    opacity: 0.9;
    color: #fff;
}

/* Top blue border */
.top-nav-wrapper {
    background-color: #f3f3f3;
}

/* Navigation links */
.category-nav .nav-link {
    color: #2c3e50;
    font-size: 14px;
    padding: 12px 10px;
    transition: all 0.3s ease;
}

/* Active link */
.category-nav .nav-link.active {
    font-weight: 600;
    color: #ff7a2f;
}

/* Hover effect */
.category-nav .nav-link:hover {
    color: #ff7a2f;
}

/* Remove default nav underline */
.nav-link:focus {
    outline: none;
    box-shadow: none;
}

/* HERO */
.hero-box {
    max-width: 812px;
    border-radius: 16px;
    height: 100%;
}

.hero-box h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-box h5 {
    margin-top: 15px;
    color: #555;
}

.hero-box p {
    margin-top: 15px;
    text-align: justify;
}

.hero_sec {
    padding: 50px 0;
    background: #f4f7fb;
}

/* CTA */
.cta-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 122, 47, 0.35);
}

.cta-btn i {
    transition: 0.3s;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* NEWS BOX */
.news-box {
    border-radius: 16px;
    height: 100%;
}

.news-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* NEWS CARD */
.news-item {
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s ease;
    column-gap: 12px;
    padding: 3px 0;
}

/* Bottom separator */
.news-item::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.news-item:last-child::after {
    display: none;
}

.news-item:hover {
    transform: translateY(-4px);
}

.news-text {
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-img {
    display: flex;
    align-items: center;
}

.news-img img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
}

.about_pr_section {
    padding: 50px 0;
}

/* CONTENT */
.about_pr_content h3 {
    font-size: 20px;
}

.about_pr_content p {
    color: #555;
    font-size: 15px;
    text-align: justify;
}

/* IMAGE */
.about_pr_img img {
    width: 100%;
    border-radius: 16px;
}

/* CTA */
.about_pr_btn {
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
    color: #fff;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
    margin-top: 15px;
}

.about_pr_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 122, 47, 0.3);
}

.about_pr_card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.about_pr_card:hover {
    transform: translateY(-5px);
}

.highlight_success {
    padding: 50px 0;
    background: #f4f7fb;
}

.about_pr_icon {
    min-width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* TEXT */
.about_pr_number {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e75;
}

.about_pr_text {
    font-size: 13px;
    color: #666;
}

.latest_pr {
    padding: 50px 0;
    background-color: #f4f7fb;
}
.sec_pr_story {
    padding: 50px 0;
}

.pr_story_section {
    background: linear-gradient(135deg, #bbc8e2, #b9cbee);
    padding: 40px 20px;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    color: #000;
    position: relative;
    overflow: hidden;
}

.pr_story_content {
    position: relative;
    z-index: 1;
}

.pr_story_heading {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pr_story_desc {
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 35px;
}

.pr_story_btn {
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 90, 40, 0.4);
}

.pr_story_btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 90, 40, 0.6);
    color: #fff;
}

.featured_section {
    padding: 50px 0;
}

/* HEADER */
.featured_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 215px;
}
.featured_header .featured_head {
}

/* TITLE */
.featured_title {
    font-size: 22px;
    font-weight: 600;
}

.featured_subtitle {
    font-size: 13px;
    color: #666;
}

.featured_line {
    height: 3px;
    background: #bfbfbf;
    margin: 10px 0;
}

/* DROPDOWN */
.category_dropdown select {
    min-width: 180px;
    font-size: 13px;
    border: 1px solid #ccc;
    padding: 6px 10px;
}

/* LEFT FEATURE */
.featured_box {
    border: 1px solid #dcdcdc;
    background: #fff;
    padding: 15px;
}

.featured_box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.featured_content {
    margin-top: 10px;
}

.featured_date {
    font-size: 11px;
    color: #777;
}

.featured_heading {
    font-weight: 600;
    font-size: 15px;
    margin-top: 5px;
    color: #19295c;
}

.featured_desc {
    font-size: 13px;
    color: #555;
    margin-top: 5px;
}

/* RIGHT SIDE */
.side_wrapper {
    border-left: 1px solid #cfcfcf;
    padding-left: 20px;
}

.side_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
}

.side_item:hover {
    background: #f9f9f9;
    cursor: pointer;
}

.side_item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px;
}

.side_text {
    font-size: 12px;
}

.side_text span {
    color: #777;
    display: block;
    margin-bottom: 4px;
}

.side_text strong {
    font-size: 13px;
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.side_text p {
    font-size: 13px;
    font-weight: 600;
    margin-top: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.featured_btn {
    margin-top: 20px;
    text-align: center;
}

.featured_btn a {
    display: block;
    border: 1px solid #bfbfbf;
    padding: 8px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    background: #f9f9f9;
}

.featured_btn a:hover {
    background: #eee;
}

.section-wrapper {
    padding: 35px 0;
    background: #f5f8ff;
}

/* LEFT VERTICAL TABS */
.custom-tabs .nav-link {
    color: #2b4a7f;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    background: #eef2f7;
    transition: all 0.3s ease;
    width: 100%;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
}

.custom-tabs .nav-link:hover {
    background: #dde6f2;
}

.custom-tabs .nav-link.active {
    background: #ff7a2f;
    color: #fff;
}

.custom-tabs li {
}

/* CARD DESIGN */
.rank-card {
    border: none;
    background: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.rank-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.rank-img img {
    width: 100%;
    height: 137px;
    object-fit: cover;
}

/* Ranking Badge */
.rank-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #2d4f8f;
    color: #fff;
    width: 30px;
    height: 29px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 111;
}

.rank-content {
    padding: 14px;
}

.rank-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

/* SHOW MORE BUTTON */
.show-more {
    display: inline-block;
    background: #ff7a2f;
    color: #fff;
    border: none;
    padding: 10px 50px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 122, 47, 0.4);
}

.show-more:hover {
    background: #e86414;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 47, 0.5);
}

/* for press release details card */

/* Title */
.news-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-title:hover {
    color: #2f3e78;
}

/* Image */
.news-thumb {
    width: 100%;
    height: 68px;
    object-fit: cover;
    border-radius: 6px;
}

/* for press release page */

.pt-tabs-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 25px;
}

.pt-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

/* Tabs Container */
.pt-tabs {
    display: flex;
    gap: 5px;
    border-bottom: none;
}

/* Tab Buttons */
.pt-tabs .nav-link {
    border: none;
    background: #f4f6fb;
    color: #1f2f6b;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover */
.pt-tabs .nav-link:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-2px);
}

/* Active */
.pt-tabs .nav-link.active {
    background: #ff7a2f;
    color: #fff;
    box-shadow: 0 6px 15px rgba(31, 47, 107, 0.3);
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 140px;
    height: 4px;
    background-color: #ff7a2f;
}

.press-meta i {
    margin-right: 5px;
}
.company {
    font-size: 12px;
    color: #888;
}

.press-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.press-card:hover {
    transform: translateY(-5px);
}

/* Text */
.press_contents {
    max-width: 60%;
    margin-right: 10px;
}

.press-title {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.press-link {
    text-decoration: none;
}

.press-meta {
    font-size: 11px;
    color: #777;
    margin-top: 8px;
}

/* Image */
.press-img img {
    width: 140px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

/* Sidebar */
.sidebar-box {
    /* background:#c8d6e5;
    padding:25px;
    border-radius:6px; */
}

.keyword-section {
    padding: 40px 0;
}

.keyword-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Keyword Pills */
.keyword-tag {
    display: inline-block;
    color: #333;
    margin: 5px 5px 5px 0;
    font-size: 15px;
    transition: 0.3s;
    text-decoration: none;
    border-right: 1px solid #000;
    padding-right: 8px;
}
.show-more-cat {
    padding: 6px 10px;
    background: #ff7a2f;
    color: #fff;
    border-radius: 20px;
    margin-top: 6px;
    display: inline-block;
}

.keyword-tag:hover {
    color: #ff7a2f;
}

.scroll-box {
    max-height: 220px;
}

/* Top Strip */
.top-strip {
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.company-name {
    font-weight: 600;
    font-size: 18px;
    color: #222;
}

.publish-date {
    font-size: 14px;
    color: #666;
    margin-left: 15px;
}

/* Right Side Icons */
.icon-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Like Section */
.like-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
}

.like-section i {
    font-size: 20px;
}

.like-count {
    font-size: 13px;
    margin-top: 3px;
}

/* Icons */
.icon-group i {
    font-size: 18px;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.icon-group i:hover {
    color: #000;
}

.pres-detail-left table {
    width: 100% !important;
    margin-bottom: 15px;
}
.pres-detail-left table tbody,
td,
tfoot,
th,
thead,
tr {
    border-width: 1px;
    padding: 10px;
}

.pres-detail-left table tbody,
td p,
tfoot,
th p,
thead,
tr {
    margin-bottom: 0;
}

.pres-detail-left img {
    width: 100% !important;
    height: auto !important;
}
.pres-detail-left h1 {
    font-size: 18px;
}
.pres-detail-left h2 {
    font-size: 20px;
}
.pres-detail-left h3 {
    font-size: 18px;
}
.pres-detail-left h4 {
    font-size: 16px;
}
.pres-detail-left p {
    text-align: justify;
}
.press_r_left {
    margin-right: 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #fff !important;
    box-shadow: none !important;
}

/* Card Styling */
.register-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    position: relative;
    z-index: 2;
}

.register-title {
    font-weight: 600;
    color: #1f2f6b;
}

.register-card .form-control {
    height: 48px;
    border-radius: 8px;
    padding-left: 40px;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6c757d;
}

.input-group-custom {
    position: relative;
}

/* Button */
.btn-signup {
    background: linear-gradient(90deg, #ff7a2f, #ff512f);
    border: none;
    height: 48px;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
}

.btn-signup:hover {
    opacity: 0.9;
}

.login_section {
    background-color: #f3f3f3a3;
}
/* Bottom Section */
.bottom-section {
    background: linear-gradient(180deg, #2d4f8f, #1f2f6b);
    padding: 40px 0 50px;
    color: #fff;
    position: relative;
}

.feature-box i {
    font-size: 28px;
    background: #fff;
    color: #2d4f8f;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.login-link {
    color: #ff7a2f;
    font-weight: 600;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    padding: 40px 0 20px 0;
}

/* ================= CLIENT SECTION ================= */

/* Section Title */
.testimonial-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}
.testimonial-title::before {
    content: "";
    width: 80px;
    position: absolute;
    height: 4px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7a2f;
    display: block;
    margin: 15px auto 0;
}

.client-section {
    background: linear-gradient(to bottom, #f3f6ff, #eaf0ff);
    padding: 100px 0;
    position: relative;
}

.client-title {
    text-align: center;
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client-title span {
    flex: 1;
    height: 1px;
    background: #cfd9f7;
}

.client-box {
    background: #f6f8ff;
    padding: 50px 60px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.client-text {
    font-size: 18px;
    color: #2b3a67;
    margin-bottom: 25px;
}

.quote-left,
.quote-right {
    position: absolute;
    font-size: 38px;
    color: #b6c5f3;
}

.quote-left {
    top: 25px;
    left: 30px;
}

.quote-right {
    bottom: 25px;
    right: 30px;
}

.client-name {
    font-size: 16px;
    color: #4a5a85;
}

.client-name span {
    color: #2b3a67;
    font-weight: 600;
}

/* ================= FOOTER ================= */

.footer-area {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.footer-text {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff7a2f;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: #ff7a2f;
    margin-right: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ff7a2f;
}

.newsletter-input {
    border: none;
    padding: 10px;
    border-radius: 4px 0 0 4px;
}

.newsletter-btn {
    background: #ff7a2f;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
    text-align: center;
}

.cat_list li:hover {
    background: #cccccc24;
}
.cat_list li a {
    width: 100%;
    display: inline-block;
}

/* ================= contact ================= */

.contact-hero {
    background: linear-gradient(135deg, #e9edf5, #d9e2f3);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 48px;
    font-weight: 600;
    color: #1f2a44;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 10px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #5a6b8c;
}

.breadcrumb-item.active {
    color: #1f2a44;
    font-weight: 500;
}

.hero-image img {
    max-width: 100%;
    max-height: 322px;
}

/* Cards */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 14%);
    height: 100%;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 14%);
    height: 100%;
}

.form-control:focus {
    box-shadow: none;
    border-color: #8ea6d9;
}

/* Button */
.btn-orange {
    background: linear-gradient(45deg, #ff7a2f, #ff5e00);
    color: #fff;
    padding: 9px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange:hover {
    opacity: 0.9;
    color: #fff;
}

/* Contact Info Items */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.bg-blue {
    background: #4e73df;
}
.bg-orange {
    background: #ff7a2f;
}
.bg-lightblue {
    background: #36b9cc;
}

.info-title {
    font-weight: 600;
    color: #1f2a44;
}

.info-text {
    color: #5f6f8c;
    font-size: 15px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}

/* Section Background */
.features-section {
    background: linear-gradient(135deg, #e9edf5, #dfe6f2);
    padding: 60px 0;
    position: relative;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Icon Box */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, #dfe8ff, #c9d8ff);
    color: #3b5ed7;
    flex-shrink: 0;
}

/* Title */
.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a44;
    margin-bottom: 6px;
}

/* Text */
.feature-text {
    font-size: 15px;
    color: #5f6f8c;
    margin: 0;
}

/* ================= CTA ================= */

.cta {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 40%
        ),
        linear-gradient(
            135deg,
            #2f3e8f 0%,
            #28377f 35%,
            #1f2f6b 70%,
            #19295c 100%
        );
    padding: 35px 0;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-weight: 600;
}

/* ================= about ================= */

.custom-breadcrumb {
    background: transparent;
    padding: 0;
}

.custom-breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #1b2a4e;
    font-weight: 500;
}

.cp7-wrapper {
    max-width: 950px;
    margin: 60px auto;
}

/* card */

.cp7-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* heading */

.cp7-heading {
    background: linear-gradient(45deg, #1f2f6b, #3f57c4);
    color: #fff;
    padding: 14px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cp7-heading i {
    color: #ff7a2f;
}

/* table */

.cp7-table {
    margin: 0;
}

.cp7-table th {
    width: 32%;
    background: #f9faff;
    font-weight: 600;
    color: #333;
    padding: 16px;
    border-left: 4px solid #ff7a2f;
}

.cp7-table td {
    padding: 16px;
    color: #555;
}

/* icons */

.cp7-table th i {
    margin-right: 8px;
    color: #ff7a2f;
}

/* list */

.cp7-list {
    margin: 0;
    padding-left: 18px;
}

.cp7-list li {
    margin-bottom: 6px;
}

/* hover */

.cp7-table tr {
    transition: 0.3s;
}

.cp7-table tr:hover {
    background: #f6f8ff;
}

/* link */

.cp7-link {
    background: #ff7a2f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
}

.cp7-link:hover {
    background: #e46a22;
    color: #fff;
}

/* ================= Sidebar ================= */
.sidebar {
    background: linear-gradient(180deg, #e8edf7, #dfe6f3);
    overflow-y: auto;
    height: 100%;

    padding: 25px 10px;
}

#sidebarMenu {
    height: 100vh;
}

.sidebar .nav-link {
    color: #4b5d7a;
    font-weight: 500;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 10px;
}
.sidebar .nav-link:hover {
    background: #ff7a2f;
    color: #fff;
}

.sidebar .nav-link i {
    width: 25px;
}

.sidebar .nav-link.active {
    background: #ff7a2f;
    color: #fff;
    box-shadow: 0 5px 15px rgba(76, 110, 245, 0.3);
}

/* Main Content */
.main-content {
    padding: 30px;
}
.main-content h3 {
    color: #0e0f1cb0;
}

/* Card */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 6%);
}

.card-header {
    background: #f5f7fc;
    border-bottom: 1px solid #e4e9f2;
    font-weight: 600;
}

/* List Row */
.release-item {
    padding: 18px;
    border-bottom: 1px solid #eef2f7;
}

.release-item:last-child {
    border-bottom: none;
}

.release-title {
    font-weight: 500;
    color: #33415c;
}

/* Status Badges */
.badge-published {
    background: #28a745;
}

.badge-processing {
    background: #fd7e14;
}

.badge-draft {
    background: #6c757d;
}

/* Right arrow */
.arrow-icon {
    color: #adb5bd;
}

.custom-table thead {
    background: #f5f7fc;
    font-weight: 600;
}

.custom-table tbody tr:hover {
    background: #f8faff;
    transition: 0.3s;
}

.custom-table td,
.custom-table th {
    padding: 15px 20px;
    vertical-align: middle;
}

.card-custom .form-label {
    color: #000;
    font-weight: 600;
}

.card-custom .form-control,
.card-custom .form-select {
    border-radius: 8px;
    height: 40px;
}

.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ===== AUTHOR PAGE NAMESPACE ===== */
.ap-wrapper {
    background: #f5f5f5;
    padding: 30px 0;
}

.ap-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

/* HEADER */
.ap-logo {
    width: 90px;
    height: 90px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    text-align: center;
    padding: 6px;
}

.ap-social {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eee;
    color: #333;
    font-size: 14px;
}

.ap-social:hover {
    background: #2d4f8f;
    color: #fff;
}

/* SEARCH */
.ap-search {
    position: relative;
    max-width: 280px;
}

.ap-search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.ap-search input {
    padding-left: 30px;
}

/* TABS */
.ap-tabs .nav-link {
    font-weight: 600;
    border: none;
    color: #333;
    padding: 10px 15px;
}

.ap-tabs .nav-link.active {
    border-bottom: 3px solid #1e3c72;
    color: #000;
}

/* PRESS ITEM */
.ap-item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    display: inline-block;
    text-decoration: none;
}
.ap-item:hover {
    text-decoration: underline;
}

.ap-item h6 {
    font-size: 15px;
    color: #000;
}

.ap-meta {
    font-size: 13px;
    color: #777;
}

.ap-meta span {
    margin-left: 10px;
    color: #2d4f8f;
}

/* RIGHT TABLE */
.ap-table th {
    width: 45%;
    font-weight: 600;
}

.info-card {
    padding: 12px;
    border-top: 1px solid #ccc;
}

/* Label */
.info-label {
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
    text-transform: capitalize;
}

/* Pills */
.tag-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f1f3f6;
    color: #333;
    font-size: 14px;
    margin: 5px 8px 5px 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-pill:hover {
    background: #ff6a21;
    color: #fff;
    border-color: #ff6a21;
    transform: translateY(-2px);
    cursor: pointer;
}

/* Row spacing */
.info-row {
    padding: 12px 0;
    border-bottom: 1px dashed #cfc4c4;
}

.info-row:last-child {
    border-bottom: none;
}

/* Section */
.all_press_section {
    padding: 0 0 60px 0;
}

/* Header */
.all_press_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.all_press_more {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.all_press_more:hover {
    text-decoration: underline;
}

/* Slider wrapper */
.all_press_slider_wrapper {
    position: relative;
    padding: 0 40px;
}

/* Card */
.all_press_card img {
    width: 100%;
    height: 152px;
    object-fit: cover;
}

.all_press_text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    color: #000;
    text-decoration: none;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.all_press_text:hover {
    text-decoration: underline;
}

.all_press_date {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}

/* Custom Arrows */
.all_press_prev,
.all_press_next {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 40%;
    z-index: 10;
    cursor: pointer;
}

.all_press_prev {
    left: 0;
}

.all_press_next {
    right: 0;
}

/* Arrow Icons */
.all_press_prev::after,
.all_press_next::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    margin: auto;
    position: relative;
    top: 14px;
}

.all_press_prev::after {
    transform: rotate(135deg);
}

.all_press_next::after {
    transform: rotate(-45deg);
}

.step-wrapper {
    text-align: center;
    margin: 30px 0;
}

.step-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0;
}

/* Line behind steps */
.step-line {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ddd;
    z-index: 0;
}

/* Each step */
.step-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

/* Circle */
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #333;
    line-height: 36px;
    font-weight: bold;
}

/* Label */
.step-label {
    margin-top: 8px;
    font-size: 14px;
}

/* Active Step */
.step-item.active .step-circle {
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
    color: #fff;
}

/* Completed Step */
.step-item.completed .step-circle {
    background: #20c997;
    color: #fff;
}

/* .step.active {
        background: linear-gradient(135deg, #20c997, #6f42c1);

      } */

.form-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
}

.form-row-custom {
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.label-col {
    background: #fafafa;
    font-weight: 600;
    font-size: 12px;
}

.required-tag {
    border: 1px solid red;
    color: red;
    font-size: 12px;
    padding: 2px 6px;
    margin-left: 5px;
}

.preview-box {
    display: none;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.company_reg h1 {
    font-size: 20px;
}

.user_info_header {
    padding: 0 0 20px 0;
}

.user_info_logo {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #183b6b;
}

.user_info_sub {
    font-size: 14px;
    color: #4a6fa5;
    margin-left: 10px;
}

.user_info_sec {
    background: #f4f7fb;
    padding: 40px 0;
}

/* Title */
.user_info_title {
    font-size: 25px;
    font-weight: 600;
}

.user_info_title span {
    color: #2d6cdf;
}

.user_info_desc {
    margin-top: 15px;
    color: #6c7a92;
}

/* Cards */
.user_info_card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

/* Border Accent */
.user_info_card.left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: #0f8b8d;
    border-radius: 12px 0 0 12px;
}

.user_info_card.right::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: #5a54d6;
    border-radius: 0 12px 12px 0;
}

/* Icon */
.user_info_icon {
    width: 120px;
    height: 120px;
    background: #eef3f8;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Text */
.user_info_card h4 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.user_info_card p {
    font-size: 14px;
    text-align: center;
    color: #6c7a92;
    min-height: 115px;
}

/* Buttons */
.user_info_btn {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 12px;
    margin-top: 20px;
    border: none;
    font-weight: 500;
    color: #fff;
    transition: 0.3s;
}

/* Media Button (Gradient) */
.user_info_btn.media {
    background: linear-gradient(135deg, #ff7a2f, #ff4d2d);
}

/* Individual Button (New Color) */
.user_info_btn.individual {
    background: #183b6b;
}

/* Hover */
.user_info_btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Bottom Info */
.user_info_info {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.user_info_info div {
    width: 48%;
    font-size: 14px;
    color: #6c7a92;
}
