

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --gradient: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --border-radius-primary: 28px;
    --border-radius-secondary: 18px;
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --section-bg: #f5f4f5;
    --mg-color-primary: #475dca;
    --mg-color-secondary: #34237a;
    --mg-dark-color-initial: #302f2f;
    --mg-control-radius: 1.5rem;
    --mg-input-radius: 1.5rem;
    --mg-control-shadow: 0 .4rem 1rem #0003;
    --mg-color-initial: var(--mg-color-dark);
    --mg-color-secondary: #333;
    --mg-color-tertiary: #666;
    --mg-color-quaternary: #999;
    --mg-color-quinary: #ccc;
    --mg-color-dark: #0d0d0d;
    --mg-color-light: #f2f2f2;
    --timeline-primary: #5e59df;
    --timeline-secondary: #9fcaf6;
}

body {
    background: #0a0a0a;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    backdrop-filter: blur(12px);
    background: var(--glass-bg);
    border-bottom: var(--border);
    z-index: 11111111;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}
@media screen and (min-width: 767px) {
    .navbar { xpadding-right: 18px; }
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    /*background: rgba(10, 10, 10, 0.95);*/
    background: rgb(253 253 253 / 95%);
}
.navbar.scrolled .mobile-nav-toggle .bar {
  background: #999;
}
.navbar.scrolled .nav-links a {
  color: #545454;
}
.navbar.scrolled .nav-links a:hover {
  color: #454545;
}
.draw2 {
  stroke-dasharray: 2338.5;
  stroke-dashoffset: 2338.5;
  animation: dash2 5s ease-out forwards;
  fill: none;
}

@keyframes dash2 {
  to { stroke-dashoffset: 0;}
}

.scrolled .draw2 {
   stroke: #ccc !important;
  fill: none;
}





.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    letter-spacing: -0.5px;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 20s linear infinite, fill 4s linear 2s infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  0% {
    fill: #ccc; /* Start with the first color */
  }
  50% {
    fill: #ddd; /* Transition to the second color */
  }
  100% {
    fill: #ccc; /* Loop back to the first color */
  }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
    animation: gradient 8s linear infinite;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle .bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
}

.mobile-nav-toggle .bar:nth-child(1) { top: 12px; }
.mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
.mobile-nav-toggle .bar:nth-child(3) { top: 26px; }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
        color: #fff !important;
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
        top: 14px;
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
        top: 24px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
    }

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

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .section-image-big {
        overflow: hidden;
        border-radius: 50vw;
        position: sticky;
        bottom: -11vw;
        top: unset;
        z-index: 1111111;
        right: -11vw;
        width: 50vw;
        max-width: 500px;
        max-height: 500px;
        aspect-ratio: 1/1;
        padding: 22px;
        background: var(--gradient);
        animation: gradient 8s linear infinite;
        background-size: 300%;
        aspect-ratio: 1/1 !important;
    }
    
    .section-image-big img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50vh;
        aspect-ratio: 1/1;
    }
    @media screen and (max-width: 767px) {
        .section-image-big { position: absolute; right: initial !Important; 
            bottom: -17vw;
            width: 34vw;
        }
        .section-image-big img {}
    }
  
    @media screen and (max-width: 600px) {
        .section-image-big {
            position: absolute;
        right: initial ! Important;
        bottom: -21vw;
        max-width: 50vh;
        max-height: 50vw;
        display: flex;
        padding: 15px;
        width: 50vw;
        height: 50vw;
        }
    }  
section {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

section:nth-child(even) {
    background: var(--section-bg);
}

.section-content {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(6vw, 7vw, 8vw); 
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    line-height: 1.1;
    padding-bottom: 10px;
    letter-spacing: -2px;
    text-wrap: balance;
}
@media screen and (max-width: 766px) {
    .section-title {
        font-size: 10vw;
        line-height: 1.2;
    }
}

.section-title+.section-title2 {
    position: relative;
    top: -10px;
    color: #555 !important;
    font-size: clamp(5vw, 6vw, 7vw);
    margin-bottom: 50px;
}
.section-description {
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    opacity: 0.9;
  color: white;
}


.mySlider {
    display: flex;
    height: 27rem;
    margin: 0 auto;
    max-width: 100vw;
    width: 100%;
  }
  .radio {
    display: none;
  }
  .content {
    background: transparent;
    background-image: url("../images/testimonials/12.jpg");
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3rem;
    cursor: pointer;
    flex: 1;
    margin-right: 0.8rem;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.05, 0.60, 0.39, 0.94);
    color: #fff;
    filter: grayscale(1);
  }
  .content::before {
    background: inherit;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
  .content > * {
    position: relative;
    z-index: 1;
  }
  .content:hover {
    box-shadow: 0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.3);
  }
  .content:nth-of-type(2) {
    background: transparent;
    background-image: url("../images/testimonials/11.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .content:nth-of-type(3) {
    background: transparent;
    background-image: url("../images/testimonials/10.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .card-title {
    bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    left: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    position: absolute;
    transform: translateX(2rem);
    transition: 290ms cubic-bezier(0.05, 0.62, 0.40, 0.95) 300ms;
    transition-property: opacity, transform;
    user-select: none;
    white-space: nowrap;
  }
  .title-card{
    top: 2rem;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    padding: 30px;
    height: 100%;
    padding-bottom: 100px;
    line-height: 1.1;
    justify-content: flex-end;
    opacity: 0;
    position: absolute;
    transform: translateX(2rem);
    transition: 290ms cubic-bezier(0.05, 0.60, 0.42, 0.94) 300ms;
    transition-property: opacity, transform;
    user-select: none;
  }
  .subtitle {
    font-size: 1rem;
  }
  .subsubtitle{
    font-size: 0.85rem;
    width: 30px;
    height: 30px;
    border-radius: 50vh;
    display: flex;
  }
  .mySlider.mySlider-1 .subsubtitle {
    background: rgba(255, 255, 255, .4);
    justify-content: center;
    align-items: center;
  }
  .paddT{
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .radio:checked + .content {
    border-radius: 2rem;
    box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
    flex: 9;
    filter: unset;
  }
  .radio:checked + .content > .card-title {
    opacity: 1;
    transform: translateX(0);
  }
  .radio:checked + .content > .title-card{
    opacity: 1;
    transform: translateX(0);
  }
  .marg-bott{
    margin-bottom: 1.5rem;
  }


  .waves {
    width: 100%;
    height: 20vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
    bottom: 0;
    left: 0;
}


.waves {
    width: 100%;
    height: 20vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
    bottom: 0;
    left: 0
}

.animated-waves>use {
    fill: var(--mg-color-initial);
    animation: 25s cubic-bezier(.55,.5,.45,.5) infinite move-forever
}

.animated-waves>use:first-child {
    opacity: .9;
    animation-duration: 7s;
    animation-delay: -2s
}

.animated-waves>use:nth-child(2) {
    opacity: .7;
    animation-duration: 10s;
    animation-delay: -3s
}

.animated-waves>use:nth-child(3) {
    opacity: .3;
    animation-duration: 13s;
    animation-delay: -4s
}

.animated-waves>use:nth-child(4) {
    opacity: .2;
    animation-duration: 20s;
    animation-delay: -5s
}

@keyframes move-forever {
    0% {
        transform: translate(-90px)
    }

    to {
        transform: translate(85px)
    }
}


.grid-gallery{
    --_gap: .5rem;
    --_offset: 10%;
    --_offset-1: calc(var(--_offset) * 1);
    --_offset-2: calc(var(--_offset) * 2);
    --_offset-3: calc(var(--_offset) * 3);
    --_offset-7: calc(var(--_offset) * 7);
    --_offset-8: calc(var(--_offset) * 8);
    --_offset-9: calc(var(--_offset) * 9);
    
    width: calc(100% - 4rem);
    max-width: 800px;
    margin: 2rem auto;
    color: white;
    font-family: system-ui;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 var(--_gap);
  }
  .grid-gallery > div{
    aspect-ratio: 1;
    transition: 500ms ease-in-out;
    clip-path: polygon(var(--_clip-path));
  }
  .grid-gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .grid-gallery > div:nth-child(n+4){
   margin-top: calc(var(--_offset-3) * -1 + var(--_gap));
  }
  .grid-gallery > div:nth-child(1){
    --_clip-path: 0 0, 100% 0, 100% var(--_offset-9), 0 100%;
  }
  .grid-gallery > div:nth-child(2){
     --_clip-path:0 0, 100% 0, 100% var(--_offset-8), 0 var(--_offset-9);
  }
  .grid-gallery > div:nth-child(3){
     --_clip-path:0 0, 100% 0, 100% var(--_offset-7), 0 var(--_offset-8);
  }
  .grid-gallery > div:nth-child(4){
     --_clip-path:0 var(--_offset-3), 100% var(--_offset-2), 100% var(--_offset-8), 0 var(--_offset-7);
  }
  .grid-gallery > div:nth-child(5){
    --_clip-path:0 var(--_offset-2), 100% var(--_offset-1), 100% var(--_offset-9), 0 var(--_offset-8);
  }
  .grid-gallery > div:nth-child(6){
     --_clip-path:0 var(--_offset-1), 100% 0%, 100% 100%, 0 var(--_offset-9);
  }
  .grid-gallery > div:nth-child(7){
     --_clip-path:0 0%, 100% var(--_offset-1), 100% 100%, 0 100%;
  }
  .grid-gallery > div:nth-child(8){
     --_clip-path:0 var(--_offset-1), 100% var(--_offset-2), 100% 100%, 0 100%;
  }
  .grid-gallery > div:nth-child(9){
     --_clip-path:0 var(--_offset-2), 100% var(--_offset-3), 100% 100%, 0 100%;
  }
  
  .grid-gallery:has(:hover) > div:not(:hover){
    filter: grayscale(1) blur(3px);
    opacity: .5;
  }
  



.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: white;
    border-radius: var(--border-radius-secondary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}
.card h1 {
    font-size: clamp(3rem, 4.5vw, 4rem);
}
.card h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
    text-wrap: balance;
}

.card p {
    color: #666;
    line-height: 1.5;
}

  


.slider {
    position: relative;
    width: 80%;
    max-width: 1000px;
    overflow: hidden;
}

.card-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


.card:hover {
    transform: scale(1.05);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.5;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}




#timeline .timeline-item:after, header:after, #timeline .timeline-item:before, header:before {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
  
  #timeline {
    line-height: 1.5em;
    font-size: 14px;
    width: 90%;
    margin: 30px auto;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  #timeline,
  #timeline *,
  #timeline *:before,
  #timeline *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  #timeline:before {
    content: "";
    width: 3px;
    height: calc(100% + 110px);
    background: var(--timeline-primary);
    left: 50%;
    top: 0;
    position: absolute;
  }
  #timeline:after {
    content: "";
    clear: both;
    display: table;
    width: 100%;
  }
  #timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
  }
  #timeline .timeline-item .timeline-icon {
    background: var(--timeline-primary);
    width: 80px;
    height: 80px;
    position: relative;
    top: 0;
    display: flex;
    left: 50%;
    overflow: hidden;
    margin-left: -38px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  #timeline .timeline-item .timeline-icon img {
    position: relative;
    transform: translate(50%, 50%);
  }
  #timeline .timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: var(--border-radius-secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .timeline-content p {
    margin-top: 20px; 
    margin-bottom: 20px;
  }
  #timeline .timeline-item .timeline-content h2 {
    padding: 15px;
    background: var(--timeline-primary);
    color: #fff;
    margin: -20px -20px 0 -20px;
    font-weight: 500;
    border-radius: var(--border-radius-secondary) var(--border-radius-secondary) 0 0;
  }
  #timeline .timeline-item .timeline-content:before {
    content: "";
    position: absolute;
    top: 20px;
    right: -5px;
    width: 14px;
    height: 14px;
    background-color: var(--timeline-primary);
    display: block;
    border-radius: 3px;
    transform: rotate(45deg);
  }
  #timeline .timeline-item .timeline-content.timeline-right {
    float: right;
  }
  #timeline .timeline-item .timeline-content.timeline-right:before {
    left: -5px;
    right: inherit;
  }
  
  @media screen and (max-width: 768px) {
    #timeline {
      margin: 30px;
      padding: 0;
    }
    #timeline:before {
      left: 0;
    }
    #timeline .timeline-item .timeline-content {
      width: 90%;
      float: right;
    }
    #timeline .timeline-item .timeline-content:before, #timeline .timeline-item .timeline-content.right:before {
      left: -5px;
      right: inherit;
    }
    #timeline .timeline-item .timeline-icon {
      left: 0;
    }
  }
  


  .language-selector {
    margin-top: 20px;
    font-size: 1.2em;
    display: flex;
    gap: 10px;
}
@media screen and (min-width: 767px) {
    .language-selector {
        flex-direction: row;
        gap: 6px;
        justify-content: flex-end;
        margin-top: 0;
    }
}

.language-selector img {
    width: 36px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border 0.3s ease-in-out;
    padding: 2px;
}

.language-selector img:hover {
    border-color: #000;
}


/* parallax ******************************************************/

         /*
         .slideInUp .slideInRight .slideInLeft
         .zoomInUp  .zoomIn 
         */
         .parallax {
            animation-name: zoomIn;
            animation-duration: 1ms; /* Firefox requires this to apply the animation */
            animation-direction: alternate;
            xanimation-timeline: scroll(block nearest);
            animation-timeline: view();
            animation-range-start: cover; 
            animation-range-end: 20vh; 
            }
            .parallax.left {
            animation-name: slideInLeft;    
            }
            .parallax.right {
            animation-name: slideInRight;
            }
            .parallax.bounce {
            animation-name: slideInLeft;       
            animation-range-end: 20vh; 
            }
            .animated {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both
            }
            .animated.infinite {
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite
            }
            @-webkit-keyframes slideInLeft {
            0% {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            @keyframes slideInLeft {
            0% {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            .slideInLeft {
            -webkit-animation-name: slideInLeft;
            animation-name: slideInLeft
            }
            @-webkit-keyframes slideInRight {
            0% {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            @keyframes slideInRight {
            0% {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            .slideInRight {
            -webkit-animation-name: slideInRight;
            animation-name: slideInRight
            }
            @-webkit-keyframes slideInUp {
            0% {
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            @keyframes slideInUp {
            0% {
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            .slideInUp {
            -webkit-animation-name: slideInUp;
            animation-name: slideInUp
            }
            @-webkit-keyframes slideInLeft {
            0% {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            @keyframes slideInLeft {
            0% {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            .slideInLeft {
            -webkit-animation-name: slideInLeft;
            animation-name: slideInLeft
            }
            @-webkit-keyframes slideInRight {
            0% {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            @keyframes slideInRight {
            0% {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            .slideInRight {
            -webkit-animation-name: slideInRight;
            animation-name: slideInRight
            }
            @-webkit-keyframes slideInUp {
            0% {
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            @keyframes slideInUp {
            0% {
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
            visibility: visible
            }
            100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0)
            }
            }
            .slideInUp {
            -webkit-animation-name: slideInUp;
            animation-name: slideInUp
            }
            @-webkit-keyframes zoomInUp {
            0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
            }
            60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
            }
            }
            @keyframes zoomInUp {
            0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
            }
            60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
            }
            }
            .zoomInUp {
            -webkit-animation-name: zoomInUp;
            animation-name: zoomInUp
            }
            @-webkit-keyframes zoomIn {
            0% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
            }
            50% {
            opacity: 1
            }
            }
            @keyframes zoomIn {
            0% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
            }
            50% {
            opacity: 1
            }
            }
            .zoomIn {
            -webkit-animation-name: zoomIn;
            animation-name: zoomIn
            }




            .container {
                position: relative;
                width: 100%;
                padding:0;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
              }
              @media screen and (min-width: 767px) {
                .container {
                    padding: 2rem;
                }
              }
              .form {
                width: 100%;
                background-color: #fff;
                border-radius: var(--border-radius-secondary);
                box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                overflow: hidden;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
              }
              
              .contact-form {
                background-color: var(--timeline-primary);
                position: relative;
              }
              @media screen and (max-width: 767px) {
                .contact-form {
                    border-top-left-radius: var(--border-radius-secondary);
                    border-top-right-radius: var(--border-radius-secondary);
                }
              }
              .circle {
                border-radius: 50%;
                background: linear-gradient(135deg, transparent 20%, var(--timeline-primary));
                position: absolute;
              }
              
              .circle.one {
                width: 130px;
                height: 130px;
                top: 130px;
                right: -40px;
              }
              
              .circle.two {
                width: 80px;
                height: 80px;
                top: 10px;
                right: 30px;
              }
              
              .contact-form:before {
                content: "";
                position: absolute;
                width: 26px;
                height: 26px;
                background-color: var(--timeline-primary);
                transform: rotate(45deg);
                top: 50px;
                left: -13px;
              }
              
              form {
                padding: 2.3rem 2.2rem;
                z-index: 10;
                overflow: hidden;
                position: relative;
              }
              
              .title {
                color: #fff;
                font-weight: 500;
                font-size: 1.5rem;
                line-height: 1;
                margin-bottom: 0.7rem;
              }
              
              .input-container {
                position: relative;
                margin-top: 1rem;
              }
              
              .input {
                width: 100%;
                outline: none;
                border: 2px solid #fafafa;
                background: none;
                padding: 0.6rem 1.2rem;
                color: #fff;
                font-weight: 500;
                font-size: 0.95rem;
                letter-spacing: 0.5px;
                border-radius: 5px;
                transition: 0.3s;
                height: 48px;
              }
              
              textarea.input {
                padding: 0.8rem 1.2rem;
                min-height: 150px;
                border-radius: 5px;
                resize: none;
                overflow-y: auto;
              }
              
              .input-container label {
                position: absolute;
                top: 50%;
                left: 15px;
                transform: translateY(-50%);
                padding: 0 0.4rem;
                color: #fafafa;
                font-size: 0.9rem;
                font-weight: 400;
                pointer-events: none;
                z-index: 1000;
                transition: 0.5s;
              }
              
              .input-container.textarea label {
                top: 1rem;
                transform: translateY(0);
              }
              
              .btn {
                padding: 0.6rem 1.3rem;
                background-color: #fff;
                border: 2px solid #fafafa;
                font-size: 0.95rem;
                color: var(--timeline-primary);
                line-height: 1;
                border-radius: 5px;
                outline: none;
                cursor: pointer;
                transition: 0.3s;
                margin: 0;
                width: 100%;
                height: 48px;
                display: flex; align-items: center; justify-content: center;
              }
              
              .btn:hover {
                background-color: transparent;
                color: #fff;
              }
              #sendMessage {
                position: relative;
                overflow:hidden;
            }
            #sendMessage:hover {
                background: rgb(51 56 207);
                box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
                -webkit-transition: all 0.2s ease-out;
                -moz-transition: all 0.2s ease-out;
                transition: all 0.2s ease-out;
                border-color: rgb(61,106,255);
            }
            
            #sendMessage::before {
                content: '';
                display: block;
                width: 0px;
                height: 86%;
                position: absolute;
                top: 7%;
                left: 0%;
                opacity: 0;
                background: #fff;
                box-shadow: 0 0 50px 30px #fff;
                -webkit-transform: skewX(-20deg);
                -moz-transform: skewX(-20deg);
                -ms-transform: skewX(-20deg);
                -o-transform: skewX(-20deg);
                transform: skewX(-20deg);
            }
            
            #sendMessage:hover::before {
                animation: sh02 0.5s 0s linear;
            }
            
            @keyframes sh02 {
                from {
                    opacity: 0;
                    left: 0%;
                }
            
                50% {
                    opacity: 1;
                }
            
                to {
                    opacity: 0;
                    left: 100%;
                }
            }
            
              .input-container span {
                position: absolute;
                top: 0;
                left: 25px;
                transform: translateY(-50%);
                font-size: 0.8rem;
                padding: 0 0.4rem;
                color: transparent;
                pointer-events: none;
                z-index: 500;
              }
              
              .input-container span:before,
              .input-container span:after {
                content: "";
                position: absolute;
                width: 10%;
                opacity: 0;
                transition: 0.3s;
                height: 5px;
                background-color: var(--timeline-primary);
                top: 50%;
                transform: translateY(-50%);
              }
              
              .input-container span:before {
                left: 50%;
              }
              
              .input-container span:after {
                right: 50%;
              }
              
              .input-container.focus label {
                top: 0;
                transform: translateY(-50%);
                left: 25px;
                font-size: 0.8rem;
              }
              
              .input-container.focus span:before,
              .input-container.focus span:after {
                width: 50%;
                opacity: 1;
              }
              
              .contact-info {
                padding: 2.3rem 2.2rem;
                position: relative;
              }
              
              .contact-info .title {
                color: var(--timeline-primary);
              }
              
              .text {
                color: #333;
                margin: 1.5rem 0 2rem 0;
                text-wrap: balance;
              }
              
              .information {
                display: flex;
                color: #555;
                margin: 0.7rem 0;
                align-items: center;
                justify-content: center;
                font-size: 0.95rem;
              }
              
              .information i {
                color: var(--timeline-primary);
              }
              
              .icon {
                width: 28px;
                margin-right: 0.7rem;
              }
              
              .social-media {
                padding: 2rem 0 0 0;
              }
              
              .social-media p {
                color: #333;
              }
              
              .social-icons {
                display: flex;
                margin-top: 0.5rem;
              }
              
              .social-icons a {
                width: 35px;
                height: 35px;
                border-radius: 5px;
                background: linear-gradient(45deg, var(--timeline-secondary), var(--timeline-primary));
                color: #fff;
                text-align: center;
                line-height: 35px;
                margin-right: 0.5rem;
                transition: 0.3s;
              }
              
              .social-icons a:hover {
                transform: scale(1.05);
              }
              
              .contact-info:before {
                content: "";
                position: absolute;
                width: 110px;
                height: 100px;
                border: 22px solid var(--timeline-primary);
                border-radius: 50%;
                bottom: -77px;
                right: 50px;
                opacity: 0.3;
              }
              
              .big-circle {
                position: absolute;
                width: 500px;
                height: 500px;
                border-radius: 50%;
                background: linear-gradient(to bottom, var(--timeline-secondary), var(--timeline-primary));
                bottom: 50%;
                right: 50%;
                transform: translate(-40%, 38%);
              }
              
              .big-circle:after {
                content: "";
                position: absolute;
                width: 360px;
                height: 360px;
                background-color: #fafafa;
                border-radius: 50%;
                top: calc(50% - 180px);
                left: calc(50% - 180px);
              }
              
              .square {
                position: absolute;
                height: 400px;
                top: 50%;
                left: 50%;
                transform: translate(181%, 11%);
                opacity: 0.2;
              }
              
              @media (max-width: 850px) {
                .form {
                  grid-template-columns: 1fr;
                }
              
                .contact-info:before {
                  bottom: initial;
                  top: -75px;
                  right: 65px;
                  transform: scale(0.95);
                }
              
                .contact-form:before {
                  top: -13px;
                  left: initial;
                  right: 70px;
                }
              
                .square {
                  transform: translate(140%, 43%);
                  height: 350px;
                }
              
                .big-circle {
                  bottom: 75%;
                  transform: scale(0.9) translate(-40%, 30%);
                  right: 50%;
                }
              
                .text {
                  margin: 1rem 0 1.5rem 0;
                }
              
                .social-media {
                  padding: 1.5rem 0 0 0;
                }
              }
              
              @media (max-width: 766px) {
       
              
                .contact-info:before {
                  display: none;
                }
              
                .square,
                .big-circle {
                  display: none;
                }
              
                form,
                .contact-info {
                  padding: 1.7rem 1.6rem;
                }
              
                .text,
                .information,
                .social-media p {
                  font-size: 0.8rem;
                }
              
                .title {
                  font-size: 1.15rem;
                }
              
                .social-icons a {
                  width: 30px;
                  height: 30px;
                  line-height: 30px;
                }
              
                .icon {
                  width: 23px;
                }
              
                .input {
                  padding: 0.45rem 1.2rem;
                }
              
                .btn {
                  padding: 0.45rem 1.2rem;
                }
              }
              

              /* Custom CSS class for the section */
.custom-container {
    position: relative;
    background-color: #021027;
  }
  
  /* CSS for masking effect on the section background image */
  .custom-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#000000 0%, #000000 30%, #333 80%, #000000);
    z-index: 1;
  }
  
  /* CSS for animated circles */
  .custom-circle-container {
    position: absolute;
    transform: translateY(-10vh);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
    mix-blend-mode: screen;
    background-image: radial-gradient(
      hsl(180, 100%, 80%),
      hsl(180, 100%, 80%) 10%,
      hsla(180, 100%, 80%, 0) 56%
    );
    animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
  }
  
  @keyframes fade-frames {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes scale-frames {
    0% {
      transform: scale3d(0.4, 0.4, 1);
    }
    50% {
      transform: scale3d(2.2, 2.2, 1);
    }
    100% {
      transform: scale3d(0.4, 0.4, 1);
    }
  }
  
  /* CSS for message text */
  .scustom-text-module {
    position: absolute;
    right: 20px;
    bottom: 10px;
    color: white;
    font-family: "Josefin Slab", serif;
    line-height: 27px;
    font-size: 18px;
    text-align: right;
    pointer-events: none;
    animation: message-frames 1.5s ease 5s forwards;
    opacity: 0;
    z-index: 2;
  }
  
  @keyframes message-frames {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .success-animation {/* margin: 150px auto 30px; */}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #fff;
    fill: var(--timeline-primary);
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    stroke: #fff;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

.mail-status-message {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 2rem;
}

.mail-status {
    border: 2px solid #fff;
    height: 257px;
    display: flex;
    flex-direction: column;
    width: 90%;
    left: 5%;
    position: relative;
    top: 5%;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    display: none;
    margin-top: 30px;
    margin-bottom: 80px;
}

#userName-info,
#userEmail-info,
#userTel-info,
#userMessage-info,
#userCaptcha-info {
    display: none;
 }



