:root {
  --primary-orange: #f26522;
  --dark-bg: #222222;
  --light-bg: #f4f4f4;
  --text-dark: #111111;
  --text-light: #ffffff;
  --heading-font: "Pubg Sans";
  --body-font: "Poppins", sans-serif;
}

body {
  font-family: var(--body-font);
  background-color: var(--light-bg);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--body-font);
  font-weight: 700;
}

h1 {
  font-family: var(--heading-font);
}

/* Navbar */
.navbar {
  position: fixed;
  /* Fixed position makes it sticky */
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(180deg, #444444 0%, #1a1a1a 100%);
  padding: 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.navbar-brand {
  margin-left: 20px;
  position: relative;
  z-index: 10;
}

/* Logo Background Overlay Glow */
.navbar-brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.6) 20%,
      transparent 60%);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.navbar-brand img {
  height: 70px;
}

.nav-link {
  color: var(--text-light) !important;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-left: 25px;
}

.navbar-nav {
  margin-right: 20px;
}

/* Hero Section */
.commom_banner {
  width: 100%;
}

.hero-section.common_banner_sec {
  background: transparent;
  min-height: auto;
  padding-bottom: inherit;
}

.hero-section {
  position: relative;
  background: #1a1a1a url(banner.png) center / cover no-repeat;
  min-height: 956px;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  /* overflow: hidden; */
  padding-bottom: 138px;

  /* overflow: hidden; */
  &::before {
    background: linear-gradient(to bottom,
        rgba(135, 135, 135, 1) 0%,
        rgba(33, 33, 33, 0.01) 70%,
        rgba(33, 33, 33, 0) 71%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 354px;
    content: "";
    z-index: -1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  padding-top: 0px;
}

.hero-title {
  font-size: 90px;
  line-height: 0.95;
  margin-bottom: 15px;
  font-weight: 400;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 35px;
  max-width: 480px;
  line-height: 1.4;
}

.btn-custom {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
  padding: 15px 35px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: var(--body-font);
  letter-spacing: 1px;
  border-radius: 0;
  line-height: 25px;
}

.btn-custom:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.hero-small-img {
  margin-top: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 200px;
  height: 160px;
  object-fit: cover;
}

.hero-player-img {
  position: absolute;
  bottom: -40px;
  left: 40%;
  transform: translateX(-50%);
  height: 687px;
  width: auto;
  z-index: 3;
  object-fit: contain;
  pointer-events: none;
}

.hero-hoop-img {
  position: absolute;
  right: 0;
  top: 20%;
  height: 360px;
  z-index: 1;
  opacity: 0.9;
}

textarea.form-control {
  height: 126px;
  resize: none;
}

.dominate-text {
  position: static;
  z-index: 2;
  float: right;
  color: white;
  max-width: 595px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.dominate-text h2 {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  font-family: var(--heading-font);
  font-weight: 500;
}

.dominate-text p {
  font-size: 18px;
  opacity: 0.9;
}

.hero-section.common_banner_sec .ad-banner:first-child {
  margin-bottom: 25px;
  position: absolute;
  left: 25px;
  top: 32rem;
  z-index: 1;
}

.hero-section.common_banner_sec .ad-banner:nth-child(2) {
  position: absolute;
  left: 25px;
  top: 50rem;
  z-index: 1;
}

.hero-section.common_banner_sec .ad-banner:nth-child(3) {
  position: absolute;
  left: unset;
  right: 25px;
  top: 32rem;
  z-index: 1;
}

.hero-section.common_banner_sec .ad-banner:nth-child(4) {
  position: absolute;
  left: unset;
  right: 25px;
  top: 50rem;
  z-index: 1;
}

.latest-section.blog_latest {
  padding-top: 65px;
}

.latest-section.latest_offense {
  padding-top: 65px;
}

.mt-72 {
  margin-top: 72px;
}

.common_banner_heading {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.common_banner_heading h1 {
  color: #fff;
  font-size: 90px;
}

/* Latest Section */
.latest-section {
  padding: 50px 0;
  background-color: var(--light-bg);
  /* max-width: 1550px; */
  margin: 0 auto;
  position: relative;
}

.section-title {
  font-size: 80px;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
  font-family: var(--heading-font);
  letter-spacing: -0.5px;
  font-weight: 400;
}

.section-title.latest-title {
  font-size: 80px;
  font-weight: 400;
  font-family: var(--heading-font);
}

.latest-card {
  border: none;
  border-radius: 0;
  background: transparent;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-card img {
  border-radius: 0;
  width: 100%;
}

.latest-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 15px;
}

.latest-card-title {
  font-family: var(--body-font);
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  color: #111;
}

.latest-card-text {
  font-size: 12px;
  color: #2a2626;
  margin-bottom: 0;
  line-height: 1.3;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.author-info img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.btn-latest {
  border: 1px solid #9fbdda;
  padding: 8px 22px;
  font-size: 13px;
  background: transparent;
  text-transform: none;
  border-radius: 0;
  color: #2b60ab;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s;
}

.btn-latest:hover {
  background-color: #2b60ab;
  color: white;
}

.ad-banner:first-child {
  margin-bottom: 25px;
  position: absolute;
  left: 25px;
  top: 71rem;
  z-index: 1;
}

.ad-banner:nth-child(2) {
  position: absolute;
  left: 25px;
  top: 89rem;
  z-index: 1;
}

.ad-banner:nth-child(3) {
  position: absolute;
  left: unset;
  right: 25px;
  top: 71rem;
  z-index: 1;
}

.ad-banner:nth-child(4) {
  position: absolute;
  left: unset;
  right: 25px;
  top: 89rem;
  z-index: 1;
}

.ad-banner img {
  width: 100%;
  max-width: 129px;
  height: auto;
  object-fit: cover;
}

.ad-banner:nth-child(1) img {
  height: 259px;
}

.ad-banner:nth-child(2) img {
  height: 536px;
}

.ad-banner:nth-child(3) img {
  height: 259px;
}

.ad-banner:nth-child(4) img {
  height: 259px;
}

/* Orange Section */
.orange-section {
  padding-top: 100px;
}

.orange-wrapper {
  background-color: var(--primary-orange);
  padding: 50px 40px;
}

.orange-card {
  text-align: left;
}

.orange-card img {
  width: 100%;
  margin-bottom: 20px;
}

.orange-card-title {
  color: var(--text-light);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.btn-white-outline {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
  padding: 8px 30px;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  border-radius: 0;
  letter-spacing: 0;
  transition: all 0.3s;
}

.btn-white-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-orange);
}

/* Upcoming Section */
.upcoming-section {
  padding: 70px 0;
  background-color: var(--light-bg);
}

.camp-card {
  background: white;
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.camp-card img {
  width: 100%;
}

.camp-card-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.camp-title {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.camp-badges {
  margin-bottom: 15px;
}

.camp-badge {
  color: var(--primary-orange);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 15px;
}

.camp-ages {
  border: 1px solid #9f9f9f;
  width: 102px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.camp-age {
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.camp-footer {
  margin-top: 15px;
}

.btn-register {
  border: 1px solid #ccc;
  background: transparent;
  padding: 5px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: 0;
}

.camp-date-loc {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  justify-content: space-between;
}

.camp-date-loc span {
  font-size: 15px;
  color: #303030;
  font-weight: 500;
}

/* About Section (Info Banner) */
.info_section {
  padding: 50px 0;
}

.info-container {
  margin: 0 auto 60px;
}

.info-content {
  padding: 60px 32px 60px 77px;
  flex: 1;
  min-width: 300px;
  max-width: 728px;
}

.info-title {
  font-size: 80px;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1;
  font-family: var(--heading-font);
  font-weight: 400;
}

.info-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
  max-width: 500px;
}

.btn-info-detail {
  border: 1px solid #2262a6;
  background: transparent;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  color: #2262a6;
  border-radius: 0;
  margin-top: 25px;
}

.btn-info-detail:hover {
  background: #2262a6;
  color: #fff;
}

.info_section .info-banner {
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  min-height: 451px;
}

.info_section .info-gfx-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
}

.info_section .info-gfx-wrapper img {
  height: 471px;
}

/* --- Horizontal Banners --- */
.horizontal-banners {
  background-color: var(--light-bg);
  padding: 0;
  margin: 0;
  margin-top: 30px;
}

@media (max-width:991px) {

  .comment-submit-btn {
    margin: 0;
    justify-content: flex-start;
  }

  .comment-row {
    grid-template-columns: 1fr;
  }

}

/* .horiz-banner {
  width: 100%;
  display: block;
}
.horizontal-banners .horiz-banner:nth-child(1) {
  width: 644px;
}
.horizontal-banners .horiz-banner:nth-child(2) {
  height: 55px;
  width: 498px;
} */

/* Footer */
.footer {
  background-color: #878787;
  padding: 50px 0 0;
  color: white;
  font-size: 0.85rem;
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid white;
  border-radius: 8px;
  /* Soft square outline exactly as requested */
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: white;
  color: var(--text-dark);
}

.footer h5 {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.social-icon {
  margin-bottom: 50px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
  font-size: 16px;
}

.footer ul li a:hover {
  opacity: 1;
}

.contact-info {
  opacity: 0.85;
  line-height: 1.6;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info .footer_email {
  font-size: 16px;
}

.contact-info .footer_phone {
  font-size: 16px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #9a9a9a;
}

.footer-bottom p {
  font-size: 16px;
}

.footer-bottom .copy_text {
  text-align: right;
}

.offense_details_section .article_inr {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.offense_details_section {
  padding-top: 100px;
}

.offense_details_section .main-content {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  padding: 0 0px 40px;
  background: transparent;
}

.offense_details_section .right-sidebar {
  max-width: 418px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Main Content Typography */
.offense_details_section .article-title {
  font-size: 30px;
  color: #2262a6;
  margin-bottom: 5px;
}

.offense_details_section .article-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 20px 0;
}

.offense_details_section .article-author {
  font-size: 15px;
  color: #000;
  margin-bottom: 15px;
}

.offense_details_section .article-intro {
  font-size: 16px;
  color: #221c1c;
  margin-bottom: 20px;
}

/* Hero Image & Overlays */
.offense_details_section .hero-image-container {
  position: relative;
  /* width: 100%; */
  margin-bottom: 30px;
  /* background: #000; */
}

.offense_details_section .hero-image-container img {
  /* opacity: 0.9; */
  height: 354px;
  width: auto;
  /* object-fit: contain; */
}

.offense_details_section .quote-author {
  font-size: 1.2rem;
  font-weight: 400;
}

.offense_details_section .article-body p {
  font-size: 12px;
  color: #444;
  margin-bottom: 20px;

  strong {
    font-weight: normal;
  }
}

/* Right Sidebar Related Cards */

.offense_details_section .related-card>img {
  width: 100%;
  margin-bottom: 15px;
}

.offense_details_section .related-card h3 {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-top: 20px;
}

.offense_details_section .related-card p {
  font-size: 15px;
  color: #1e1e1e;
  margin-bottom: 15px;
  line-height: 1.4;
}

.offense_details_section .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.offense_details_section .author-info .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.offense_details_section .author-info strong {
  font-size: 0.9rem;
}

.offense_details_section .view-details-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2262a6;
  color: #2262a6;
  font-size: 13px;
  font-weight: 500;
  margin-top: 15px;
  text-decoration: none;
  max-width: 139px;
  height: 40px;
}

.offense_details_section .view-details-btn:hover {
  background: #2262a6;
  color: #fff;
}

/* --- Main Content Section --- */
.camp_section {
  padding-top: 70px;
  padding-bottom: 80px;
}

/* --- Schedule Area --- */

.camp_section .schedule-container .table {
  background: #fff;
  padding: 0 30px;
  margin: 0 !important;
}

.camp_section .schedule-container .table tbody {
  padding: 0 20px;
  display: block;
}

.camp_section .schedule-container .table tbody .schedule-row td {
  font-size: 12px;
}

.camp_section .page-title {
  font-family: var(--heading-font);
  font-size: 80px;
  letter-spacing: 1px;
  color: #111;
  line-height: 1;
  margin-bottom: 0;
}

.camp_section .gender-subtitle {
  font-weight: 500;
  font-size: 18px;
  color: #444;
  padding: 15px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 0;
}

.camp_section .right-banners {
  padding-top: 122px;
}

/* Table Architecture */
.camp_section .schedule-table {
  width: 100%;
}

.camp_section .table-header {
  font-weight: 700;
  font-size: 0.8rem;
  color: #000;
  padding: 20px 15px;
  display: flex;
}

.camp_section .table-header th {
  padding-right: 48px;
  font-size: 14px;
}

.camp_section .schedule-row {
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.camp_section .schedule-row:first-child {
  border-top: 1px solid #d9d9d9;
}

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

/* Flex Column Widths */

.camp_section .btn-more-details {
  border: 1px solid #2262a6;
  color: #2262a6;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 139px;
  height: 36px;
}

.camp_section .btn-more-details:hover {
  background: #2262a6;
  color: #fff;
}

/* --- Right Banners --- */
.camp_section .right-banners img {
  width: 100%;
  height: auto;
  border-radius: 0;
  /* Match screenshot completely flat edges */
  display: block;
}

/* --- Main Content Area --- */
.main-content {
  padding-top: 60px;
  background-color: #fff;
}

/* --- Info Section --- */
.info-row {
  margin-bottom: 40px;
}

.info-img-wrapper {
  height: 100%;
}

.info-img {
  width: 100%;
  border-radius: 4px;
}

.custom-list {
  margin-top: 1rem;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #333;
}

.custom-list li i {
  font-size: 1.15rem;
  margin-right: 12px;
  margin-top: -2px;
}

.custom-list li span {
  flex: 1;
}

/* --- Benefits Section (Orange Cards) --- */
.benefits-section {
  padding-top: 2rem;
}

.benefits-desc {
  max-width: 1100px;
}

/* Masonry Column / Orange Card flex column */
.orange-card {
  background-color: var(--primary-orange);
  color: #fff;
  padding: 35px 30px;
  border-radius: 4px;
  /* Optional slight shadow */
  box-shadow: 0 4px 15px rgba(242, 120, 43, 0.1);
}

.orange-card .card-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.orange-card .card-list {
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.orange-card .card-list li {
  margin-bottom: 15px;
}

.orange-card .card-list li:last-child {
  margin-bottom: 0;
}

.orange-card .card-list strong {
  font-weight: 700;
}

.h-full {
  height: 100%;
}

/* --- Coaches Section --- */
.coaches-section .section-title {
  text-align: left;
}

.coach-card {
  background-color: #f9fafe;
  /* very faint gray/blue bg */
  border: 1px solid #e1e4eb;
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.coach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.coach-img-container {
  margin: 0 auto 20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  /* slight shadow under frame */
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.coach-bio {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.coach-bio p {
  margin-bottom: 15px;
}

.coach-bio p:last-child {
  margin-bottom: 0;
}

/* --- Main Content Area --- */
.main-content {
  padding-top: 60px;
  background-color: #fff;
}

/* --- Info Section --- */
.info-row {
  margin-bottom: 40px;
}

.info-img-wrapper {
  height: 100%;
}

.info-img {
  height: 100%;
  max-height: 480px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.custom-list {
  margin-top: 1rem;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #333;
}

.custom-list li i {
  font-size: 1.15rem;
  margin-right: 12px;
  margin-top: -2px;
}

.custom-list li span {
  flex: 1;
}

/* --- Benefits Section (Orange Cards) --- */
.benefits-section {
  padding-top: 2rem;
}

.benefits-desc {
  max-width: 1100px;
}

/* Masonry Column / Orange Card flex column */
.orange-card {
  background-color: var(--primary-orange);
  color: #fff;
  padding: 35px 5px;
  border-radius: 4px;
  /* Optional slight shadow */
  box-shadow: 0 4px 15px rgba(242, 120, 43, 0.1);
}

.orange-card .card-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.orange-card .card-list {
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.orange-card .card-list li {
  margin-bottom: 15px;
}

.orange-card .card-list li:last-child {
  margin-bottom: 0;
}

.orange-card .card-list strong {
  font-weight: 700;
}

.h-full {
  height: 100%;
}

/* --- Coaches Section --- */
.coaches-section .section-title {
  text-align: left;
}

.coach-card {
  background-color: #f9fafe;
  /* very faint gray/blue bg */
  border: 1px solid #e1e4eb;
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.coach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.coach-img-container {
  margin: 0 auto 20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  /* slight shadow under frame */
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.coach-bio {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.coach-bio p {
  margin-bottom: 15px;
}

.coach-bio p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .pl-lg-4 {
    padding-left: 2.5rem !important;
  }
}

/* --- About Page Styles --- */
.about-hero-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80") center 30% / cover no-repeat;
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section-title {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 800;
  color: #111;
  margin-bottom: 1.25rem;
}

.about-main-content .about-list li span {
  font-weight: 500;
  font-size: 15px;
}

.about-main-content .about-list li i {
  color: #f57a20;
}

.about-text {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-text strong {
  color: #000;
  margin-right: 5px;
}

.about-text li::marker {
  color: #000;
}

.spat-letter {
  font-weight: 700;
  color: #000;
}

.about-img {
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.about-main-content {
  padding-top: 100px;
}

.contact-title {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 600;
  color: #111;
}

.contact-subtitle {
  font-size: 12px;
  color: #3d3d3d;
  line-height: 1.6;
}

.form-label {
  font-size: 14px;
  color: #222;
  margin-bottom: 15px;
}

.contact-section .contact-form .btn-submit {
  background: #2262a6;
  color: #fff;
  border: 1px solid #2262a6;
  padding: 10px 46px;
  font-size: 13px;
  border-radius: 0;
  transition: all 0.2s;
}

.contact-section .contact-form .btn-submit:hover {
  background: transparent;
  color: #2262a6;
}

.form-control-custom {
  border: 1px solid #4b4b4b;
  border-radius: 0;
  padding: 14px 15px;
  font-size: 14px;
  background: transparent;
}

.form-control-custom:focus {
  background: transparent;
  box-shadow: none !important;
}

.form-control-custom::placeholder {
  color: #aaa;
}

.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(41, 86, 155, 0.15);
}

.btn-submit:hover {
  background-color: #1e3f75;
  border-color: #1e3f75;
  color: #fff;
}

.map-info {
  color: #111;
}

.map-info span {
  font-size: 15px;
  margin-right: 35px;
}

.z-index-2 {
  z-index: 2;
}

.contact-section {
  padding: 50px 0 100px 0;
}

.contact-page {
  width: 100%;
  padding: 80px 0;
}

.contact-page .contact-grid {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

/* Left side form styling */
.contact-page .form-wrapper {
  flex: 1;
  max-width: 646px;
}

.contact-page .form-title {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.contact-page .form-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-page .form-row {
  display: flex;
  gap: 20px;
}

.contact-page .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.contact-page input,
.contact-page textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #4b4b4b;
  border-radius: 2px;
  background-color: transparent;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.contact-page input:focus,
.contact-page textarea:focus {
  border-color: var(--primary-blue);
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: #999;
}

.contact-page textarea {
  resize: vertical;
}

.contact-page .submit-btn {
  background-color: #2262a6;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 8px 42px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s;
  margin-top: 5px;
  border: 1px solid #2262a6;
  text-decoration: none;
}

.contact-page .submit-btn:hover {
  background-color: transparent;
  color: #2262a6;
}

/* Right side info styling */
.contact-page .info-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-page .logo {
  max-width: 395px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.contact-page .contact-details {
  display: flex;
  gap: 30px;
  justify-content: center;
  font-size: 14px;
  color: #222;
}

.contact-page .contact-item strong {
  font-weight: 700;
  color: #000;
}

/* ── Table ── */
.table-wrapper {
  background: #fff;
  padding: 34px 26px;
}

.camps-table {
  width: 100%;
  border-collapse: collapse;
}

/* Header row */
.camps-table thead th {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a2e;
  padding: 0 10px 14px 10px;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
  vertical-align: top;
}

/* Body rows */
.camps-table tbody tr {
  border-bottom: 1px solid #ebebeb;
  transition: background 0.15s ease;
}

.camps-table tbody tr:last-child {
  border-bottom: none;
}

.camps-table tbody tr:hover {
  background: #f7f9fc;
}

.camps-table tbody td {
  font-size: 12px;
  font-weight: 500;
  color: #2c2c2c;
  padding: 20px 8px;
  vertical-align: middle;
  white-space: nowrap;
}

/* "Only X spots remaining!" badge */
.spots-badge {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
}

/* More Details button */
.btn-details {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1665c0;
  border: 1px solid #1665c0;
  background: transparent;
  padding: 10px 14px 7px;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
}

.btn-details:hover {
  background: #1665c0;
  color: #ffffff;
}

/* Column widths */
.col-date {
  width: 110px;
}

.col-location {
  width: 100px;
}

.col-grade {
  width: 100px;
}

.col-type {
  width: 210px;
}

.col-limit {
  width: 105px;
}

.col-action {
  width: 150px;
}

.col-spots {
  width: auto;
}

/* Responsive scroll on small screens */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.camp h2 {
  font-family: var(--heading-font);
  font-size: 80px;
  font-weight: 400;
}

/* ─────────────────────────────────────────
       CARDS GRID
    ───────────────────────────────────────── */
.cards-grid {
  padding: 18px 40px 0;
}

/* ROW 1: 3 equal columns */
.cards-row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

/* ROW 2: 2 columns */
.cards-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* shared card base */
.c-card {
  padding: 18px 16px;
}

.c-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 11px;
}

.c-card ul {
  list-style-type: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.c-card ul li {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 9px;
  position: relative;
}

/* .c-card ul li::before {
      content: "■";
      font-size: 5px;
      position: absolute;
      left: 0;
      top: 5px;
    } */

.c-card ul li b {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 1px;
}

/* orange */
.c-orange {
  background: #f7941d;
}

.c-orange h3 {
  color: #fff;
}

.c-orange ul li {
  color: rgba(255, 255, 255, 0.88);
}

.c-orange ul li::before {
  color: rgba(255, 255, 255, 0.5);
}

.c-orange ul li b {
  color: #fff;
}

/* white / light */
.c-white {
  background: #fff;
  border: 1px solid #ddd;
}

.c-white h3 {
  color: #111;
}

.c-white ul li {
  color: #444;
}

.c-white ul li::before {
  color: #f7941d;
}

.c-white ul li b {
  color: #111;
}

/* dark */
.c-dark {
  background: #1c1c1c;
}

.c-dark h3 {
  color: #fff;
}

.c-dark ul li {
  color: #aaa;
}

.c-dark ul li::before {
  color: #f7941d;
}

.c-dark ul li b {
  color: #fff;
}

/* ─────────────────────────────────────────
       OUR COACH
    ───────────────────────────────────────── */
.section-coach {
  padding: 36px 40px 56px;
}

.section-coach>h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #111;
  margin-bottom: 22px;
}

.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.coach-card {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 38px 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.coach-card img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  /* margin-bottom: 12px; */
  margin: 0 auto 15px;
}

.coach-card h4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.coach-card p {
  font-size: 11px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

hr.divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 0;
}

.camp h5 {
  font-size: 15px;
}

.intro-text {
  font-size: 12px;
  color: #3d3d3d;
  margin-bottom: 30px;
}

.camp-text {
  font-size: 12px;
}

.camp-row i {
  color: #f57a20;
}

.campDetails h3 {
  font-size: 40px;
}

.c-card h4 {
  color: #fff;
  font-size: 20px;
}

.section-coach h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

@media (max-width: 2560px) {}

@media (max-width: 1920px) {}

@media (max-width: 1660px) {}

@media (max-width: 1530px) {

  .hero-title,
  .dominate-text h2 {
    font-size: 70px;
  }

  .info_section .info-gfx-wrapper img {
    height: 401px;
  }

  .info-content {
    padding: 60px 137px 60px 77px;
  }
}

@media (max-width: 1299px) {
  .info-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
    max-width: 400px;
  }
}

@media (max-width: 991px) {

  .info-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 800px;
  }

}

@media (max-width: 991px) {

  .info-gfx-wrapper {
    display: flex;
    justify-content: center;
  }

  .info-gfx-wrapper img {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 1200px) {
  .hero-player-img {
    bottom: 162px;
    height: 474px;
    width: 778px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 60px;
  }

  .info_section .info-gfx-wrapper img {
    height: 281px;
  }

  .info-title,
  .section-title,
  .section-title.latest-title {
    font-size: 60px;
  }

  .orange-wrapper {
    background-color: var(--primary-orange);
    padding: 0px 30px;
  }

  .orange-section {
    padding-top: 50px;
  }

  .upcoming-section {
    padding: 50px 0;
    background-color: var(--light-bg);
  }

  .hero-player-img {
    bottom: 0px;
    left: 40%;
    transform: translateX(-50%);
    height: 537px;
  }

  .camp h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .common_banner_heading h1 {
    color: #fff;
    font-size: 60px;
  }

  .offense_details_section {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .contact-page .contact-grid {
    gap: 30px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 53px;
  }

  .hero-hoop-img {
    top: 28%;
    height: 200px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin: 0 auto 35px;
  }

  .hero-small-img {
    display: none;
  }

  .hero-player-img {
    bottom: 162px;
    height: 464px;
    width: 100%;
    position: static;
    transform: none;
    text-align: center;
    display: block;
    margin: 25px auto;
  }

  .dominate-text {
    position: static;
    max-width: 595px;
    text-align: center;
    margin: 0 auto;
    float: none;
  }

  .hero-section {
    padding: 150px 0 50px;
  }

  .navbar-toggler {
    border-color: var(--bs-white);
  }

  .navbar-nav {
    background: var(--dark-bg);
    margin-right: 0;
  }

  .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
  }

  .hero-section.common_banner_sec {
    padding: 0;
  }

  .info_section .info-gfx-wrapper {
    position: static;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    margin-top: 30px;
  }

  .info-content {
    text-align: center;
    padding: 42px 0px 0px 14px;
    min-width: 100%;

    .info-text {
      padding-right: 14px;
    }
  }

  .mt-72 {
    margin-top: 0px;
  }

  .latest_offense .pb-5 {
    padding-bottom: 1rem !important;
  }

  .hero-section.common_banner_sec {
    background: transparent;
    min-height: inherit;
    padding-bottom: inherit;

    img {
      object-fit: cover;
      height: 288px;
      width: 100%;
    }
  }

  .common_banner_heading h1 {
    font-size: 50px;
  }

  .offense_details_section .article_inr {
    flex-direction: column;
    flex-wrap: wrap;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
  }



  .about-main-content {
    padding-top: 50px;
  }

  .hero-section.common_banner_sec.blogs {
    img {
      height: 150px;
    }
  }
}

@media (max-width: 320px) {
  .navbar {
    padding-right: 10px;
  }

  .navbar-brand {
    margin-left: 10px;
  }

  /* .navbar-toggler {
    padding: 8px;
    margin-right: 50px;
  } */
  .latest-card {
    margin-bottom: 0px;
  }

  .camp-cards-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contact-page .contact-grid {
    gap: 0 15px;
    flex-direction: column;
  }

  .contact-page {
    width: 100%;
    padding: 30px 0;
  }

  .contact-page .info-wrapper {
    margin-top: 30px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 66px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .info-title,
  .section-title,
  .section-title.latest-title {
    font-size: 46px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .latest-section {
    padding: 30px 0;
  }

  .about-main-content {
    padding-top: 30px;
  }

  .latest-section.latest_offense {
    padding-top: 30px;
  }

  .offense_details_section .main-content {
    padding: 0 0px 30px;
  }

  .latest-card {
    height: calc(100% - 30px);
  }

  .orange-wrapper {
    background-color: var(--primary-orange);
    padding: 10px 38px 42px;
  }

  .orange-card-title {
    margin-bottom: 30px;
  }

  .orange-section {
    padding: 0 !important;

    .mb-5 {
      margin-bottom: 0rem !important;
    }
  }

  .author-info {
    margin-top: 20px !important;
  }

  .orange-card {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 35px 0 0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(242, 120, 43, 0.1);
  }

  .info_section {
    padding: 30px 0;
  }

  .info_section {
    padding-top: 0;
  }

  .horizontal-banners .col-3 {
    display: none;
  }

  .horizontal-banners .col-9 {
    flex: 0 0 auto;
    width: 100%;
  }

  .info-container {
    margin: 0 auto 0px;
  }

  .footer {
    background-color: #878787;
    padding: 50px 0 0;
    color: white;
    font-size: 16px;
    text-align: center;
  }

  .footer-logo-wrapper {
    margin: 0 auto;
  }

  .offense_details_section {
    padding-top: 30px;
  }

  .camp h2 {
    font-size: 50px;
  }

  .about-section-title {
    font-size: 13px;
    margin-bottom: 0.9rem;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .about-main-content .about-list li span {
    font-weight: 500;
    font-size: 13px;
  }

  .contact-section {
    padding: 0 0 30px 0;
  }

  .contact-title {
    font-size: 18px;
    margin-bottom: 0.4rem !important;
  }

  .form-label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .latest-section.blog_latest {
    padding-top: 30px;
  }
}

@media (max-width: 667px) {
  .contact-page .contact-details {
    flex-direction: column;
    gap: 15px;
  }

  .hero-player-img {
    height: 255px;
    margin: 50px 0;
    text-align: left;
    width: auto;
  }

  .btn-custom {
    padding: 10px 25px;
    font-size: 12px;
  }

  .dominate-text p {
    font-size: 15px;
    opacity: 0.9;
  }

  .hero-hoop-img {
    top: 42%;
    height: 177px;
  }

  .contact-page .form-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .hero-hoop-img {
    position: absolute;
    right: 0;
    top: 41%;
    height: 130px;
    z-index: 1;
    opacity: 0.9;
  }

  .contact-page .form-row {
    flex-direction: column;
    gap: 10px 20px;
  }

  .contact-page .form-desc {
    margin-bottom: 15px;
  }

  .footer-bottom .copy_text {
    text-align: center;
  }

  .footer-bottom {
    margin-top: 45px;
    padding: 30px 0 10px;
    font-size: 14px;
    opacity: 1;
  }

  .col-sm-1 {
    display: none;
  }

  .latest-section {
    padding: 30px 0 0;
  }

  .info-title,
  .section-title,
  .section-title.latest-title {
    font-size: 38px;
  }

  .upcoming-section {
    padding: 30px 0;
    background-color: var(--light-bg);

    .mt-5 {
      margin-top: 0rem !important;
    }

    .camp-card {
      height: calc(100% - 20px);
    }
  }

  .offense_details_section .article-title {
    font-size: 15px;
  }

  .offense_details_section .article-meta {
    margin: 0 0 8px 0;
  }

  .offense_details_section .article-intro {
    margin-bottom: 8px;
  }

  .offense_details_section .article-author {
    margin-bottom: 8px;
  }

  .offense_details_section .hero-image-container {
    margin-bottom: 15px;
  }

  .camp h2 {
    font-size: 40px;
  }

  .camps-table thead th {
    font-size: 12px;
  }

  .camp p {
    font-size: 12px !important;
  }
}

@media (max-width: 479px) {
  .footer {
    padding: 30px 0 0;
    color: white;
    font-size: 14px;
  }

  .footer ul li a {
    font-size: 14px;
  }

  .contact-info .footer_email {
    font-size: 14px;
  }

  .social-icon {
    margin-bottom: 30px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 40px;
  }

  .hero-section {
    min-height: 806px;
  }

  .info_section .info-gfx-wrapper img {
    height: 200px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 46px;
  }

  .hero-player-img {
    height: 200px;
    margin: 60px 0 30px;
    text-align: left;
    width: auto;
  }

  .camp h2 {
    font-size: 30px;
  }

  .hero-player-img {
    height: 200px;
    margin: 15px 0;
    text-align: left;
    width: auto;
  }

  .hero-hoop-img {
    top: 41%;
    height: 100px;
  }

  .dominate-text p {
    font-size: 14px;
    opacity: 0.9;
  }

  .hero-subtitle {
    margin: 0 auto 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 0;
    color: white;
    font-size: 14px;
  }

  .footer ul li a {
    font-size: 14px;
  }

  .contact-info .footer_email {
    font-size: 14px;
  }

  .social-icon {
    margin-bottom: 30px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 40px;
  }

  .hero-section {
    min-height: 806px;
  }

  .info_section .info-gfx-wrapper img {
    height: 200px;
  }

  .hero-title,
  .dominate-text h2 {
    font-size: 46px;
  }

  .hero-player-img {
    height: 200px;
    margin: 60px 0 30px;
    text-align: left;
    width: auto;
  }

  .camp h2 {
    font-size: 30px;
  }

  .hero-player-img {
    height: 200px;
    margin: 15px 0;
    text-align: left;
    width: auto;
  }

  .hero-hoop-img {
    top: 41%;
    height: 100px;
  }

  .dominate-text p {
    font-size: 14px;
    opacity: 0.9;
  }

  .hero-subtitle {
    margin: 0 auto 15px;
  }

  .hero-section.common_banner_sec {
    img {

      object-position: -218px;
    }
  }
}

@media (max-width: 991px) {

  .offense_details_section {
    text-align: center;
  }

  .article-title,
  .article-intro,
  .main-content p,
  .main-content h4,
  .main-content ul,
  .main-content li {
    text-align: center;
  }

  .main-content ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .hero-image-container img {
    margin: 0 auto;
    display: block;
  }

  .right-sidebar {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }

  .related-card {
    text-align: center;
    height: 100%;
  }

  .author-info {
    justify-content: center;
  }

  .view-details-btn {
    margin: 0 auto;
    display: inline-flex;
  }

  .side-ads {
    text-align: center;
  }

}

@media (max-width: 575px) {

  .right-sidebar .col-md-6 {
    width: 100%;
  }

}

@media (max-width: 991px) {

  .right-sidebar {
    max-width: 900px;
    margin: 40px auto 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .offense_details_section .main-content {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    padding: 0 0px 0px;
    background: transparent;
  }

  .offense_details_section .related-card h3 {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {

  .right-sidebar .row {
    justify-content: center;
  }


}


.social-share-section {
  padding: 0px 9px 23px;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-circle {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.social-circle i {
  color: #fff;
  font-size: 38px;
}

.like-btn {
  background: #4257b2;
}

.love-btn {
  background: #ff1d25;
}

.comment-btn {
  background: #7ac143;
}

.share-btn {
  background: #27aae1;
}

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

@media(max-width:991px) {

  .social-actions {
    justify-content: center;
  }

}

@media(max-width:575px) {

  .social-actions {
    gap: 18px;
  }

  .social-circle {
    width: 48px;
    height: 48px;
  }

  .social-circle i {
    font-size: 30px;
  }

}






.blog-meta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.meta-dot {
  width: 10px;
  height: 10px;
  background: #743176;
  border-radius: 50%;
  display: inline-block;
}

.meta-item {
  border: 0;
  background: transparent;
  text-decoration: none;
  color: #313b44;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.meta-item i {
  font-size: 18px;
  color: #244767;
}

.share-meta-btn {
  padding: 0;
}

.comment-form-box {
  /* background: #f1f5ff; */
  border-radius: 6px;
  /* padding: 32px 36px 46px; */
  margin-top: 20px;
}

.comment-form-box h3 {
  color: #1c1b1ceb;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 13px;
}

.comment-form-box p {
  color: #012c56;
  font-size: 14px;
  margin-bottom: 28px;
}

.comment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
}

.comment-input-wrap {
  position: relative;
}

.comment-input-wrap.full {
  margin-bottom: 22px;
}

.comment-input-wrap input,
.comment-input-wrap textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #fff;
  border-radius: 7px;
  padding: 20px 52px 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.comment-input-wrap textarea {
  height: 130px;
  resize: vertical;
}

.comment-input-wrap i {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #743176;
  font-size: 14px;
}

.comment-submit-btn {
  background: #2262a6;
  color: #fff;
  border: 1px solid #2262a6;
  padding: 10px 19px;
  font-size: 13px;
  border-radius: 0;
  transition: all 0.2s;
  width: 43%;
}

.comment-submit-btn:hover {
  background: transparent;
  color: #2262a6;
}

@media(max-width:767px) {
  .comment-row {
    grid-template-columns: 1fr;

  }

  .comment-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    /* max-width: 194px; */
    width: 160px;
  }

  .comment-form-box {
    padding: 0px 20px;
  }

  .meta-item {
    font-size: 16px;
  }
}


.meta-item:hover {
  color: #743176;
  transform: translateY(-2px);
}

.meta-item:hover i {
  transform: scale(1.2);
}

/* Like Hover */
.meta-item:hover .fa-thumbs-up {
  color: #1877f2;
}

/* Comment Hover */
.meta-item:hover .fa-comment-dots {
  color: #7ac143;
}

/* Share Hover */
.meta-item:hover .fa-share-nodes {
  color: #27aae1;
}

/* Smooth Underline Effect */
.meta-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #743176;
  transition: 0.3s ease;
}

.meta-item:hover::after {
  width: 100%;
}

@media(max-width:575px) {

  .blog-meta-actions {
    gap: 14px;
  }

  .meta-item {
    font-size: 16px;
  }

}


@media (max-width: 991px) {

  .blog-comment-section {
    text-align: center;
  }

  .blog-meta-actions {
    justify-content: center;
  }

  .comment-form-box {
    text-align: center;
  }

  .comment-form-box p {
    margin-left: auto;
    margin-right: auto;
  }



  .comment-input-wrap input,
  .comment-input-wrap textarea {
    text-align: center;
  }

  .comment-input-wrap i {
    right: 18px;
  }

}


.text-phase-blue {
  color: #2262A6;
}