/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #d90b0b;
  --secondary-red: #ce1b28;
  --dark-red: #c80000;
  --bg-red: #e03333;
  --text-dark: #0b0b0b;
  --text-muted: #4b4b4b;
  --lavender: #e9c8e9;
  --lime: #cfee7a;
  --hero-height: 460px;
  --overlay-bg: rgba(60, 60, 60, 0.68);
}

.sm-data{
    display:none;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: #f8f8f8;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
  text-align: right;
}

.top-bar a {
  color: var(--text-dark);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--primary-red);
}

.header-middle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.header-middle a {
  color: var(--text-dark);
  text-decoration: none;
}

.header-middle a:hover {
  color: var(--primary-red);
}

.main-header {
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
}

.free-assessment {
  padding: 12px 30px;
  color: #fff !important;
  font-size: 16px !important;
  background: linear-gradient(to right, #f40000, #9e0000);
  border: 2px solid;
  border-color: #c80101;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 10px 5px;
  font-family: "Montserrat", sans-serif;
}

.free-assessment:hover {
  background: linear-gradient(to right, #e60000, #8e0000);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 0, 0, 0.3);
}

.assessment-dropdown {
  position: relative;
  display: inline-block;
}

.assessment-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  border-radius: 5px;
}

.assessment-dropdown:hover .assessment-menu {
  opacity: 1;
  visibility: visible;
}

.assessment-menu li {
  list-style: none;
}

.assessment-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.assessment-menu a:hover {
  background: #f8f8f8;
  color: var(--primary-red);
}

.assessment-menu li:last-child a {
  border-bottom: none;
}

/* Navigation */
.navigation {
  background: linear-gradient(to right, #f40000, #9e0000);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 15px 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.nav-menu > li:hover > a {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.dropdown a:hover {
  background: #f8f8f8;
  color: var(--primary-red);
}

.dropdown li:last-child a {
  border-bottom: none;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #bdc3c7;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p,
.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-red);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 980px) {
  .header-content {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  

  .header-middle {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .logo img {
    height: 60px;
  }

  .header-content > div:last-child {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .header-content > div:last-child img {
    height: 60px !important;
  }

  .assessment-dropdown {
    width: 100%;
    text-align: center;
  }

  .free-assessment {
    display: block;
    width: 100%;
    text-align: center;
  }

  .assessment-menu {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 30px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1001;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .navigation {
    position: relative;
  }

  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px 0;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu > li > a {
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 0;
  }

  .nav-menu > li:hover > a {
    background: #f8f8f8;
    color: var(--primary-red);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: #f8f8f8;
    display: none;
    padding: 0;
  }

  .nav-menu > li.active .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 12px 30px;
    font-size: 14px;
  }

  .nav-menu > li > a::after {
    content: '+';
    float: right;
    font-size: 20px;
    font-weight: normal;
  }

  .nav-menu > li.active > a::after {
    content: '−';
  }

  .nav-menu > li:not(:has(.dropdown)) > a::after {
    content: '';
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-header .container {
      width:100% !important;
  }
}

@media (max-width: 640px) {
    .sm-data{
        display:block;
    }
  .main-header {
    padding: 15px 0;
  }
  html{
      overflow-x:hidden !important;
  }
  
  .page-header .container {
      width:100% !important;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .logo img {
    height: 70px;
  }

  .header-middle {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-middle a {
    padding: 5px;
  }

  .header-content > div:last-child {
    width: 100%;
    justify-content: center;
  }

  .header-content > div:last-child img {
    height: 50px !important;
  }

  .free-assessment {
    font-size: 14px !important;
    padding: 10px 20px;
  }

  .mobile-menu-toggle {
    top: 20px;
    right: 15px;
  }

  .mobile-menu-toggle.active {
    top: 15px;
    right: 15px;
  }

  .nav-menu {
    width: 85%;
    padding-top: 70px;
  }

  .nav-menu > li > a {
    padding: 12px 15px;
    font-size: 14px;
  }

  .dropdown a {
    padding: 10px 25px;
    font-size: 13px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   PAGE HEADER STYLES
   =========================== */

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("../images/header-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: white;
  position: relative;
}

.page-header .container {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
}

/* Banner Content Layout - Exact Reference Match */
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.banner-left {
  flex: 1;
}

.banner-left h1 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.banner-center {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 40px;
}

.center-top {
  display: flex;
  justify-content: center;
}

.center-bottom {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.banner-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-header h1 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.banner-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #ce1b28;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 16px;
}

.banner-button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===========================
   CONTENT LAYOUT
   =========================== */

/* Content Layout */
.content-wrapper {
  display: flex;
  gap: 40px;
  /* max-width: 1200px; */
  max-width: 90vw;
  margin: 40px auto;
  padding: 0 20px;
}

.main-content {
  /* flex: 1;
    max-width: 850px; */
  max-width: 70%;
}

/* ===========================
   CONTENT SECTIONS
   =========================== */

/* Content Sections */
.content-section {
  margin-bottom: 40px;
  /* padding: 30px; */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section h3 {
  color: #c70000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  margin-top: 5px;
}

.content-section p {
  /* line-height: 1.8; */
  color: #4b4b4b;
  margin-bottom: 15px;
  /* margin-top: 2px; */
}

.content-section strong {
  color: #2c3e50;
  font-weight: 600;
}

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

/* Form Button */
.form-button {
  display: inline-block;
  background: linear-gradient(to right, #f40000, #9e0000);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  margin: 20px 0;
}

.form-button:hover {
  background: linear-gradient(to right, #d90000, #800000);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 0, 0, 0.3);
}

/* ===========================
   LISTS
   =========================== */

/* Inner List */
.innerlist {
  list-style: revert-layer;
}

.innerlist li {
  /* padding: 5px; */
  position: relative;
  line-height: 1.8;
  color: #4b4b4b;
}

/* Points List (Numbered) */
.points-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.points-list li {
  margin: 8px 0;
  font-weight: 600;
}

/* ===========================
   TEXT STYLES
   =========================== */

/* Highlighted Text */
.visitor-red {
  color: #c70000;
  font-weight: 600;
}

/* Regular Text */
.regular-text {
  color: #000;
  font-weight: normal;
  line-height: 1.8;
}

/* ===========================
   SIDEBAR
   =========================== */

.sidebar {
  /* width: 300px; */
  width: 25%;
  /* flex-shrink: 0; */
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border: 1px solid #db0000;
  border-radius: 35px 10px;
  box-shadow: 0px 0px 3px #333;
  margin-bottom: 30px;
}

/* Specific styling for navigation menu widget - exact reference match */
.sidebar.sticky.right #nav_menu-2 {
  border: 1px solid #db0000;
  border-radius: 35px 10px;
  box-shadow: 0px 0px 3px #333;
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
}

/* Additional WordPress-style classes */
.col.col-md-3.col-xs-12.default-style.sidebar.sticky.right.widgets_holder {
  width: 30%;
  position: sticky;
  top: 20px;
  height: fit-content;
}

/* Additional sidebar widget styling to match reference */
.widget_nav_menu {
  background: #fff;
  padding: 25px;
}

.widget_nav_menu h5 {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ce1b28;
  font-family: "Montserrat", sans-serif;
}

/* Remove border from image widget - exact reference match */
#media_image-2.widget_media_image {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 20px;
}

.widget_media_image img.sidebar-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.menu-useful-links-container ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-useful-links-container ul.menu li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.menu-useful-links-container ul.menu li:last-child {
  border-bottom: none;
}

.menu-useful-links-container ul.menu li a {
  color: #4b4b4b;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: block;
}

.menu-useful-links-container ul.menu li a:hover {
  color: #ce1b28;
  padding-left: 5px;
}

.sidebar-widget h5 {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ce1b28;
  font-family: "Montserrat", sans-serif;
}

.sidebar-image {
  width: 100%;
  height: auto;
  border-radius: 35px 10px;
  margin-bottom: 20px;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget a {
  color: #4b4b4b;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: block;
}

.sidebar-widget a:hover {
  color: #ce1b28;
  padding-left: 5px;
}

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

.cta-section {
  background: linear-gradient(to right, #f40000, #9e0000);
  color: white;
  padding: 21px;
  border-radius: 8px;
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-section h4 {
  font-size: 28px;
  margin: 0;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #ce1b28;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ===========================
   IMAGE LAYOUTS
   =========================== */

/* Content with Image Layout */
.content-with-image {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.content-text {
  flex: 1;
}

.content-image {
  float: right;
  margin: 0 0 20px 20px;
  width: 55%;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
}

/* ===========================
   RESPONSIVE DESIGN - PAGE SPECIFIC
   =========================== */

@media (max-width: 980px) {
  .content-wrapper {
    flex-direction: column;
    padding: 0;
  }

  .main-content,
  .sidebar {
    width: 100%;
    max-width: unset;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .content-with-image {
    flex-direction: column;
  }

  .content-image {
    flex: none;
    order: -1;
    width: 100%;
    margin: 0 0 20px 0;
    float: none;
  }

  .page-header .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-header h1 {
    font-size: 28px;
  }

  .content-section {
    padding: 20px;
  }

  .sidebar-widget {
    padding: 20px;
  }
}

.anchor_link {
  color: #ce1b28;
  font-weight: 600;
}

/* ===========================
   PAGE-SPECIFIC COMPONENTS
   =========================== */

/* School/Education Related Components */
.school-comparison {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
}

.school-type {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.school-type:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.school-type-title {
  color: #ce1b28;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.age-grade-table {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.grade-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  border-bottom: 1px solid #f0f0f0;
}

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

.grade-row:nth-child(even) {
  background-color: #f8f9fa;
}

/* Inside List - for numbered/ordered content */
.inside-list {
  list-style-position: inside;
  padding-left: 0;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

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

/* Red Button - Call-to-action style */
.red-button {
  background: linear-gradient(to bottom, #ff0000, #b30000);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 23px;
  transition: 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.red-button:hover {
  background: linear-gradient(to bottom, #e60000, #990000);
  text-decoration: underline;
}

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

/* Super Visa Specific Components */
.super-visa-image {
  float: right;
  margin: 0 0 20px 20px;
  width: 54%;
}

.super-visa-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Requirement List - with checkmarks */
.requirement-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.requirement-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  line-height: 1.8;
  color: #4b4b4b;
  border-bottom: 1px solid #e0e0e0;
}

.requirement-list li:last-child {
  border-bottom: none;
}

.requirement-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ce1b28;
  font-weight: bold;
  font-size: 20px;
}

/* Button Group */
.button-group {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* Outline Button */
.outline-button {
  display: inline-block;
  background: transparent;
  color: #ce1b28;
  padding: 12px 30px;
  border-radius: 5px;
  border: 2px solid #ce1b28;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.outline-button:hover {
  background: #ce1b28;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(206, 27, 40, 0.3);
}

/* Highlight Box */
.highlight-box {
  background: #fef5f5;
  border-left: 4px solid #ce1b28;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
  color: #ce1b28;
  margin-bottom: 10px;
  font-size: 18px;
}

/* ===========================
   RESPONSIVE DESIGN - COMPONENT SPECIFIC
   =========================== */

@media (max-width: 980px) {
  .super-visa-image {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }

  .button-group {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .grade-row {
    flex-direction: column;
    gap: 5px;
  }

  .red-button {
    font-size: 18px;
    padding: 10px 20px;
  }
}

.color-sds {
  color: #ff0008 !important;
  font-weight: 600 !important;
}
.em_mt {
  margin-top: 10px;
}
.php-mt {
  margin-top: 10px !important;
}
.btn_click {
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff;
  border-radius: 90px;
  padding: 5px;
  text-decoration: none;
}

/* ===========================
   EXPRESS ENTRY PAGE STYLES
   =========================== */

.button-links-section {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.quick-tools-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.tool-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.noc_div,
.job_div,
.clv_chart_div {
  margin-bottom: 10px;
}

.noc_div a,
.job_div a,
.clv_chart_div a {
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.noc_div a:hover,
.job_div a:hover,
.clv_chart_div a:hover {
  background: linear-gradient(to right, #d90000, #8e0000);
  transform: translateY(-2px);
}

.butt-can {
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.butt-can:hover {
  background: linear-gradient(to right, #d90000, #8e0000);
  transform: translateY(-2px);
}

.form-button {
  background: linear-gradient(to right, #28a745, #20873a);
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 5px 0;
}

.form-button:hover {
  background: linear-gradient(to right, #218838, #1c7430);
  transform: translateY(-2px);
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 5px;
}

.requirements-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.requirements-list li:last-child {
  border-bottom: none;
}

.visitor-red {
  color: #d90b0b;
  text-decoration: none;
}

.visitor-red:hover {
  color: #b50909;
  text-decoration: underline;
}

.crs-points-list {
  list-style: disc;
  padding: 0;
  margin: 20px 0;
}

.crs-points-list li {
  padding: 10px 15px;
  margin: 10px 0;
  background: #f8f9fa;
  border-radius: 4px;
}

.noc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 30px; */
  /* margin: 30px 0; */
}

.noc-column,
.job-bank-column {
  /* padding: 20px;
  background: #fff;
  border: 1px solid #e9ecef;
  /* border-radius: 8px; */
}

.ul-button {
  list-style: none;
  padding: 0;
}

.ul-button li {
  /* margin: 15px 0; */
  /* padding: 15px; */
  background: #f8f9fa;
  border-radius: 8px;
}

.ul-button li strong {
  color: #333333;
}

.ul-button a {
  color: #007bff;
  text-decoration: none;
}

.ul-button a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.job-bank-column ul {
  list-style: none;
  padding: 0;
}

.job-bank-column ul li {
  /* padding: 8px 0; */
  border-bottom: 1px solid #eee;
}

.job-bank-column ul li:last-child {
  border-bottom: none;
}

.section-title {
  color: #d90b0b;
  margin: 30px 0 20px 0;
  font-size: 24px;
  font-weight: 600;
}

/* Responsive styles for Express Entry */
@media (max-width: 768px) {
  .quick-tools-row,
  .noc-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-column {
    text-align: center;
  }
}
.form-button.new {
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 5px 0;
}
.btn__new {
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff !important;
  text-decoration: none;
  border-radius: 90px;
  padding: 5px;
}
.lang_h5 {
  font-size: 18px;
  margin-bottom: 20px;
}
.form__btn {
  display: flex;
}
p,
ul li {
  /* list-style: disc; */
  line-height: 27px;
}
.find_noc_li {
  list-style: disc;
}
.cta-banner {
  background-color: #c00; /* Red background */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.cta-text {
  font-size: 26px;
  font-weight: bold;
}

.cta-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 20px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: "Montserrat";
}

.cta-btn:hover {
  background-color: #fff;
  color: #c00;
}
.info-box {
  border: 1px solid #ff1010;
  height: 135px;
  padding: 11px;
  width: 100%;
}
.cta-section.owner {
  font-family: "Montserrat";
  font-size: 18px;
}
.info_srvc {
  list-style: none;
}
.h5_srvc {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 5px;
}
.h1_esdc {
  font-family: "Montserrat";
  font-size: 38px;
  font-weight: 700;
  color: #000;
  margin-top: 40px;
  margin-bottom: 20px;
}
.fewthing_h3 {
  font-family: "Montserrat";
  font-size: 32px;
  font-weight: 700;
  color: #000 !important;
  margin-top: 40px;
  margin-bottom: 20px;
}
.fewthing__h3 {
  font-family: "Montserrat";
  font-size: 32px !important;
  font-weight: 700;
  color: #000 !important;
  margin-top: 40px;
  margin-bottom: 20px;
}
.info-box.srvcs {
  height: 90px;
}
.innerlist {
  list-style-position: inside;
  line-height: 1.6em;
  color: #333;
  padding-left: 0;
  margin-top: 5px;
}
ol.custom-list {
  font-size: 1em;
  line-height: 1.6em;
  margin-left: 20px;
}

ol.custom-list li {
  margin-bottom: 12px;
}
.few_things_p{
  font-family: "Montserrat";
  font-size: 26px;
  font-weight: 700;
}
.innerlist {
    list-style-position: inside; 
    font-size: 1em;
    line-height: 1.6em;
    color: #333;
    padding-left: 0;  
    margin: 0;       
}
.intra_h2{
  font-size: 32px;
}
.self_emp_p{
  margin-top: 10px;
}
.self_emp{
  list-style: disc;
}
.innerlist.emp {
    font-size: 1em;
    color: #333;
    line-height: 1.6em;
    list-style-position: inside; 
    list-style-type: disc;       
    margin-left: 0;              
    padding-left: 0;
    margin-bottom: 0px !important;
}
ol.custom-list.emp{
  margin-bottom: 5px !important;
}
.emp_ul{
  list-style: disc;
  margin-bottom: 0px !important;
}
.ul_self{
  padding-left: 20px;
}
.h3_selfemp{
  color: #ce1b28;
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat";
}

/* ===========================
   FLOATING BUTTON (EXACT REFERENCE MATCH)
   =========================== */
.floating-services-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #b91c1c;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: none;
}

.floating-services-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185, 28, 28, 0.6);
}

/* ===========================
   POINTS TABLE STYLING
   =========================== */
.points-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.points-table td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.points-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.points-table tr:last-child {
  font-weight: bold;
  background-color: #dc3545;
  color: white;
}

.points-table tr:last-child td {
  border-color: #dc3545;
}

/* ===========================
   ENHANCED FORM BUTTON (EXACT REFERENCE MATCH)
   =========================== */
.form-button {
  padding: 12px 30px;
  color: #fff !important;
  font-size: 23px !important;
  background: linear-gradient(to right, #f40000, #9e0000);
  border: 2px solid;
  border-color: #c80101;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 10px 5px;
  font-family: "Montserrat", sans-serif;
}

.form-button:hover {
  background: linear-gradient(to right, #e60000, #8e0000);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 0, 0, 0.3);
}

/* Form button variations - Exact Reference Match */
.form-button.new {
  font-size: 18px !important;
  padding: 12px 25px;
}

.form-button.large {
  font-size: 16px !important;
  padding: 12px 24px;
  min-width: 220px;
  text-align: center;
}

.free-assessment.small {
  font-size: 14px !important;
  padding: 10px 16px;
  min-width: 120px;
  text-align: center;
  margin: 2px 0;
}

/* Responsive form button styles */
@media only screen and (min-width: 768px) {
  #button-links .wpb_wrapper p .form-button {
    font-size: 18px !important;
    border-color: #c80101;
    padding: 10px 15px;
  }
  
  .sm-data{
      margin-top:-100px !important;
  }
  
  .free-assessment {
    font-size: 15px !important;
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .extra .wpb_wrapper p .form-button {
    font-size: 17px !important;
    border-color: #c80101;
    padding: 9px 15px;
  }
  .content-section {
      margin-bottom:0px !important;
  }
}

/* ===========================
   READMORE LINKS STYLING
   =========================== */
.readmore {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
  border-radius: 0 8px 8px 0;
}

.readmore a {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
}

.readmore a:hover {
  text-decoration: underline;
}

/* ===========================
   PROVINCE CARDS GRID (PNP PAGE)
   =========================== */
.provinces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.province-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.province-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #ce1b28;
}

.province-card.special {
  border: 2px solid #ce1b28;
  background: linear-gradient(135deg, #fff 0%, #fef5f5 100%);
}

.province-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.province-card h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  font-family: 'Montserrat', sans-serif;
}

.province-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.province-link {
  display: inline-block;
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
}

.province-link:hover {
  background: linear-gradient(to right, #d90000, #8e0000);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 0, 0, 0.3);
}

/* Responsive adjustments for province cards */
@media (max-width: 768px) {
  .provinces-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .province-card {
    padding: 15px;
  }
  
  .province-image {
    height: 100px;
  }
}

/* ===========================
   PROVINCE SECTIONS (ORIGINAL LAYOUT)
   =========================== */
.province-section {
  margin: 15px 0;
  padding: 10px;
  text-align: center;
}

.province-section img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.province-section h5 {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
  font-family: 'Montserrat', sans-serif;
}

.province-section p {
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.province-section a {
  color: #ce1b28;
  text-decoration: none;
  font-weight: 500;
}

.province-section a:hover {
  text-decoration: underline;
}

.page-header .container{
  justify-content: space-between !important;
  align-items: center !important;
  width: 1408px;
}

.find_noc_li{
  background-color: transparent !important;
 
}

.btn__new{
   margin-left: 15px !important;
}

.btn__new:hover{
   margin-left: 15px !important;
   text-decoration: none !important;
}

/* .regular-text a{
  background: linear-gradient(to right, #f40000, #9e0000);
  color: #fff !important;
  text-decoration: none;
  border-radius: 90px;
  padding: 5px;
} */

html{
    overflow-x:hidden !Important;
}

