@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body, main {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.home-hero {
    width: 100%;
    height: calc(110vh - 60px);
    position: relative;
    overflow: hidden;
    background: black;
    box-sizing: border-box;
}

.home-hero video {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 0;
    object-fit: cover;
    inset: 0;
    object-position: center -15%;
}

.home-hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    justify-content: center;
    align-items: start;
    text-align: left;
    padding: 0 0 0 70px;
    gap: 0;
}

.hero-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 20px 0;
    gap: 15px;
}

.hero-title img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    inset: 0;
}

.hero-title > p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 400;
    color: #fcfcfc;
    line-height: 1.5;
    margin: 0;
}

.home-hero-content h1 {
    font-size: clamp(2.5rem, 1.8rem + 3vw, 4.375rem);
    font-weight: bold;
    line-height: 1.4;
    color: #F5F5F5;
    margin: 0 0 20px 0;
}

.home-hero-content > p {
    max-width: 600px;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.8);
    margin: 0 0 32px 0;
}

.home-hero-btn {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.yellow-btn {
    display: inline-flex;
    background: #FFD700;
    border-radius: 50px;
    cursor: pointer;
    padding: 6px 28px;
}

.yellow-btn a {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 400;
    color: black;
    text-decoration: none!important;
    margin: 0;
}

.yellow-btn:hover {
    background: rgba(255, 215, 0, 0.9);
}

.yellow-btn a:hover, .white-btn a:hover {
    font-weight: 500;
}

.white-btn {
    display: inline-flex;
    background: none;
    border: 0.5px solid white;
    border-radius: 50px;
    cursor: pointer;
    padding: 6px 28px;
}

.white-btn a {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 400;
    color: white;
    text-decoration: none!important;
    margin: 0;
}

.white-btn:hover {
    border: 0.9px solid white;
}

/* Case Studies Section */

.case-study {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
    gap: 0;
}

.case-study-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 20px;
    margin: 0 0 20px 0;
    gap: 15px;
}

.case-study-title img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    inset: 0;
}

.case-study-title p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 400;
    color: black;
    line-height: 1.5;
    margin: 0;
}

.case-study h2 {
    font-size: clamp(2rem, 1.6rem + 1.5vw, 3rem);
    font-weight: bold;
    line-height: 1.3;
    color: black;
    text-align: center;
    margin: 0 0 20px 0;
}

.case-study > p {
    max-width: 800px;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: black;
    opacity: 0.65;
    text-align: center;
    margin: 0 0 32px 0;
}

.study-slideshow-container{
    width:100%;
    overflow:hidden;
    position:relative;
}

.study-track{
    display: flex;
    align-items: center;
    transition: transform .6s ease;
    gap: 24px;
}

.study-box{
    flex:0 0 40%;
    height: 400px;
    position: relative;
    border-radius: 32px;
    flex-shrink: 0;
    overflow: hidden;
}

.study-box img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.study-content{
    display:flex;
    flex-direction:column;
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.2) 45%,
        transparent
    );
    align-items: flex-start;
    justify-content:flex-end;
    padding:28px;
    gap: 5px;
}

.study-content > a {
    font-size:22px;
    font-weight:600;
    color:#fff;
    text-decoration:none;
    margin:0;
}

.study-content p {
    display: none;
}

.study-box:hover .study-content p {
    display: block;
    font-size:16px;
    font-weight: 300;
    line-height:1.6;
    color:#fff;
    opacity: 0.65;
    transition:.35s;
    margin: 0;
}

.study-box:hover .study-content a {
    text-decoration: underline;
}

.case-study-pagination {
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
    gap:10px;
}

.case-study-pagination button{
    width:10px;
    height:10px;
    background:#d9d9d9;
    border:none;
    border-radius:999px;
    cursor:pointer;
    transition:.3s;
}

.case-study-pagination button.active{
    width:28px;
    background:#666;
}

/* Recommended Services Section */

.home-service {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: black;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 100px 70px 100px 70px;
}

.home-service .home-service-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 20px 0;
    gap: 15px;
}

.home-service .home-service-title img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    inset: 0;
}

.home-service .home-service-title > p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 300;
    color: #fcfcfc;
    line-height: 1.5;
    margin: 0;
}

.home-service h2 {
    font-size: clamp(2rem, 1.6rem + 1.5vw, 3rem);
    font-weight: bold;
    line-height: 1.3;
    color: #fcfcfc;
    text-align: center;
    margin: 0 0 20px 0;
}

.home-service > p {
    max-width: 800px;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: #fcfcfc;
    opacity: 0.65;
    text-align: center;
    margin: 0 0 32px 0;
}

.home-service-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0.6;
    cursor: pointer;
    justify-content: end;
    align-items: center;
    gap:10px;
    margin: 0 0 16px 0;
}

.home-service-btn a {
    font-size: clamp(0.875rem, 0.825rem + 0.2vw, 1rem);
    line-height: 1.5;
    color: #fcfcfc;
    text-decoration: none;
    margin: 0;
}

.arrow-right {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: #fcfcfc;
}

.arrow-right::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #fcfcfc;
    border-right: 1.5px solid #fcfcfc;
    transform: translateY(-50%) rotate(45deg);
}

.home-service-btn:hover {
    opacity: 1;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 40px;
}

.home-service-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    gap: 0;
}

.home-service-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    inset: 0;
}

.home-service-box a {
    font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
    line-height: 1.5;
    color: #fcfcfc;
    text-decoration: none;
    cursor: pointer;
    margin: 20px 0 0 0;
}

.home-service-box a:hover {
    text-decoration: underline;
}

.home-service-box p {
    font-size: clamp(0.875rem, 0.825rem + 0.2vw, 1rem);
    font-weight: 300;
    line-height: 1.5;
    color: #fcfcfc;
    opacity: 0.4;
    margin: 6px 0 0 0;
}

/* FAQ Section */

.home-faq {
    width:100%;
    display: flex;
    flex-direction: column;
    color: #f5f5f5;
    background: black;
    box-sizing: border-box;
    padding: clamp(40px, 3vw, 50px) clamp(40px, 5vw, 90px);
    gap: clamp(16px, 1.2vw, 23px);
}

.home-faq h2 {
    font-size: clamp(2rem, 1.5rem + 1.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.2vw, 23px);
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap:0;
}

.faq-question {
    width:100%;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
    margin:0;
}

.faq-question h4 {
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.faqBtn {
    display: block;
    width:24px;
    height:24px;
    object-fit: cover;
    cursor: pointer;
    margin:0;
}

.hiddenText {
    display: none;
    margin:0;
}

.hiddenText.Show {
    max-width: 1000px;
    display: block;
    font-size: clamp(0.875rem, 0.84rem + 0.15vw, 1rem);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
    padding:5px 0 0 0;
    margin: 0 !important;
}

.faq-line {
    height:1px;
    background: #fcfcfc;;
    opacity: 0.3;
    margin:0;
}

/* Home Consult Form */

.home-cta {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: #F5F5F5;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 100px 70px 100px 70px;
}

.home-cta h2 {
    font-size: clamp(2rem, 1.5rem + 1.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 20px 0;
}

.home-cta > p {
    max-width: 800px;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: black;
    opacity: 0.65;
    text-align: center;
    margin: 0 0 32px 0;
}

.home-form-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px 0;
}

.home-form-title img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    inset: 0;
}

.home-form-title p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 300;
    color: black;
    line-height: 1.5;
    margin: 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dual-form {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.form-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 18px;
    font-weight: 400;
    color: #4A4A4A;
    margin: 0;
}

#fullName, #email, #companyname, #interestService, #budgetSize, #companyWeb, #companySocial {
    width: 100%;
    height: auto;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    background: white;
    border: 0.5px solid #E5E5E5;
    border-radius: 8px;
    padding: 10px;
}

.dropdown-wrapper {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

#interestService, #budgetSize {
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 300;
    background-color: white;
    border: 1px solid white;
    border-radius: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 12px 40px 12px 16px;
}

.dropdown-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

#companyGoal {
    width: 100%;
    height: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    background: white;
    border: 0.5px solid #E5E5E5;
    border-radius: 8px;
    padding: 10px;
}

.form-submit {
    width: 100%;
    height: auto;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fcfcfc;
    background: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
}

.form-submit:hover {
    font-weight: 400;
}

.free-consult {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: black;
    border-radius: 16px;
    padding: 20px;
    gap: 15px;
}

.free-consult h3 {
    font-size: 28px;
    color:#fcfcfc;
    margin: 0;
}

.free-consult > p {
    font-size: 18px;
    font-weight: 300;
    color: #fcfcfc;
    opacity: 0.7;
    margin: 0;
}

.verticle-line {
    width: 100%;
    height: 0.5px;
    display: block;
    background-color: #fcfcfc;
    opacity: 0.7;
    margin: 0;
}

.consult-details {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.consult-details img {
    width: 15px;
    height: 15px;
    object-fit: cover;
    inset: 0;
}

.consult-details p {
    font-size: 16px;
    color: #fcfcfc;
    margin: 0;
}

.alert-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    border: solid 0.5px rgba(245, 245, 245, 0.8);
    border-radius: 8px;
    padding: 20px;
    gap: 10px;
}
.alert-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.alert-info {
    display: flex;
    flex-direction: column;
    color: #fcfcfc;
    justify-content: flex-start;
    gap: 8px;
}

.alert-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.alert-info p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
    margin: 0;
}

/* All Hilight Classes */

.yellow-gradient-hilight {
    background: linear-gradient(0deg, #FFD700 0%, #FFEF99 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.yellow-hilight {
    color: #FFD700;
}