/* ============================= */
/* SECTION HEADER STYLING */
/* ============================= */

.mini-title {
    font-size: 14px;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-title .blink-text {
    color: #e10600;
    animation: blinkRed 1s infinite;
}

@keyframes blinkRed {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

.section-subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: #444;
}

/* ============================= */
/* CONTACT CARDS */
/* ============================= */

/* Equal height cards */
.contact-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 10px;
    border-top: 4px solid #e10600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-content .title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.contact-content a {
    color: #e10600;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
     display: inline-block;
    margin-top: 15px;
}

.contact-content a:hover {
    color: #000;
}

/* Red circular icon background */
.contact-icon {
    background: #e10600;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/*contact us-any questions section*/

/* ===============================
   SECTION BACKGROUND
=================================*/
.account-widget-section {
    background: #f9f9f9;
    position: relative;
}

.account-widget-section::before {
    display: none;
}

.account-widget-left {
    padding-right: 40px;
}

.account-widget-form-area {
    margin-left: 40px;
}
/* ===============================
   LEFT SIDE
=================================*/

.mini-tag {
    color: #e10600;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
}

.section-title span {
    color: #e10600;
}

.contact-description {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
    max-width: 500px;
    line-height: 1.7;
}

/* ===============================
   STUDENT COUNT BOX
=================================*/

.banner-widget {
    margin-top: 30px;
    padding: 15px 25px;
    background: #fff;
    border-left: 4px solid #e10600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 6px;
}

.banner-widget-content span {
    color: #e10600;
    font-weight: 800;
    font-size: 20px;
}

/* ===============================
   SOCIAL
=================================*/

.contact-social-area span {
    font-weight: 700;
    margin-right: 15px;
}

.contact-social li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.contact-social li a:hover {
    background: #e10600;
    color: #fff;
    border-color: #e10600;
}

/* ===============================
   FORM AREA
=================================*/

.account-widget-form-area {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form--control {
    width: 100%;
    padding: 15px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.form--control:focus {
    border-color: #e10600;
    box-shadow: 0 0 0 3px rgba(225,6,0,0.1);
    outline: none;
}

textarea.form--control {
    min-height: 150px;
}

/* ===============================
   BUTTON
=================================*/

.btn--base {
    background: #e10600;
    padding: 14px 35px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    transition: 0.3s ease;
    border: none;
}

.btn--base:hover {
    background: #000;
    transform: translateY(-3px);
}
.student-count {
    color: #e10600;
    font-weight: 900;
    font-size: 26px;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.map-area iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/*footer css*/

.vmk-footer {
  background: linear-gradient(135deg, #0c1424, #08101d);
  padding: 90px 0 0;
  color: #ffffff;
}

.vmk-footer__container {
  width: 88%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.vmk-footer__col {
  display: flex;
  flex-direction: column;
}

.vmk-footer__logo {
  width: 160px;
  margin-bottom: 25px;
}

.vmk-footer__text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

.vmk-footer__title {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #d4af37;
}

.vmk-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vmk-footer__links li {
  margin-bottom: 14px;
}

.vmk-footer__links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s ease;
}

.vmk-footer__links a:hover {
  color: #d4af37;
  padding-left: 6px;
}

.vmk-footer__contact p {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.85;
}

.vmk-footer__subscribe {
  margin-top: 20px;
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
}

.vmk-footer__subscribe input {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.vmk-footer__subscribe button {
  background: #d4af37;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.vmk-footer__subscribe button:hover {
  background: #ffffff;
  color: #000;
}

.vmk-footer__social {
  margin-top: 20px;
}

.vmk-footer__social a {
  margin-right: 14px;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s ease;
}

.vmk-footer__social a:hover {
  color: #d4af37;
  transform: translateY(-2px);
}

.vmk-footer__bottom {
  margin-top: 60px;
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
}

@media (max-width: 992px) {
  .vmk-footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .vmk-footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vmk-footer__subscribe {
    flex-direction: column;
  }

  .vmk-footer__subscribe button {
    width: 100%;
    padding: 12px;
  }
}

.vmk-brand-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .vmk-brand-logo {
    max-width: 150px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .vmk-brand-logo {
    max-width: 130px;
    margin: 0 auto 20px;
  }
}
@media (max-width: 992px) {
  .vmk-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* Placeholder color */
.vmk-footer__subscribe input::placeholder {
  color: #ffffff;
  opacity: 1;              /* Ensures full white */
}

/* For better browser support */
.vmk-footer__subscribe input::-webkit-input-placeholder {
  color: #ffffff;
}

.vmk-footer__subscribe input:-ms-input-placeholder {
  color: #ffffff;
}

.vmk-footer__subscribe input::-ms-input-placeholder {
  color: #ffffff;
}
/*About css*/

.about-overlay-content img {
  width: 220px;
  height: auto;
  display: block;
}

.about-badge-img {
    width: 220px;   /* adjust size if needed */
    height: auto;
}
.about-badge-img {
    width: 220px;
    transition: 0.3s ease;
}

.about-badge-img:hover {
    transform: scale(1.05);
}
/* Make row behave like flex */
.vmk-feature-area .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make each column stretch */
.vmk-feature-area .col-xl-4,
.vmk-feature-area .col-lg-4,
.vmk-feature-area .col-md-6,
.vmk-feature-area .col-sm-6 {
    display: flex;
}
/* Force equal height card */
.vmk-feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 100%;
}

/* Subtle red glow shadow */
.vmk-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(185, 39, 39, 0.15);
}

/* Red top accent line */
.vmk-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b92727;
}

.vmk-feature-icon {
    margin-bottom: 20px;
}

.vmk-feature-icon img {
    height: 60px;
    transition: 0.3s ease;
}

/* Icon subtle animation */
.vmk-feature-card:hover .vmk-feature-icon img {
    transform: scale(1.1);
}

.vmk-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.vmk-feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.video-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background video */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(251, 244, 244, 0.55);
    z-index: 2;
}

/* Content above video */
.video-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.video-content h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
}

.vmk-stat-card {
    padding: 40px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
}

.vmk-stat-card:hover {
    transform: translateY(-6px);
    border-color: #b92727;
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: #b92727;
}

.vmk-stat-card p {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/*preloader*/

.preloader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-svg {
    animation: rotateRing 4s linear infinite;
}

/* Rotate ONLY outer ring */
/* FIXED ROTATION */
#outerRing {
    transform-box: fill-box;
    transform-origin: center;
    animation: rotateRing 4s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* Hide after load */
.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.service-section {
    position: relative;
    overflow: hidden;
}

/* Left Side Fighter */
.service-left-fighter {
    position: absolute;
    left: -120px;   /* Move outside container */
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.service-left-fighter img {
    height: 550px;   /* Adjust as needed */
    opacity: 0.95;
}

/* Ensure slider content stays above */
.service-area {
    position: relative;
    z-index: 2;
}
.service-right-fighter {
    position: absolute;
    right: -120px;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.service-right-fighter img {
    height: 550px;
    opacity: 0.95;
}
@media (max-width: 991px) {
    .service-left-fighter,
    .service-right-fighter {
        display: none;
    }
}

.service-left-fighter img {
    height: 550px;
    opacity: 0.95;
    animation: warriorMotion 6s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes warriorMotion {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Ensure section is relative */
.service-section {
    position: relative;
    overflow: hidden;
}

/* LEFT GIRL */
.service-left-fighter img {
    height: 550px;
    opacity: 0.95;
    animation: warriorLeft 8s ease-in-out infinite;
    transform-origin: bottom center;
}

/* RIGHT BOY */
.service-right-fighter img {
    height: 550px;
    opacity: 0.95;
    animation: warriorRight 9s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Girl Motion */
@keyframes warriorLeft {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Boy Motion (Opposite slight direction for realism) */
@keyframes warriorRight {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.service-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: 0.4s ease;
     display: flex;
    flex-direction: column;
    width: 100%;
}


.service-card:hover {
    transform: translateY(-10px);
}

.service-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    text-align: center;
     flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.service-content p {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 20px;
     min-height: 90px;   /* Adjust if needed */
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.section-header p {
    color: #221e1e;
}
.service-slider .swiper-wrapper {
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.service-slider .swiper-slide {
    height: auto;
    display: flex;
}
.service-content .btn--base {
    margin-top: auto;
}

/*home page css*/

.about-item-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Box Style */
.about-box {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 25px 30px;
    border-radius: 16px;

    /* Dark Glass Effect */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* Soft shadow */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);

    transition: 0.3s ease;
}

/* Subtle hover glow */
.about-box:hover {
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
}

/* Red dot */
.box-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Text */
.box-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.box-content p {
    font-size: 14px;
    color: #fffbfb;
    line-height: 1.6;
}


/* ================================
   VMK Equal Height Feature Boxes
================================ */
.feature-item .feature-content{
opacity:1 !important;
transform:none !important;
visibility:visible !important;
}
.feature-item .feature-icon{
opacity:1 !important;
transform:none !important;
visibility:visible !important;
}
.vmk-equal-box .row.align-items-center > div {
    display: flex;
    flex-direction: column;
}
.vmk-equal-box .feature-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 270px;   /* Adjust if needed */
    padding: 30px 25px;
    border-radius: 12px;
}

/* Ensure content fills evenly */
.vmk-equal-box .feature-content {
    flex-grow: 1;
}

/* Keep titles aligned */
.vmk-equal-box .feature-content .title {
    min-height: 48px;
}

/* Keep paragraph space balanced */
.vmk-equal-box .feature-content p {
    min-height: 100px;
}

/* Optional – smooth hover lift */
.vmk-equal-box .feature-item {
    transition: all 0.4s ease;
}

.vmk-equal-box .feature-item:hover {
    transform: translateY(-8px);
}
.vmk-equal-box .feature-thumb-area {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vmk-equal-box .feature-thumb-area {
    transform: translateY(-20px);
}

/*our prgms home css*/

.training-icon i {
    font-size: 40px;
    color: #e10600;
    margin-bottom: 15px;
}

.training-item {
    padding: 30px 20px;
    border-radius: 12px;
    background: #111;
    transition: 0.4s ease;
}

.training-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ================================
   VMK FREE TRIAL SECTION STYLES
================================ */

.trial-content {
    margin-top:-60px;
    margin-bottom:20px;
    background: rgba(0, 0, 0, 0.75);
    padding: 50px 40px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    overflow: visible;  
}

/* Section Title */
.trial-content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.trial-content p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Controls */
.trial-form .form--control {
    width: 100%;
    height: 50px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.trial-form select option{
    color:#000;
}
/* Select styling */
.trial-form select.form--control{
    appearance:auto;
    -webkit-appearance:auto;
    -moz-appearance:auto;
     max-height:200px;
    overflow-y:auto;
}

/* Focus Effect */
.trial-form .form--control:focus {
    outline: none;
    border-color: #e10600;
    box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.2);
}
.trial-form select.form--control{
    background:#8c1b1b;
    color:#fff;
}

.trial-form select.form--control option{
    color:#000;
}
/* Placeholder */
.trial-form .form--control::placeholder {
    color: #bbbbbb;
}

/* Button */
.trial-form .btn--base {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    background: #e10600;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Button Hover */
.trial-form .btn--base:hover {
    background: #b80000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 6, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .trial-content {
        padding: 35px 25px;
    }

    .trial-content .section-title {
        font-size: 24px;
    }
}
.feature-icon{

width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
}

.feature-icon svg {
    color: #c41212;
    transition: 0.3s ease;
}
.feature-item{
background:#fff;
}

.feature-item:hover .feature-content{
opacity:1;
transform:none;
}

.feature-item:hover .feature-icon svg {
    color: #000;
}

/*training test*/

.vmk-training{
padding:110px 0;
background:#ffffff;
}

.vmk-container{
width:90%;
max-width:1200px;
margin:auto;
}

.vmk-training-header{
text-align:center;
margin-bottom:70px;
}

.vmk-eyebrow{
color:#c91a1a;
font-size:13px;
letter-spacing:2px;
font-weight:600;
}

.vmk-training-header h2{
font-size:38px;
margin:12px 0;
font-weight:700;
}

.vmk-training-header p{
color:#666;
max-width:600px;
margin:auto;
}

.vmk-training-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.vmk-program{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:all .35s ease;
position:relative;
}

.vmk-program-image img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.vmk-program-body{
padding:25px;
}

.vmk-program-body h3{
font-size:20px;
margin-bottom:10px;
}

.vmk-program-body p{
font-size:14px;
color:#555;
margin-bottom:15px;
}

.vmk-program-tag{
background:#c91a1a;
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:12px;
}

.vmk-program:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}
@media (max-width:992px){
.vmk-training-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:600px){
.vmk-training-grid{
grid-template-columns:1fr;
}
}

/*subscribe*/

.vmk-trial-section{
    background:#e10600;
    padding:120px 0;
    overflow:visible !important;
}

.vmk-trial-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.vmk-trial-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.vmk-trial-image{
    text-align:center;
}

.vmk-trial-image img{
    max-width:100%;
    height:auto;
    display:inline-block;
}

.vmk-trial-card{
    background:#640808;
    border-radius:24px;
    padding:48px;
    overflow:visible !important;
    position:relative;
    z-index:2;
}

.vmk-trial-title{
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:#f1eaea;
    margin-bottom:20px;
}

.vmk-trial-text{
    font-size:16px;
    line-height:1.8;
    color:#fff;
    margin-bottom:30px;
}

.vmk-trial-form{
    width:100%;
}

.vmk-trial-two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

.vmk-field-wrap{
    width:100%;
}

.vmk-field-full{
    width:100%;
    margin-bottom:16px;
}

.vmk-field{
    width:100% !important;
    min-width:100%;
    display:block;
    height:60px;
    padding:0 18px;
    border:1px solid rgba(255,255,255,0.18);
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:18px;
    box-sizing:border-box;
    outline:none;
}

.vmk-field::placeholder{
    color:rgba(255,255,255,0.75);
}

.vmk-select-field{
    appearance:auto;
    -webkit-appearance:menulist;
    -moz-appearance:menulist;
    background:rgba(255,255,255,0.08);
    color:#fff;
    width:100% !important;
}

.vmk-select-field option{
    color:#000;
    background:#fff;
}

.vmk-trial-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#ff2a00;
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s ease;
}

.vmk-trial-btn:hover{
    background:#d91f00;
}

@media (max-width: 991px){
    .vmk-trial-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .vmk-trial-card{
        padding:32px 24px;
    }
}

@media (max-width: 767px){
    .vmk-trial-two-col{
        grid-template-columns:1fr;
    }

    .vmk-trial-title{
        font-size:24px;
    }

    .vmk-field,
    .vmk-trial-btn{
        height:56px;
        font-size:16px;
    }
}

/* footer form css*/

.form-success{
    background:#e6fff0;
    border-left:5px solid #00a651;
    padding:15px;
    margin-bottom:20px;
    border-radius:6px;
    color:#006b3c;
    font-weight:500;
}

.form-error{
    background:#ffe6e6;
    border-left:5px solid #e10600;
    padding:15px;
    margin-bottom:20px;
    border-radius:6px;
    color:#a00000;
}
.account-widget-form label{
font-weight:600;
margin-bottom:6px;
display:block;
font-size:14px;
color:#000;
}

.vmk-form{
background:#b3abab;
padding:40px;
border-radius:14px;
max-width:600px;
margin:auto;
}

/* field spacing */
.vmk-field{
margin-bottom:24px;
display:flex;
flex-direction:column;
}

/* labels */
.vmk-field label{
font-weight:600;
margin-bottom:8px;
font-size:15px;
}

/* inputs */
.vmk-field input,
.vmk-field textarea{
width:100%;
padding:16px 18px;
border-radius:10px;
border:1px solid #dcdcdc;
background:#fff;
font-size:15px;
}

/* textarea height */
.vmk-field textarea{
min-height:140px;
resize:vertical;
}

/* submit area */
.vmk-submit{
margin-top:10px;
}

/* button */
.vmk-btn{
width:100%;
padding:18px;
border:none;
border-radius:40px;
background:#e10600;
color:#fff;
font-weight:700;
font-size:16px;
cursor:pointer;
transition:.3s;
}

.vmk-btn:hover{
background:#000;
}

.account-widget-form .form-control{
border-radius:12px;
padding:14px 16px;
}

.account-widget-form .form-control:focus{
border-color:#e10600;
box-shadow:0 0 0 0.2rem rgba(225,6,0,0.15);
}

.account-widget-form .btn-danger{
background:#e10600;
border:none;
padding:16px;
font-weight:600;
}

.account-widget-form .btn-danger:hover{
background:#000;
}

/* event section */

/* Equal height event cards */

.event-section .row{
    display:flex;
    flex-wrap:wrap;
}

.event-section .col-xl-6{
    display:flex;
}

.event-item{
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.event-item:hover{
    transform:translateY(-6px);
}

/* Image height fixed */
.event-thumb img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* Content stretch */
.event-content{
    display:flex;
    flex-direction:column;
    flex-grow:1;
    padding:25px;
}

/* Keep button at bottom */
.event-btn{
    margin-top:auto;
}
/* make columns equal height */
.event-section .col-xl-6{
    display:flex;
}

/* main card */
/* card layout */
.event-item{
    display:flex;
    flex-direction:column;
    height:100%;
}

/* image visible and fixed height */
.event-thumb img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:10px 10px 0 0;
}

/* content card */
.event-content{
    background:#f5f6f8;
    padding:30px;
    border-radius:12px;
    margin-top:-40px;
    position:relative;
}

/* meta area */
.event-meta-area{
    position:relative;
    padding-left:80px;
}

/* badge */
.event-badge{
    position:absolute;
    left:-10px;
    top:-40px;
}

/* remove big space issue */
.event-content p{
    margin-bottom:20px;
}

/* keep button just below text */
.event-btn{
    margin-top:10px;
}
/* Event meta area layout */
.event-meta-area{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 90px; /* space for the badge */
}

/* Date badge position */
.event-badge{
    position: absolute;
    left: 0;
    top: -25px;
}

/* Badge style */
.event-badge .badge-title{
    width: 70px;
    height: 70px;
    background: #e60000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.1;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Month style */
.event-badge .month{
    font-size: 14px;
    text-transform: uppercase;
}

/* form msg style on training page*/

#formMessage{
    margin-top:10px;
    font-size:16px;
    font-weight:700;
    text-align:center;
    padding:8px 0;
}

#formMessage.success{
    color:#00ff88;
}

#formMessage.error{
    color:#ff4d4d;
}

.vmk-subscribe-message{
    margin-top:10px;
    font-size:14px;
}

@media (max-width:768px){

.section-title{
font-size:28px;
line-height:1.3;
}

.contact-description{
font-size:15px;
}

}
@media (max-width:768px){

.account-widget-form-area .card{
padding:20px !important;
}

.form-control-lg{
font-size:15px;
}

}
@media (max-width:768px){

.banner-widget-thumb,
.banner-widget-left img,
.banner-widget img{
display:none !important;
}

}
.account-widget-form-area{
position:relative;
z-index:2;
}

.account-widget-left{
position:relative;
z-index:1;
}

@media (max-width:768px){

.account-widget-section{
padding-top:60px !important;
padding-bottom:60px !important;
}

}
@media (max-width:768px){

.account-widget-section .container{
padding-left:20px;
padding-right:20px;
}

}

@media (max-width:768px){

.account-widget-form-area .card{
padding:22px !important;
border-radius:12px;
}

}
@media (max-width:768px){

.section-title{
font-size:26px;
line-height:1.3;
}

.mini-tag{
font-size:13px;
}

.contact-description{
font-size:14px;
}

}

/* Reduce header height */
.header-bottom-area{
    padding: 5px 0;
}

/* Remove extra spacing in menu */
.main-menu li a{
    padding: 12px 18px;
}

/* Desktop logo */
.site-logo img{
    height: auto;
    width: auto;
    max-width: 160px;
}

/* Mobile logo */
.site-logo.d-block img{
    height: 45px;
    width: auto;
}

/* Reduce vertical navbar spacing */
.navbar{
    min-height: 60px;
}



/* Sticky header compact */
.header-section.is-fixed .header-bottom-area{
    padding: 2px 0 !important;
}

/* Reduce navbar height */
.header-section.is-fixed .navbar{
    min-height: 50px !important;
}

/* Reduce logo size only when sticky */
.header-section.is-fixed .site-logo img{
    height: 42px;
}

/* Sticky menu color */
.header-section.is-fixed .main-menu li a{
    color: #000 !important;
}

/* Hover */
.header-section.is-fixed .main-menu li a:hover{
    color: #e80000 !important;
}

/* Kill extra height from collapse */
.navbar-collapse{
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    height: auto !important;
}

.header-bottom-area{
    padding: 4px 0 !important;
}