:root {
    --ge-green: #004D43;
    --ge-accent: #2ECC71;
    --ge-bg-light: #F9F9F9;
    --ge-text: #333;
    --White-text: #F6F7F9;
    --Green: #25B461;
}
.container_about_us_one {
    max-width: 1520px;
    margin: 0 auto;
    width: calc(100% - 160px);
}

.ge-hero-with-bg {
    background: url('/image/catalog/photo_aboutNEW.svg') center center / cover no-repeat;
    padding: 0 0 30px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    color: #fff; 
    position: relative;
    display: flex;
    align-items: center;
}

.container_about_us_one .breadcrumb-custom {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 100px 0 0 0;
    margin: 0 auto;
    background: transparent !important;
    max-width: 1520px;
}

.container_about_us_one .breadcrumb-custom li a,
.container_about_us_one .breadcrumb-custom .current-page {
    color: var(--White-text, #F6F7F9);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

.container_about_us_one .breadcrumb-custom li:not(:last-child)::after {
    content: "/";
    background-color: #F6F7F9;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.ge-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    margin-top: 30px;
}

.ge-label { 
    color: var(--White-text, #F6F7F9);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
}

.ge-main-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--White-text, #F6F7F9);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ge-hero-desc {
    color: var(--White-text, #F6F7F9);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 592px;
}



@media (max-width: 739px) {
    .ge-main-title {
        font-size: 24px;
    }
    .ge-hero-inner {
        margin-left: 10px;
        margin-right: 10px;
    }
    .container_about_us_one {
        width: 100%;
    }
    .container_about_us_one .breadcrumb-custom {
        padding-top: 90px; 
    }
}

.ge-services-section {
    padding: 50px 0;
    width: 100%;
}

.ge-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: calc(100% - 160px);
    margin: 0 auto; 
    max-width: 1520px;
}

.ge-service-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}


.ge-service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: transform 0.3s ease;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.8) 100%);
}

.ge-service-content {
    width: 100%;
    transition: transform 0.4s ease;
}

.ge-service-title {
    color: var(--White-text, #F6F7F9);
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin:0;
}

.ge-service-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ge-service-description {
    color: #F6F7F9;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    display: flex;
    width: 100%;
    max-width: 400px;
    /* height: 75px; */
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-bottom: 10px;
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ge-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #25B461;
    border: 1px solid #25B461;
    padding: 10px 10px 10px 22px; 
    border-radius: 30px;
    text-decoration: none;
    color: #F6F7F9;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    gap: 15px;
    transition: transform 0.3s ease;
    overflow: hidden;
}


.ge-arrow {
    position: relative;
    width: 32px;
    height: 32px;
    background: #F3F3F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    transition: all 0.3s ease;
}

.ge-arrow svg {
    width: 16px;
    height: 14px;
    fill: #25B461;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    position: absolute;
}

.ge-arrow svg:first-child {
    transform: translateX(0);
}


.ge-arrow svg:nth-child(2) {
    transform: translateX(-40px);
}

.ge-service-btn:hover {
    background: #FFFFFF;
    color: #25B461;
}

.ge-service-btn:hover .ge-arrow {
    background: #25B461;
}

.ge-service-btn:hover .ge-arrow svg {
    fill: #FFFFFF;
}

.ge-service-btn:hover .ge-arrow svg:first-child {
    transform: translateX(40px);
}

.ge-service-btn:hover .ge-arrow svg:nth-child(2) {
    transform: translateX(0);
}

.ge-service-card:hover .ge-service-overlay {
    background: linear-gradient(180deg, rgba(0, 23, 14, 0.3) 0%, rgba(17, 189, 87, 0.5) 100%);
    padding: 20px;
}

.ge-service-card:hover .ge-service-hidden {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .ge-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ge-services-grid { grid-template-columns: 1fr; }
    .ge-service-card { height: 300px; }
}

.ge-details-section {
    max-width: 1520px;
    margin: 0 auto;
    width: calc(100% - 160px);
    border-radius: 30px;
    padding: 30px;
    background: var(--White-text, #F6F7F9);
    font-family: 'Inter', sans-serif;
    margin-bottom: 120px;
    margin-top: 20px;
}

.ge-main-display-title {
    margin: 0;
    margin-bottom: 15px;
    color: var(--Black-text, #000);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
}

.ge-main-lead-text {
    color: var(--Black-text, #000);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin: 0;
}


.ge-detail-row {
    display: flex;
    flex-direction: column;
}

.ge-detail-info {
    flex: 1;
}

.ge-detail-info h3 {
    color: var(--Black-text, #000);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px; 
    margin: 0;
    margin-bottom: 20px;
}

.ge-detail-info p {
    color: var(--Black-text, #000);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
    margin: 0;
    margin-bottom: 10px;
}

@media screen and (max-width: 1300px) {
    .container_about_us_one {
        width: calc(100% - 40px);
    }
    .container_about_us_one .breadcrumb-custom {
        width: 100%;
    }
    .ge-services-grid {
        width: calc(100% - 40px);
    }
    .ge-details-section {
        width: calc(100% - 40px);
        padding: 30px 10px;
    }
}

@media screen and (max-width: 740px) {
    .container_about_us_one {
        width: calc(100% - 20px);
    }
    .container_about_us_one .breadcrumb-custom {
        width: 100%;
    }
    .ge-services-grid {
        width: calc(100% - 20px);
    }
    .ge-details-section {
        width: calc(100% - 20px);
    }
    .ge-main-display-title {
        font-size: 20px;
    }
    .ge-main-lead-text {
        font-size: 14px;
    }
    .ge-detail-info h3 {
        line-height: 25px;
    }
}

.ge-mobile-arrow {
  display: none;
}

.ge-detail-info h3 {
  margin: 0;
}

@media (max-width: 739px) {
  .ge-detail-row {
    cursor: pointer;
    position: relative;
    padding-right: 20px; 
  }

  .ge-mobile-arrow {
    display: block;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg); 
    transition: all 0.3s ease;
  }

  .ge-detail-info p, 
  .ge-detail-bullets {
    display: none; 
    margin-top: 15px;
  }


  .ge-detail-row.is-active .ge-detail-info p,
  .ge-detail-row.is-active .ge-detail-bullets {
    display: block;
    margin: 0;
  }


  .ge-detail-row.is-active .ge-mobile-arrow {
    transform: rotate(-135deg);
    top: 10px;
  }
}

.ge-detail-bullets {
    padding: 0;
    color: var(--Black-text, #000);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.ge-detail-bullets li {
    margin-left: 25px;
}



.ge-separator {
    height: 2px;
    align-self: stretch;
    border-radius: 50px;
    background: var(--Footer-text, #8A8C8D);
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .ge-detail-row { flex-direction: column;}
    .ge-detail-bullets { grid-template-columns: 1fr; }
}

.ge-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    display: none; justify-content: center; align-items: center;
    z-index: 10000; backdrop-filter: blur(4px);
}
.ge-modal-container {
    background: #fff; width: 90%; max-width: 500px;
    padding: 40px; border-radius: 24px; position: relative;
}
.ge-modal-close {
    position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 30px; cursor: pointer; color: #ccc;
}
.ge-modal-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; text-align: left; color: #000; }
.ge-modal-subtitle { font-size: 15px; color: #666; margin-bottom: 30px; text-align: left; }


.ge-input-label {
    display: block; text-align: left; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 8px;
}

.ge-form-group { margin-bottom: 20px; }
.ge-form-group input, .ge-form-group textarea {
    width: 100%; padding: 14px 18px; border: 1px solid #eee; border-radius: 12px; font-size: 16px; outline: none; background: #f9f9f9;
}
.ge-form-group input:focus { border-color: #25B461; background: #fff; }
.ge-form-group textarea { height: 100px; resize: none; }

.ge-modal-actions { display: flex; gap: 15px; margin-top: 25px; }
.ge-btn-back {
    flex: 1; height: 54px; border-radius: 30px; border: 1px solid #e0e0e0; background: #fff; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.ge-btn-back:hover { background: #f5f5f5; }

.ge-submit-btn-styled {
    flex: 1.5; height: 54px; border-radius: 30px; border: none; background: #25B461; color: #fff; font-weight: 700; 
    display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: 0.3s;
}
.ge-submit-btn-styled:hover { background: #1e9650; }
.ge-success-icon { text-align: center; margin-bottom: 20px; }





.ge-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	backdrop-filter: blur(4px);
}

.ge-modal-container {
	background: #fff;
	width: 90%;
	max-width: 652px;
	padding: 50px;
	position: relative;
	border-radius: 20px;
}

.ge-modal-title {
	color: #121212;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	margin: 0;
    margin-bottom: 15px;
}

.ge-modal-subtitle {
	color: #121212;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 30px;
}

.ge-input-label {
	color: #000;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 8px;
	display: block;
}

.ge-form-group {
	margin-bottom: 30px;
}

.ge-form-group input,
.ge-form-group textarea {
	width: 100%;
	padding: 14px 18px;
	color: #121212; 
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	outline: none;
	border-radius: 20px;
	background: #E4E4E4;
	border: 1px solid #E4E4E4;
	transition: 0.3s;
	box-sizing: border-box;
}

.ge-form-group input::placeholder,
.ge-form-group textarea::placeholder {
	color: #8A8C8D;
	font-weight: 400;
}

.ge-form-group input:focus,
.ge-form-group textarea:focus {
	border-color: #25B461;
	background: #fff;
	color: #121212;
	font-weight: 600;
}

.ge-form-group textarea {
	height: 100px;
	resize: none;
	padding-top: 14px;
}

.ge-error-text {
	color: #E03131;
	font-size: 14px;
	margin-top: 5px;
	display: none; 
	font-weight: 500;
}

.ge-form-group.has-error input,
.ge-form-group.has-error textarea {
	border-color: #E03131;
}

.ge-modal-actions {
	display: flex;
	gap: 22px;
	margin-top: 25px;
}

.ge-btn-back {
	flex: 1;
	height: 50px;
	border-radius: 26px;
	border: 1px solid var(--Green, #25B461);
	background: #FFF;
	cursor: pointer;
	transition: 0.3s;
	color: #161616;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; 
	width: 100%;
	max-width: 95px;
}

.ge-submit-btn-styled {
	flex: 1.5;
	height: 50px;
	border-radius: 30px;
	border: none;
	padding: 10px 20px;
	background: #25B461;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	cursor: pointer;
	transition: 0.3s;
	color: #F3F3F3;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px; 
}

.ge-submit-btn-styled:hover {
	border-radius: 30px;
	border: 1px solid var(--Green, #25B461);
	background: #FFF;
	color: #25B461;
}
.ge-btn-back:hover {
	background: #f5f5f5;
	color: #25B461;
}
.ge-success-icon {
	text-align: center;

}

.ge-success-icon svg {
	margin-bottom: 30px;
}
.ge-form-group.has-error input,
.ge-form-group.has-error textarea {
	border-color: #E03131 !important;
}
.ge-error-text {
	color: #E03131;
	font-size: 14px;
	margin-top: 5px;
	display: none;
	font-weight: 500;
}

@media (max-width: 739px) {
	.ge-modal-container {
		padding: 15px;
	}
	.ge-modal-title {
		font-size: 24px;
		line-height: 24px;
	}
	.ge-modal-subtitle {
		font-size: 20px;
		line-height: 24px;
	}
	.ge-input-label {
		font-size: 14px;
		line-height: 24px;
	}
}



.ge-service-title {
    margin: 0 !important; 
}

.ge-service-card:hover .ge-service-hidden {
    max-height: 200px;
    opacity: 1;
    margin-top: 7px;
}

.ge-service-description {
    margin-bottom: 15px;
}