/* Nhúng font Gotham Medium */
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

/* Nhúng font Gotham Thin */
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham-Thin.otf') format('opentype');
    font-weight: 200; /* Thin */
    font-style: normal;
}

/* Nhúng font Gotham Ultra */
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham-Ultra.otf') format('opentype');
    font-weight: 800; /* Ultra */
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./fonts/SVN-Poppins\ Light.otf') format('opentype');
    font-weight: 600; /* Light */
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('./fonts/SVN-Poppins\ Bold.otf') format('opentype');
    font-weight: 800; /* Bold */
    font-style: normal;
}

:root {
    --main-color: #F26F33;
    --main-radient-color: #B44410;
    --secondary-color: #0B7681;
    --bg-footer-color: #003840;
    --link-bg-color: #FFF3EA;
    --backgournd-hero-color: #F9F6FE;

    /* --------------------- */
    --text-color: rgb(95, 100, 111);

    /* hero color */
    --circle-top-color: rgba(97, 210, 217,1);
    --circle-left-color: rgba(65, 148, 244, 1);
    --start-color: rgba(242, 111, 51, 1); 
    --line-start-color: rgba(255, 255, 255, 0.6);
    --background-image-1: rgba(253, 189, 57, 1);
    --background-image-2: rgba(198, 195, 238, 1);
    --background-image-3: rgba(255, 159, 196, 1);
    --background-image-4: rgba(97, 210, 217,1);
    --background-image-5: rgba(211, 198, 221, 1);
    --background-image-6: rgba(152, 185, 194, 1);
    --background-image-7: rgba(236, 163, 165, 1);

    /* about color */
    --about-circle-top: linear-gradient(180deg, #FEBD00 0%, #FFAD01 100%);

    /* program */
    --stroke-program-color: var(--main-color);


    /* study */
    --study-bg-color-1: rgba(255, 245, 151, 0.5);

}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.75;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    font-weight: 400;

}
p {
    font-family: 'Poppins', sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
.heading, .title, .chapter-name {
    font-family: 'Gotham', sans-serif;
}
.container.haft-container-left {
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
} 
.container.haft-container-left .row {
    height: 100%;
}
.title-box-icon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.title-box-icon .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
}
.hero-section {
    height: 90%;
    position: relative;
    border-radius: 0px 0px 0px 11.875rem;
    background: var(--backgournd-hero-color);
    box-shadow: 0px -8px 32px 0px rgba(219, 219, 219, 0.25) inset;
    margin-bottom: 30px;
}
.hero-section .content-box {
    position: relative;
    height: 100%;
    align-items: left;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.hero-section .logo {
    width: 16rem;
    position: absolute;
    top: 1.75rem;
    left: 0;
}
.hero-section .backgournd-circle  .circle {
    width: 8.875rem;
    height: 8.875rem;
    border-radius: 50%;
    position: absolute;
}
.hero-section .backgournd-circle  .circle.circle-top {
    top: 0;
    left: 50%;
    background-color: var(--circle-top-color);
    transform: translate(-75%, -60%);
}
.hero-section .backgournd-circle  .circle.circle-left {
    top: 35%;
    left: 0;
    background-color: var(--circle-left-color);
    transform: translate(-60%, -75%);
}
.hero-section .star-box {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 65%;
}
.hero-section .star-box .star-icon {
    color: var(--start-color);
    position: absolute;
    left: 8%;
    top: 0;
    transform: translateY(-70%);
    width: 100%;
}
.hero-section .star-box .star-icon svg{
    width: 20%;
    height: auto;
}
.hero-section .star-box .star-line {
    color: var(--line-start-color);
    height: 100%;

}
.hero-section .star-box .star-line svg {
    height: 100%;
    width: auto;
    
}
.hero-section .star-box .star-icon path {
    fill: var(--start-color);
}
.hero-section .star-box .star-line {
    stroke: var(--line-start-color);
}

.hero-section .image-box {
    display: flex;
    position: relative;
    width: 100%;

}
.hero-section .image-box .bg-col .background-cirle-main {
    background-color: #ffffff;
    width: 100%;
    border-radius: 50%;
    padding-top: 100%;
    position: absolute;
    z-index: 0;

}
.hero-section .image-box .bg-col {
    display: flex;
    flex-direction: column;
    z-index: 1;
    flex: 0 0 33%;
    padding-left: 4%;
    padding-right: 4%;
    transition: all 0.1s ease;
}
.hero-section .image-box .bg-col .background:first-child {
    margin-top: 0;
}
.hero-section .image-box .bg-col .background:last-child {
    margin-bottom: 0;
}
.hero-section .image-box .bg-col .background {
    width: 100%;
    aspect-ratio: 0.375;
    background-position: bottom center;
    background-repeat: no-repeat;
    border-radius: 100rem;
    background-size: contain;
    margin: 15% 0;
}
.hero-section .text-box .text {
    text-align: center;
}
.bg-col-1 {
    justify-content: flex-end;
}
.bg-col-2 {
    justify-content: center;
    
}
.bg-col-3 {
    justify-content: flex-end;
}
.icon-title svg {
    fill: var(--main-color);
}
.hero-section .image-box .bg-col .background.background-image-1 {
    background-color: var(--background-image-1);
}
.hero-section .image-box .bg-col .background.background-image-2 {
    background-color: var(--background-image-2);
    aspect-ratio: 0.47;
}
.hero-section .image-box .bg-col .background.background-image-3 {
    background-color: var(--background-image-3);
    /* border-top-left-radius: 0;
    border-top-right-radius: 0; */
    aspect-ratio: 0.7;
}
.hero-section .image-box .bg-col .background.background-image-4 {
    background-color: var(--background-image-4);
}
.hero-section .image-box .bg-col .background.background-image-5 {
    background-color: var(--background-image-5);
    aspect-ratio: 6/7;
}
.hero-section .image-box .bg-col .background.background-image-6 {
    background-color: var(--background-image-6);
    aspect-ratio: 0.47;

}
.hero-section .image-box .bg-col .background.background-image-7 {
    background-color: var(--background-image-7);
    margin-bottom: -45%;
}
.hero-section  .content-box .title-box {
 font-size: 2.5rem;
 color: #000;
 height: 50%;
 display: flex;
 flex-direction: column;
 justify-content: end;
 text-align: center;
}
.hero-section  .content-box .title-box .title {
    background: -webkit-linear-gradient(-45deg, var(--main-color), var(--main-radient-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    font-weight: bold;
  
}
.hero-section  .content-box .text-box {
    height: 50%;
}
.hero-section .line-border {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 70%;
    height: 500px;
    background-color: transparent;
    border-bottom: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
    border-bottom-left-radius: 11.875rem;
    text-align: justify;
}

.about-section {
    
    position: relative;
    margin-bottom: 25%;
}

.about-section .container {
    position: relative;
    padding-top: 15.625rem;
}
.about-section  .line-border.top {
    position: absolute;
    top: 0;
    right:0;
    transform: translateY(-2px);
    background-color: transparent;
    border-top: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    width: 70%;
    height: 70%;
    border-top-right-radius: 11.875rem;
}
.about-section  .line-border.right {
    position: absolute;
    bottom: -10%;
    right:0;
    transform: translateY(0.75rem);
    background-color: transparent;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    width: 1rem;
    height: 70%;
    border-bottom-right-radius: 11.875rem;
}
.about-section .title-box {
    position: absolute;
    top: 10%;
}
.about-section .content-box {
    position: relative;
    margin-right: 20%;
    margin-left: 23%;
    margin-bottom: 18%;
}
.about-section .content-box .circle-box {

}

.about-section .content-box .circle-box .circle {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1;
    background-color: var(--backgournd-hero-color);
    position: relative;
}
.about-section .content-box .circle-box .circle.circle-top{
    width: 8%;
    background-image: var(--about-circle-top);
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    right: 19%;
}
.about-section .content-box .circle-box .circle.circle-lv-1 {
    padding: 15%
}
.about-section .content-box .circle-box .circle.circle-lv-2 {
    padding: 18%;
   background-image: linear-gradient(180deg, var(--main-color), var(--main-radient-color));

}
.about-section .content-box .circle-box .circle.circle-lv-3 {
    padding: 26%;
}
.about-section .content-box .circle-box .circle.circle-lv-3 .circle-center {
    background-color: var(--main-color);
    width: 18%;
    position: absolute;
    bottom: -1rem;
    right: 20%;
}
.about-section .content-box .circle-box .circle.circle-lv-4 {
   background-image: linear-gradient(180deg, var(--main-color), var(--main-radient-color));
}
.about-section .content-box .image-wrap {
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid #ffffff;
    width: 28.5%;

}
.about-section .content-box .image-wrap img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
}
.about-section .content-box .image-wrap.image-1 {
    top: 8%;
    left: -8%;
}
.about-section .content-box .image-wrap.image-2 {
    top: 58%;
    left: -8%;
    transform: translateX(-60%);
    background-color: white;
    width: 20%;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.12);
}
.about-section .content-box .image-wrap.image-2 img {
    object-fit: contain;
    border-radius: 0;
    padding: 14%;
}
.about-section .content-box .image-wrap.image-3 {
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
}
.about-section .content-box .image-wrap.image-4 {
    border-radius: 35%;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.12);
    background-color: white;
    width: 12%;
    bottom: 8%;
    left: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-section .content-box .image-wrap.image-4 svg {
    width: 64%;
    height: auto;
}
.about-section .content-box .image-wrap.image-5 {
    width: 24.5%;
    right: -1rem;
    top: 10%;
    
}
.about-section .content-box .image-wrap.image-6 {
    width: 15.5%;
    right: -8%;
    top: 50%;
    transform: translateY(-10%);
}

.about-section .image-wrap {
  z-index: 0;
}
.about-section .image-wrap:has(.content-label) {
  z-index: 1;
}

.about-section .content-label {
    padding: 1rem 2rem 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.662);
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
    position: absolute;
    z-index: 10;
	min-width: 350px;
  	left: 60%;
}
.about-section .content-label .heading {
    text-align: left;
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
    text-align: justify;
}
.about-section .content-label p {
    margin-bottom: 0;
    text-align: justify;
}
.about-section .content-label {
    display: none;
}
.about-section .content-label.content-label-1 {
    top: 60%;
    width: 45%;
}
.about-section .content-label.content-label-2 {
    width: 40%;
    top: 80%;
    left: 11%;
}
.about-section .orbit .orbit-element .content-label {
    display: unset;
}
 .about-section .content-label.content-label-3 {
    display: unset;
    margin-right: 1rem;
}
    /*
.about-section .content-label.content-label-3 .heading {
    color: #000;
    padding-right: 1rem;
} */

.about-section .content-label.content-label-3 .heading .highlight-1 {
    color: var(--main-color)
}
.about-section .content-label.content-label-3 .heading .highlight-2 {
    color: var(--main-color);
}

.section-team {
    position: relative;
    padding: 5rem;
}
.section-team .background-1 {
    position: absolute;
    width: 55%;
    bottom: 0;
    left: 0;
}
.section-team .background-1 svg {
    width: 100%;
    height: auto;
}
.section-team .background-1 svg stop {
    stop-color: var(--main-color);
}
.section-team .background-2 {
    position: absolute;
    left: 0;
    bottom: 30%;
    transform: translateX(-50%);
    width: 15%;
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(150px);
    background-color: var(--main-color);

}
.section-team .content-box {
    margin-top: 1.5rem;
}
.section-team .content-box p {
    text-align: justify;
    font-size: 1.125rem;
}
.section-team .content-box .heading {
    color: var(--secondary-color)
}
.section-team .content-box .team-quantity {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--main-color);
}
.section-team .content-box .team-quantity .heading {
    font-weight: bold;
    margin-bottom: 0;
}
.section-team .content-box .team-quantity p, .section-team .content-box .degree-box p {
    color: #000;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1;
}
.section-team .content-box .degree-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5.5rem;
    
}
.section-team .content-box .degree-box .degree-list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.section-team .content-box .degree-box .degree-list .degree-number {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 3.5rem;
    height: 3.5rem;
    color: white;
    background-color: var(--main-color);
    border-radius: 50%;
    border: 4px solid var(--line-start-color);
    position: relative;
}
.section-team .content-box .degree-box .degree-list:last-child .degree-number::after {
    content: "";
    display: block;
    height: 50%;
    width: 3px;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
}
.section-team .image-box {
    position: absolute;
    width: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.section-team .image-box  .background-shape {
 position: absolute;
 z-index: -1;
 width: 90%;
 left: 10%;
}
.section-team .image-box  .background-shape svg {
    width: 100%;
    height: auto;
}
.section-team .image-box  .background-shape svg linearGradient stop:first-child {
    stop-color: var(--main-color);
}
.section-team .image-box  .background-shape svg linearGradient stop:last-child {
    stop-color: var(--main-radient-color);
}
.section-team .image-box .main-image  img{
    width: 100%;
}
.section-team .image-box .image-circle {
    position: absolute;
    top: -5%;
    left: 20%;
    width: 18%;
} 
.section-team .image-box .image-circle img {
    width: 100%;
    border-radius: 50%;
}
.section-team .image-box .circle {
    position: absolute;
    top: -5%;
    right: 20%;
    width: 7%;
    aspect-ratio: 1;
    background: var(--about-circle-top);
    filter: blur(6px);
    border-radius: 50%;
}

.program-section {
    padding-top: 10rem;
    position: relative;
}
.program-section .circle {
    width: 20%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--main-color);
    filter: blur(50px);
    opacity: 0.07;
    position: absolute;
    right: 50%;
    top: 10%;
}
.program-section .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2rem;
}
.program-section .chapter-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.program-section .chapter-box .chapter-number {
    color: var(--main-color);
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1;
    font-family: 'Gotham', sans-serif;
}

.program-section .chapter-box .chapter-name {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.program-section .content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.program-section .content-box .specialized-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.125rem;
    width: 100%;
}

.program-section .content-box .specialized-box .heading-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.program-section .content-box .specialized-box .heading-box .sub-heading {
    font-size: 1.5rem;
    line-height: 1;
    margin-block-end: 0;
}

.program-section .content-box .specialized-box .heading-box .heading {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg,var(--main-color), var(--main-radient-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}   

.program-section .content-box .specialized-box ul {
   list-style: none;
   padding-left: 0;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
}
.program-section .content-box .specialized-box ul li a {
    width: 100%;
    display: flex;
    gap:0.75rem;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--link-bg-color);
    border-radius: 0.5rem;
    color: black;
    border-left: 2px solid var(--line-start-color) ;
}

.program-section .content-box .specialized-box ul li a .icon {
    flex: 0 0 1.5rem;
}
.program-section .content-box .specialized-box ul li a .icon svg g path {
    fill: var(--main-color);
}
.chapter-1 {
    display: flex;
    gap: 4rem;
    position: relative;
}
.chapter-1 .chapter-box {
    width: 50%;
}
.chapter-1 .content-box {
    width: 50%;
}
.chapter-1  .line-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--stroke-program-color);
}
.chapter-1  .line-center .circle {
    width: 1rem;
    aspect-ratio: 1;
    background-color: var(--stroke-program-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.chapter-1  .line-center  .hat-icon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: auto;
    
}
.chapter-1  .line-center  .hat-icon::after {
    content: "";
    position: absolute;
    width: 0.75rem;
    height: 120%;
    background-color: var(--stroke-program-color);
    border-radius: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

}
.chapter-1  .line-center  .hat-icon svg{
    width: 100%;
    height: auto;
}

.chapter-2 {
    display: flex;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.chapter-2 .chapter-box {
    background-color: white;
    height: min-content;
}

.chapter-2 .content-box {
    flex: 1;
    width: fit-content;
    position: relative;

}
.chapter-2 .content-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 100%;
    border-left: 2px solid var(--stroke-program-color);
    border-bottom: 2px solid var(--stroke-program-color);
    border-bottom-left-radius: 1rem ;
    transform: translate(-3rem, 3rem);
    z-index: -1;
}
.chapter-2 .content-box a {
    max-width: 484px;
}
.chapter-3 {
    display: flex;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 7.5rem;
    align-items: flex-end;
    position: relative;
}

.chapter-3 .chapter-box {
    background-color: white;
    height: min-content;
    padding-left: 3rem;
    position: relative;
}
.chapter-3 .chapter-box::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    border: 2px solid var(--stroke-program-color);
    border-left:unset;
    width: 2rem;
    height: 6rem;
    border-top-right-radius: 1rem ;
    border-bottom-right-radius: 1rem ;
    transform: translate(calc(100% + 1rem), calc(-3rem - 2px));
}
.chapter-3 .chapter-box::before {
    content: "";
    position: absolute;
    /* z-index: -1; */
    top: 0;
    left: 0;
    border: 2px solid var(--stroke-program-color);
    border-right: unset;
    width: 4rem;
    height: calc(100% - 3rem + 4px + 7.5rem);
    border-top-left-radius: 1rem ;
    border-bottom-left-radius: 1rem;
    transform: translate(0,calc(3rem - 4px));
}
.chapter-3 .content-box {
    flex: 1;
    width: fit-content;
    position: relative;

}
.chapter-3 .content-box a {
    max-width: 484px;
}

.chapter-4 {
    display: flex;
    gap: 2rem;
    margin-top: -3rem;
    padding-bottom: 7.5rem;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}
.chapter-4 .chapter-box {
    height: min-content;
    position: relative;
}
.chapter-4 .chapter-box .chapter-number {
    background-color: white;
    padding-left: 1.5rem;
}
.chapter-4::after {
    content:"";
    position: absolute;
    top: 1rem;
    left: 2rem;
    border-bottom: 2px solid var(--stroke-program-color);
    height: 2rem;
    width: 50%;
    z-index: -1;
}
.chapter-4 .content-box a {
    max-width: 484px;
}
.study-section {
    position: relative;
    margin-top: 10rem;
    display: flex;
}
.study-section .bg-1 {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    top: 0;
    z-index: -1;
}
.study-section .bg-1  img {
    width: 100%;
    height: auto;
}
.study-section .bg-2 {
    position: absolute;
    background-color: var(--study-bg-color-1);
    top: 0;
    left: -10%;
    width: 27rem;
    aspect-ratio: 1;
    border-radius: 50%;
}
.study-section .bg-3 {
    position: absolute;
    width: 37rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #D9D9D9;
    left: 0%;
    bottom: 0%;
    z-index: -1;
    transform: translate(-10%, -10%);

}
.study-section .row {
    display: flex;
}
.study-section .row .column-1 {
    position: relative;
    width: 50%;
    padding-right: 1.75rem;
    margin-top: 9rem;
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.00) 0%, var(--link-bg-color) 100%);
}
.study-section .column-1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 30%;
    border-top: 2px solid var(--stroke-program-color);
    border-right: 2px solid var(--stroke-program-color);
    border-top-right-radius: 2rem;
    right: 0;
    top: 1.75rem;
    z-index: -2;

}
.study-section .column-1 .title {
    padding-right: 2rem;
}
.study-section .column-1 .content-box {
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 9rem;
}

.study-section .column-1 .content-box ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.study-section .column-1 .content-box ul li {
    text-align: justify;
    color: #000;
    line-height: 1.625;
}

.study-section .row .column-2 {
    width: 50%;
    padding-left: 1.75rem;
    gap: 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.study-section .row .column-2 .image-box{
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.study-section .row .column-2 .image-box .background-1 {
    position: absolute;
    z-index: -1;
    transform: translate(-30%, -30%);
 }
.study-section .row .column-2 .image-box .background-2 {
    position: absolute;
    z-index: -1;
    width: 2rem;
    height: 2rem;
    aspect-ratio: 1;
    background-color: #FEA9CA;
    border-radius: 50%;
    top: 30%;
    left: 0;
    transform: translateX(-100%);
}
.study-section .row .column-2 .image-box .background-3 {

}
.study-section .row .column-2 .image-box .background-4 {
    position: absolute;
    top: 0;
    left: 40%;
    background-color: #0266FF;
    width: 1rem;
    height: 1rem;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateY(-150%);
}
.study-section .row .column-2 .image-box .background-5 {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
}
.study-section .row .column-2 .image-box .image-wrap {
    width: 50%;
}
.study-section .row .column-2 .content-box {
    margin-top: 2.5rem;
}
.study-section .row .column-2 .content-box .heading {
    margin-top: 1.5rem;
    color: var(--main-color);
    font-size: 1.5rem;
    line-height: 1.08;
    text-transform: uppercase;
    font-weight: 800;
}
.study-section .row .column-2 .title-box {
    position: relative;
}
.study-section .row .column-2 .title-box::before {
    content: "";
    position: absolute;
    width: 2rem;
    height: 20rem;
    border-bottom: 2px solid var(--stroke-program-color);
    border-left: 2px solid var(--stroke-program-color);
    border-bottom-left-radius: 2rem;
    left: -1.75rem;
    top: 0;
    z-index: -2;
    transform: translate(-2px, calc(-100% + 2rem));

}

.news-section {
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.news-section .category-box {
    text-align: right;
    flex-grow: 1;
}
.news-section .category-button {
    display: inline-flex;
    width: min-content;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    position: relative;
    background-color: var(--main-color);
    border-radius: 1rem;
    cursor: pointer;
    margin-left: auto;
    flex: 1;
    text-align: right;
    color: white;
  }
  .news-section .category-button svg {
    width: 17px;
    height: auto;
    max-width: unset;
  }
  .category-button .text-wrapper {
    position: relative;
    flex: 1;
    color: white;
  }
.category-box:hover .category-list {
    display: flex;
}
.category-list {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    background-color: white;
    flex-wrap: wrap;
    width: 50%;
    max-width: 38rem;
    padding: 0.75rem;
    gap: 1.25rem;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    border-radius: 0.75rem;
    z-index: 10;
}

.category-list .category-item {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    cursor: pointer;
}

.category-list .category-item .category-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-list .category-item .category-content .category-icon {
    width: 1.5rem;
    height: auto;
}

.category-list .category-item .category-content .category-text {
    color: #000;
    flex-grow: 1;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
}

.tab-title {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    margin-top: 2rem;
    width: 100%;
  }
  
  .tab-title .tab-item.active {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .tab-title .tab-item.active .text {
    position: relative;
    width: fit-content;
    margin-top: -2px;
    color: var(--secondary-color);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    font-weight: 800;
  }
  
  .tab-title .tab-item{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: .75rem 0px;
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
  }
  
  .tab-title .text {
    position: relative;
    width: fit-content;
    line-height: normal;
    white-space: nowrap;
    margin-bottom: 0;
  }
  .tab-content {
    padding-top: 2rem;
  }
  .tab-content .tab {
    display: none;
  }
  .tab-content .tab.active {
    display: flex;
  }
  .blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

/* Image of the Blog Card */
.blog-card__image {
    position: relative;
    width: 100%;
    object-fit: cover;
}

/* Content Wrapper */
.blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

/* Title Text */
.blog-card__title {
    position: relative;
    margin-top: -1px;
    color: black;
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: bold;
    text-align: justify;
}

/* Icon Container */
.blog-card__icons {
    display: inline-flex;
    gap: 0.5rem;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

/* Individual Icon */
.blog-card__icon {
    position: relative;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
}

/* Description Text */
.blog-card__description {
    position: relative;
    align-self: stretch;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em; /* Adjust line height as needed */
    max-height: 4.5em; /* This is 3 times the line height */
}
.news-section .btn-readmore {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    justify-content: center;
}



.news-section .read-more {
    padding: 0.75rem 2.5rem;
    color: var(--main-color);
    border-radius: 0.75rem;
    text-transform: uppercase;
    margin: 0 auto;
    background-color: var(--link-bg-color);
    font-weight: 800;
}

.footer {
    background-color: var(--bg-footer-color);
    padding-top: 4rem;
}
.footer  .logo-wrap {
    width: 50%;
    max-width: 14rem;
    margin-bottom: 1.5rem;
}
.footer .info {
    display: flex;
    justify-content: start;
    gap: 0;
    align-items: start;
    flex-direction: column;
}
.footer .info-item {
    display: flex;
    justify-content: start;
    gap: 1rem;
    align-items: center;
}
.footer .info-item svg {
    width: 1.5rem;
    height: auto;
    fill: var(--main-color);
}
.footer .info-item p {
    flex: 1;
    width: max-content;
    display: flex;
    color: white;
    margin-bottom: 0;
    line-height: 2;
}
.footer .heading {
    font-weight: 800;
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.footer .info-2 {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.footer  .info-2 .info-item svg {
    width: 2.5rem;
    height: auto;
}

  .orbit {
    animation: rotateOrbit 90s infinite linear;
  }
  
  @keyframes rotateOrbit {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .orbit-element {
    animation: spin 90s infinite linear;
  }

  @keyframes spin {
    0% {
      transform: rotate(360deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

.news-heading .title-box .title {
    background: -webkit-linear-gradient(-45deg, var(--main-color), var(--main-radient-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    font-weight: bold;
}

.news-heading .content-box {
    display: flex;
    min-height: 200px;
    align-items: center;
}

.section-news .title-box .title {
    line-height: 1.5;
    margin-top: 4px;
    font-size: 24px;
}

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pagination button {
    font-size: 14px;
    border: 0.5px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 30px;
    padding: 0.5rem 1rem;
    color: var(--main-color);
    border-radius: 0.75rem;
    text-transform: uppercase;
    margin: 0 auto;
    background-color: var(--link-bg-color);
    font-weight: 800;
  }
  
  .pagination button:hover {
    background-color: #ddd;
  }
  
  .pagination .prev, .pagination .next {
    font-weight: bold; /* Highlight Previous and Next buttons */
  }
  
  .pagination span {
    padding: 10px;
    font-size: 16px;
  }
  

  .svl-pagination {
    float: right;
    background: #fff;
    border-radius: 5px;
    margin: 50px 0 20px 0;
    /* border: 1px solid #edeff7; */
}

.svl-pagination.left {
    float: left
}

.svl-pagination.page-first a.go-page-first.func,
.svl-pagination.page-first a.prev.func {
    display: none
}

.svl-pagination.page-last a.go-page-last.func,
.svl-pagination.page-last a.next.func {
    display: none
}

.svl-pagination>a {
    color: #424242;
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #ddd;
    cursor: pointer;
    padding: 6px 12px;
    margin-bottom: 5px;
    display: inline-block;
}

.svl-pagination>a.active {
    color: #fff;
    border-color: var(--main-color);;
    background: var(--main-color);;
}

.svl-pagination>a:hover {
    background: #cccccc;
    color: #fff;
}

.svl-pagination>a.active:hover {
    border-color: var(--main-color);;
    background: var(--main-color);;
    color: #fff;
}

.svl-pagination .go-page-first,
.svl-pagination .page-first {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.svl-pagination .go-page-last,
.svl-pagination .page-last {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

a.college-news-rt:hover{
    color:var(--main-color);
}

.news-content div,
.news-content p,
.news-content a,
.news-content ul li,
.news-content em {
    font-family: 'SVN-Poppins';
    font-size: 18px;
    color: #000;
}

.sdg-news-item{
    cursor: pointer;
}

.container-youtube {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.container-youtube .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.search {
    position: relative;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 10px 15px;
    background-color: #f8f9fa;
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.search-link {
    all: unset;
    margin-left: auto;
    color: #007b8a;
    /* Example color */
    text-decoration: none;
    background-color: transparent;
}

.search-link:hover {
    text-decoration: underline;
}

.search-input {
    border: none;
    outline: none;
    background-color: transparent;
}

.call-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    margin-left: 10px;
    border: #989898 solid 1px;
}

.call-button:hover {
    background-color: #007b8a
}

.call-button img {
    width: 30px;
    height: 30px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.125rem;
}

.styled-table thead tr {
    background-color: #007b8a;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}


.styled-table tbody tr {
    background-color: #f3f7f9;
}

.styled-table tbody tr:nth-child(4n+1),
.styled-table tbody tr:nth-child(4n+2) {
    background-color: #e9f3f5;
}

.styled-table tbody td:nth-of-type(3) {
    cursor: pointer;
}

.styled-table a {
    color: #f46b45;
    text-decoration: none;
    font-weight: bold;
}

.styled-table a:hover {
    text-decoration: underline;
}

.info-tooltip {
    bottom: 0px;
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 300px;
    overflow: scroll;
}

tbody tr:hover .info-tooltip {
    display: block;
}

.styled-table th,
.styled-table td {
    text-align: center;
}

.expanded-content {
    display: none;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
}

.content-container {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    text-align: justify;
    transition-timing-function: ease-out;
}