@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    overflow: hidden;
}
.home{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.nav{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    box-sizing: border-box;
}
.logo{
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
a{
    text-decoration: none;
}
.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 50%;
}
.navlink{
    color: black;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

  
  .underline {
    position: absolute;
    left: 0;
    bottom: -4px; /* space below text */
    height: 2px;
    background: black;
    width: 0%; /* start hidden */
  }
  
.nav-btns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-family: 'Helvetica Neue', sans-serif;
    width: 25%;
}
.call-btn{
    background-color: white;
    color: black;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.call-btn:hover{
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.chat-btn{
    background-color: black;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid black;
}
.homepage{
    width: 100%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.small{
    font-size: 12px;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}
.home-heading{
    font-size: 40px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: -2px;
    margin-top: 5px;
}
.italic{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}
.home-description{
    font-family: 'Helvetica Neue', sans-serif;
    font-family: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    margin-top: 10px;
}
.posters {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.posters > div {
    border-radius: 12px;
    width: 320px;
    height: 370px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

/* Poster styles with rotation & overlapping via margin */
.poster-1 {
    background-image: url("./img/poster1.jpeg");
    transform: rotate(-17.98deg);
    margin-left: 0; 
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}
.poster-1:hover{
    transform: scale(1.05) rotate(-17.98deg);
    z-index: 10;
    transition: all 0.3s ease;
}
.poster-2 {
    background-image: url("./img/poster2.jpg");
    transform: rotate(4.87deg);
    margin-left: -200px;
    top: -10px;
    z-index: 2;
    cursor: pointer;
}
.poster-2:hover{
    transform: scale(1.05) rotate(4.87deg);
    z-index: 10;
    transition: all 0.3s ease;
}
.poster-3 {
    background-image: url("./img/poster3.jpg");
    transform: rotate(-7.56deg);
    margin-left: -190px;
    top: 4px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}
.poster-3:hover{
    transform: scale(1.05) rotate(-7.56deg);
    z-index: 10;
}
.poster-4 {
    background-image: url("./img/poster4.jpeg");
    transform: rotate(-16.54deg);
    margin-left: -160px;
    top: 2px;
    z-index: 4;
    cursor: pointer;
}
.poster-4:hover{
    transform: scale(1.05) rotate(-16.54deg);
    z-index: 10;
    transition: all 0.3s ease;
}
.poster-5 {
    background-image: url("./img/poster5.jpeg");
    transform: rotate(8.3deg);
    margin-left: -175px;
    top: 15px;
    z-index: 5;
    cursor: pointer;
}
.poster-5:hover{
    transform: scale(1.05) rotate(8.3deg);
    z-index: 10;
    transition: all 0.3s ease;
}


.mask{
    width: 100%;
    height: 100%;
    border-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 20px 28px 20px;
    box-sizing: border-box;
    background: linear-gradient(180deg,rgba(217, 217, 217, 0) 0%,rgba(217, 217, 217, 0.2) 73%,rgba(0, 0, 0, 0.6) 100%);
}
.weblink{
    color: white;
    background-color: rgba(255, 255, 255, 0.20) ;
    padding: 10px 15px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.web-btm{
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
}
.web-heading{
    font-weight: 500;
    font-size: 26px;
}
.web-description{
    font-weight: 400;
    font-size: 10px;
    text-transform: capitalize;
    margin-top: 5px;
    line-height: 1.5;
    width: 85%;
}
.web-description1{
    font-weight: 400;
    font-size: 10px;
    text-transform: capitalize;
    margin-top: 5px;
    line-height: 1.5;
    width: 90%;
}
.web-description2{
    font-weight: 400;
    font-size: 10px;
    text-transform: capitalize;
    margin-top: 5px;
    line-height: 1.5;
}


.about{
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.about-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 20vh;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    letter-spacing: -2px;
    gap: 5px;
}
.about-description{
    width: 43%;
    height: 45vh;
    font-family: 'Helvetica Neue', sans-serif;
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: left;
    gap: 40px;
}

.question-1,.question-2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}
.question{
    width: 100%;
    text-align: left;
    font-weight: 600;
    letter-spacing: -2px;
    font-size: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.red{
    background: linear-gradient(to right, #000000, #11B495);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 25%;
}
.red-1{
    background: linear-gradient(to right, #000000, #11B495);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 35%;
}
.answer{
    font-weight: 500;
    font-size: 18px;
    text-align: justify;
    letter-spacing: -1px;
}

.services{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 0px 30px 100px 30px;
    margin-top: 50px;
    box-sizing: border-box;
}
.service-about{
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.star{
    width: 200px;
    height: 200px;
}
.star > svg{
    width: 200px;
    height: 200px;
}
.service-opening{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}
.sa-heading{
    font-size: 70px;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 600;
    text-align: left;
    font-style: italic;
    letter-spacing: -2px;
    color: rgb(26, 26, 26);
}
.sa-para{
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    text-align: left;
    letter-spacing: -1px;
    color: rgb(26, 26, 26);
    line-height: 1.5;
}

.service{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 0px;
}
.service-item{
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.service-header{
    width: 100%;
    height: 12vh;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 10px 0px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}
.service-header:hover{
    background-color: rgba(0, 0, 0, 0.01);
}
.service-heading{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    width: 60%;
}
.number{
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 32px;
    font-style: italic;
    letter-spacing: -1px;
    color: #000;
    width: 60px;
}
.service-name{
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -1px;
    color: #000;
}
.service-icon{
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-icon svg{
    width: 32px;
    height: 32px;
}
.service-content{
    height: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
}
.service-body{
    padding: 20px 0 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.service-desc{
    width: 55%;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    letter-spacing: -0.5px;
    margin-left: 100px;
}
.service-gallery{
    width: 100%;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 10px 100px;
    box-sizing: border-box;
    scrollbar-width: none;
}
.service-gallery::-webkit-scrollbar{
    display: none;
}
.gallery-card{
    flex: 0 0 400px;
    height: 500px;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.gallery-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.placeholder-card-1{
    background: linear-gradient(135deg, #11B495 0%, #0e4f44 100%);
}
.placeholder-card-2{
    background: linear-gradient(135deg, #0e4f44 0%, #000000 100%);
}
.placeholder-card-3{
    background: linear-gradient(135deg, #11B495 0%, #000000 100%);
}




.footer{
    width: 100%;
    height: 160vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to bottom, #030303 50%, #11B495);
}
.marquee{
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.marquee-heading{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 0px 30px;
    line-height: 18px;
    box-sizing: border-box;
    color: rgb(216, 216, 216);
    margin-bottom: 20px;
}
.marquee-move {
    font-size: 115px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: white;
    width: 100%;
    text-align: center;
    letter-spacing: -2px;
    overflow: hidden;
    white-space: nowrap;
    background: #000;
    cursor: pointer;
    position: relative;
  }

  .marquee-content {
    display: inline-block;
  }

  .marquee-move:hover .marquee-content {
    color: rgba(255, 255, 255, 0.786);
  }


.footer-nav{
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    box-sizing: border-box;
    margin-top: 5vh;
}
.footer-left{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.footer-description{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-description > div{
    font-size: 25px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    color: white;
    width: 80%;
}
.reachout{
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}
.reach-heading{
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.325);
    font-family: 'Helvetica Neue', sans-serif;
}
.phoneno{
    margin-bottom: -5px;
}
.phoneno > a{
    font-size: 25px;
    font-weight: 400;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
}
.email > a{
    font-size: 25px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-style: italic;
}
.footer-right{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
}
.ventures, .navigation, .socials{
    width: 25%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    text-align: left;
}
.footer-nav-heading{
    font-size: 25px;
    font-weight: 500;
    color: white;
    letter-spacing: -1px;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 20px;
}
.footer-links{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
}
.footer-link{
    font-size: 25px;
    font-weight: 400;
    color: white;
    /* letter-spacing: -1px; */
    font-family: 'Helvetica Neue', sans-serif;
    text-decoration: none;
}
.footer-link:hover{
    color: white;
    transition: all 0.3s ease;
}
.brand{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.branding{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.325);
    padding: 0px 30px;
    box-sizing: border-box;
    text-align: center;
}
.terms-link, .privacy-link{
    color: rgba(255, 255, 255, 0.325);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
}
.brandname{
    width: 100%;
    height: 45vh;
    padding: 0px 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-size: 220px;
    color: white;
}
.brandname >span{
    font-size: 90px;
    color: rgba(255, 255, 255, 0.225);
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Process Section Styling */
.process-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 0px 30px 100px 30px;
    margin-top: 100px;
    box-sizing: border-box;
}

.process-about {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.process-opening {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.pa-heading {
    font-size: 70px;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 600;
    text-align: left;
    font-style: italic;
    letter-spacing: -2px;
    color: rgb(26, 26, 26);
}

.pa-para {
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    text-align: left;
    letter-spacing: -1px;
    color: rgb(26, 26, 26);
    line-height: 1.5;
}

.process-icon {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-icon svg {
    width: 200px;
    height: 200px;
}

.process-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 20px;
    box-sizing: border-box;
}

.process-card {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.process-card:hover {
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(17, 180, 149, 0.20);
}

.process-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-num {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 44px;
    font-style: italic;
    letter-spacing: -1px;
    color: #000;
    transition: color 0.4s ease;
}

.process-card:hover .process-num {
    color: #11B495;
}

.process-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: #000000;
}

.process-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    letter-spacing: -0.2px;
}

/* Work with us Section styling */
.work-section {
    width: 100%;
    padding: 0 30px 100px;
    box-sizing: border-box;
    background-color: white;
}

.work-card {
    width: 100%;
    height: 520px;
    border-radius: 40px;
    background-color: #080c0c;
    background-image: url('board.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 56px 80px 48px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.work-left,
.cta-container {
    position: relative;
    z-index: 2;
}

.work-left {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.work-intro {
    max-width: 600px;
    padding-top: 4px;
}

.work-intro-title,
.cta-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -1.2px;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

.work-intro-title {
    font-size: 40px;
    line-height: 1.15;
}

.work-intro-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: -0.2px;
    margin: 12px 0 0;
    -webkit-font-smoothing: antialiased;
}

/* Custom properties for topic scroller */
:root {
    --item-height: 80px;
}

@media (max-width: 992px) {
    :root {
        --item-height: 64px;
    }
}

/* Vertical topic scroller - Apple UIPickerView Wheel Style */
.topic-scroller-container {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start; /* Stick to left side */
    margin-top: auto;
    padding-bottom: 0;
    cursor: grab;
    touch-action: none;
    -webkit-font-smoothing: antialiased;
}

.topic-scroller-container:active {
    cursor: grabbing;
}

.scroller-viewport {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    perspective: 1200px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

/* Apple iOS UIPickerView selection indicator */
.scroller-selection-indicator {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    height: var(--item-height);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 10;
}

/* Vertical accent indicator in brand green */
.scroller-selection-indicator::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px;
}

.scroller-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform-style: preserve-3d;
}

.scroller-item {
    height: var(--item-height);
    display: flex;
    align-items: center; /* Center text vertically in the slot */
    justify-content: flex-start; /* Align text to the left */
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform-origin: left center; /* Scale and rotate from the left boundary to prevent horizontal swaying */
}

.item-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -1.4px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    letter-spacing: -0.4px;
    -webkit-font-smoothing: antialiased;
    padding-left: 20px; /* Aligns with the vertical accent bar */
}

/* CTA Container styling */
.cta-container {
    width: 36%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
    padding: 4px 0 8px;
}

.cta-heading {
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: -1.4px;
}

.schedule-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 26px 44px;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
}

.schedule-call-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.schedule-call-btn:active {
    transform: translateY(-1px);
}

.cta-icon {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.schedule-call-btn:hover .cta-icon {
    transform: scale(1.08);
}
