@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);
    }
}

.fixed-pages {
    background-image: url('../img/dubai_bg.jpg');
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    object-fit: cover;
    position: fixed;
}

.page-content {
    position: absolute;
    z-index: 5px;
    width: 100%;
    overflow: hidden;
    /* margin: 100PX 0px 0px 0px; */
}

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

.logo {
    text-align: center;
}

.logo img {
    width: 350px;
}

.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;
    margin: 0px auto;
    text-align: center;
    width: 250px;
}

.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: #ce2029;
    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, #0a0a3a, rgb(0 0 0 / 60%)), url('../img/banner-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;

}


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

.content h1 {
    font-size: 50px;
    color: #ce2029;
}

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

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


.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: #ce2029;
    /* color: #fff; */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ce2029;
}

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

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



.pt-hero-services-area {
    position: relative;
    padding: 30px 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%, #5382f2 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: 300px;
}

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

}

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

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

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

.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;
    
}

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

}


.text-list {
    padding: 10px 0px;
}

.text-list li i {
    color: #ce2029;
    margin-right: 5px;
}

.sec-title2 {
    color: #fff;
}

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

.sec-title .title {
    position: relative;
    color: #ce2029;
    font-size: 30px;
    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, #007087, 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: #ce2029;
}

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

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #172853;

}

.section-list {
    margin: 20px auto;
    text-align: left;
    color: #f9e5e5;
}

.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, #00324ecc);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.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: #ce2029;
    margin-bottom: 15px;
}

.specialisation-item h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}


.ct-program-options {
    padding: 0px 0px 30px 0px;
}

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

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

.pathway-card {
    background-image: linear-gradient(180deg, #007087, rgb(0 0 0 / 60%)), 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-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pathway-header .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ce2029;
    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: #eff7ff;
}

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

.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;
}



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

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

.cta-button {
    display: inline-block;
    background-color: #ce2029;
    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: #ce2029;
    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: 30px 0;
}

/* 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%, #0d6efd 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: 300px;
    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);
}




.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.country-code {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    padding: 6px;
    border-right: 1px solid #ccc;
    cursor: pointer;
}

.country-flag {
    width: 25px;
    height: 15px;
    margin-right: 5px;
}

.phone-input-container input {
    flex: 1;
    padding: 6px;
    font-size: 16px;
    border: none;
    outline: none;
}

.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}

.dropdown-item {
    display: flex;
    align-items: center;
}

.dropdown-item img {
    width: 25px;
    height: 15px;
    margin-right: 10px;
}

.call-buton{
    display: none;
}
.call-buton .callto-action-btn {
    z-index: 99999;
    position: fixed;
    right: 20PX;
    bottom: 120PX;
    background: #020842;
    width: 40px;
    height: 40px;			
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: callto-action-btn 0.6s linear infinite;
    animation: callto-action-btn 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-block;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    text-decoration: none;
    text-align: center;			
    align-content: center;
}

.call-buton .callto-action-btn i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 25px;
    line-height: 40px;
}

.call-buton .callto-action-btn:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes callto-action-btn {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
    }
}

@keyframes callto-action-btn {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
    }
}


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

    .content h1 {
        font-size: 40px;

    }

    .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: 240px;
    }

    .whatsapp-icon {

        bottom: 60px;
        right: 10px;

    }
    .call-buton{
        display: contents;
    }
}