:root {
  --MAIN-BACKGROUND-COLOR: #1F1F1F;
  --ACCENT-COLOR: #F4A919;
  --LINK-COLOR: #fff;
  --HEADING-FONT: 'Crimson Text', serif;
  --MAIN-COLOR: #f16821;
  --FOOTER-BACKGROUND-COLOR: #1F1F1F;
  --FOOTER-TEXT-COLOR: #fff;
  --BORDER-COLOR: #333;
  --HIGHLIGHT-COLOR: #F4A919;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 80px;
}

h1 {
  font-family: var(--HEADING-FONT);
}

a {
  text-decoration: none;
}

/* Top Navigation Styles */
.top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--MAIN-BACKGROUND-COLOR);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.top-navigation .logo a {
    color: var(--LINK-COLOR);
}

.top-navigation .logo a h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: var(--LINK-COLOR);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--LINK-COLOR);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

.main-nav ul li a:hover,
.main-nav ul li.current a {
    background: var(--ACCENT-COLOR);
    color: var(--MAIN-BACKGROUND-COLOR);
}

/* Hero Section Styles */
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.site-blocks-cover, .site-blocks-cover .row {
  min-height: 600px;
  height: calc(100vh);
}
.site-blocks-cover.overlay {
  position: relative;
}
.site-blocks-cover.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}
.site-blocks-cover h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 991.98px) {
  .site-blocks-cover h1 {
    font-size: 2rem;
  }
}
.site-blocks-cover p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Button styles */
.btn {
  text-transform: uppercase;
  letter-spacing: .2em;
  border-radius: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.btn.btn-primary {
  background-color: var(--MAIN-COLOR);
  border-color: var(--MAIN-COLOR);
  color: #fff;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.text-white {
  color: #fff !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}

/* Bootstrap-like grid system */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-md-8 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-center {
  justify-content: center !important;
}
.text-center {
  text-align: center !important;
}

@media (max-width: 767.98px) {
  .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Footer Styles */
.footer {
	background: var(--FOOTER-BACKGROUND-COLOR);
	color: var(--FOOTER-TEXT-COLOR);
}
.footer_bar {
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--BORDER-COLOR);
}
.footer_logo a {
	color: var(--LINK-COLOR);
	font-size: 24px;
	font-weight: 700;
}
.footer_logo a span {
	color: var(--HIGHLIGHT-COLOR);
}
.footer_nav ul li a {
	color: var(--LINK-COLOR);
	margin-right: 30px;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer_nav ul li a:hover {
	color: var(--HIGHLIGHT-COLOR);
}

.footer_contact {
    margin-left: auto;
}

.footer_contact .contact-info p {
    color: var(--LINK-COLOR);
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer_contact .contact-info strong {
    color: var(--HIGHLIGHT-COLOR);
}

.footer_extra {
	padding-top: 20px;
	padding-bottom: 20px;
}
.copyright {
	color: var(--FOOTER-TEXT-COLOR);
}

/* Bootstrap-like flex classes */
.d-flex {
  display: flex !important;
}
.flex-lg-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-md-row {
  flex-direction: row !important;
}
.align-items-lg-center {
  align-items: center !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-md-center {
  align-items: center !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.order-lg-1 {
  order: 1 !important;
}
.order-lg-2 {
  order: 2 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.ml-lg-auto {
  margin-left: auto !important;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.footer_nav ul, .footer_nav_2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_nav ul li, .footer_nav_2 ul li {
  margin-bottom: 10px;
}

@media (max-width: 991.98px) {
  .flex-lg-row {
    flex-direction: column !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .align-items-lg-center {
    align-items: flex-start !important;
  }
  .ml-lg-auto {
    margin-left: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .flex-md-row {
    flex-direction: column !important;
  }
  .align-items-md-center {
    align-items: flex-start !important;
  }
}

/* ABOUT/TEXT+IMAGE SECTION STYLES */
.about_info_area {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .about_info_area {
    padding: 50px 0;
  }
}

.about_info_area.plus_padding {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .about_info_area.plus_padding {
    padding: 50px 0;
  }
}

.about_info_area .about_text h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 20px;
  color: #001D38;
}

@media (max-width: 767px) {
  .about_info_area .about_text h3 {
    font-size: 28px;
    line-height: 38px;
  }
}

.about_info_area .about_text p {
  font-size: 16px;
  line-height: 28px;
  color: #4D4D4D;
  margin-bottom: 15px;
}

.about_info_area .about_thumb img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .about_info_area .about_thumb {
    margin-bottom: 30px;
  }
}

.boxed-btn3-line {
  background: transparent;
  color: var(--MAIN-COLOR);
  display: inline-block;
  padding: 13px 38px;
  font-weight: 500;
  border: 1px solid var(--MAIN-COLOR);
  border-radius: 5px;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 20px;
}

.boxed-btn3-line:hover {
  background: var(--MAIN-COLOR);
  color: #fff;
}

/* SERVICES SECTION STYLES */
.services-section-wrapper {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section-wrapper h2 {
    font-size: 2.5rem;
    color: var(--MAIN-BACKGROUND-COLOR);
    margin-bottom: 15px;
    font-weight: 600;
}

.services-section-wrapper > .container > .row:first-child p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
}

/* SIMPLE CARDS STYLES */
.services {
    margin-bottom: 30px;
    padding: 2em 1.5em;
    box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
    border-bottom: 2px solid #2c98f0;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.services:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 60px -8px rgba(0, 0, 0, 0.25);
}

.services .icon2 {
    display: block;
    margin-bottom: 20px;
}

.services .icon2 i {
    font-size: 40px;
    color: #2c98f0;
}

.services h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--MAIN-BACKGROUND-COLOR);
}

.services p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.services.color-2 {
    border-bottom: 2px solid #ec5453;
}

.services.color-2 .icon2 i {
    color: #ec5453;
}

.services.color-3 {
    border-bottom: 2px solid #f9bf3f;
}

.services.color-3 .icon2 i {
    color: #f9bf3f;
}

.services.color-4 {
    border-bottom: 2px solid #a84cb8;
}

.services.color-4 .icon2 i {
    color: #a84cb8;
}

@media (max-width: 768px) {
    .services-section-wrapper {
        padding: 60px 0;
    }
    
    .services-section-wrapper h2 {
        font-size: 2rem;
    }
    
    .services-section-wrapper > .container > .row:first-child p {
        margin-bottom: 40px;
    }
    
    .services {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* CAREER SUCCESS SECTION STYLES */
.career-success-section {
    padding: 100px 0;
    background: white;
}

.success-content h2 {
    font-size: 2.5rem;
    color: var(--MAIN-BACKGROUND-COLOR);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.success-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4D4D4D;
    margin-bottom: 20px;
}

.success-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--MAIN-COLOR);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.success-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .success-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .career-success-section {
        padding: 60px 0;
    }
    
    .success-content h2 {
        font-size: 2rem;
    }
    
    .success-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 100px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* PRICING SECTION STYLES */
.bg-light {
  background-color: #f8f9fa !important;
}

.pricing-section {
  padding: 5em 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.unit-4.pricing {
  padding: 15px 25px 40px 25px;
  border: none;
  background: #fff;
}

.unit-4.pricing.active {
  border: 4px solid var(--MAIN-COLOR);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}

.unit-4.pricing .unit-4-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--MAIN-COLOR);
  margin: 0 auto -75px auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}

.unit-4.pricing .unit-4-icon span {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.unit-4.pricing h3 {
  padding-top: 100px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.ul-check {
  position: relative;
  margin-bottom: 0;
}

.ul-check li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.ul-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
}

.ul-check li.remove {
  text-decoration: line-through;
  color: #dee2e6;
}

.ul-check li.remove:before {
  content: "✗";
  color: #dc3545;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.justify-content-center {
  justify-content: center !important;
}

.col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 991.98px) {
  .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* TESTIMONIALS STYLES */
.border-top {
  border-top: 1px solid #edf0f5 !important;
}

.block-testimony {
  background: #f8f8f8;
  padding: 30px;
  position: relative;
  text-align: center;
}

.block-testimony h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.block-testimony p {
  color: #4d4d4d;
}

.block-testimony cite {
  font-style: normal;
  color: var(--MAIN-COLOR);
}

.text-primary {
    color: var(--MAIN-COLOR) !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5);
}

.text-black {
  color: #000 !important;
}

/* CONTACT SECTION STYLES */
.contact-section {
  padding: 5em 0;
}

.heading-39291 {
  font-size: 3rem;
  color: var(--MAIN-COLOR);
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  height: 55px;
  background: #fff !important;
  border: 1px solid #ced4da !important;
  box-shadow: none !important;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea.form-control {
  height: auto;
}

.block-21929 {
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.block-21929 .heading-39291 {
  font-size: 1.2rem;
  color: #364d59;
  margin-bottom: 5px;
}

.block-21929 p a {
  color: var(--MAIN-COLOR);
  text-decoration: none;
}

.block-21929 p a:hover {
  text-decoration: underline;
}

.rounded-0 {
  border-radius: 0 !important;
}

/* Content Pages Styles */
.content-page-wrapper {
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.content-page-wrapper h1 {
    font-size: 2.5rem;
    color: var(--MAIN-BACKGROUND-COLOR);
    margin-bottom: 30px;
    font-weight: 700;
}

.content-page-wrapper h2 {
    font-size: 2rem;
    color: var(--MAIN-COLOR);
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.content-page-wrapper h3 {
    font-size: 1.5rem;
    color: var(--MAIN-BACKGROUND-COLOR);
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.content-page-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #4D4D4D;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .content-page-wrapper {
        padding: 30px 0 40px;
    }
    
    .content-page-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-page-wrapper h2 {
        font-size: 1.7rem;
    }
    
    .content-page-wrapper h3 {
        font-size: 1.3rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--MAIN-BACKGROUND-COLOR);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--ACCENT-COLOR);
    color: var(--MAIN-BACKGROUND-COLOR);
    font-weight: 600;
}

.cookie-btn.accept:hover {
    background: #f4a919;
    transform: translateY(-1px);
}

.cookie-btn.details {
    background: transparent;
    color: var(--ACCENT-COLOR);
    border: 1px solid var(--ACCENT-COLOR);
}

.cookie-btn.details:hover {
    background: var(--ACCENT-COLOR);
    color: var(--MAIN-BACKGROUND-COLOR);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Contact Form Styles */
.contact-form-page {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-form-page .form-group {
    margin-bottom: 20px;
}

.contact-form-page input,
.contact-form-page select,
.contact-form-page textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form-page input:focus,
.contact-form-page select:focus,
.contact-form-page textarea:focus {
    outline: none;
    border-color: var(--MAIN-COLOR);
    box-shadow: 0 0 5px rgba(241, 104, 33, 0.3);
}

.contact-form-page select {
    cursor: pointer;
}

.contact-form-page textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--MAIN-COLOR);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e8631d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(241, 104, 33, 0.3);
}

@media (max-width: 991px) {
    .col-md-7,
    .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-form-page {
        margin-bottom: 40px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        text-align: center;
    }
    
    .main-nav ul li a {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    body {
        padding-top: 120px;
    }
    
    .site-blocks-cover h1 {
        font-size: 2.5rem;
    }
    
    .site-blocks-cover p {
        font-size: 1rem;
    }
    
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .footer_content {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .footer_contact {
        margin-left: 0 !important;
        margin-top: 20px;
        order: 1;
    }
    
    .footer_nav {
        order: 2;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .top-navigation .logo a h1 {
        font-size: 24px;
    }
    
    .main-nav ul li a {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    body {
        padding-top: 140px;
    }
    
    .site-blocks-cover h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    .px-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .footer_contact .contact-info p {
        font-size: 12px;
    }
}