/*!
Theme Name: megatrend-fabcon-child
Theme URI: https://megatrendfabcon.com/
Author: Underscores.me
Author URI: https://megatrendfabcon.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: megatrend-fabcon-child
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

megatrend-fabcon-child is based on Underscores https://megatrendfabcon.com/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
	--black: #000;
	--blue: #1863A5;
	--dark-blue: #032A4E;
	--main-brand: #1567B1;
	--green-clr: #527C17;
    --parrot-green: #92C945;
	--light-green-clr: #E8FFC7;
	--white: #fff;
	--light-blue: #D5EBFF;
	--title-gradient: linear-gradient(90deg, #1567B1 0%, #6CA71A 100%);
	--title-light-gradient: linear-gradient(90deg, #FFFFFF 0%, #E2FFB9 100%);
	--section-bg: linear-gradient(270deg, #97ce4600 0%, #1160A11A 100%);;
	--grey-clr: #878787;
	--dark-grey: #666666;
	--light-grey: #f0f0f0;
	--banner-gradient: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #032A4E 100%);
    --grid-gradient: linear-gradient(180deg, rgba(3, 42, 78, 0) -29.29%, #032A4E 100%);
}

body{
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 26px;
	color: var(--grey-clr);
}

a{
	text-decoration: none;
}

.common-light-bg{
	background: var(--section-bg);
}

.dark-bg{
	background: var(--dark-blue) url('assets/images/vertical-lines-bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.common-spacing{
	padding: 100px 0;
}

.common-section-title{
	font-size: 50px;
	line-height: normal;
	font-weight: 700;
	margin-bottom: 50px;
}

.dark-color-title{
	background: var(--title-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.light-color-title{
	background: var(--title-light-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.common-small-section-title{
	font-size: 35px;
	line-height: normal;
	font-weight: 700;
}

.common-title-center{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* BANNER SECTION */

/* Slider wrapper */
.hero-slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	background-color: var(--dark-blue);
}

/* Each slide */
.hero-slider .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-slider .swiper-slide .container{
	height: 100%;
	position: relative;
}

/* Background image / video */
.banner-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.banner-bg img,
.banner-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Dark overlay on top of bg */
.banner-bg::after {
	content: '';
    position: absolute;
    background: var(--banner-gradient), url(assets/images/dotted-bg.png);
    z-index: 1;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}


/* Slide content */
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    gap: 25px;
    max-width: calc(100% - 240px);
    margin: 0 auto;
}

/* Tag pill — glassmorphism */
.banner-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 20px;
    min-height: 36px;
    min-width: 170px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border-radius: 50px;

    /* Frosted glass fill */
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    /* Uniform base border — subtle all around */
    border: 1px solid rgba(255, 255, 255, 0.18);

    /* Glass light effect:
       - inset top-left bright highlight  (-45° light source at 80%)
       - inset bottom-right dark shadow
       - outer subtle depth shadow */
    box-shadow:
        inset  1px  1px  0px rgba(255, 255, 255, 0.55),
        inset -1px -1px  0px rgba(0, 0, 0, 0.30);

    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
    letter-spacing: 0.3px;
}

.banner-tag::before {
    content: none;
}

/* Slide heading */
.banner-content h1 {
    font-size: 54px;
	font-weight: 700;
	line-height: 1.15;
	background: var(--title-light-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
	margin: 0;
}

/* Slide description */
.banner-content p {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
}

/* CTA button */
.banner-btn.common-cta-btn {
	min-width: 160px;
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.banner-btn:hover {
	background-color: var(--dark-blue);
	border-color: var(--dark-blue);
	color: var(--white);
	transform: translateY(-1px);
}

/* Navigation arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	width: 48px;
	height: 48px;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	transition: background-color 0.2s ease;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
	font-size: 26px;
	font-weight: 700;
	color: var(--white);
}

/* Pagination dots */
.hero-slider .swiper-pagination {
	bottom: 20px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .swiper-pagination-bullet {
	width: 10px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: background-color 0.2s ease, transform 0.2s ease;
	border-radius: 20px;
}

.hero-slider .swiper-pagination-bullet-active {
	background-color: var(--white);
    width: 18px;
    height: 4px;
}

/* welcome section */
.welcome-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1430px;
	margin: 0 auto;
}

/* Left column */
.welcome-image-col {
	flex: 0 0 auto;
    max-width: 590px;
    width: 100%;
	position: relative;
}

.welcome-image {
	border-radius: 16px;
	overflow: hidden;
	line-height: 0;
}

.welcome-image img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	display: block;
	border-radius: 16px;
}

/* Counter strip — overlaps bottom of image */
.welcome-counters {
	display: flex;
	align-items: stretch;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0px 4px 20px 0px #0000001A;
	overflow: hidden;
	max-width: 470px;
	margin: -60px auto 0;
	position: relative;
}

.counter-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 18px 12px;
	gap: 5px;
	position: relative;
	min-height: 130px;
}

.counter-item::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 30px;
	background: #CDCDCD;
}

.counter-item:last-child::before {
	display: none;
}

.counter-value {
	display: flex;
	align-items: center;
	gap: 2px;
	color: var(--main-brand);
}

.counter-suffix {
	font-size: 22px;
	font-weight: 700;
	color: var(--blue);
}

.counter-label {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: var(--grey-clr);
}

/* Right column */
.welcome-content-col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Tag pill */
.welcome-tag {
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-brand);
    background: #D5EBFF;
    border: 1px solid var(--main-brand);
    border-radius: 50px;
    line-height: 1.5;
    width: fit-content;
    min-width: 165px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 25px;
}

/* Description */
.welcome-description {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: var(--grey-clr);
	margin-bottom: 25px;
}

.welcome-description p {
	margin: 0;
}

/* Feature list — 2 column grid */
.welcome-features {
	list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-count: 2;
    gap: 15px 50px;
}

.welcome-features li {
	display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--dark-grey);
    width: 40%;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
	color: var(--light-green-clr);
}

.feature-icon svg{
	stroke: var(--green-clr);
}

/* CTA button */
.welcome-btn.common-cta-btn{
	min-width: 135px;
}


/* product listing css starts */

.product-listing-section {
    position: relative;
}

/* 3-column grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.product-card {
    background-color: #FFFFFF1A;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    padding: 25px;
    row-gap: 25px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.product-card:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    cursor: pointer;
    transition: 500ms ease-out;
    background-color: var(--white);
    transform: scale(0);
    transition: 500ms ease-out;
    z-index: 1;
    visibility: hidden;
    opacity: 1;
}

.product-card:hover:after {
    visibility: visible;
    transform: scale(1);
}


/* Product image */
.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

/* Product content area */
.product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 25px;
    position: relative;
    z-index: 5;
}

/* Product title */
.product-title {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    min-height: 60px;
    width: 100%;
}

.product-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 0;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: currentColor;
    transition: filter 0.35s ease, color 0.35s ease;
}

.product-card:hover .product-title a{
    color: transparent;
    filter: brightness(1);
}

/* Product excerpt */
.product-desc {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--light-grey);
    flex: 1;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card:hover .product-desc{
    color: var(--grey-clr);
}

.common-cta-btn.white-btn{
    min-width: 140px;
}

.product-card:hover .common-cta-btn.white-btn{
    background-color: var(--blue);
    color: var(--white);
}
/* product listing css ends */


/* industry listing css starts */

.industry-section {
    position: relative;
}

/* 3-column grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card — image fills the entire card, content overlays bottom */
.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    cursor: pointer;
}

/* Industry thumbnail */
.industry-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.industry-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.06);
}

/* Dark gradient overlay — bottom up */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grid-gradient);
    z-index: 1;
    transition: background 0.3s ease;
}

/* Content overlay — sits above gradient */
.industry-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 0px 25px 22px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.industry-content-details{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    width: calc(100% - 64px);
}

/* Title */
.industry-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.industry-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Excerpt */
.industry-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--light-grey);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Arrow button — circular green, bottom-right of content */
.industry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--parrot-green);
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    align-self: flex-end;
    flex-shrink: 0;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.industry-card:hover .industry-btn{
    transform: rotate(45deg);
    background-color: var(--white);
    color: var(--main-brand);
}

/* industry listing css ends */


/* certificate section */
.certificate-section {
	position: relative;
	overflow: hidden;
}

/* Decorative leaf background image */
.certificate-section .container {
	position: relative;
	z-index: 1;
}

/* Grid — 3 columns */
.certificate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/* Card */
.certificate-card {
    border-radius: 0;
    overflow: hidden;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0px 0px 0px rgba(255, 255, 255, 0.55), inset -1px -1px 0px rgba(0, 0, 0, 0.30);
}

.certificate-card:hover {
	background-color: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.20);
	transform: translateY(-3px);
}

/* Card inner — flex row: leaf+image on left, name on right */
.certificate-card-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 10px;
    position: relative;
}

/* Certificate image container — wreath bg behind it */
.certificate-image {
	flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 50px;
}

/* Leaf wreath as pseudo background per card image area */
.certificate-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(assets/images/certificate-bg-leaf.svg);
    background-repeat: no-repeat;
    background-position: bottom -15px center;
    opacity: 1;
    z-index: 0;
}

.certificate-image img {
    position: relative;
    z-index: 1;
    width: 140px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Certificate name */
.certificate-name {
	flex: 1;
}

.certificate-name h3 {
    font-size: 25px;
    line-height: normal;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* Outer wrapper provides horizontal room for the arrows */
.testimonial-slider-wrap {
    position: relative;
    padding: 0 0;
    max-width: 1340px;
    margin: 0 auto;
}

/* Slider wrapper — overflow hidden clips slides to exactly one */
.testimonial-slider {
    width: 100%;
}

.testimonial-slider .swiper-wrapper{
    align-items: center;
}

/* Each slide card */
.testimonial-card {
    background: var(--dark-blue) url(assets/images/testimonial-dots-bg.png);
    border-radius: 12px;
    padding: 100px 90px 40px;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 35px;
}

/* Quote icon — top left green block */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 90px;
    width: 75px;
    height: 66px;
    background-image: url(assets/images/testimonial-quote-img.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.testimonial-card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(assets/images/bg-curve-pattern.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}


/* Quote text */
.testimonial-message {
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Author row */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 35px;
    border-top: 1px solid rgba(229, 229, 229, 0.25);
    position: relative;
    z-index: 2;
}

/* Initials circle */
.author-initials {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--parrot-green);
    color: var(--white);
    font-size: 28px;
    line-height: 28px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info{
    width: calc(100% - 90px);
}

.author-info h4 {
font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 2px;
    line-height: 1.3;
}

.author-info span {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-grey);
    line-height: 1.4;
}

/* Prev/next arrows — positioned on the wrapper, outside the slider */
.testimonial-slider-wrap .swiper-button-prev,
.testimonial-slider-wrap .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--light-grey);
    box-shadow: 0px 4px 40px 0px #00000026;
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-slider-wrap .swiper-button-prev {
    left: -40px;
}

.testimonial-slider-wrap .swiper-button-next {
    right: -40px;
}

.testimonial-slider-wrap .swiper-button-prev:hover,
.testimonial-slider-wrap .swiper-button-next:hover {
    backdrop-filter: blur(10px);
}

.testimonial-slider-wrap .swiper-button-prev::after,
.testimonial-slider-wrap .swiper-button-next::after {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

/* Pagination dots */
.testimonial-slider-wrap .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: -25px;
}

.testimonial-slider-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--main-brand);
    opacity: 1;
    transition: background-color 0.2s ease, width 0.2s ease;
    margin: 0 !important;
}

.testimonial-slider-wrap .swiper-pagination-bullet-active {
    height: 6px;
    background-color: var(--main-brand);
    width: 25px;
}


/* cta secton */

.cta-section {
    position: relative;
}

.cta-wrapper {
    display: flex;
    align-items: stretch;
    background-color: var(--white);
    border-radius: 0px;
    overflow: hidden;
}

/* Left content panel */
.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    max-height: 276px;
}

.cta-content .common-small-section-title{
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--grey-clr);
    margin: 0 0 25px 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
    width: fit-content;
    transition: color 0.2s ease;
}

.cta-btn:hover {
    color: var(--dark-blue);
}

/* Right image panel */
.cta-image {
    flex: 0 0 auto;
    width: 568px;
    max-height: 276px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Responsive css */
@media (max-width: 1600px) {

    .welcome-features{
		gap: 15px 40px
	}

	.welcome-features li {
		width: 45%;
	}

	.certificate-image {
		padding: 0px 44px;
	}

	.certificate-image img {
		width: 126px;
	}

	.certificate-image::before{
		background-size: 260px;
	}

	.certificate-name h3 {
    	font-size: 22px;
	}

    .industry-card {
        min-height: 300px;
    }
}

@media (max-width: 1399px) {

	.common-small-section-title {
		font-size: 30px;
	}

	.common-spacing {
		padding: 75px 0;
	}

	.common-section-title {
		font-size: 44px;
		margin-bottom: 35px;
	}

	.banner-content {
        gap: 20px;
        max-width: calc(100% - 150px);
	}

	.banner-content h1 {
    	font-size: 48px;
	}

	.welcome-wrapper {
		gap: 40px;
	}

	.welcome-image-col {
		max-width: 540px;
	}

	.counter-item {
		padding: 14px 10px;
		min-height: 110px;
	}

	.counter-label {
		font-size: 16px;
		line-height: 24px;
	}

	.certificate-grid {
		gap: 20px;
	}

	.certificate-card-inner {
		gap: 20px;
		padding: 20px 10px;
	}

	.certificate-image {
        padding: 0px 34px;
    }

	.certificate-image img {
        width: 112px;
    }

	.certificate-image::before {
        background-size: 220px;
    }

	.certificate-name h3 {
        font-size: 20px;
    }

    .testimonial-slider-wrap {
        max-width: 1080px;
    }

    .testimonial-slider-wrap .swiper-button-prev, 
    .testimonial-slider-wrap .swiper-button-next{
        width: 60px;
        height: 60px;
    }

    .testimonial-slider-wrap .swiper-button-prev {
        left: -30px;
    }

    .testimonial-slider-wrap .swiper-button-next {
        right: -30px;
    }

    .testimonial-card{
        padding: 75px 70px 30px;
    }

    .testimonial-card::before{
        left: 70px;
        width: 60px;
        height: 54px;
    }

    .author-initials {
        width: 60px;
        height: 60px;
        font-size: 24px;
        line-height: 28px;
    }

    .author-info{
        width: calc(100% - 75px);
    }

    .author-info h4 {
        font-size: 22px;
    }

    .author-info span {
        font-size: 16px;
    }

    .testimonial-message {
        font-size: 24px;
        line-height: 1.4;
    }

	.cta-content h2 {
        font-size: 28px;
    }

    .cta-content {
        padding: 40px;
    }

    .cta-image {
        width: 488px;
    }

    .cta-content p {
        font-size: 20px;
        line-height: 28px;
    }

    .product-grid {
        gap: 20px;
    }

    .product-image {
        height: 190px;
    }

    .product-title {
        font-size: 22px;
    }

    .industry-grid {
        gap: 20px;
    }

    .industry-card {
        min-height: 270px;
    }

    .industry-content {
        padding: 0px 20px 18px;
    }

    .industry-title {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {

	.common-section-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .welcome-image-col {
        max-width: 440px;
    }

	.welcome-counters{
		max-width: 360px;
	}

	.welcome-tag {
		font-size: 13px;
		min-width: 155px;
		min-height: 32px;
		margin-bottom: 20px;
	}

	.welcome-features {
        gap: 15px;
    }
	
    .welcome-features li {
        width: calc(50% - 15px);
		font-size: 16px;
    	line-height: 24px;
    }

	.feature-icon {
		width: 18px;
		height: 18px;
	}

	.certificate-card-inner{
		gap: 15px;
	}

	.certificate-image img {
        width: 100px;
    }

	.certificate-image::before {
        background-size: 190px;
    }

	.certificate-image {
        padding: 0px 30px;
    }

	.certificate-name h3 {
        font-size: 18px;
    }

    .testimonial-section .section-title h2 {
        font-size: 38px;
    }

    .testimonial-slider-wrap {
        max-width: 900px;
    }

    .testimonial-card {
        padding: 60px 50px 30px;
        gap: 30px;
    }

    .testimonial-card::before {
        left: 50px;
        width: 50px;
        height: 44px;
    }

    .cta-content {
        padding: 30px;
        max-height: 240px;
        min-height: 240px;
    }

    .cta-content p {
        font-size: 18px;
        line-height: 26px;
    }

    .cta-image {
        width: 38%;
    }

    .testimonial-slider-wrap .swiper-button-prev, .testimonial-slider-wrap .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .testimonial-slider-wrap .swiper-button-prev::after, .testimonial-slider-wrap .swiper-button-next::after {
        font-size: 18px;
    }

    .testimonial-slider-wrap .swiper-button-prev {
        left: -25px;
    }

    .testimonial-slider-wrap .swiper-button-next {
        right: -25px;
    }

    .testimonial-message {
        font-size: 20px;
    }

    .author-initials {
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 26px;
    }

    .author-info{
        width: calc(100% - 65px);
    }

    .author-info h4 {
        font-size: 20px;
    }

    .author-info span {
        font-size: 14px;
        line-height: 22px;
        display: inline-flex;
    }

    .product-card {
        padding: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 170px;
    }

    .product-content{
        gap: 20px;
    }

    .product-title {
        font-size: 20px;
        min-height: 54px;
    }

    .industry-grid {
        gap: 16px;
    }

    .industry-card {
        min-height: 230px;
    }

    .industry-title {
        font-size: 20px;
    }

    .industry-content {
        padding: 20px 18px 18px;
        gap: 15px;
    }

    .industry-content-details{
        width: calc(100% - 53px);
    }

    .industry-btn{
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 991px) {
	.common-spacing {
        padding: 60px 0;
    }

	.hero-slider {
		height: 450px;
	}

	.banner-content h1 {
		font-size: 36px;
	}

	.banner-content {
        max-width: calc(100% - 100px);
    }

	.welcome-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.welcome-image-col {
		width: 100%;
	}

	.welcome-image img {
		max-height: 360px;
	}

	/* 2 columns on tablet */
	.certificate-grid {
		grid-template-columns: repeat(2, 1fr);
	}

    /* Industry — 2 columns on tablet */
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Testimonial — full width, hide arrows on tablet */
    .testimonial-slider-wrap {
        max-width: 100%;
        padding: 0;
    }

    .testimonial-slider-wrap .swiper-button-prev,
    .testimonial-slider-wrap .swiper-button-next {
        display: none;
    }

    .testimonial-message {
        font-size: 18px;
    }

    /* CTA — stack vertically */
    .cta-wrapper {
        flex-direction: column;
    }

    .cta-content {
        padding: 40px 36px;
    }

    .cta-image {
        width: 100%;
        height: 260px;
    }
}

@media (max-width: 767px) {

	.banner-content h1 {
		font-size: 32px;
	}

	.banner-content p {
		font-size: 18px;
	}

	.hero-slider .swiper-button-prev,
	.hero-slider .swiper-button-next {
        width: 30px;
        height: 30px;
	}

	.hero-slider .swiper-button-prev::after,
	.hero-slider .swiper-button-next::after {
		font-size: 20px;
	}

	.banner-btn.common-cta-btn {
		min-width: 140px;
	}

	.welcome-tag {
        font-size: 12px;
        min-width: 145px;
        margin-bottom: 15px;
    }

	.common-small-section-title {
		font-size: 26px;
	}

	.counter-suffix {
		font-size: 18px;
	}

	.welcome-features {
		gap: 10px;
	}

	.welcome-features li{
		width: 100%;
	}

	.certificate-name h3 {
		font-size: 16px;
	}

	.common-section-title {
		font-size: 34px;
	}

	.certificate-image img {
        width: 80px;
    }

	.certificate-image::before {
        background-size: 160px;
    }

	.certificate-image {
        padding: 0px 25px;
    }

    .testimonial-section .section-title h2 {
        font-size: 28px;
    }

    .testimonial-section .section-title {
        margin-bottom: 36px;
    }

    .testimonial-card {
        padding: 60px 30px 30px;
    }

    .testimonial-card::before {
        left: 30px;
    }

    .testimonial-message {
        font-size: 16px;
    }

    .cta-content {
        padding: 32px 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-image {
        height: 220px;
    }

    .industry-title {
        font-size: 18px;
    }

    .industry-desc {
        font-size: 14px;
    }

    .product-card {
        padding: 15px;
        row-gap: 15px;
    }

    .product-title {
        font-size: 18px;
        min-height: 54px;
    }

    .product-content {
        gap: 15px;
    }
}

@media (max-width: 575px) {

	.header-wrap {
        min-height: 75px;
    }

	.common-spacing {
        padding: 50px 0;
    }

	.common-cta-btn{
		min-height: 40px;
	}

	.hero-slider {
		height: 350px;
	}

	.banner-content h1{
		font-size: 28px;
	}

	.banner-content p {
        font-size: 16px;
    }

	.banner-content{
		gap: 15px;
		max-width: 100%;
	}

	.banner-tag {
		font-size: 12px;
		padding: 5px 12px;
		min-height: 32px;
		min-width: 150px;
	}

	.banner-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.welcome-counters{
		margin: -45px auto 0;
	}

	.welcome-section {
		padding: 48px 0;
	}

	.common-small-section-title {
		font-size: 22px;
	}

	.counter-suffix {
		font-size: 16px;
	}

	.counter-item {
		padding: 14px 8px;
	}

	.counter-label {
		font-size: 14px;
	}

	/* 1 column on mobile */
	.certificate-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        min-height: 260px;
    }

	.certificate-section-title {
		margin-bottom: 32px;
	}

	.common-section-title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.counter-item{
		min-height: 90px;
	}

	.welcome-description {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 20px;
	}

    .testimonial-section .section-title h2 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 50px 20px 30px;
    }

    .testimonial-card::before {
        left: 20px;
        width: 40px;
        height: 34px;
    }

    .testimonial-message {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-content {
        padding: 25px;
        min-height: 100%;
        max-height: max-content;
    }

    .cta-image {
        display: none;
    }

    .testimonial-author {
        padding-top: 25px;
    }

    .author-initials {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 24px;
    }

    .author-info{
        width: calc(100% - 55px);
    }

    .author-info h4 {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-title{
        min-height: auto;
    }

    .product-title {
        font-size: 16px;
    }

    .product-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .industry-title {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
	.certificate-card-inner {
		padding: 18px 14px;
		gap: 14px;
	}

	.certificate-name h3 {
		font-size: 14px;
	}

	.common-section-title {
		font-size: 24px;
	}

	.welcome-counters {
        max-width: 270px;
    }

	.counter-item {
        min-height: 80px;
    }

	.counter-item::before {
		height: 20px;
	}

	.welcome-wrapper {
        gap: 30px;
    }

    .testimonial-message {
        font-size: 14px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .cta-image {
        height: 170px;
    }

    .product-content {
        gap: 10px;
    }

    .industry-content {
        gap: 10px;
    }

    .industry-content-details {
        width: calc(100% - 45px);
    }

    .industry-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}