/* Fixed Header */
/* Ensure header content is centered vertically */
.main-header .row > .col-12 {
    display: flex;
    justify-content: space-between;
    align-items: center; /* logo + menu centered */
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #e57373; /* light red */
    padding: 15px 0;
}

/* Push page content down */
body {
    padding-top: 80px; /* adjust for header height */
}

/* Menu alignment */
.main-menu nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu nav ul li {
    display: inline-block;
    margin-left: 25px;
}

.main-menu nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-menu nav ul li a:hover {
    color: #f39c12; /* highlight color */
}

/* Mobile hamburger styling */
.mobile_menu {
    cursor: pointer;
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* equal spacing for bars */
}

.mobile_menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}


/* SlickNav container below header */
.slicknav_menu {
    padding: 10px;
    margin-top: 80px; /* push down so it doesn’t hide under header */
    z-index: 9998;
}

/* SlickNav dropdown */
.slicknav_nav {
    background: #fff;
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px;
    padding-right: 170px;
}
.slicknav_nav li {
    width: 100%; /* prevent text breaking */
    white-space: nowrap; /* keep text in one line */
}
.slicknav_nav a {
    display: block;
    padding: 12px 20px;
    color: #333 !important;
    font-size: 16px;
    font-weight: 500;
}
.slicknav_nav a:hover {
    background: #ffe5e5;
}


/* Section Background */
.about-area2 {
    background: linear-gradient(135deg, #f9fcff 0%, #fdeaea 100%);
    position: relative;
    z-index: 1;
    padding: 80px 0;
    overflow: hidden;
}

/* Wave Top */
.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'><path fill='%23f9fcff' fill-opacity='1' d='M0,160L48,165.3C96,171,192,181,288,197.3C384,213,480,235,576,234.7C672,235,768,213,864,186.7C960,160,1056,128,1152,106.7C1248,85,1344,75,1392,69.3L1440,64L1440,0L0,0Z'></path></svg>");
    background-size: cover;
    background-repeat: no-repeat;
}

/* Wave Bottom */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'><path fill='%23ffffff' fill-opacity='1' d='M0,256L48,245.3C96,235,192,213,288,192C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,218.7C1248,192,1344,160,1392,144L1440,128L1440,320L0,320Z'></path></svg>");
    background-size: cover;
    background-repeat: no-repeat;
}

/* Service Card */
.service-card {
    width: 245px;
    height: 135px;
    background: rgba(229, 115, 115, 0.9); /* light red */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.service-card:hover {
    background: rgba(198, 76, 76, 0.95); /* darker red */
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.service-card h1 {
    font-size: 20px;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.sub-heading {
    font-size: 18px;
    font-weight: 600;
    color: #e57373;
    margin-bottom: 20px;
}

.content-heading {
    font-size: 28px;
    font-weight: 700;
    color: #c62828; /* darker red */
    margin-bottom: 10px;
}

.who-we-are {
    background: linear-gradient(to bottom right, #fff0f0, #ffffff);
}

.section-tittle h1 {
    font-size: 36px;
    font-weight: bold;
    color: #c62828;
}

.section-tittle p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.category-block {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.category-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.category-block h3 {
    color: #e57373;
    font-size: 22px;
    margin-bottom: 15px;
    border-left: 4px solid #e57373;
    padding-left: 10px;
}

.category-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.category-block ul li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
    color: #333;
}

.category-block ul li:last-child {
    border-bottom: none;
}

/* Equal Section Layout */
.equal-section {
    background: #fff;
    padding: 80px 0;
}

.equal-section .content-heading {
    font-size: 28px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 20px;
}

.equal-section .content-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.equal-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equal-section .feature-list li {
    font-size: 15px;
    margin: 10px 0;
    color: #333;
}

.equal-section .feature-list li i {
    color: #e57373;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

/* Equal height columns */
.equal-section .row {
    display: flex;
    flex-wrap: wrap;
}

.equal-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.feature-card .feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #e57373;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.shadow-hover:hover .feature-img {
    transform: scale(1.05);
}
.quality-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}
.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.quality-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #c62828;
    margin-bottom: 6px;
}
.quality-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}
.quality-card .card-icon {
    font-size: 36px;
    color: #e57373;
    flex-shrink: 0;
}
.clients-section {
    background: linear-gradient(to bottom right, #fff5f5, #ffffff);
}

.client-category-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}
.client-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.client-category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.client-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.client-category-card ul li {
    font-size: 15px;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}
.client-category-card ul li:last-child {
    border-bottom: none;
}
.client-category-card ul li em {
    color: #999;
    font-style: italic;
}
/* Custom Red Button */
.btn-custom-red {
    background-color: #c62828;
    border: 1px solid #c62828;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px; /* rounded corners */
    transition: all 0.3s ease;
    display: inline-flex; /* keeps text centered */
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover & Focus */
.btn-custom-red:hover,
.btn-custom-red:focus {
    background-color: #a71c1c; /* darker red */
    border-color: #a71c1c;
    color: #fff;
}

/* Disabled State */
.btn-custom-red:disabled {
    background-color: #e57373;
    border-color: #e57373;
    cursor: not-allowed;
    opacity: 0.8;
}
.hero-slider {
    position: relative;
}
.hero-slider .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45); /* Dark overlay for readability */
}

/* Slide content animation */
.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
    color: #fff;
}
.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Make text bold & white */
.slide-content h1 {
    font-size: 2.5rem;
    font-weight: 700;  /* Bold */
    color: #fff;
}
.slide-content p {
    font-size: 1.2rem;
    font-weight: 600;  /* Semi-bold */
    color: #fff;
    margin-top: 10px;
}

/* Swiper controls */
.swiper-button-prev, .swiper-button-next {
    color: #fff;
}
.swiper-pagination-bullet {
    background: #fff;
}
.revamp-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75); /* darker shade */
    z-index: 1;
}


.revamp-section .container {
    position: relative;
    z-index: 2;
}

/* White text */
.revamp-section h1,
.revamp-section p,
.revamp-section h4 {
    color: #fff;
    font-weight: 700;
}

/* Card styling with semi-transparent background */
.bg-dark-transparent {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.bg-dark-transparent:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-5px);
}

/* Card icons */
.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffd700; /* gold accent for visibility */
}
/* Overlay to darken background */
.training-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65); /* adjust darkness */
    z-index: 1;
}

/* Ensure content appears above overlay */
.training-section .container {
    position: relative;
    z-index: 2;
}

/* White text styling */
.training-section h1,
.training-section p,
.training-section h4 {
    color: #fff;
    font-weight: 700;
}

/* Feature cards with transparent background */
.bg-dark-transparent {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.bg-dark-transparent:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-5px);
}

/* Card icons */
.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #00c9ff; /* cyan/blue accent for training */
    transition: color 0.3s ease;
}
.bg-dark-transparent:hover .card-icon {
    color: #ffd700; /* change to gold on hover */
}
/* Dark overlay for background */
.quality-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65); /* dark shade */
    z-index: 1;
}
.quality-section .container {
    position: relative;
    z-index: 2;
}

/* White text */
.quality-section h1,
.quality-section p,
.quality-section h5 {
    color: #fff;
    font-weight: 700;
}

/* Card styling */
.quality-card {
    padding: 20px;
    border-radius: 10px;
    gap: 15px;
    transition: all 0.3s ease;
}
.bg-dark-transparent {
    background: rgba(0,0,0,0.45);
}
.bg-dark-transparent:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-4px);
}

/* Icons */
.card-icon {
    font-size: 2.5rem;
    color: #00c9ff; /* cyan accent */
    margin-right: 15px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.quality-card:hover .card-icon {
    color: #ffd700; /* turns gold on hover */
}

/* Card text */
.quality-card h5 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.quality-card p {
    margin: 0;
    font-weight: 400;
    color: #e0e0e0;
}
/* Overlay for background */
.contact-cta .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65); /* darker overlay */
    z-index: 1;
}
.contact-cta .container {
    position: relative;
    z-index: 2;
}

/* Title & text */
.contact-cta .cta-title {
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.contact-cta .cta-text {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Button styling */
.btn-custom-red {
    background: #c62d36;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-custom-red:hover {
    background: #a02028;
    transform: translateY(-3px);
}
/* Dark overlay */
.clients-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}
.clients-section .container {
    position: relative;
    z-index: 2;
}

/* Title & text */
.clients-section h1,
.clients-section p {
    color: #fff;
    font-weight: 700;
}

/* Client category cards */
.client-category-card {
    background: rgba(0,0,0,0.45);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    color: #fff;
    transition: all 0.3s ease;
}
.client-category-card:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-5px);
}

/* Card heading + icons */
.client-category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #fff;
}
.client-category-card h3 i {
    color: #00c9ff;
    transition: color 0.3s ease;
    font-size: 1.5rem;
}
.client-category-card:hover h3 i {
    color: #ffd700;
}

/* List styling */
.client-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.client-category-card ul li {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.client-category-card ul li em {
    color: #ccc;
}
