* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    width: 100%;
    height: 100%;
    scrollbar-width: none;
}

body {
    overflow-x: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

body::-webkit-scrollbar {
  display: none;
}
/* scrollbar track */
.scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 100vh;
  z-index: 9999;
}

/* scrollbar thumb */
.scroll-thumb {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  z-index: 100000;
  border-radius: 10px;
    background: linear-gradient(to top, 
    var(--orange-color) 0%,
    var(--orange-color) 23%,
    var(--yellow-color) 27%,
    var(--yellow-color) 48%,
    var(--orange-color) 52%,
    var(--orange-color) 73%,
    var(--yellow-color) 77%,
    var(--yellow-color) 100%);
     background-size: 100% 200%;
  animation: gradientMovebar 2s linear infinite;
}

@keyframes gradientMovebar {
  0% {
    background-position: 100% 200%;
  }
  50% {
    background-position: 100% 100%;
  }
  99.8% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 100% 200%;
  }      
}

html {
    scroll-behavior: smooth;
    background: var(--skin-color);
}

@font-face {
    font-family: Aquire-BW0ox;
    src: url(assets/fonts/Fontspring-DEMO-integralcf-regular.otf);
}

@font-face {
    font-family: AquireBold-8Ma60;
    src: url(assets/fonts/Fontspring-DEMO-integralcf-bold.otf);
}

@font-face {
    font-family: AquireLight-YzE0o;
    src: url(assets/fonts/Fontspring-DEMO-integralcf-regular.otf);
}

@font-face {
    font-family: MomcakePro-Bold;
    src: url(assets/fonts/MomcakePro-Bold.ttf);
}

@font-face {
    font-family: MomcakePro-Medium;
    src: url(assets/fonts/MomcakePro-Medium.ttf);
}

@font-face {
    font-family: MomcakePro-Regular;
    src: url(assets/fonts/MomcakePro-Regular.ttf);
}

@font-face {
    font-family: MomcakePro-Thin;
    src: url(assets/fonts/MomcakePro-Thin.ttf);
}

a {
    text-decoration: none;
}

button,
input {
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style-type: none;
}

:root {
  --yellow-color: #fea809;
  --orange-color: #ea6b06;
  --skin-color: #fff5e9;
  --darkblue-color: #0e041d; 
  --white-color: #FFFFFF;
  --black-color: #000000;
  --aquire-medium: Aquire-BW0ox;
  --aquire-bold: AquireBold-8Ma60;
  --aquire-light: AquireLight-YzE0o;
  --momcakepro-bold: MomcakePro-Bold;
  --momcakepro-medium: MomcakePro-Medium;
  --momcakepro-regular: MomcakePro-Regular;
  --momcakepro-thin: MomcakePro-Thin;
}

section,
.container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

section {
    padding: 0 40px;
}

.hero-section {
    max-width: 1500px;
    width: 100%;
}

.container {
    max-width: 1100px;
    width: 100%;
}

.sec-heading {
    width: 100%;
    text-align: center;
    font-family: var(--aquire-bold);
    font-size: 40px;
    margin-bottom: 15px;
}

.sec-para {
    font-size: 25px;
    color: var(--darkblue-color);
    font-family: var(--momcakepro-regular);
    width: 100%;
    text-align: center;
    line-height: 1.4;
    margin: 10px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay] {
  transition-delay: var(--delay);
}

header {
    max-width: 1190px;
    width: 100%;
    position: fixed;
    top: 20px;  
    z-index: 1500;
    transition: 0.8s ease-in-out;
    padding: 0 20px;
}

header.active {
    transform: translateY(-90px);
    transition: 0.8s ease-in-out;
    opacity: 0;
}

.hero-section {
    background: url(assets/images/hero-bg.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 50px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.navbar {
    width: 100%;
    background: var(--darkblue-color);
    padding: 2px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

header.scrolled .navbar {
    background: #000000b9;
    /* background: #fea809b9; */
}

.nav-left,
.nav-right {
    width: fit-content;
    display: flex;
    align-items: center;
}

.nav-right {
    gap: 30px;
}

.header-logo {
    width: 50px;
}

.nav-list {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list li {
    height: 100%;
    padding: 10px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.nav-list li::before {
    opacity: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, 
    var(--orange-color) 0%,
    var(--orange-color) 24%,
    var(--yellow-color) 26%,
    var(--yellow-color) 49%,
    var(--orange-color) 51%,
    var(--orange-color) 74%,
    var(--yellow-color) 76%,
    var(--yellow-color) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.3s ease-in-out;
     background-size: 200% 100%;
  animation: gradientMove 1.5s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 200% 100%;
  }
  50% {
    background-position: 100% 100%;
  }
  99.8% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 200% 100%;
  }      
}

.nav-list li.active::before,
.nav-list li:hover::before {
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.nav-list li a {
    color: var(--skin-color);
    font-size: 24px;
    font-family: var(--momcakepro-medium);
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
}

.nav-list li:hover a,
.nav-list li.active a {
    transition: 0.3s ease-in-out;
}

.language-change {
    width: fit-content;
    position: relative;
}

.language-change img {
    width: 40px;
}

.language-change button {
    display: block;
}

.language-change .french {
    display: none;
}

.language-change.active .us-eng {
    display: none;
}

.language-change.active .french {
    display: block;
}

.toggle-btn,
.responsive-menu {
    display: none;
}

.hero-content {
    width: 100%;
    height: fit-content;
    padding: 20px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-left,
.hero-right {
    width: 50%;
    position: relative;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 60px;
}

.hero-img {
    height: 550px;
}

.hero-content h1 {
    max-width: 550px;
    width: 100%;
    font-size: 50px;
    font-family: var(--aquire-medium);
    text-transform: uppercase;
    color: var(--darkblue-color);
    margin-bottom: 15px;
    line-height: 0.9;
    font-weight: 500;
    line-height: 0.8;
}

.hero-content h1 span {
    font-family: var(--aquire-bold);
    font-size: 120px;
}

.hero-content p {
    max-width: 470px;
    width: 100%;
    text-transform: uppercase;
    font-family: var(--momcakepro-medium);
    font-size: 37px;
    color: var(--darkblue-color);
    margin-bottom: 30px;
    line-height: 1.1;
    margin-top: 20px;
}

.hero-btns {
    margin-top: 60px;
    width: fit-content;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fill-btn {
    min-width: 220px;
    width: fit-content;
    padding: 12px 25px;
    color: var(--skin-color);
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    background: linear-gradient(to right, var(--orange-color), var(--yellow-color));
    font-size: 26px;
    transition: 0.6s ease-in-out;
}

.fill-btn:hover {
    background: linear-gradient(to right, var(--orange-color), var(--orange-color));
    transition: 0.6s ease-in-out;
}

.stroke-btn {
    min-width: 220px;
    width: fit-content;
    padding: 11px 25px;
    color: var(--darkblue-color);
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    font-size: 26px;
    border: 3px solid var(--darkblue-color);
    transition: 0.3s background ease-in-out;
}

.stroke-btn:hover {
    background: var(--darkblue-color);
    color: var(--skin-color);
}

/* portfolio section css start here */

.portfolio-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.portfolio-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 22px;
}

.portfolio-box {
    width: 340px;
    height: fit-content;
    padding: 23px 20px;
    background: var(--darkblue-color);
}

.portfolio-box h3 {
    font-size: 30px;
    font-family: var(--momcakepro-regular);
    line-height: 1.15;
    color: var(--skin-color);
}

.portfolio-box p {
    color: var(--skin-color);
    font-family: var(--momcakepro-regular);
    margin-bottom: 16px;
    font-size: 21px;
}

.portfolio-progress {
    width: 100%;
    height: 8px;
    background: var(--skin-color);
    margin-bottom: 20px;
}

.p-p-bar {
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, var(--orange-color), var(--yellow-color));
}

.portfolio-img-box {
    width: 100%;
    aspect-ratio: 1/0.6;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio-box img {
    width: 100%;
}

/* partners section css start here */

.partners-section {
    background: var(--darkblue-color);
    padding: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.partners-section .container {
    max-width: 100%;
    position: relative;
}

.partner-shade {
    width: 3%;
    height: 100%;
    background: linear-gradient(to left, #00000000, #000000);
    position: absolute;
    top: 0;
    z-index: 100;
}

.partner-shade.left-shadow {
    left: 0;
}

.partner-shade.right-shadow {
    right: 0;
    background: linear-gradient(to right, #00000000, #000000);
}

.partners-section .sec-heading {
    color: var(--skin-color);
}

.partners-wrapper {
  overflow: hidden;
  width: 100%;
}

.partners-content {
    margin-top: 30px;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    animation: scrollLeftToRight 25s linear infinite;    
}

.partners-content-second {
    animation: scrollRightToLeft 25s linear infinite;
}

@keyframes scrollLeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scrollRightToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partners-content img {
    width: 100px;
    border-radius: 12px;
    object-fit: contain;
}

/* process section css start here */

.process-section {
    width: 100%;
    height: fit-content;
    background: var(--skin-color);
    padding-top: 4rem;
}

.process-content {
    width: 100%;
    height: fit-content;
    margin-top: 30px;
}

.process-box {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.process-box:first-child {
    padding: 7rem 0 4rem 0;
}

.last-process-box {
    padding: 5rem 0;
}

.process-left,
.process-right {
   width: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.p-main-img {
    width: 80%;
}

.process-txt {
    width: 80%;
}

.process-txt h2 {
    width: 100%;
    font-family: var(--momcakepro-regular);
    margin-bottom: 15px;
    font-size: 50px;
    color: var(--darkblue-color);
    text-transform: capitalize;
    letter-spacing: 0.6px;
}

.process-left .process-txt h2,
.process-left .process-txt p {
    text-align: right;
}

.process-right .process-txt h2,
.process-right .process-txt p {
    text-align: left;
}

.process-txt p {
    width: 100%;
    color: var(--darkblue-color);
    font-size: 25px;
    line-height: 1.3;
    text-align: justify;
    font-family: var(--momcakepro-regular);
}

.p-num-absolute {
    position: absolute;
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.p-num-box {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--darkblue-color);
    color: var(--skin-color);
    font-size: 45px;
    font-family: var(--momcakepro-bold);
    z-index: 10;
}

.p-num-line {
    width: 6px;
    height: 100%;
    background: var(--darkblue-color);
    position: absolute;
}

/* form-section css start here */

.form-section {
    background: var(--darkblue-color);
    padding-top: 4rem;
    padding-bottom: 4rem;
    z-index: 100;
}

.form-section .sec-heading {
    color: var(--skin-color);
}

.contact-us-box {
    width: 100%;
    border: 3px solid var(--white-color);
    padding: 40px 30px;
    margin-top: 2rem;
}

.contact-box,
.con-pay-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.contact-box {
    margin-bottom: 5rem;
}

.contact-us-box p {
    max-width: 800px;
    width: 100%;
    color: var(--white-color);
    font-family: var(--momcakepro-regular);
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-us-box .stroke-btn {
    white-space: nowrap;
    border-color: var(--skin-color);
    color: var(--skin-color);
}

.contact-us-box .stroke-btn:hover {
    background: var(--skin-color);
    color: var(--darkblue-color);
}

.form-section form {
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
    padding: 25px 30px;
    border: 4px solid var(--skin-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.form-section form input,
.form-section form textarea {
    background: var(--skin-color);
    color: var(--darkblue-color);
    font-size: 20px;
    font-family: var(--momcakepro-thin);
    padding: 16px 20px;
    line-height: 1.2;
}

.form-section form input {
    width: calc(50% - 9px);
}

.form-section form input.name-input,
.form-section form textarea {
    width: 100%;
}

.form-section form input[type="submit"] {
    width: 100%;
    padding: 13px 20px;
    color: var(--skin-color);
    background: var(--orange-color);
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    font-size: 26px;
}

.payment-detail {
    max-width: 1200px;    
    width: 100%;
    margin-top: 4rem;
    background: linear-gradient(to right, var(--yellow-color) 0%,var(--orange-color) 10%,var(--orange-color) 90%,var(--yellow-color) 100%);
    /* background: var(--orange-color); */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
}

.pay-content {
    max-width: 800px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.payment-d-txt h3 {
    color: var(--skin-color);
    font-size: 26px;
    font-family: var(--momcakepro-regular);
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.payment-d-txt p {
    color: var(--skin-color);
    font-family: var(--momcakepro-regular);
    font-size: 25px;
    line-height: 1.2;
}

.pay-content .stroke-btn {
    white-space: nowrap;
    border-color: var(--skin-color);
    color: var(--skin-color);
}

.pay-content .stroke-btn:hover {
    background: var(--skin-color);
    color: var(--darkblue-color);
}

/* faq section css start here */

.faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.faq-section .sec-heading {
    font-size: 60px;
}

.faq-content {
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
}

.faq-box {
    width: 100%;
    border: 2px solid var(--darkblue-color);
    color: var(--darkblue-color);
    padding: 25px 30px;
    margin-bottom: 17px;
    font-family: var(--momcakepro-medium);
}

.faq-head {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    line-height: 1.3;  
    font-family: var(--momcakepro-regular);      
}

.faq-head i {
    font-size: 20px;
    color: var(--darkblue-color);
}

.faq-ans {
    display: none;
    margin-top: 30px;
    transform: translateY(-40px);
    transition: 0.5s;
    font-size: 22px;
    line-height: 1.3;  
    font-family: var(--momcakepro-regular); 
}

.faq-box.active .faq-ans {
    display: block;
    transform: translateY(0px);
    transition: 0.5s;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
}

.f-social-box {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-social-box a img {
    height: 25px;
}

.copyright-box {
    margin: 10px 0 40px;
    max-width: 250px;
    width: 100%;
    text-align: center;
}

.copyright-box a,
.copyright-box p {
    color: var(--darkblue-color);
    font-size: 22px;
    font-family: var(--momcakepro-medium);
    line-height: 1.3;
    transition: 0.3s;
}

.copyright-box a:hover {
    color: var(--orange-color);
}

.copyright-box p {
    text-align: center;
}

.stack-section {
    width: 100%;
    height: fit-content;
}

.stack-section img {
    width: 100%;
}

.stack-section img {
    position: sticky;
    bottom: 0;
}

@media(max-width:1000px) {
    .hero-section {
        background: url(assets/images/res-hero-bg.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero-content {
        flex-direction: column;
        padding-top: 100px;
        gap: 70px;
    }
    .hero-left,
    .hero-right {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 30px;
        text-align: center;
    }
    .hero-content p {
        text-align: center;
    }
    .hero-content h1 span {
        font-size: 100px;
    }
    .partners-content {
        gap: 16px;
    }
    .partners-content img {
        width: 80px;
    }
    .hero-btns {
        margin-top: 35px;
    }
}

@media(max-width:768px) {
    .toggle-btn {
        display: flex;
        width: 30px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: none;
        border: none;
        outline: none;
        gap: 6px;
        position: relative;
        transition: 0.3s;
        float: right;
        z-index: 10000;
    }
    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
    }
    .toggle-btn .toggle-line {
        width: 100%;
        height: 3px;
        border-radius: 20px;
        background: var(--skin-color);
        transform-origin: center center;
        transition: 0.3s;
    }
    .toggle-btn.active {
        gap: 0;
    }
    .toggle-btn.active .toggle-line:nth-child(1) {
        transform: rotate(45deg);
    }
    .toggle-btn.active .toggle-line:nth-child(2) {
        display: none;
    }
    .toggle-btn.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
    }
    .nav-right .nav-list {
        display: none;
    }
    .responsive-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1500;
        background: var(--darkblue-color);
        width: 100%;
        height: 100vh;
        overflow: scroll;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transform: translateX(100%);
        transition: 0.7s ease-in-out;
    }
    .responsive-menu .nav-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }
    .responsive-menu::-webkit-scrollbar {
        display: none;
    }
    .responsive-menu.active {
        transform: translateX(0);
        transition: 0.7s ease-in-out;
    }
    .nav-list li {
        height: fit-content;
    }
    .hero-section {
        background-position: right;
        padding-top: 20px;
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 0.9;
    }
    .hero-content h1 span {
        font-size: 90px;
    }
    .payment-detail {
        padding: 20px;
        background: var(--orange-color);
    }
    .pay-content {
        flex-direction: column;
        gap: 20px;
    }
    .p-num-absolute {
        display: none;
    }
    .process-box {
        flex-direction: column;
    }
    .process-left,
    .process-right,
    .process-txt,
    .p-main-img {
        width: 100%;
    }
    .process-left .process-txt h2,
    .process-left .process-txt p {
       text-align: left;
    }
    .res-process-box {
        flex-direction: column-reverse;
    }
    .last-process-box .process-left {
        margin-top: 2rem;
    }
    section {
        padding: 0 20px;
    }
}

@media(max-width:550px) {
    .hero-content h1 {
        font-size: 25px;
    }
    .hero-content h1 span {
        font-size: 55px;
    }
    .hero-content p {
        font-size: 25px;
        margin: 10px 0;
    }
    .hero-btns a,
    .hero-btns button {
       width: 100%;
    }
    .sec-heading {
        font-size: 35px;
    }
    .form-section form {
        padding: 20px 15px;
    }
    .form-section form input {
        width: 100%;
    }
    .hero-section {
        background-position: center bottom;
    }
    .hero-content {
        padding: 100px 0 50px 0;
    }
    .hero-img {
        height: 400px;
    }
    .navbar {
        padding: 5px 15px;
    }
    .header-logo {
        width: 45px;
    }
    .nav-right {
        gap: 20px;
    }
    .toggle-btn {
        width: 25px;
    }
    .language-change img {
        width: 32px;
        margin-bottom: -4px;
    }
    .form-section form input[type="submit"] {
        width: 100%;
        background: var(--orange-color);
        color: var(--skin-color);
    }
    .partners-content img {
        width: 60px;
    }
    .partners-content {
        gap: 14px;
        margin-top: 20px;
    }
}

.timeline-line {
  position: relative;
  height: 100%;
  width: 6px;
  /* background: #e5e5e5; */
}

.timeline-line .line-progress {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0%;
  background: #000;
  transition: height 0.1s linear;
}

/* Content animation */

.p-num-box {
    opacity: 0;
   transform: scale(0.4);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-section.active .p-num-box {
  opacity: 1;
  transform: scale(1);
}

.process-left,
.process-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-section.active .process-left,
.timeline-section.active .process-right {
  opacity: 1;
  transform: translateY(0);
}

/* .appear-one {
    animation: appearone linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
}

.appear-two {
    animation: appeartwo linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
}

.appear-three {
    animation: appearthree linear;
    animation-timeline: view();
    animation-range: entry 0% cover 60%;
} */

@keyframes appearone {
    from {position: sticky;top: 0; transform: translateY(100px);}
    to {position: sticky;top: 0;transform: translateY(0px);}
}

@keyframes appeartwo {
    from {opacity: 0;transform: translateY(-100px);}
    to {opacity: 1;transform: translateX(0px);}
}

@keyframes appearthree {
    from {opacity: 1;transform: translateY(-50px);}
    to {opacity: 1;transform: translateY(-50px);}
}





/* other pages css start here */

.second-hero-sec {
  background: none;
}

.second-header {
    width: 100%;
    padding: 100px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.second-header h2 {
    font-family: var(--momcakepro-medium);
    text-transform: uppercase;
    font-size: 75px;
    letter-spacing: 1px;
    color: var(--black-color);
    line-height: 0.8;
}

.second-header h1 {
    color: var(--orange-color);
    text-transform: uppercase;
    font-family: var(--aquire-medium);
    font-size: 105px;
    line-height: 0.6;
}

@media(max-width:768px) {
    .second-header {
    padding: 100px 0 0px 0;
}

.second-header h2 {
    font-size: 38px;
    line-height: 0.9;
}

.second-header h1 {
    font-size: 50px;
    line-height: 0.6;
}
}

/* about us section css start here */

.ab-h-row-one {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 100px;
}

.ab-row-box {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ab-row-box h3 {
    color: var(--darkblue-color);
    font-family: var(--aquire-medium);
    font-size: 65px;
    font-weight: 500;
}

.ab-row-box h3 span {
    font-family: var(--momcakepro-medium);
}

.ab-row-box p {
    text-transform: uppercase;
    font-family: var(--momcakepro-bold);
    font-size: 25px;
}

.ab-h-row-two {
    padding: 50px 0;
}

.ab-h-row-two .ab-row-box h3 {
    font-size: 100px;
}

.about-second-sec {
    background: var(--darkblue-color);
}

.about-sec-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 3rem 0;
}

.ab-secd-left {
    width: 35%;
}

.ab-secd-left img {
    width: 90%;
}

.ab-secd-right {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 30px;
}

.ab-secd-right h2 {
    color: var(--skin-color);
    font-size: 40px;
    font-family: var(--momcakepro-medium);
    text-transform: uppercase;
    font-weight: 500;
}

.ab-secd-right p {
    color: var(--skin-color);
    font-size: 26px;
    font-family: var(--momcakepro-regular);
    line-height: 1.4;
    letter-spacing: 0.4px;
}

.about-third-sec,
.main-service-section {
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.main-service-section {
    margin-bottom: 2rem;
}

.about-third-sec .container {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.ab-thd-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.direction-reserse {
    flex-direction: row-reverse;
}

.service-reverse {
    background: var(--darkblue-color);
}

.ab-thd-left {
    width: 65%;
}

.ab-thd-left h2 {
    font-family: var(--momcakepro-medium);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--darkblue-color);
    margin-bottom: 15px;
    font-size: 35px;
}

.service-reverse .ab-thd-left h2 {
    color: var(--skin-color);
}

.ab-thd-left p,
.about-fourth-sec p {
    font-family: var(--momcakepro-regular);
    font-size: 30px;
    line-height: 1.25;
}

.service-reverse .ab-thd-left p {
    color: var(--skin-color);
}

.ab-thd-left a {
    display: block;
    margin-top: 25px;
}

.ab-thd-left a button {
    background: var(--darkblue-color);
    color: var(--skin-color);
    padding: 10px 25px;
    font-family: var(--momcakepro-medium);
    letter-spacing: 1.2px;
    font-size: 22px;
    font-weight: 500;
}

.service-reverse .ab-thd-left a button {
    background: var(--skin-color);
    color: var(--darkblue-color);
    font-weight: 500;
}

.ab-thd-right {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ab-thd-right img {
    width: 100%;
}

.about-fourth-sec {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.about-fourth-sec .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media(max-width:768px) {
    .ab-h-row-one {
        padding-top: 50px;
        gap: 20px 30px;
    }
    .ab-row-box h3 {
        font-size: 45px;
    }
    .ab-row-box p {
        font-size: 25px;
    }
    .ab-h-row-two {
        padding: 40px 0 60px;
    }
    .ab-h-row-two .ab-row-box h3 {
        font-size: 60px;
    }
    .about-sec-content {
        flex-direction: column-reverse;
    }
    .ab-secd-left,
    .ab-secd-right {
        width: 100%;
        padding: 0;
    }
    .ab-secd-left {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-third-sec .container {
        padding: 0;
    }
    .ab-thd-row {
        flex-direction: column;
    }
    .ab-thd-left,
    .ab-thd-right {
        width: 100%;
    }
}

@media(max-width:768px) {
  .services-header h1 {
     font-size: 39px;
  }    
}

/* contact page css start here */

.main-contact-sec {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.main-contact-box {
    width: 100%;
    height: fit-content;
    background: var(--darkblue-color);
    padding: 35px 35px 5px 35px;
}

.main-contact-box h2,
.main-contact-two h2 {
    font-family: var(--momcakepro-regular);
    font-weight: 500;
    color: var(--skin-color);
    font-size: 35px;
    margin-bottom: 20px;
}

.main-contact-box h2 span {
    color: var(--orange-color);
}

.main-contact-box form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.main-contact-box form input {
    background: var(--skin-color);
    width: 31.5%;
    min-width: 300px;
    padding: 11px 16px;
    color: var(--darkblue-color);
    font-size: 18px;
}

.contact-option-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-option-row {
    margin-bottom: 30px;
}

.contact-option-row span {
    color: var(--skin-color);
    font-family: var(--momcakepro-thin);
    padding: 10px 12px;
    border: 1px solid var(--skin-color);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: 0.3s;
}

.contact-option-row span:hover {
    background: var(--skin-color);
    color: var(--darkblue-color);
}

.main-cont-sec {
    padding-bottom: 2rem;
}

.main-cont-sec .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-contact-two {
    max-width: 900px;
    width: 100%;
    background: var(--darkblue-color);
    padding: 35px;
}

.working-time-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.working-time-row p {
    color: var(--skin-color);
    font-size: 20px;
    font-family: var(--momcakepro-thin);
}

.phone-mail-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-mail-contact a {
    font-family: var(--momcakepro-thin);
    color: var(--skin-color);
    font-size: 22px;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-mail-contact a i {
    color: var(--orange-color);
    font-size: 20px;
}

@media(max-width:768px) {
    .main-contact-box {
        padding: 20px 15px 5px 15px;
    }
    .main-contact-box form input {
        min-width: 100%;
        width: 100%;
    }
}