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

:root {
    --body-bg: #fff;
    --white-bg: #fff;
    --section-bg: #efefff;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: rgb(68, 86, 88);
    --primary-color: rgb(54, 48, 255);
    --secondary-color: #10393b;
    --headding-color: #020842;
    --white-color: #fff;
    --border-color: #f0f0f0;
    --ct-border-color: #e2e8f0;
    --ct-border-color2: #e1e1e1;
    --ct-border-color3: #E8E8E8;

    --no-change-color1: #020842;

    --body-font: "Catamaran", sans-serif;
    --headding-font: "Jost", sans-serif;

}

[data-bs-theme="dark"] {
    --body-bg: #072032;
    --white-bg: #072032;
    --section-bg: #10293a;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: #9ba0a3;
    --primary-color: rgb(54, 48, 255);
    --secondary-color: #10393b;
    --headding-color: #fff;
    --white-color: #fff;
    --border-color: #f0f0f021;
    --ct-border-color: #e2e8f014;
    --ct-border-color2: #e1e1e11f;
    --ct-border-color3: #ececec30;
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: var(--body-color);
    font-family: var(--body-font);
    font-weight: 400;
    font-style: normal;
    background-color: var(--body-bg);
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headding-color);
    font-weight: 700;
    font-family: var(--headding-font);
}

a {
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

p {
    color: var(--body-color);
    line-height: 26px;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*Scroll Area*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    display: none;
}

.scroll-area i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
}


/*
 * Preeloader
*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #020842;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
 * Header
*/
.header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
}

.header .logo img.sticky-logo {
    display: none;
}

.mobile-logo {
    margin-bottom: 30px;
    text-align: center;
}


.header.sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header.sticky-header.sticky .logo img {
    display: none;
}

.header.sticky-header.sticky .logo img.sticky-logo {
    display: block;
}

.sticky .menu ul li a {
    color: var(--headding-color);
}

.sticky .menu ul li:hover>a {
    color: var(--primary-color);
}

.sticky.header .button-1::after {
    background-color: var(--headding-bg);
}

.sticky.header .button-1:hover {
    color: var(--white-color);
}

.header-color.header .logo img {
    display: none;
}

.header-color.header .logo img.sticky-logo {
    display: block;
}

.header-color .menu ul li a {
    color: var(--headding-color);
}

.header-color .menu ul li:hover>a {
    color: var(--primary-color);
}

.header-color.header .button-1::after {
    background-color: var(--no-change-color1);
}

.header.header-color .button-1:hover {
    color: var(--white-color);
}



.brochuremodal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 40px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
}

.close {
    color: #aaa;
    text-align: end;
    font-size: 28px;
    font-weight: bold;
}

.hidden {
    display: none;
}

.modal-content p {
    font-weight: 400;
    font-size: 16px;
    color: #4A5355;
    text-align: justify;
}

.form-style-submit input {
    border: 1px solid #d1d1d1;
    font-size: 16px;
    font-size: 14px;
    margin-bottom: 5px;
    height: 50px;
    padding-right: 20px;
    --body-color: #333333;
    transition: all ease 0.4s;
    border-radius: 10px;
    width: 100%;
    padding: 0px 5px 0px 13px;
    margin: 10px 0px;
}

.course__btnenroll {
    color: #fff;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    background: #FF3158;
    display: block;
    width: 100%;
    border: 0;
    padding: 15px;
    margin-bottom: 20px;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, #20206359, rgba(39, 33, 33, 0.363)), url('../img/web.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 80vh;

}


.content {
    color: #fff;
    text-align: center;
}

.content h1 {
    font-size: 53px;
    color: #ff3158;
}

.content p {
    font-size: 18px;
    padding: 10px 0px;
    color: #fff;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-1 {
   margin: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.links button,
.h-button button {
    margin: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Secondary Button */
.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Download Button */
.btn-download {
    color: #ff3158;
    /* color: #fff; */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ff3158;
}

.btn-download:hover {
    background-color: #ff3158;
    color: #fff;
}

.btn-download i {
    font-size: 1.2rem;
}



.pt-hero-services-area {
    position: relative;
    padding: 60px 0;
    /* background: linear-gradient(135deg, rgba(15, 32, 39, 0.8), rgba(32, 58, 67, 0.7), rgba(44, 83, 100, 0.6)); */
    /* background-image: linear-gradient(to top, #c1dfc4 0%, #deecdd 100%); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.service-card {
    background-image: linear-gradient(to top, #172952 0%, #a992eb 100%);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);

}

.icon-container {
    font-size: 36px;
    color: #ff3158;
    margin-bottom: 15px;
}

.icon-container i{
   background: #fff;
    padding: 10px;
    border-radius: 15px;
}


.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-card:hover .icon-container {
    color: #ff3158;
}

.service-card:hover .service-title {
    color: #ffffff;
}

.service-description {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}



.about-section {
    position: relative;
    padding: 20px 0px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-top: 50px;
    padding-right: 100px;
}

.about-section .content-column .text {
    position: relative;
    color: #777777;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 40px;
}

.about-section .content-column .email {
    position: relative;
    color: #252525;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    margin-left: 50px;
}

.about-section .image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 2px solid #ff3158;
}

.about-section .image-column .inner-column .image {
    position: relative;
}

.about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 299px;
    height: 299px;
    background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
    position: absolute;
    left: 40px;
    bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
    position: relative;
    background-color: #002844d6;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    padding: 0px 20px;
    padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    color: #ff3158;
    font-size: 68px;
    font-weight: 700;
    line-height: 105px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #000000;
}

.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #ff3158;
}

.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: block;
    width: 200px;
    margin: 20px auto;
    text-align: center;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #ff3158;
    font-family: 'Arimo', sans-serif;
}

.sec-title2 {
    color: #fff;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

.sec-title .title {
    position: relative;
    color: #ff3158;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}

.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}

.details {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    max-width: 400px;
    margin: 0 auto;
}

.icon-content {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-content i {
    font-size: 24px;
}

.text-container {
    display: flex;
    flex-direction: column;
}

.text-container strong {
    font-size: 16px;
    color: #333;
}

.phone-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    margin-top: 5px;
}

.phone-link:hover {
    text-decoration: underline;
    color: #0056b3;
}


.bg-img {
    background-image: linear-gradient(180deg, #491ec6d6, rgb(0 0 0 / 60%)), url(../img/page-banner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
    padding: 120px 20px;
}

.t-heading {
    margin: 35px 0px;
}

.sec-heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: #020842;
}

.section-title span {
    color: #ff3158;
}

.sec-subtitle {
    font-size: 1.3rem;
    color: #130038e2;
    margin-top: 10px;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #e1e1e1;
    max-width: 800px;
    margin: 0 auto;
}

.specialisation-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #1c92d2;
    background: -webkit-linear-gradient(to right, #f2fcfe, #1c92d2);
    background: linear-gradient(to top, #172952, #a992eb);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 245px;
}

.specialisation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.specialisation-item .icon {
    font-size: 2.5rem;
    color: #ff3158;
    margin-bottom: 15px;
}
.specialisation-item .icon i{background: #fff;
    padding: 8px;
    border-radius: 8px;}
.specialisation-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}


.ct-program-options {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.ct-program-options h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight-text {
    color: #ff3158;
    font-weight: bold;
}

.pathway-card {
    background-image: linear-gradient(180deg, #a992ebc4, rgb(29 24 29  / 90%)), url(../img/card-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pathway-card h4 {
    font-size: 1.25rem;
    margin: 0;
    color: #c7fff9;
}


.pathway-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pathway-header .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff3158;
    margin-right: 10px;
}

.pathway-header h4 {
    font-size: 1.25rem;
    margin: 0;
    color: #ffffff;
}

.pathway-card p {
    margin: 10px 0;
    color: #ffffff;
}

.pathway-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pathway-card ul li {
    margin: 5px 0;
    color: #007bff;
}

.pathway-card ul li i {
    margin-right: 8px;
    color: #ff3158;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.ct-tab-image-left {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
}

.ct-t-img img {
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}



.ct-section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.highlight-text {
    font-weight: 700;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: -1;
    transform: translateY(-50%);
}

.work-in-progress-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.work-in-progress-card:hover {
    transform: translateY(-10px);
}

.card-num {
    background-color: #007bff;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.icon .im img {
    max-width: 70px;
    margin-bottom: 15px;
}

.content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}



.banner-section {

    background-image: linear-gradient(180deg, #9783d1b8, rgb(0 0 0 / 85%)), url('../img/page-banner1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #f9f9f9;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111d2a;
}

.cta-button {
    display: inline-block;
    background-color: #ff3158;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff3158;
    color: #fff;
}

.ct-client-logo-sec {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ct-l-text h4 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 45px;
}

.ct-l-text h4 span {
    color: #0d6efd;
    /* Highlighting text */
}

.swiper-container {
    position: relative;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.logo-item:hover img {
    transform: scale(1.1);
}

.portfolio-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.portfolio-button-prev,
.portfolio-button-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.portfolio-button-prev:hover,
.portfolio-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.swiper-slide {
    text-align: center;
}


/* General section styling */
.section-padding {
    padding: 60px 0;
}

.section-bg {
    background-color: #f9f9f9;
}

/* Section title */
.ct-section-title h4 {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
}

.ct-section-title h2 {
    font-size: 28px;
    color: #020842;
    line-height: 1.5;
}

/* Team member grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    min-height: 250px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    background-image: linear-gradient(-225deg, #FFFEFF 0%, #9783d1b8 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Team member image */
.team-member .thumbnail img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.team-member:hover .thumbnail img {
    transform: scale(1.1);
}

/* Team member content */
.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    color: #020842;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #001834;
}


.site-footer {
    font-family: 'Arial', sans-serif;
    background-color: #020842;
    color: #fff;
    padding-top: 20px;
    position: relative;
}

.footer-bg-dot {
    background-image: url('../img/dot-a-white.png');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}

.footer-top {
    text-align: center;
    padding: 20px 0;
}

.footer-logo img {
    width: 150px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

.footer-description {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.address-section {
    background-color: #1e2673;
    padding: 20px 0;
    text-align: center;
}

.address-section p {
    font-size: 14px;
    margin: 0;
    color: #bbb;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    background-color: #020842;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.whatsapp-icon {
    position: fixed;
    bottom: 90px;
    right: 10px;
    z-index: 9999;
}

.whatsapp-icon img {
    width: 60px;
    transition: transform 0.3s;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}

.centered-timeline-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.text-center {
    text-align: center;
}

.timeline-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #555;
}

.timeline {
    position: relative;
    width: 80%;
    margin: 50px auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 100%;
    background: #ff3158;

}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    /* margin: 20px 0; */
}

.timeline-item.left {
    justify-content: flex-end;
    text-align: right;
}

.timeline-item.right {
    justify-content: flex-start;
    text-align: left;
}

.timeline-content {
    background-image: linear-gradient(to top, #c1dfc4 0%, #deecdd 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.timeline-icon {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

.timeline-icon img {
    width: 55%;
    height: auto;
    fill: #ff3158;
}

@media (max-width: 768px) {
    .nav-item {
        width: 100%;
    }

    .content h1 {
        font-size: 45px;

    }

    .ct-section-title h2 {
        font-size: 1.75rem;
    }

    .ct-section-title h2 {
        font-size: 1.5rem;
    }

    .work-in-progress-card {
        padding: 15px;
    }

    .card-num {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .content h3 {
        font-size: 1rem;
    }

    .ct-l-text h4 {
        font-size: 24px;
    }

    .timeline-item {
        margin: 40px 0;
        padding: 10px 10px;
    }

    .timeline-item.left {
        justify-content: flex-start;
        text-align: left;
    }

    .timeline-icon {
        top: 0px;
    }

    .team-member .thumbnail img {
        width: 80px;
        height: 80px;
    }

    .team-member h3 {
        font-size: 16px;
    }

    .team-member p {
        font-size: 12px;
    }

    .footer-social a {
        margin: 0 5px;
    }

    .address-section p {
        font-size: 12px;
    }

    .footer-logo img {
        width: 120px;
    }
}