/* Root Variables */
:root {
  --font-size: 0.8em;
  --bg1: #f5f8f7;
  --blue: #3498db;
  --green: #2ecc71;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --orange: #e67e22;
  --teal: #2a9d8f;
  --pink: #e91e63;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}

li{
    list-style-type: none;
}

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");



/* Pathway Section */
#pathwaySection {
  padding: 100px 0;
  background: #fff;
}



.text-center {
  text-align: center;
  margin-bottom: 5rem;
}

.pathway-subtitle {
  color: #2a9d8f;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.subtitle-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #2a9d8f;
}

.left-line {
  left: -60px;
}

.right-line {
  right: -60px;
}

.pathway-title {
  color: #1f2937;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pathway-intro {
  color: #64748b;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* InfoGraphic List */
.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 30em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}

.numberWrap {
  position: absolute;
}

.number {
  font-family: "Maven Pro", sans-serif;
  font-size: 13em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}

.number.fontColor1 { color: var(--blue); }
.number.fontColor2 { color: var(--green); }
.number.fontColor3 { color: var(--purple); }
.number.fontColor4 { color: var(--gold); }
.number.fontColor5 { color: var(--red); }
.number.fontColor6 { color: var(--orange); }
.number.fontColor7 { color: var(--teal); }
.number.fontColor8 { color: var(--pink); }

.coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
}

.numberCover {
  position: absolute;
  background: var(--bg1);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}

.numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px / 10px;
  z-index: -1;
}

.numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}

.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

.content {
  margin: 8em 3em 1em 7em;
  position: relative;
}

.content h2 {
  font-size: 1.7em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 40px;
}

.content p {
  line-height: 1.5em;
}

/* FontAwesome Icons */
.icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.3em;
  left: 50%;
  transform: translateX(-50%);
}

.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before { content: "\f1cb"; }
.iconSocial:before { content: "\f08a"; }
.iconAirplane:before { content: "\f1d9"; }
.iconMap:before { content: "\f278"; }
.iconBulb:before { content: "\f0eb"; }
.iconPeace:before { content: "\f25b"; }
.iconVibrant:before { content: "\f0c8"; }
.iconAlumni:before { content: "\f0c0"; }

/* Controls */
#controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}

.sliderBox {
  text-align: center;
}

.range-value {
  font-weight: 500;
  font-size: 22px;
}

input[type="range"] {
  width: 100%;
  margin: 1em 0;
  -webkit-appearance: none;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: #00000066;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px rgba(0, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #eee;
}

input[type="range"]::-moz-range-track {
  background: #000;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
}

input[type="range"]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type="range"]::-ms-fill-lower {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type="range"]::-ms-fill-upper {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type="range"]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #ffffff;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #ffffff;
}
/* Section background and gradient shadow */
.gradient-bg {
    /* background: linear-gradient(to bottom, #ffffff 0%, #e4efe9 20%, #d4e4dd 50%, #e4efe9 80%, #ffffff 100%); */
    position: relative;
    overflow: hidden;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow:
        0 10px 30px rgba(42, 157, 143, 0.2),
        0 15px 40px rgba(231, 111, 81, 0.1),
        0 15px 40px rgba(231, 111, 81, 0.1),
        0 15px 40px rgba(231, 111, 81, 0.1);
}


/* Section Heading */
.section-heading {
    color: #0d3b66;
    font-weight: 700;
    font-size: 2.75rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.heading-underline {
    display: block;
    width: 120px;
    height: 5px;
    margin: 15px auto 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #2a9d8f, #e76f51, #457b9d, #f4a261);
}

/* Counter Boxes */
.counter-item {
    text-align: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* max-width: 160px; */
}

.counter-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Shadow Color Variants */
.shadow-green {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
}

.shadow-orange {
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3), 0 12px 30px rgba(231, 111, 81, 0.1);
}

.shadow-blue {
    box-shadow: 0 8px 20px rgba(69, 123, 157, 0.3), 0 12px 30px rgba(69, 123, 157, 0.1);
}

.shadow-yellow {
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3), 0 12px 30px rgba(244, 162, 97, 0.1);
}

/* Icons */
.counter-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto 15px;
}

.counter-item:hover .counter-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Icon Color Variants */
.icon-green {
    background: linear-gradient(135deg, #2a9d8f, #4ab8a7);
}

.icon-orange {
    background: linear-gradient(135deg, #e76f51, #f28b6e);
}

.icon-blue {
    background: linear-gradient(135deg, #457b9d, #6791b0);
}

.icon-yellow {
    background: linear-gradient(135deg, #f4a261, #f6b37f);
}

/* Counter Numbers */
.counter-number {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.counter-number::after {
    content: "+";
    position: absolute;
    right: -20px;
    top: 0;
    font-size: 1.75rem;
    color: #2a9d8f;
    font-weight: bold;
}

/* Gradient Text Colors */
.text-green {
    background: linear-gradient(45deg, #2a9d8f, #4ab8a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-orange {
    background: linear-gradient(45deg, #e76f51, #f28b6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue {
    background: linear-gradient(45deg, #457b9d, #6791b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-yellow {
    background: linear-gradient(45deg, #f4a261, #f6b37f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .counter-number {
        font-size: 2rem !important;
    }

    .counter-icon {
        width: 50px !important;
        height: 50px !important;
    }

    .counter-icon img {
        width: 35px !important;
    }

    .counter-item {
        padding: 10px;
        max-width: 100%;
        width: 100%;
    }

    .section-heading {
        font-size: 2rem !important;
    }

    .gradient-bg {
        margin: 0 15px;
    }

    .benefit-item {
        flex-direction: column;
    }

    .infoGraphic li{
        width: 25em;
    }
}

/* ===== EXTRACTED INLINE STYLES FROM INDEX.HTML ===== */

/* Header Contact Info Styles */
.header-contact-info {
    color: #ffff;
    font-size: 15px;
}

/* Download Button Styles */
.download-btn {
    background: #132a60;
    color: #fff;
    border: none;
    border-radius: 30px;
}

.download-dropdown {
    min-width: 220px;
    border-radius: 10px;
}

/* Choose Us Section Styles */
.choose-us-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.choose-us-thumb {
    max-width: 600px;
    margin: 0 auto;
}

.choose-us-thumb-media {
    position: relative;
    z-index: 1;
}

.choose-us-bg-layer {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #2a9d8f, #e76f51);
    border-radius: 15px;
    transform: rotate(-10deg);
    z-index: -1;
}

.choose-us-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.choose-us-content {
    position: relative;
    padding-right: 20px;
}

.choose-us-subtitle {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #2a9d8f;
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.choose-us-title {
    font-size: 44px;
    font-weight: 800;
    color: #0d3b66;
    line-height: 1.15;
    margin-bottom: 25px;
}

.choose-us-text {
    font-size: 18px;
    color: #354f52;
    line-height: 1.8;
    margin-bottom: 20px;
}

.choose-us-text-large {
    font-size: 18px;
    color: #354f52;
    line-height: 1.8;
    margin-bottom: 30px;
}

.decorative-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(231, 111, 81, 0.1));
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 0;
}

/* Service Area Styles */
.service-area {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
     box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-icon.green {
    color: #83cd20;
}

.service-icon.blue {
    color: #132a60;
}

.service-icon.red {
    color: #ed1b24;
}

.service-title {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Country Background Images */
.country-bg-hungary {
    background-image: url(../imgs/country_log/Hungary.jpg);
}

.country-bg-uk {
    background-image: url(../imgs/country_log/UK.jpg);
}

.country-bg-ireland {
    background-image: url(../imgs/country_log/ireland-flag-with-ireland-special-landscape.jpg);
}

.country-bg-austria {
    background-image: url(../imgs/country_log/Austria.jpg);
}

.country-bg-malta {
    background-image: url(../imgs/country_log/Malta.jpg);
}

.country-bg-switzerland {
    background-image: url(../imgs/country_log/Switzerland.jpg);
}

.country-bg-usa {
    background-image: url(../imgs/country_log/USA.jpg);
}

.country-bg-france {
    background-image: url(../imgs/country_log/France.jpg);
}

.country-bg-uzbekistan {
    background-image: url(../imgs/country_log/Uzbek.jpeg);
}

.country-bg-georgia {
    background-image: url(../imgs/country_log/Georgia.jpg);
}

.country-bg-moldova {
    background-image: url(../imgs/country_log/Moldova.jpg);
}

.country-bg-armenia {
    background-image: url(../imgs/country_log/Armenia.jpg);
}

.country-bg-russia {
    background-image: url(../imgs/country_log/Russi.jpg);
}

.country-bg-czech {
    background-image: url(../imgs/country_log/czech.jpg);
}

/* Benefits Section Styles */
.benefits-section {
    background: #f9fafb;
}

.benefits-subtitle {
    color: #2a9d8f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b66;
}

.benefits-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: rgb(0 0 0 / 40%) 0px 8px 20px;
    padding: 20px;
}

.benefit-media {
    flex: 0 0 30%;
}

.benefit-media img {
    border-radius: 10px;
}

.benefit-content {
    flex: 1;
    padding-left: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #0d3b66;
}

.benefit-text {
    font-size: 16px;
    color: #354f52;
    line-height: 1.6;
}

/* About Text */
.about-text {
    color: white;
}

/* Counter Icons */
.counter-icon-green {
    background: rgb(131, 205, 32);
}

.counter-icon-blue {
    background: #132a60;
}

.counter-icon-red {
    background: #ed1b24;
}

/* Achievement Section Styles */
.achievement-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 10%, #e4efe9 50%, #f5f7fa 90%, #ffffff 100%);
}

.achievement-subtitle {
    color: #2a9d8f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.achievement-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b66;
}

.achievement-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.achievement-card {
    background: #ffffff;
    border-radius: 15px;
    height: 285px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card.green-shadow {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
}

.achievement-card.orange-shadow {
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3), 0 12px 30px rgba(231, 111, 81, 0.1);
}

.achievement-card.blue-shadow {
    box-shadow: 0 8px 20px rgba(69, 123, 157, 0.3), 0 12px 30px rgba(69, 123, 157, 0.1);
}

.achievement-card.yellow-shadow {
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3), 0 12px 30px rgba(244, 162, 97, 0.1);
}

.achievement-card.red-shadow {
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3), 0 12px 30px rgba(230, 57, 70, 0.1);
}

/* ===== EXTRACTED INLINE STYLES FROM INDEX.HTML ===== */

/* Header Contact Info Styles */
.header-contact-info {
    color: #ffff;
    font-size: 15px;
}

/* Download Button Styles */
.download-btn {
    background: #132a60;
    color: #fff;
    border: none;
    border-radius: 30px;
}

.download-dropdown {
    min-width: 220px;
    border-radius: 10px;
}

/* Choose Us Section Styles */
.choose-us-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.choose-us-thumb {
    max-width: 600px;
    margin: 0 auto;
}

.choose-us-thumb-media {
    position: relative;
    z-index: 1;
}

.choose-us-bg-layer {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #2a9d8f, #e76f51);
    border-radius: 15px;
    transform: rotate(-10deg);
    z-index: -1;
}

.choose-us-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.choose-us-content {
    position: relative;
    padding-right: 20px;
}

.choose-us-subtitle {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #2a9d8f;
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.choose-us-title {
    font-size: 44px;
    font-weight: 800;
    color: #0d3b66;
    line-height: 1.15;
    margin-bottom: 25px;
}

.choose-us-text {
    font-size: 18px;
    color: #354f52;
    line-height: 1.8;
    margin-bottom: 20px;
}

.choose-us-text-large {
    font-size: 18px;
    color: #354f52;
    line-height: 1.8;
    margin-bottom: 30px;
}

.decorative-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(231, 111, 81, 0.1));
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 0;
}

/* Service Area Styles */
.service-area {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-icon.green {
    color: #83cd20;
}

.service-icon.blue {
    color: #132a60;
}

.service-icon.red {
    color: #ed1b24;
}

.service-title {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Country Background Images */
.country-bg-hungary {
    background-image: url(../imgs/country_log/Hungary.jpg);
}

.country-bg-uk {
    background-image: url(../imgs/country_log/UK.jpg);
}

.country-bg-ireland {
    background-image: url(../imgs/country_log/ireland-flag-with-ireland-special-landscape.jpg);
}

.country-bg-austria {
    background-image: url(../imgs/country_log/Austria.jpg);
}

.country-bg-malta {
    background-image: url(../imgs/country_log/Malta.jpg);
}

.country-bg-switzerland {
    background-image: url(../imgs/country_log/Switzerland.jpg);
}

.country-bg-usa {
    background-image: url(../imgs/country_log/USA.jpg);
}

.country-bg-france {
    background-image: url(../imgs/country_log/France.jpg);
}

.country-bg-uzbekistan {
    background-image: url(../imgs/country_log/Uzbek.jpeg);
}

.country-bg-georgia {
    background-image: url(../imgs/country_log/Georgia.jpg);
}

.country-bg-moldova {
    background-image: url(../imgs/country_log/Moldova.jpg);
}

.country-bg-armenia {
    background-image: url(../imgs/country_log/Armenia.jpg);
}

.country-bg-russia {
    background-image: url(../imgs/country_log/Russi.jpg);
}

.country-bg-czech {
    background-image: url(../imgs/country_log/czech.jpg);
}

/* Benefits Section Styles */
.benefits-section {
    background: #f9fafb;
}

.benefits-subtitle {
    color: #2a9d8f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b66;
}

.benefits-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: rgb(0 0 0 / 40%) 0px 8px 20px;
    padding: 20px;
}

.benefit-media {
    flex: 0 0 30%;
}

.benefit-media img {
    border-radius: 10px;
}

.benefit-content {
    flex: 1;
    padding-left: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #0d3b66;
}

.benefit-text {
    font-size: 16px;
    color: #354f52;
    line-height: 1.6;
}

/* About Text */
.about-text {
    color: white;
}

/* Counter Icons */
.counter-icon-green {
    background: rgb(131, 205, 32);
}

.counter-icon-blue {
    background: #132a60;
}

.counter-icon-red {
    background: #ed1b24;
}

/* Achievement Section Styles */
.achievement-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 10%, #e4efe9 50%, #f5f7fa 90%, #ffffff 100%);
}

.achievement-subtitle {
    color: #2a9d8f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.achievement-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b66;
}

.achievement-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.achievement-card {
    background: #ffffff;
    border-radius: 15px;
    height: 285px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card.green-shadow {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
}

.achievement-card.orange-shadow {
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3), 0 12px 30px rgba(231, 111, 81, 0.1);
}

.achievement-card.blue-shadow {
    box-shadow: 0 8px 20px rgba(69, 123, 157, 0.3), 0 12px 30px rgba(69, 123, 157, 0.1);
}

.achievement-card.yellow-shadow {
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3), 0 12px 30px rgba(244, 162, 97, 0.1);
}

.achievement-card.red-shadow {
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3), 0 12px 30px rgba(230, 57, 70, 0.1);
}

.service-area {
    position: relative;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/imgs/service-bg-pattern.png') no-repeat center/cover;
    opacity: 0.05;
    z-index: 1;
}

.service-card {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #83cd20, #ed1b24);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-subtitle span {
    transition: width 0.3s ease;
}

.service-subtitle:hover span {
    width: 60px;
}

/* .pathway-section {
    background-image: url('/assets/imgs/banner-1/1832731_254897-P4GHHR-945-1.webp') !important;
} */

.modern-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-step {
    flex: 1 1 calc(33.333% - 30px);
    display: flex;
    align-items: center;
    background: #ffecec;
    border-radius: 40px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    position: relative;
}

.modern-step-number {
    width: 70px;
    height: 70px;
    background: #ef3e3e;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.modern-step-text {
    margin-left: 2px;
    font-weight: bold;
    font-size: 16px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-step-icon {
    margin-left: auto;
    font-size: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .modern-step {
        flex: 1 1 100%;
    }
}

.achievement-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.achievement-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
}

.achievement-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.achievement-description {
    font-size: 15px;
    color: #475569;
    max-width: 720px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    height: 310px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-title {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.card-1 {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);
}

.card-2 {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);

}

.card-3 {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);

}

.card-4 {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);

}

.card-5 {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);

}

.card-6 {
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3), 0 12px 30px rgba(42, 157, 143, 0.1);

}

@media (max-width: 768px) {
    .service-card {
        height: auto;
        padding: 20px;
    }

    .achievement-title {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 20px;
    }

    .service-text {
        font-size: 15px;
    }
}

.service-card1 {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    height: 520px !important;
}


.custom-p{
    padding-bottom: 40px !important;
}