/* Case Study Post Template Styles */

.case-study-hero {
    width: 100%;
    min-height: 600px;
    position: relative;
	margin: 3rem 0 0 0;
}

.hero-background {
    width: 100%;
    min-height: 600px;
    background: url('../images/banner-background.jpg');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 30px;
}



/* Breadcrumbs */
.breadcrumbs {
    /* position: absolute; */
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
    font-family: Lato;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

/* Case Study Title */
.case-study-title {
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    padding-top: 10px;
}

.case-study-title span {
    font-family: Lato;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color:#91D3FF;
}

/* Main Title */
.main-title {
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
	 max-width: 1000px;
}

.main-title h1 {
    font-family: Lato;
    font-weight: 700;
    font-style: Bold;
    font-size: 80px;
    line-height: 90px;
    letter-spacing: 0%;
    text-align: center;
    color:#fff;
    margin: 0 auto !important;
}

/* Hero Image */
.hero-image {
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
    width: 800px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Colored Bars */
.colored-bars {
    display: flex;
    /* gap: 0; */
    z-index: 2;
    position: absolute;
    width: 100%;
    /* max-width: 100%; */
    bottom: 0;
}

.bar {
    height: 8px;
    flex: 1;
}

.bar-white {
    background: #ffffff;
    border-radius: 4px 0 0 4px;
}

.bar-blue {
    background: #569BBE;
    border-radius: 4px 0 0 4px;
}

.bar-green {
    background: #C4E578;
}

.bar-orange {
    background: #EE8434;
    border-radius: 0 4px 4px 0;
}

/* Case Study Content Section */
.case-study-content {
    background: #ffffff;
    padding: 10px 0 5rem 0;
    position: relative;
    margin-top: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Challenges Text */
.challenges-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
    line-height: 1.2;
}

.challenges-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #374151;
    font-weight: 300;
}

/* Challenge Cards */
.challenge-cards {
    display: flex;
    gap: 30px;
}

.challenge-card {
    padding: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .challenge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
} */

.card-icon {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 0px 46.6px 0px #00000026;
    margin-bottom: 2rem;
    padding: 2.5rem;
}

.challenge-card:first-child .card-icon{
    padding: 1.8rem;
}

.card-icon.orange {
    background: #FFF3E0;
    color: #FF9800;
}

.card-icon.blue {
    background: #E3F2FD;
    color: #2196F3;
}

.card-icon.green {
    background: #E8F5E8;
    color: #4CAF50;
}

.card-main-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-align: center;
}

.card-description {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    text-align: center;
	 line-height: 19px;
}

/* Responsive Design for Case Study */
@media (max-width: 768px) {
    .hero-background {
        padding: 40px 15px 30px;
        min-height: 500px;
        background-size: cover !important;
    }
    
    .hero-image {
        width: 100%;
     }
    
    .breadcrumbs {
        position: static;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .main-title h1 {
        font-size: 32px;
        line-height: 34px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .challenges-text h2 {
        font-size: 32px;
    }
    
    .challenge-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-main-text {
        font-size: 20px;
        margin-bottom: 5px;
        text-align: center; 
    }
    
    .challenge-cards {
    	flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-background {
        min-height: 450px;
        padding: 30px 15px 20px;
    }
    
    .main-title h1 {
        font-size: 28px;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .colored-bars {
        width: 270px;
    }
    
    .case-study-content {
        padding: 60px 0;
    }
    
    .challenges-text h2 {
        font-size: 28px;
    }
    
    .challenges-text p {
        font-size: 16px;
    }
    
    .challenge-card {
        padding: 20px;
    }
}

/* Solutions Section Styles */
.solutions-section {
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #ECECEC 100%);
    padding: 120px 0;
    position: relative;
}

.chevron-down {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 60px solid #ffffff;
    z-index: 10;
}

.chevron-borderTopGrey {
    border-top: 60px solid #ECECEC !important; 
}



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

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px !important;
}

.solutions-intro {
    font-size: 20px;
    color: #374151;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 300;
    margin: 0 auto !important;
}

.solutions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Solutions Text Column */
.solutions-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.solution-item {
    margin-bottom: 30px;
}

.solution-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.solution-item p {
    font-size: 20px;
    color: #374151;
    line-height: 1.6;
	font-weight: 300 !important;
}

/* Solutions Visual Column */
.solutions-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solutions-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.solutions-image img {
    width: 100%;
    height: auto;
    display: block;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-card {
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.metric-icon {
    margin: 0 auto 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    opacity: 1;
    gap: 10px;
    border-radius: 20px;
    padding-top: 24px;
    padding-right: 30px;
    padding-bottom: 24px;
    padding-left: 30px;
    background-color: #ffffff;
    box-shadow: 0px 0px 46.6px 0px #00000026;
}



.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

/* Responsive Design for Solutions */
@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solutions-text {
        gap: 30px;
    }
    
    .metric-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 28px;
    }
    
    .solutions-intro {
        font-size: 16px;
    }
    
    .solution-item h3 {
        font-size: 20px;
    }
    
    .solution-item p {
        font-size: 15px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .metric-description {
        font-size: 13px;
    }
}

/* Results Section Styles */
.results-section {
    background: url('../images/result-background.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}



.results-content {
/*     max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.results-header {
    text-align: center;
    margin-bottom: 60px !important;
	max-width: 1000px;
    margin: 0 auto;
}

.results-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px !important;
}

.results-description {
    font-family: Lato !important;
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
    line-height: 33px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
}

.results-infographics {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
	margin: 0 2rem;
}

.result-item {
    text-align: center;
    position: relative;
}

.result-circle {
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.result-icon {
    width: 100%;
    height: 100%;
    transform: scale(.8);
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    position: relative;
}

.result-value {
    font-family: Lato;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
    padding-bottom: 10px;
}

.result-description {
    font-family: Lato;
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
color: #ffffff;  
padding:0 1rem
}


.result-circle.progress-circle .result-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.result-value.small-text {
    font-family: Lato;
    font-weight: 600;
    font-style: Light;
    font-size: 26px !important;
    line-height: 30px !important;
    letter-spacing: 0%;
    text-align: left !important;
	color: #ffffff;  
	padding-left: 1.2rem;
}

.result-item:last-child .result-description {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.result-item:last-child .result-icon img{
   position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-item:last-child .result-icon {
    transform: scale(1);
}


/* Responsive Design for Results */

@media (min-width: 1300px) {
   .result-item:last-child .result-icon img{
        width: 80%;
        height: 80%;
	}

}



@media (max-width: 1024px) {
    .results-infographics {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .result-circle {
        width: 180px;
    }
    
    .result-value {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .results-section {
        padding: 60px 0;
    }
    
    .results-title {
        font-size: 36px;
    }
    
    .results-description {
        font-size: 16px;
    }
    
    .results-infographics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .result-circle {
        width: 160px;
        height: auto;
    }
    
    .result-value {
        font-size: 28px;
    }
    
    .result-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .results-infographics {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-circle {
        width: 140px;
        height: auto;
    }
    
    .result-value {
        font-size: 24px;
    }
    
    .result-description {
        font-size: 12px;
    }
}

/* Partnership Section Styles */
.partnership-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

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

.partnership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Image */
.partnership-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.partnership-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* Right Column - Content */
.partnership-text {
    padding-left: 20px;
}

.partnership-headline {
    font-family: Lato;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
    color: #03466C;
}

.partnership-description {
    font-size: 20px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 35px;
      padding: 2rem 0 !important;
	  font-weight: 300;
}

.partnership-cta {
    display: inline-block;
}

.cta-button {
    background-color: #FF6B35 !important;
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Responsive Design for Partnership */
@media (max-width: 768px) {
    .partnership-section {
        padding: 60px 0;
    }
    
    .partnership-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partnership-text {
        padding-left: 0;
        text-align: center;
    }
    
    .partnership-headline {
        font-size: 32px;
    }
    
    .partnership-description {
        font-size: 16px;
    }
    
}

@media (max-width: 480px) {
    .partnership-headline {
        font-size: 28px;
    }
    
    .partnership-description {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .inc-badge {
        width: 80px;
        height: 80px;
        top: 10px;
        left: 10px;
    }
    
    .inc-badge-top,
    .inc-badge-bottom {
        font-size: 6px;
    }
    
    .inc-badge-main {
        font-size: 12px;
    }
    
    .inc-badge-number {
        font-size: 16px;
    }
}


.text-large {
    font-family: Lato;
    font-weight: 900;
    font-style: Black;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center; 
}

.text-medium {
    font-family: Lato;
    font-weight: 900;
    font-style: Black;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: center;

}

.text-small {
    font-family: Lato;
    font-weight: 900;
    font-style: Black;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;

}

@media (max-width: 1200px) {
    .hero-background {
        background-size: cover;
    }
}