   :root {
     --primary-color: #1E64A5;
     --dark-color: #15467D;
     --dark-bg: #0F0F0F;
     --card-bg: #fff;
     --text-light: #F5F5F5;
     --text-gray: #292929;
     --secondary-color: #FFA726;
     --text-color: #e0e0e0;
     --bg-white: #fff;
     --text-white: #fff;
     --text-dark: #333333;
     --border-color: rgba(255, 255, 255, 0.05);
     --border-radius: 12px;
   }

   ::-webkit-scrollbar {
     height: 8px;
     width: 8px;
   }

   ::-webkit-scrollbar-track {
     background: var(--bg-color);
   }

   ::-webkit-scrollbar-thumb {
     background: var(--text-color);
     border-radius: 10px;
   }

   ::-webkit-scrollbar-thumb:hover {
     background: var(--primary-light);
   }

   .custom-page-main-content img {
     cursor: pointer;
   }

   .tam-about-us {
     display: flex;
     justify-content: center;
     align-content: center;
     /* align-items: center; */
     position: relative;
     min-height: 500px;
   }

   #container {
     position: relative;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
   }

   li {
     margin: 5px;
   }

   li::marker {
     font-size: 1.2em;
   }

   .services-section {
     position: relative;
     overflow: hidden;
    
   }

   .text-description {
     width: 50% !important;
   }

   .services-section.pb-5.aos-init.aos-animate {
     background-color: var(--bg-white);
   }

   .section-title {
     position: relative;
     text-align: center;
     z-index: 1;
   }

   .section-title h2 {
     font-weight: 700;
     color: var(--text-white);
     font-size: 2.8rem;
     text-transform: uppercase;
     letter-spacing: 1px;
   }


   .section-title p {
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
     opacity: 0.8;
     color: var(--text-gray);
   }

   .service-card {
     /* background: rgba(30, 30, 30, 0.7); */
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
     transition: all 0.4s ease;
     height: 100%;
     border: 1px solid rgba(255, 255, 255, 0.05);
     position: relative;
     overflow: hidden;
     z-index: 1;
     backdrop-filter: blur(5px);
   }

   .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 0;
     background: var(--primary-color);
     transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
     z-index: -1;
   }

   .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
     border-color: var(--primary-color);
   }

   .service-card:hover::before {
     height: 100%;
   }

   .service-image {
     width: 100%;
     height: 200px;
     margin: 0 auto 25px;
     border-radius: 8px;
     overflow: hidden;
     position: relative;
     transition: all 0.4s ease;
     border: 1px solid rgba(221, 99, 37, 0.3);
   }

   .service-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.5s ease;
   }

   .service-card:hover .service-image img {
     transform: scale(1.05);
   }

   .service-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(24, 13, 119, 0.1), rgba(17, 17, 17, 0.5));
     transition: all 0.4s ease;
   }

   .service-card:hover .service-image::after {
     background: linear-gradient(to bottom, rgba(37, 21, 128, 0.2), rgba(17, 17, 17, 0.3));
   }

   .service-card h3 {
     font-weight: 700;
     margin-bottom: 15px;
     font-size: 1.5rem;
     position: relative;
     padding-bottom: 10px;
   }

   .service-card h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background: var(--primary-color);
     transition: all 0.4s ease;
   }

   .service-card:hover h3::after {
     width: 80px;
   }

   .service-card p {
     color: var(--text-gray);
     margin-bottom: 25px;
     line-height: 1.7;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
   }

   .read-more {
     color: var(--primary-color);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     transition: all 0.3s ease;
     font-size: 0.95rem !important;
   }

   .read-more i {
     margin-left: 8px;
     transition: all 0.3s ease;
   }

   .read-more:hover {
     text-shadow: 0 0 5px var(--primary-color);
   }

   .read-more:hover i {
     transform: translateX(5px);
   }

   /* Animation */
   @keyframes fadeInUp {
     from {
       opacity: 0;
       transform: translateY(20px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   .service-card {
     animation: fadeInUp 0.6s ease forwards;
     opacity: 0;
   }

   .service-card:nth-child(1) {
     animation-delay: 0.1s;
   }

   .service-card:nth-child(2) {
     animation-delay: 0.2s;
   }

   .service-card:nth-child(3) {
     animation-delay: 0.3s;
   }

   .service-card:nth-child(4) {
     animation-delay: 0.4s;
   }

   .detail_box p {
     margin: 5px 0px;
     color: var(--text-gray);
   }

   .floating-element {
     position: absolute;
     background: rgba(221, 99, 37, 0.1);
     border-radius: 50%;
     filter: blur(30px);
   }

   .blogcate-title-block {
     padding: 4px 15px;
     color: var(--primary-color);
     margin-bottom: 5px;
     font-size: 18px;
     border-bottom: 1px solid var(--primary-color);
   }

   .blogcate-title-block a.pull-right {
     color: #1E64A5;
     font-weight: 300;
   }

   .blogcate-title-block a {
     color: var(--primary-color);
     font-weight: bold;
   }

   .more {
     display: none;
     color: var(--text-white);
     padding: 5px 10px;
     background: transparent;
     border: solid 1px var(--primary-color);
     border-radius: 5px;
     margin: 10px;
     font-size: 12px;
   }

   .tam-headline {
     font-size: 30px;
     line-height: 1.6;
     color: rgb(255, 255, 255);
     text-align: center;
     text-shadow: rgb(255, 255, 255) 1px 1px 5px;
   }

   .video-home {
     display: block;
     width: 100%;
     height: auto;
     filter: brightness(1);
   }

   .custom-page-main-content .video-home {
     display: block;
     width: 100%;
     height: auto;
     filter: brightness(0.5);
   }

   .tam-info {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
   }

   .project-overlay {
     bottom: 0;
     left: 0;
     width: 100%;
     font-size: 20px;
     line-height: 1.2;
     position: absolute;
     text-align: center;
     text-transform: uppercase;
     font-weight: bold;
     /* height: 150px; */
   }

   .card-project {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     max-width: 800px;
     flex-direction: column;
     --filter: grayscale(100%);
     transition: 0.5s all;
     text-align: center;
   }

   .card-project:hover .project-overlay {
     opacity: 1;
     visibility: visible;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     background: var(--text-white)fff69;
     top: 0;
     margin: auto;
     z-index: 2;
     transition: 200ms ease-out;
   }

   .card-project img {
     min-height: unset !important;
     object-fit: cover;
     --filter: grayscale(100%);
     --opacity: 0.5;
   }

   .card-partner {
     filter: grayscale(100%);
   }

   .home-main-content {
     background: #000;
   }

   .home-main-content .card-partner img {
     scale: 0.8;
   }

   .custom-page-portfolio .card-partner {
     filter: grayscale(0%);
   }

   .card-partner:hover {
     filter: grayscale(0%);
     transition: 200ms ease-out;
   }

   .section-contact {
     background-image: url(/photos/all/tam/bg-team.jpg);
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     background-blend-mode: overlay;
     position: relative;
     min-height: 500px;
     display: flex;
   }

   .contact-map .title {
     font-weight: bold;
     font-size: 35px;
     text-transform: uppercase;
     color: var(--text-white);
     text-align: center;
     text-shadow: var(--text-white)fff 1px 1px 3px;
     position: absolute;
     z-index: 9;
     margin: -25px 0px 0px -55px;
   }

   .contact-map {
     width: 60%;
     box-shadow: 20px 20px 20px 0 #000;
     margin-left: 65px;
   }

   .contact-card {
     display: flex;
     align-items: flex-start;
     flex-direction: column;
     justify-content: center;
   }

   .contact-card img {
     max-height: 30px;
   }

   .section-partner {
     margin: auto;
     text-align: center;
     background-size: cover;
     background-position: center;
     background-repeat: repeat;
     background-attachment: fixed;
     display: flex;
     flex-direction: column;
   }

   .container-partner {
     display: flex;
     flex-direction: column;
     max-width: 1200px;
     position: relative;
     margin: 0 auto;
     height: 100%;
     padding: 60px 0px;
   }

   .logo-partner {
     display: grid;
     grid-column-gap: 0px;
     grid-row-gap: 0px;
     grid-template-columns: repeat(8, minmax(0, 1fr));
     justify-items: center;
     align-items: center;
     margin: auto;
     max-width: 1200px;
     overflow: overlay;
     max-height: 500px;
   }

   .logo-partner img {
     padding: 15px;
   }

   .tam-element {
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     margin-top: 30px;
   }

   .container-video iframe {
     max-width: 100%;
   }

   .container-video-embed {
     max-width: 1200px;
     margin: auto;
     display: flex;
     flex-direction: column;
     align-items: center;
   }

   .container-video-embed .tam-paragraph {
     color: var(--text-white);
     margin: auto;
   }

   .container-service {
     display: flex;
     max-width: 1200px;
     position: relative;
     margin: 0 auto;
     width: 100%;
     flex-direction: row-reverse;
   }

   .section-service {
     --background-image: url(/photos/all/tam/bg-section-service.jpg);
     background-size: cover;
     background-position: bottom;
     background-repeat: repeat;
     background-blend-mode: overlay;
     display: flex;
     position: relative;
     margin: 0 auto;
     height: 100%;
     padding: 50px 0px;
     min-height: 500px;
     align-items: center;
   }

   .container-first-content {
     position: relative;
     display: flex;
     width: 20%;
     opacity: 1;
     transform: translateY(0px);
     flex-direction: column;
   }

   .container-project {
     display: none !important;
   }

   .section-project {
     padding: 30px 0px;
     margin: auto;
     background-color: #000;
   }

   .tam-title-project {
     color: var(--text-white)fff;
     font-size: 16px;
     padding: 20px;
     text-align: center;
     text-transform: uppercase;
   }

   .container-about {
     position: relative;
     margin: 0 auto;
     height: 100%;
     flex-direction: column;
     align-items: center;
   }

   .tam-widget-content {
     display: block;
     color: var(--text-white);
     flex-wrap: wrap;
     flex-direction: column;
     font-size: 12.5px;
     padding: 0px 20px;
   }

   .tam-widget-content ul {
     list-style: circle;
   }

   .tam-widget-content a {
     color: #aaa;
   }

   .tam-service-title h5 {
     color: var(--primary-color);
     font-size: 20px;
     overflow-wrap: break-word;
   }

   .section-video-embed {
     margin: auto;
     text-align: center;
     padding: 30px;
     /*background-image: url(/photos/all/tam/bg-video.jpg);*/
     background-size: cover;
     background-position: center;
     background-repeat: repeat;
     background-attachment: fixed;
     background: #000;
     display: flex;
     flex-direction: column;
     align-items: center;
   }

   .section-menu {
     background: #00000097;
     z-index: 999;
     width: 100%;

   }

   .section-menu .text-menu {
     text-transform: uppercase;
     padding: 10px;
     font-weight: 400;
   }

   .container-menu {
     align-items: center;
     max-width: 1200px;
     min-height: 45px;
     margin: auto;
     display: flex;
     grid-template-columns: repeat(1, minmax(0, 1fr));
     justify-content: center;
   }

   .container-menu .tam-logo img {
     max-height: 30px;
     max-width: 30px;
   }

   .fa-play:before {
     content: "\f04b";
   }

   .featured-play-button {
     position: absolute;
     color: var(--text-white);
     font-size: 15px;
     z-index: 1;
     bottom: 50%;
   }

   .featured-play-button:hover {
     color: var(--primary-color);
     font-size: 18px;
   }

   .tam-logo {
     margin: auto 50px;
   }

   .nav-menu {
     display: flex;
     align-items: center;
   }

   .section-menu .text-menu {
     color: var(--primary-color);
     font-weight: bold;
   }

   .section-menu .text-menu>a:hover {
     color: var(--text-white);
     text-decoration: underline;
   }

   .dropdown {
     position: relative;
     display: inline-block;
   }

   .dropdown-content {
     display: none;
     position: fixed;
     background-color: #000;
     min-width: 160px;
     --box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
     padding: 10px;
     z-index: 1;
   }

   .dropdown-content .content-title:hover {
     color: var(--primary-color);
   }

   .dropdown-content .content-title {
     color: var(--text-white);
     font-weight: bold;
     font-size: 12px;
     margin-top: 6px;
   }

   .dropdown:hover .dropdown-content {
     display: flex;
     flex-direction: column;
   }

   /*----------------------------------------------------------------------------*/
   .sticky {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 9999;
     background: #000;
   }

   #navbar {
     overflow: hidden;
   }

   .gradient {
     background: linear-gradient(to right,
         hsl(98 100% 62%),
         hsl(204 100% 59%));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-align: center;
   }

   .section-video-about {
     margin: auto;
     text-align: center;
     padding: 30px;
     --background-image: url(/photos/all/tam/bg-video.jpg);
     background-size: cover;
     background-position: center;
     background-repeat: repeat;
     background-attachment: fixed;
     background: #000;
     display: none;
   }

   #about h3 {
     text-shadow: rgb(255, 255, 255) 1px 1px 5px;
   }

   .tam-info h3 {
     font-size: 68px;
     line-height: 1.6;
     color: rgb(255, 255, 255);
     text-align: center;
     font-weight: bold;
     transition: all 150ms linear 0s;
   }

   .tam-info h3:hover {
     color: var(--primary-color);
     transform: scale(1.2);
   }

   .tam-info p {
     font-size: 20px;
     line-height: 1.6;
     color: rgb(255, 255, 255);
     text-align: center;
     font-weight: bold;
   }

   .container-box {
     display: flex;
     flex-direction: column;
     max-width: 1200px;
     margin: 30px auto;
   }

   .tam-box {
     display: flex;
     padding: 30px;
   }

   .tam-box:nth-child(2) {
     display: flex;
     padding-left: 150px;
   }

   .tam-box:nth-child(3) {
     display: flex;
     padding-left: 250px;
   }

   .tam-box h2 {
     font-size: 45px;
     text-shadow: var(--text-white)fff 1px 1px 8px;
     font-weight: bold;
     color: var(--text-white)fff;
     text-align: center;
     display: flex;
     margin-right: 100px;
   }

   .container-box .title {
     font-size: 30px;
     font-weight: bold;
     line-height: 56px;
     color: var(--text-white);
     text-align: left;
     text-transform: uppercase;
   }

   .container-box .paragraph {
     font-size: 14px;
     color: var(--text-white)fff;
     text-align: justify;
     max-width: 500px;
   }

   .section-how-we-work {
     display: flex;
     flex-direction: column;
     text-align: center;
     --background-image: url('/photos/all/tam/bg-tam.png');
     background-size: cover;
     background-position: center;
     background-repeat: repeat;
     background-attachment: fixed;
     background-blend-mode: hard-light;
   }

   .paragraph {
     text-align: center;
     font-size: 14px;
     color: var(--text-white);
     max-width: 800px;
   }

   .new-contact-content {
     display: flex;
   }

   .service-content {
     position: relative;
     display: flex;
     opacity: 1;
     transform: translateY(0px);
     width: 40%;
   }

   .section-gallery-project {
     margin: auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     background: #000;
   }

   .container-gallery-project {
     display: flex;
     flex-direction: column;
     padding: 10px 0px;
     max-width: 1200px;
     margin: auto;
   }

   .gallery-project {
     display: grid;
     grid-column-gap: 10px;
     grid-row-gap: 10px;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     padding: 25px 10px 10px 10px;
   }

   .tam-h3 {
     font-weight: bold;
     font-size: 20px;
     color: var(--text-white);
     text-align: left;
     padding: 0px 10px;
     display: flex;
     justify-content: space-between;

   }

   .tam-h3 span {
     background-image: linear-gradient(90deg, var(--primary-color), rgb(15 15 15 / 0%));
     width: 68%;
     padding-left: 10px;
   }

   .item-overlay {
     bottom: 0;
     visibility: hidden;
     opacity: 0;
     left: 0;
     width: 100%;
     font-size: 14px;
     line-height: 30px;
     position: absolute;
     text-align: center;
     background: #00000079;
     color: var(--text-white);
     text-transform: uppercase;
     font-weight: bold;
   }

   .item-overlay a {
     color: var(--text-white);
   }

   .item-overlay ahover {
     color: var(--primary-color);
   }

   .card-project:hover .item-overlay {
     opacity: 1;
     visibility: visible;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     margin: auto;
     color: var(--text-white);
     z-index: 2;
     transition: all 0.5s ease;
   }

   .container-service h2 {
     color: var(--text-white);
     padding-top: 20px;
     box-sizing: border-box;
     line-height: 30px;
     font-size: 38px;
     font-weight: bold;
     margin: 0px;
     overflow-wrap: break-word;
     text-shadow: var(--text-white)fff 1px 1px 5px;
   }


   /*-----------------------------event agency page----------------------------- */
   /* width */
   /* ::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #161519; 
  border-radius:10px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color); 
  border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color); 
} */


   .container-carousel {
     background: #111;
   }

   #carousel {
     position: relative;
     height: 500px;
     top: 50%;
     overflow: hidden;
     padding: 100px 0px;
     max-width: 1500px;
     display: flex;
     margin: 0px auto;
   }

   #carousel div {
     position: absolute;
     transition: transform 1s, left 1s, opacity 1s, z-index 0s;
     opacity: 1;
   }

   #carousel div img {
     width: 500px;
     transition: width 1s;
   }

   #carousel div.hideLeft {
     left: 0%;
     opacity: 0;
     transform: translateY(50%) translateX(-50%);
     filter: grayscale(100%);
   }

   #carousel div.hideLeft img {
     width: 200px;
   }

   #carousel div.hideRight {
     left: 100%;
     opacity: 0;
     transform: translateY(50%) translateX(-50%);
     filter: grayscale(100%);
   }

   #carousel div.hideRight img {
     width: 200px;
   }

   #carousel div.prev {
     z-index: 5;
     left: 25%;
     transform: translateY(50px) translateX(-50%);
     filter: grayscale(100%);
   }

   #carousel div.prev img {
     width: 300px;
   }

   #carousel div.prevLeftSecond {
     z-index: 4;
     left: 10%;
     transform: translateY(50%) translateX(-50%);
     opacity: 1;
     filter: grayscale(100%);
   }

   #carousel div.prevLeftSecond img {
     width: 200px;
   }

   #carousel div.selected {
     z-index: 10;
     left: 50%;
     transform: translateY(0px) translateX(-50%);
     filter: grayscale(0%);
   }

   #carousel div.next {
     z-index: 5;
     left: 75%;
     transform: translateY(50px) translateX(-50%);
     filter: grayscale(100%);
   }

   #carousel div.next img {
     width: 300px;
   }

   #carousel div.nextRightSecond {
     z-index: 4;
     left: 90%;
     transform: translateY(50%) translateX(-50%);
     opacity: 1;
     filter: grayscale(100%);
   }

   #carousel div.nextRightSecond img {
     width: 200px;
   }

   .buttons {
     position: fixed;
     left: 50%;
     transform: translateX(-50%);
     bottom: 10px;
     display: none;
   }

   /*------------------------- Animation Effect-------------------------------*/
   .portforlio_carousel .owl-item {
     transform: scale(0.7) !important;
     transition: 1s all;
     filter: grayscale(100%);
   }

   .portforlio_carousel .owl-item.active {
     transform: scale(1) !important;
     filter: grayscale(0%);
     transition: 0.5s all;
   }

   .portforlio_carousel .owl-item.near {
     transform: scale(0.75) !important;
     filter: grayscale(100%);
     transition: 0.5s all;
   }

   .portforlio_carousel .owl-item.N-next {
     transform: scale(0.5) !important;
     filter: grayscale(100%);
     transition: 0.5s all;
     translate: -65px;
   }

   .portforlio_carousel .owl-item.P-next {
     transform: scale(0.6) !important;
     filter: grayscale(100%);
     transition: 0.5s all;
     translate: 65px;
   }

   @media (max-width:575px) {
     .container-first-content {
       width: 100%;
       padding-left: 20px;
       padding-bottom: 20px;
     }
   }

   @media (max-width: 768px) {
     .swipe-right.first-title {
       width: 30% !important;
     }

     .footer-title::after {
       content: '';
       position: absolute;
       left: 0;
       right: 0;
       bottom: 0;
       height: 3px;
       width: 50px;
       margin: auto;
       background-color: var(--secondary-color);
     }

     .new-container-proj {
       grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
     }

     .project-video img {
       padding: 0px !important;
       border-radius: 10px !important;
       height: 300px !important;
     }

     #carousel div img {
       width: 300px !important;
     }

     .project-box-img {
       margin: 10px 0px !important;
     }
   }

   @media (max-width:768px) {
     .container-service h2 {
       color: var(--text-white);
       padding-top: 5px;
       font-size: 20px;
     }

     .section-menu .text-menu {
       text-transform: uppercase;
       padding: 5px;
       font-weight: 400;
     }

     .project-title {
       font-size: 24px !important;
     }

     .logo-partner {
       display: grid;
       grid-column-gap: 20px;
       grid-row-gap: 30px;
       grid-template-columns: repeat(4, minmax(0, 1fr));
       padding: 30px 20px;
       justify-items: center;
       align-items: center;
       margin: auto;
       max-width: 1200px;
       overflow: overlay;
       max-height: 300px;
     }

     .service-content {
       position: relative;
       display: flex;
       opacity: 1;
       transform: translateY(0px);
       width: 100%;
     }

     .contact-card {
       display: flex;
       align-items: flex-start;
       flex-direction: column;
       justify-content: center;
       width: 100%;
     }

     .paragraph {
       text-align: center;
       padding-bottom: 5%;
       color: var(--text-white);
     }

     .new-contact-content {
       display: flex;
       flex-direction: column;
     }

     .container-box .paragraph {
       font-size: 12px;
       color: var(--text-white)fff;
       text-align: justify;
       max-width: 500px;
     }

     .container-box .title {
       font-size: 20px;
       font-weight: bold;
       line-height: 56px;
       color: var(--text-white);
       text-align: left;
       text-transform: uppercase;
     }

     .tam-box h2 {
       font-size: 50px;
       text-shadow: var(--text-white)FFE 1px 1px 5px;
       font-weight: bold;
       color: var(--text-white)fff;
       text-align: center;
       display: flex;
       margin-right: 30px;
     }

     .tam-box {
       display: flex;
       padding: 0px;
     }

     .tam-box:nth-child(2) {
       display: flex;
       padding: 0px;
     }

     .tam-box:nth-child(3) {
       display: flex;
       padding: 0px;
     }

     .section-menu .text-menu {
       color: var(--text-white);
       font-weight: bold;
       font-size: 10px;
     }

     .tam-info h3 {
       font-size: 30px;
       line-height: 1.6;
       color: rgb(255, 255, 255);
       text-align: center;
       font-weight: bold;
     }

     .tam-info p {
       font-size: 10px;
       line-height: 1.6;
       color: rgb(255, 255, 255);
       text-align: center;
       font-weight: bold;
     }
   }

   .divider {
     width: 100px;
     height: 4px;
     background: var(--secondary-color);
     margin: 0 auto 20px;
     border-radius: 2px;
   }


   .footer-title {
     color: var(--text-white) !important;
     font-weight: 600;
     position: relative;
     padding-bottom: 12px;
     margin-bottom: 25px;
   }

   .footer-title::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     height: 3px;
     width: 50px;
     background-color: var(--secondary-color);
   }

   .footer-text {
     color: var(--text-white);
     font-size: 14px;
     line-height: 1.6;
   }

   .footer-link {
     color: var(--text-white);
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 16px !important;
     display: inline-block;
   }

   .footer-link:hover {
     color: var(--primary-color);
     transform: translateX(5px);
   }

   .input-group .form-control {
     background-color: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
   }

   .input-group .form-control::placeholder {
     color: #b9b9b9;
   }

   .input-group .btn-primary {
     background-color: var(--primary-color);
     border-color: var(--primary-color);
   }

   .input-group .btn-primary:hover {
     background-color: #113b8a;
     border-color: #113b8a;
   }

   /* Social Media Icons */
   .example-2 {
     display: flex;
     padding: 0;
     list-style-type: none;
     gap: 15px;
     margin-top: 20px;
   }

   .icon-content {
     position: relative;
   }

   .icon-content a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
   }

   .icon-content a svg {
     width: 22px;
     height: 22px;
     z-index: 2;
     transition: all 0.3s ease;
   }

   .icon-content a .filled {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--text-white);
     border-radius: 50%;
     transform: scale(0);
     transition: all 0.3s ease;
     z-index: 1;
   }

   .icon-content a:hover .filled {
     transform: scale(1);
   }

   .tooltip {
     position: absolute;
     top: -35px;
     left: 50%;
     transform: translateX(-50%);
     background-color: #333;
     color: var(--text-white);
     padding: 4px 8px;
     border-radius: 4px;
     font-size: 12px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
   }

   .tooltip::after {
     content: '';
     position: absolute;
     top: 100%;
     left: 50%;
     margin-left: -5px;
     border-width: 5px;
     border-style: solid;
     border-color: #333 transparent transparent transparent;
   }

   .icon-content:hover .tooltip {
     opacity: 1;
     visibility: visible;
     top: -40px;
   }

   /* Responsive adjustments */
   @media (max-width: 991px) {
     .footer-title {
       margin-top: 30px;
     }
   }

   @media(min-width: 1500px) {
     .portforlio_carousel .owl-item.N-next {
       translate: -70px;
     }

     .portforlio_carousel .owl-item.P-next {
       translate: 70px;
     }
   }

   @media(min-width: 1920px) {
     .portforlio_carousel .owl-item.N-next {
       translate: -90px;
     }

     .portforlio_carousel .owl-item.P-next {
       translate: 90px;
     }
   }

   /*============================================================================*/
   /*-----------------------------portfolio page-------------------------------- */
   .fa-chevron-left:before {
     --content: '\f053';
   }

   .fa-chevron-right:before {
     --content: '\f054';
   }

   .carousel {
     position: relative;
     overflow: hidden;
   }

   .slides {
     display: flex;
     transition: opacity 0.1s ease-in-out;
   }

   .slides img {
     width: 100%;
     height: auto;
     display: block;
   }

   .custom-page-portfolio .drop-menu:hover {
     display: block;
   }

   .imgport {
     max-width: 1100px;
     margin: auto;
   }

   .imgport img {
     margin-top: 45px;
     max-width: 100%;
     padding: 10px 50px;
   }

   .custom-page-portfolio .prev:hover,
   .custom-page-portfolio .next:hover {
     color: var(--text-white);
   }

   .custom-page-portfolio .prev,
   .custom-page-portfolio .next {
     position: absolute;
     font-size: 80px;
     padding: 10px;
     color: var(--primary-color);
     top: 50%;
     transform: translateY(-50%);
     z-index: 1;
     cursor: pointer;
   }

   .custom-page-portfolio .prev {
     left: 0;
   }

   .custom-page-portfolio .next {
     right: 0;
   }

   .custom-page-portfolio .navigation-dots {
     position: absolute;
     text-align: center;
     bottom: 15px;
     margin: 0 auto;
     left: 0;
     right: 0;
   }

   .custom-page-portfolio .navigation-dots .dot {
     height: 10px;
     width: 10px;
     background-color: #aaa;
     border-radius: 50%;
     display: inline-block;
     margin: 0 5px;
     cursor: pointer;
   }

   .custom-page-portfolio .navigation-dots .active {
     background-color: var(--primary-color);
   }

   .new-container-project {
     display: flex;
     margin: 0 auto;
     justify-content: center;
   }

   .play-button-wrapper {
     position: relative;
     display: inline-block;
   }

   .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background-color: rgba(0, 0, 0, 0.5);
     border-radius: 50%;
     padding: 10px;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1;
     transition: all 0.5s ease;
     cursor: pointer;
   }

   .play-button:hover {
     background-color: var(--secondary-color);
     color: var(--text-white);
     transform: translate(-50%, -50%) scale(1.1);
   }

   .new-container-project-left {
     display: flex;
     max-width: 200px;
     width: 100%;
     align-items: center;
     justify-content: center;
     position: relative;
   }

   .new-container-project-left .title {
     color: var(--text-white);
     font-size: 80px;
     font-weight: bold;
     transform: rotate(-90deg);
     text-transform: uppercase;
   }

   .new-container-project-left .title-stroke {
     position: absolute;
     color: transparent;
     margin: 0px 0px 15px 15px;
     -webkit-text-stroke: 1px var(--primary-color);
   }

   .new-container-project-right {
     display: block;
     position: relative;
     margin: 0px 10px;
   }

   .new-container-proj {
     display: grid;
     grid-column-gap: 20px;
     grid-row-gap: 20px;
     grid-template-columns: repeat(3, minmax(0, 1fr));
   }

   .new-container-project .proj {
     aspect-ratio: 1.5/1;
     -webkit-transform: translate3d(0, 0, 0);
     filter: brightness(1);
     transition: 1s ease-out;
   }

   .proj {
     position: relative;
     z-index: 1;
     transition: 0.3s;
   }

   .proj img {
     width: 100%;
     border-radius: 5px;
   }

   .scale-img {
     overflow: hidden;
     display: block;
   }

   .proj a {
     filter: gray;
     -webkit-transition: all 300ms linear;
     position: relative;
     z-index: 1;
   }

   .content .maxwidth .content-main img {
     margin: 10px 0px;
   }

   .proj:hover .name_name_project {
     opacity: 1;
     transition: 0.3s;
   }

   .name_name_project {
     position: absolute;
     bottom: 40%;
     left: 0;
     right: 0;
     z-index: 1;
     line-height: 3;
     opacity: 0;
   }

   .name_name_project a {
     font-size: 18px;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--text-white);
     padding: 0 24px;
     line-height: 1.4;
   }

   .new-container-project .proj:hover {
     filter: grayscale(0%);
   }

   .proj:before {
     transform: rotate(0deg);
     transform-origin: top left;
     height: 100%;
     content: '';
     width: 100%;
     background: linear-gradient(180deg, rgb(0 0 0 / 30%) 10%, rgba(189, 97, 15, 1) 100%);
     position: absolute;
     transition: 0.5s all;
     border-radius: 5px;
   }

   .proj:hover:before {
     transform: rotate(2deg);
     transform-origin: top left;
     height: 102%;
     content: '';
     width: 100%;
     background: linear-gradient(180deg, rgb(0 0 0 / 30%) 10%, rgba(189, 97, 15, 1) 100%);
     position: absolute;
     transition: 0.3s all;
     border-radius: 5px;
   }

   .gallery-item {
     position: relative;
     overflow: hidden;
     cursor: pointer;
   }

   .gallery-item img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     transition: transform 0.3s ease-in-out;
   }

   .gallery-item:hover img {
     transform: scale(1.05);
   }

   .gallery-item:hover .overlay {
     opacity: 1;
     transform: translateY(0);
   }

   .overlay h4 {
     margin-bottom: 10px;
     font-size: 16px;
   }

   .overlay .btn {
     transition: 0.3s;
   }

   .overlay .btn:hover {
     transform: scale(1.05);
   }

   /* Quy trình làm việc */
   .horizontal-timeline {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-top: 50px;
   }

   .timeline-header {
     text-align: center;
     margin-bottom: 60px;
     padding: 0 40px;
   }

   .timeline-title {
     font-size: 3rem;
     font-weight: 800;
     margin-bottom: 20px;
     background: linear-gradient(90deg, var(--primary-color), #f5a623);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-transform: uppercase;
     letter-spacing: 2px;
   }

   .timeline-subtitle {
     color: var(--text-secondary);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.8;
     font-size: 1.1rem;
   }

   .timeline-line {
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, rgb(19 0 93 / 20%), var(--primary-color), rgb(33 24 105 / 20%));
     z-index: 1;
     transform: scaleX(0);
     transform-origin: left center;
   }

   .timeline-progress {
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--primary-color);
     z-index: 2;
     transform: scaleX(0);
     transform-origin: left center;
   }

   .timeline-steps {
     display: flex;
     position: relative;
     flex-wrap: wrap;
     z-index: 3;
   }


   .step-card {
     background: var(--bg-white);
     border-radius: 16px;
     padding: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
     transform-style: preserve-3d;
     transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     opacity: 1;
     border: 1px solid var(--card-border);
   }

   .step-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(30, 100, 165, 0.15);
     border-color: rgba(30, 100, 165, 0.2);
   }

   .step-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
     opacity: 0;
     transition: opacity 0.4s ease;
   }

   .step-card.active {
     opacity: 1;
     transform: translateY(0) rotateY(0);
   }

   .step-card.highlight {
     transform: translateY(-20px) scale(1.05);
     box-shadow: 0 30px 70px rgba(221, 99, 37, 0.3);
   }

   .step-card.highlight::before {
     opacity: 0.3;
   }

   .step-number {
     position: absolute;
     top: -25px;
     left: 50%;
     transform: translateX(-50%);
     width: 50px;
     height: 50px;
     background: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 1.2rem;
     color: white;
     z-index: 4;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     transition: all 0.4s ease;
   }

   .step-card.highlight .step-number {
     transform: translateX(-50%) scale(1.2);
     background: var(--primary-light);
     box-shadow: 0 0 20px var(--primary-light);
   }

   .step-icon {
     width: 70px;
     height: 70px;
     background: rgb(4 12 35 / 20%);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: var(--primary-color);
     margin-bottom: 25px;
     transition: all 0.4s ease;
     transform-style: preserve-3d;
   }

   .step-card.highlight .step-icon {
     background: rgb(4 12 35 / 20%);
     color: var(--primary-light);
   }

   .step-title {
     font-size: 1.6rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--text-color);
     position: relative;
     display: inline-block;
   }

   .step-title::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 50px;
     height: 4px;
     background: var(--primary-color);
     border-radius: 3px;
     transition: all 0.4s ease;
   }

   .step-card.highlight .step-title::after {
     width: 70px;
     background: var(--primary-light);
   }

   .step-content {
     color: var(--text-gray);
     line-height: 1.8;
     margin-bottom: 20px;
     font-size: 0.95rem;
   }

   .step-badge {
     display: inline-block;
     background: rgb(4 12 35 / 20%);
     color: var(--primary-color);
     padding: 6px 18px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     transition: all 0.4s ease;
   }

   .step-card.highlight .step-badge {
     background: rgb(4 12 35 / 20%);
     color: var(--primary-light);
   }

   .nav-arrows {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 20px;
     z-index: 10;
   }

   .nav-arrow {
     width: 50px;
     height: 50px;
     background: rgba(30, 30, 30, 0.7);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-color);
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     border: 2px solid var(--card-border);
     backdrop-filter: blur(5px);
   }

   .nav-arrow:hover {
     background: var(--primary-color);
     transform: scale(1.1);
   }

   .timeline-progress-mobile {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: rgba(221, 99, 37, 0.2);
     z-index: 100;
   }

   .timeline-progress-mobile-fill {
     height: 100%;
     width: 0;
     background: var(--primary-color);
     transition: width 0.3s ease;
   }

   /* Responsive */
   @media (max-width: 1200px) {
     .timeline-steps .col-md-3 {
       width: 100%;
       margin: 0 auto;
     }
   }

   @media (max-width: 992px) {
     body {
       overflow-x: auto;
       overflow-y: auto;
       height: auto;
     }

     .timeline-line {
       display: none;
     }

     .timeline-line,
     .timeline-progress {
       top: 0;
       left: 50px;
       width: 4px;
       height: 100%;
       transform: scaleY(0);
       transform-origin: top center;
       display: none
     }

     .timeline-steps {
       flex-direction: column;
       padding: 0px;
       width: 100%;
     }

     .step {
       width: 100%;
     }

     .step-card {
       transform: translateX(15px) rotateX(30deg);
     }

     .step-card.active {
       transform: translateX(0) rotateX(0);
     }

     .step-number {
       left: -80px;
       top: 50%;
       transform: translateY(-50%);
     }

     .nav-arrows {
       display: none;
     }

     .timeline-progress-mobile {
       display: block;
     }

     .hide-for-medium.flex-right {
       width: 100%;
       display: flex;
       justify-content: center;
     }

     .nav {
       width: auto !important;
     }

     .hide-for-medium.flex-left {
       display: none;
     }
   }

   @media (max-width: 576px) {
     .timeline-title {
       font-size: 2.2rem;
     }


     .step-number {
       left: -24px;
       width: 50px;
       height: 50px;
       font-size: 1rem;
     }

     .step-icon {
       width: 60px;
       height: 60px;
       font-size: 1.8rem;
     }

     .step-title {
       font-size: 1.4rem;
     }
   }

   .svg-divider {
     position: relative;
     height: 150px;
     width: 100%;
     overflow: hidden;
   }

   .svg-divider svg {
     position: absolute;
     bottom: 0;
     width: 100%;
     height: 100%;
   }

   .svg-divider.top svg {
     top: 0;
     bottom: auto;
     transform: rotate(180deg);
   }

   /*----------------------------------------------------*/
   .new-services a {
     color: var(--text-white);
   }

   .new-services a:hover {
     color: var(--primary-color);
   }

   .subtitle a {
     color: var(--text-white);
   }

   .subtitle a:hover {
     color: var(--primary-color);
   }

   .new-services {
     width: 50%;
     text-transform: capitalize;
     font-size: 20px;
     display: grid;
     grid-column-gap: 0px;
     grid-row-gap: 10px;
     grid-template-columns: repeat(1, minmax(0, 330px));
   }

   .new-container-scroll-text {
     position: relative;
     z-index: 11;
   }

   .scroll-text {
     position: relative;
     width: calc(100% + 400px);
     left: -400px;
     display: flex;
     transform: rotate(calc(var(--d) * 1deg)) translateY(calc(var(--y) * 1px))
   }

   .scroll-text1 div {
     color: #000;
     font-family: 'VisbyCF', sans-serif;
     font-size: 30px;
     text-transform: uppercase;
     --letter-spacing: 0.2em;
     font-weight: 600;
     white-space: nowrap;
     animation: animate 60s linear infinite;
     animation-delay: -60s;
   }

   .scroll-text1 div:nth-child(2) {
     animation: animate-two 60s linear infinite;
     animation-delay: -30s;
   }

   .scroll-text2 div {
     color: var(--text-white);
     font-family: 'VisbyCF', sans-serif;
     font-size: 30px;
     text-transform: uppercase;
     --letter-spacing: 0.2em;
     font-weight: 600;
     white-space: nowrap;
     animation: animate2 60s linear infinite;
     animation-delay: -60s;
   }

   .scroll-text2 div:nth-child(2) {
     animation: animate2-two 60s linear infinite;
     animation-delay: -30s;
   }


   .stroke-text {
     font-weight: bold;
     font-size: 50px;
     margin: 0px auto;
     text-transform: uppercase;
     color: var(--text-white);
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .text-gradient {
     background: linear-gradient(45deg, #002771, var(--primary-color));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     position: relative;
     font-size: 40px;
   }

   .center-content {
     z-index: 10;
   }

   .element {
     display: block;
     position: relative;
     z-index: -1;
   }

   .proj::before {
     content: "";
     border-radius: 5px;
     background-image: linear-gradient(var(--rotate), var(--primary-color), #000 50%, #cf3b00, #000 100%);
     position: absolute;
     z-index: -1;
     top: 1%;
     left: 1%;
     animation: spin 5s linear infinite;
   }

   #trapezium {
     height: 0;
     width: 80px;
     border-bottom: 80px solid blue;
     border-left: 40px solid transparent;
     border-right: 40px solid transparent;
   }

   .max-width {
     max-width: 1100px;
     margin: 0 auto;
   }

   .min-height {
     min-height: 500px;
   }

   .section-bg {
     background: var(--text-white);
     padding: 60px 0;
     position: relative;
     overflow: hidden;
   }

   .section-bg::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     height: 150px;
     width: 100%;
     background: url('https://i.imgur.com/gcLgaJc.jpg') no-repeat center center;
     background-size: cover;
     z-index: 1;
   }

   .icon-circle {
     border: 5px solid var(--primary-color);
     border-radius: 50%;
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
   }

   .icon-circle i {
     font-size: 32px;
     color: var(--primary-color);
   }

   .section-title.text-center fs-3 {
     font-weight: 700;
     text-transform: uppercase;
     font-size: 20px;
   }

   .section-content {
     font-size: 16px;
     color: var(--text-gray);
   }


   .highlight {
     font-style: italic;
     font-weight: 600;
   }

   .journey-section {
     padding: 60px 20px;
     text-align: center;
   }

   .journey-title {
     font-size: 3rem;
     font-weight: 800;
     color: #d35400;
     margin-bottom: 10px;
   }

   .journey-subtitle {
     font-size: 1.25rem;
     color: #555;
     margin-bottom: 40px;
   }

   .container-wrapper {
     padding: 60px 20px;
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     position: relative;
     height: 650px;
   }

   .text-content {
     max-width: 500px;
     flex: 1;
   }

   .text-content h1 {
     font-size: 2.8rem;
     font-weight: 800;
     color: #d35400;
     margin-bottom: 20px;
   }

   .text-content p {
     font-size: 1.15rem;
     line-height: 1.7;
     margin-bottom: 0px;
     color: var(--text-gray);
   }

   .map-box {
     flex: 1;
     max-width: 600px;
     border-radius: 16px;
     overflow: hidden;
     position: absolute;
     right: 10%;
     top: 14px;
     height: 600px;
   }

   .map-box img {
     width: 100%;
     height: 100%;
     display: block;
   }

   .location-list {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
   }

   .location {
     background-color: rgba(7, 84, 172, 0.1);
     color: var(--text-gray);
     border: 1px solid var(--primary-color);
     border-radius: 50px;
     padding: 0.3rem 1rem;
     margin: 0.5rem;
     transition: all 0.3s ease;
     font-weight: 500;
     cursor: pointer;
   }

   .location:hover {
     background-color: var(--primary-color);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     transform: scale(1.05);
     color: var(--text-white);
   }

   .our-team-card {
     padding: 4px;
     border-radius: 15px;
     background-image: linear-gradient(var(--rotate), var(--primary-color), #f5f5f5 50%);
     animation: spin 15s linear infinite;
   }

   .card-info {
     position: absolute;
     right: 120px;
     border-radius: 12px;
     background: #eeeeee;
     z-index: 1;
   }

   .card-info-1 {
     width: 50%;
     border-radius: 12px;
     background: #eeeeee;
     z-index: 1;
     left: 100px;
     top: 30px !important;
     position: absolute;
   }

   .modal-header {
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

   .modal-footer {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
   }

   .modal-header .btn-close {
     color: var(--text-white) !important;
   }

   .stats {
     background-color: var(--bg-white);
     padding: 3rem 0;
     margin-top: -100px;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     position: relative;
     z-index: 10;
   }

   .stats-container {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
   }

   .stat-item {
     text-align: center;
     padding: 1.5rem;
     position: relative;
   }

   .stat-item:not(:last-child)::after {
     content: '';
     position: absolute;
     right: 0;
     top: 20%;
     height: 60%;
     width: 1px;
     background-color: var(--text-gray);
   }

   .stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 0.5rem;
     line-height: 1;
   }

   .stat-text {
     font-size: 1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--text-gray);
   }

   /* about  */
   .about {
     padding: 50px 0;
     position: relative;
     overflow: hidden;
   }

   .about-content h2 {
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 1rem;
   }

   .about-content p {
     margin-bottom: 1.5rem;
     color: var(--text-gray);
     line-height: 1.8;
   }

   .about-list {
     list-style: none;
     margin-top: 2rem;
   }

   .about-list li {
     margin-bottom: 1.2rem;
     padding-left: 2rem;
     position: relative;
     line-height: 1.7;
   }

   .about-list li::before {
     content: '•';
     color: var(--primary-color);
     font-size: 1.8rem;
     position: absolute;
     left: 0;
     top: -0.5rem;
   }

   .about-image {
     position: relative;
     z-index: 1;
   }

   .about-image img {
     border-radius: 8px;
     box-shadow: 8px;
   }
   .projects-section {
     padding-bottom: 50px;
     position: relative;
     background-image: url(../files/banners/banner.png);
    background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
   }
   .upper_footer {
     position: relative;
     background-image: url(../files/banners/Artboard6.png);
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
   }

   .section-header {
     text-align: center;
     margin-bottom: 80px;
     position: relative;
   }

   .section-subtitle {
     font-size: 1.2rem;
     color: var(--text-gray);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.8;
   }

   /* Project Tabs */
   .project-tabs {
     display: flex;
     justify-content: center;
     margin-bottom: 40px;
     flex-wrap: wrap;
     gap: 10px;
   }

   .project-tab {
     padding: 10px 25px;
     background: transparent;
     color: var(--text-gray);
     border: 1px solid #333;
     border-radius: 30px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
   }

   .project-tab:hover,
   .project-tab.active {
     background: var(--primary-color);
     color: white;
     border-color: var(--primary-color);
     box-shadow: var(--glow-effect);
   }

   /* Project Grid */
   .projects-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
   }

   .project-card {
     border-radius: 12px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
     transition: all 0.4s ease;
     height: 100%;
     border: 1px solid rgba(255, 255, 255, 0.05);
     position: relative;
     overflow: hidden;
     z-index: 1;
     backdrop-filter: blur(5px);
     position: relative;
   }

   .project-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(8, 33, 87, 0.3);
   }

   .project-media {
     height: 250px;
     position: relative;
     overflow: hidden;
   }

   .project-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
   }

   .project-card:hover .project-image {
     transform: scale(1.1);
   }

   .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60px;
     height: 60px;
     background: var(--secondary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     opacity: 0;
   }

   .project-card:hover .play-button {
     opacity: 1;
   }

   .play-button i {
     color: white;
     font-size: 1.8rem;
     margin-left: 5px;
   }

   .project-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: var(--secondary-color);
     color: white;
     padding: 6px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
   }

   .project-content {
     padding: 25px;
   }


   .project-description {
     color: var(--text-gray);
     margin-bottom: 20px;
     line-height: 1.7;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
   }

   .project-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .client-info {
     display: flex;
     align-items: center;
   }

   .client-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     margin-right: 10px;
     object-fit: cover;
   }

   .client-name {
     font-size: 0.9rem;
     font-weight: 600;
   }

   .view-project {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 600;
     display: flex;
     align-items: center;
     transition: all 0.3s ease;
   }

   .view-project:hover {
     color: var(--primary-light);
   }

   .view-project i {
     margin-left: 5px;
     transition: transform 0.3s ease;
   }

   .view-project:hover i {
     transform: translateX(5px);
   }

   /* Video Modal */
   .video-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
   }

   .video-modal.active {
     opacity: 1;
     visibility: visible;
   }

   .video-container {
     position: relative;
   }

   .video-container iframe {
     width: 100%;
     height: 600px;
     border: none;
     border-radius: 10px;
   }

   .close-video {
     position: absolute;
     top: -40px;
     right: 0;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
   }

   .close-video:hover {
     color: var(--primary-color);
   }


   .contact-section {
     padding: 50px 0;
     position: relative;
     overflow: hidden;
   }

   .section-header {
     position: relative;
     margin-bottom: 80px;
     text-align: center;
     z-index: 2;
   }

   .section-subtitle {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto;
     color: var(--text-light);
     line-height: 1.8;
   }

   .slider-container {
     margin: 0 auto;
   }

   .swiper-main .swiper-slide {
     position: relative;
     overflow: hidden;
   }

   .swiper-main img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
   }

   .swiper-main .swiper-slide-active img {
     transform: scale(1.05);
   }

   .slide-content {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 2;
     padding: 30px;
     min-height: 260px;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
     color: white;
     text-align: center;
     transform: translateY(100%);
     transition: transform 0.5s ease;
   }

   .swiper-main .swiper-slide-active .slide-content {
     transform: translateY(0);
   }

   .swiper-thumbs {
     height: 80px;
     width: 80%;
     margin: 0 auto;
   }

   .swiper-thumbs .swiper-slide {
     opacity: 0.4;
     overflow: hidden;
     border-radius: 8px;
     cursor: pointer;
     width: 60px !important;
     height: 60px !important;
     margin: 0 5px;
     transition: all 0.3s ease;
   }

   .swiper-thumbs .swiper-slide-thumb-active {
     opacity: 1;
     border: 2px solid #ff6b00;
     transform: scale(1.1);
   }

   .swiper-thumbs img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }

   .view-more-btn {
     color: white;
     border: none;
     padding: 8px 24px;
     border-radius: 20px;
     transition: all 0.3s;
     opacity: 0;
     transform: translateY(20px);
   }

   .swiper-main .swiper-slide-active .view-more-btn {
     animation: fadeInUp 0.5s ease 0.3s forwards;
   }

   .view-more-btn:hover {
     transform: translateY(-2px);
   }

   .banner-item {
     position: relative;
     display: inline-block;
   }

   .banner-overlay {
     background: rgba(0, 0, 0, 0.5);
     border-radius: 10px;
     opacity: 0;
     transition: opacity 0.3s ease-in-out;
     visibility: hidden;
   }

   .banner-item:hover .banner-overlay {
     opacity: 1;
     visibility: visible;
   }

   .contact-container {
     background: var(--card-bg);
     border-radius: 16px;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
     overflow: hidden;
     position: relative;
     z-index: 1;
   }

   .contact-info {
     padding: 50px;
     background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-white) 100%);
     color: white;
     height: 100%;
     position: relative;
     overflow: hidden;
     backdrop-filter: blur(5px);
   }

   .contact-info::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 20% 70%, var(--primary-color) 0%, transparent 60%);
     z-index: -1;
   }

   .contact-info h3 {
     font-size: 1.8rem;
     margin-bottom: 30px;
     position: relative;
     padding-bottom: 15px;
   }

   .contact-info h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background: linear-gradient(90deg, var(--primary-color));
   }

   .info-item {
     margin-bottom: 25px;
     display: flex;
     align-items: flex-start;
     transition: all 0.3s ease;
     padding: 15px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid var(--bs-border-color);
   }

   .info-item:hover {
     background: rgba(221, 99, 37, 0.05);
     border-color: var(--primary-color);
     transform: translateX(5px);
   }

   .info-icon {
     width: 50px;
     height: 50px;
     background: rgba(15, 77, 170, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     margin-right: 20px;
     flex-shrink: 0;
     color: var(--primary-color);
     border: 1px solid var(--primary-color);
     transition: all 0.3s ease;
   }

   .info-item:hover .info-icon {
     background: var(--primary-color);
     color: white;
     transform: rotate(15deg);
   }

   .info-content h4 {
     font-size: 1.1rem;
     margin-bottom: 5px;
     color: white;
   }

   .info-content p,
   .info-content a {
     color: var(--text-gray);
     margin-bottom: 0;
     text-decoration: none;
     transition: all 0.3s ease;
   }

   .info-content a:hover {
     color: var(--primary-color);
     text-decoration: underline;
   }

   .social-links {
     display: flex;
     margin-top: 40px;
   }

   .social-links a {
     width: 45px;
     height: 45px;
     background: rgba(247, 246, 246, 0.4);
     ;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     transition: all 0.3s ease;
     border: 1px solid var(--border-color);
   }

   .social-links a:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(243, 242, 242, 0.3);
     border-color: transparent;
   }

   .contact-form {
     padding: 60px;
     height: 100%;
     position: relative;
   }

   .contact-form::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 80% 30%, var(--primary-color) 0%, transparent 60%);
     z-index: -1;
   }

   .form-control {
     background: rgba(255, 255, 255, 0.03);
     border-radius: 8px;
     padding: 10px 20px;
     margin-bottom: 20px;
     transition: all 0.3s ease;
     color: var(--text-gray);
   }

   .form-control:focus {
     border-color: transparent;
     box-shadow: transparent;
     color: var(--text-gray);
   }

   textarea.form-control {
     height: auto;
     min-height: 100px;
     resize: none;
   }

   .form-label {
     font-weight: 500;
     margin-bottom: 8px;
     color: var(--text-gray);
   }

   .form-check-input {
     background-color: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--border-color);
   }

   .form-check-input:checked {
     background-color: var(--primary-color);
     border-color: var(--primary-color);
   }

   .form-check-label {
     color: var(--text-gray);
   }

   .form-check-label a {
     color: var(--primary-color);
     text-decoration: none;
     transition: all 0.3s ease;
   }

   .form-check-label a:hover {
     text-decoration: underline;
     color: var(--gold-accent);
   }

   /* Floating shapes */
   .floating-shape {
     position: absolute;
     opacity: 0.05;
     z-index: 0;
     animation: float 8s ease-in-out infinite;
   }

   .shape-1 {
     top: 10%;
     left: 5%;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
     border-radius: 50%;
     animation-delay: 0s;
   }

   .shape-2 {
     bottom: 15%;
     right: 8%;
     width: 250px;
     height: 250px;
     background: radial-gradient(circle, var(--gold-accent) 0%, transparent 70%);
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     animation-delay: 2s;
   }

   .header {
     background-color: var(--bg-white);
     width: 100%;
     transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: relative;
     z-index: 999;
     transition: all 0.3s ease;
   }

   .nav-link.active {
     color: var(--primary-color) !important;
   }


   @keyframes slideDown {
     from {
       transform: translateY(-100%);
     }

     to {
       transform: translateY(0);
     }
   }

   .header.scrolled {
     position: fixed;
     top: 0;
     left: 0;
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     animation: slideDown 1s ease forwards;
   }

   .logo {
     display: flex;
         align-items: start;
    width: 80px;
    height: 80px;
   }
    
   .logo-text {
     color: var(--bg-white);
     font-weight: bold;
     margin-left: 5px;
     font-size: 18px;
   }

   .logo-icon {
     color: #1E64A5;
     font-size: 24px;
     font-weight: bold;
   }

   .nav-item {
     position: relative;
   }

   .nav-item .nav-link {
     color: var(--text-gray);
     font-weight: 600;
     text-transform: uppercase;
     padding: 0 15px;
     font-size: 15px;
     position: relative;
     transition: color 0.3s ease;
   }

   /* Animated underline effect */
   .nav-item .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 50%;
     width: 0;
     height: 3px;
     background-color: var(--primary-color);
     transition: all 0.3s ease;
     transform: translateX(-50%);
     opacity: 0;
     border-top: 0px !important
   }

   .nav-item .nav-link:hover::after {
     width: 70%;
     opacity: 1;
   }

   .nav-link:hover {
     color: var(--primary-color) !important;
   }

   .search-icon {
     color: var(--text-gray);
     font-size: 18px;
     margin-right: 15px;
   }

   .language-selector {
     color: var(--text-gray);
     font-size: 14px;
   }

   .language-selector span {
     cursor: pointer;
   }

   .language-selector .active {
     color: #1E64A5;
   }

   .small-text {
     font-size: 10px;
     color: #777;
     display: block;
     text-align: center;
   }

   .dropdown-menu {
     background-color: var(--bg-white);
     margin-top: 10px;
     min-width: 235px;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     display: block;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
   }

   .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
   }

   .dropdown-item {
     color: var(--text-gray) !important;
     padding: 10px 20px;
     font-size: 16px;
     font-weight: 400;
     transition: all 0.3s ease;
   }

   .dropdown-item:hover {
     background-color: var(--primary-color);
     color: var(--text-white) !important;
   }

   /* Mobile menu styles */
   .navbar-toggler {
     border: none;
     background-color: #1E64A5;
     padding: 5px 10px;
   }

   .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
   }

   /* Enhanced Mobile menu */
   .mobile-menu {
     position: fixed;
     top: 0;
     left: -300px;
     width: 300px;
     height: 100%;
     background-color: var(--bg-white);
     z-index: 9999;
     overflow-y: auto;
     transition: all 0.4s ease-in-out;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
   }

   .mobile-menu.active {
     left: 0;
   }

   .mobile-menu-header {
     padding: 0 20px;
     background-color: var(--bg-white);
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid #f1f1f1;
   }

   .mobile-logo-icon {
     color: #1E64A5;
     font-size: 20px;
     font-weight: bold;
   }

   .mobile-logo-text {
     color: var(--bg-white);
     font-weight: bold;
     margin-left: 5px;
     font-size: 16px;
   }

   .mobile-close {
     color: #1E64A5;
     font-size: 24px;
     cursor: pointer;
   }

   .mobile-menu-content {
     padding: 20px 0;
   }

   .mobile-nav-item {
     position: relative;
   }

   .mobile-nav-link {
     color: var(--text-gray);
     font-weight: bold;
     /* text-transform: uppercase; */
     border-bottom: 1px solid #f1f1f1;
     padding: 15px 20px;
     display: block;
     font-size: 14px;
     position: relative;
     transition: all 0.3s ease;
   }

   .mobile-nav-link:hover {
     text-decoration: none;
     color: var(--primary-color);
   }

   .mobile-dropdown-toggle {
     position: absolute;
     right: 20px;
     top: 15px;
     color: var(--text-gray);
     cursor: pointer;
     transition: all 0.3s ease;
   }

   .mobile-dropdown-toggle.active {
     transform: rotate(180deg);
   }

   .mobile-dropdown-menu {
     background-color: #f5f5f5;
     display: none;
     padding: 10px 0;
   }

   .mobile-dropdown-item {
     padding: 10px 30px;
     color: var(--text-gray);
     display: block;
     font-size: 13px;
     transition: all 0.3s ease;
   }

   .mobile-dropdown-item:hover {
     color: var(--primary-color);
     text-decoration: none;
   }

   .mobile-menu-footer {
     padding: 0px 20px;
   }

   .mobile-language {
     display: flex;
     justify-content: center;
     margin-bottom: 15px;
   }

   .mobile-language span {
     color: #ccc;
     padding: 0 10px;
     cursor: pointer;
   }

   .mobile-language span.active {
     color: var(--primary-color);
   }

   .mobile-search {
     position: relative;
     margin-top: 15px;
   }

   .mobile-search input {
     width: 100%;
     padding: 10px 15px;
     border: 1px solid var(--primary-color) !important;
     border: none;
     color: var(--text-gray);
     border-radius: 4px;
   }

   .mobile-search button {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     color: #1E64A5;
   }

   .overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);
     z-index: 9998;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
   }

   .search-result-item {
     display: flex;
     align-items: flex-start;
     padding: 12px 16px;
     background-color: var(--bg-light);
     border-bottom: 1px solid #ccc;
     text-decoration: none;
     transition: background 0.2s ease;
   }

   .search-result-item:hover {
     background-color: var(--hover-bg);
   }

   .search-result-thumb img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 12px;
     border: 1px solid var(--border-color);
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
     margin-right: 12px;
   }

   .search-result-content {
     flex-grow: 1;
   }

   .search-result-title {
     font-size: 1.1rem;
     font-weight: 500;
     margin: 0 0 6px;
     color: var(--text-gray);
   }

   .search-result-meta {
     font-size: 0.9rem;
     color: var(--text-gray);
     display: flex;
     align-items: center;
     gap: 6px;
   }

   .overlay.active {
     opacity: 1;
     visibility: visible;
   }

   /* Responsive adjustments */
   @media (max-width: 991.98px) {
     .desktop-menu {
       display: none;
     }


   }

   @media (min-width: 992px) {
     .mobile-menu-toggle {
       display: none;
     }
   }

   @keyframes float {
     0% {
       transform: translateY(0px) rotate(0deg);
     }

     50% {
       transform: translateY(-20px) rotate(5deg);
     }

     100% {
       transform: translateY(0px) rotate(0deg);
     }
   }

   /* Responsive */
   @media (max-width: 992px) {

     .contact-info,
     .contact-form {
       padding: 20px;
     }

     .swiper-main .swiper-slide {
       height: 300px !important;
     }
   }

   @media (max-width: 768px) {
     .section-title {
       font-size: 1rem;
     }

     .info-item {
       padding: 12px;
     }

     .text-description {
       width: 100% !important;
     }

     .info-icon {
       width: 40px;
       height: 40px;
       font-size: 16px;
       margin-right: 15px;
     }
   }

   /* Section CTA */
   .section-cta {
     text-align: center;
     margin-top: 50px;
   }

   .cta-button {
     display: inline-flex;
     align-items: center;
     background: linear-gradient(135deg, var(--primary-color), #2D8BD6);
     color: white;
     padding: 12px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px var(--primary-color);
     border: none;
     outline: none;
   }

   .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px var(--primary-color);
     color: white;
   }

   .cta-button i {
     margin-left: 10px;
     transition: transform 0.3s ease;
   }

   .cta-button:hover i {
     transform: translateX(5px);
   }

   .form-check-input {
     border: var(--bs-border-width) solid var(--bs-border-color);
   }

   /* Floating Elements */
   .floating-element {
     position: absolute;
     border-radius: 50%;
     filter: blur(60px);
     opacity: 0.15;
     z-index: -1;
   }

   .element-1 {
     width: 300px;
     height: 300px;
     background: var(--primary-color);
     top: 10%;
     right: 5%;
     animation: float 8s infinite ease-in-out;
   }

   .element-2 {
     width: 200px;
     height: 200px;
     background: var(--primary-light);
     bottom: 10%;
     left: 5%;
     animation: float 10s infinite ease-in-out reverse;
   }

   @keyframes float {

     0%,
     100% {
       transform: translate(0, 0);
     }

     50% {
       transform: translate(20px, 30px);
     }
   }

   /* Responsive */
   @media (max-width: 768px) {
     .projects-section ,.contact-section{
       padding-bottom:30px;
       padding-top: 0px;
     }
     
     .section-title {
       font-size: 1rem;
     }

     .section-subtitle {
       font-size: 1rem;
     }

     .video-container iframe {
       height: 400px;
     }
   }


   @media (max-width: 992px) {
     .stats-container {
       grid-template-columns: repeat(2, 1fr);
     }

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

     .projects-grid {
       grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     }

     .swiper-main img {
       object-fit: fill;
     }
   }

   @media (max-width: 576px) {
     .stats-container {
       grid-template-columns: 1fr;
     }

     .projects-grid {
       grid-template-columns: 1fr;
     }
   }

   @media (max-width: 790px) {
     .section-bg::after {
       height: 200px;
     }

     .journey-title {
       font-size: 2rem;
     }

     .journey-subtitle {
       font-size: 1rem;
     }

     .container-wrapper {
       display: block;
       height: auto;
       padding: 30px 0;
       
     }

     .map-box {
       position: relative;
       margin: auto;
       height: auto;
       right: 0;
     }

     .text-content {
       max-width: 100%;
       height: auto;
     }

     .text-gradient {
       font-size: 30px !important;
     }

     .stat-item:not(:last-child)::after {
       content: '';
       position: absolute;
       right: 0;
       height: 1px;
       left: 0px;
       width: 30%;
       top: 100%;
       bottom: 0 !important;
       margin: auto;
       background-color: #4d4b4b;
     }

   }

   @media (max-width: 1200px) {

     .map-box,
     .our-team-card {
       position: relative
     }

     .our-team-card {
       width: 100%;
     }

     .container-wrapper {
       height: auto;
     }

     .swiper-main .swiper-slide {
       height: 500px;
     }

     .our-team-card:hover~.card-info,
     .card-info:hover {
       display: block !important;
       opacity: 1;
       margin: 0px !important;
       animation: fadeIn 0.3s ease-in-out forwards;
     }

     .our-team-card:hover~.card-content,
     .card-content:hover {
       display: block !important;
       opacity: 1;
       margin: 0px !important;
       animation: fadeIn 0.3s ease-in-out forwards;
     }

     .card-info {
       top: 0;
       bottom: 0;
       right: 0;
       left: 0 !important;
       margin: 0px !important;
       opacity: 0;
       display: none;
       animation: fadeIn 0.3s ease-in-out forwards;
       overflow: scroll;
       width: 100%;
     }

     .card-content {
       display: none;
     }

     .card-info-1 {
       top: 0px !important;
       bottom: 0;
       right: 0;
       left: 0 !important;
       margin: auto 0px !important;
       animation: fadeIn 0.3s ease-in-out forwards;
       overflow: scroll;
       width: 100%;
       z-index: 1;
     }

   }

   @keyframes fadeIn {
     0% {
       opacity: 0;
     }

     100% {
       opacity: 1;
     }
   }

   /*------------------------- keyframes--------------------------------------*/
   @keyframes cursorAnimation {
     to {
       transform: scale(6.0);
       opacity: 0;
     }
   }

   @keyframes ez-shaking {
     from {
       transform: rotate(0deg);
     }

     50% {
       transform: rotate(25deg);
     }

     to {
       transform: rotate(0deg);
     }
   }

   @keyframes ez-moving {
     from {
       transform: translateX(0, 0);
     }

     50% {
       transform: translateX(50px);
     }

     to {
       transform: translateX(0, 0);
     }
   }

   @keyframes ez-scale {
     from {
       transform: scale(0.8, 0.8);
     }

     50% {
       transform: scale(1, 1);
     }

     to {
       transform: scale(0.8, 0.8);
     }
   }

   @keyframes rotation {
     from {
       transform: rotateY(0deg);
     }

     to {
       transform: rotateY(360deg);
     }
   }

   @keyframes spin {
     0% {
       --rotate: 0deg;
     }

     100% {
       --rotate: 360deg;
     }
   }

   @property --rotate {
     syntax: "<angle>";
     initial-value: 132deg;
     inherits: false;
   }

   @keyframes moveGradient {
     50% {
       background-position: 100% 50%;
     }
   }

   @keyframes bg {
     0% {
       background-position-y: 0;
     }

     100% {
       background-position-y: 10000px;
     }
   }

   @keyframes animate {
     0% {
       transform: translateX(100%);
     }

     100% {
       transform: translateX(-100%);
     }
   }

   @keyframes animate-two {
     0% {
       transform: translateX(0);
     }

     100% {
       transform: translateX(-200%);
     }
   }

   @keyframes animate2 {
     0% {
       transform: translateX(-100%);
     }

     100% {
       transform: translateX(100%);
     }
   }

   @keyframes animate2-two {
     0% {
       transform: translateX(-200%);
     }

     100% {
       transform: translateX(0%);
     }
   }

   /*=========================================================================================*/