*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    height: 3000px;
}

body{
    font-family:"Fustat",sans-serif;
    background:#ffffff;
    color:#111;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    font-family:inherit;
    border:none;
    background:none;
    cursor:pointer;
    border-radius: 8px;
    padding:10px 24px;
    font-size: 1rem;
}


h2{
   text-align: center;
   font-size: 3rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
}
.section-heading{
    text-align: center;
    margin: auto;
    font-size: 18px;
    margin-bottom: 8px;
}
@media(max-width:768px){
    h2{
        font-size: 1.8rem;
    }
    .section-heading{
        margin-bottom: 6px;
        font-size: 16px;
    }
}
.highlight{
    background:#111;
    color:#fff;
    padding:0 8px;
    border-radius:4px;
}


/* ---------------- NAVBAR ---------------- */

header{
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    z-index:1000;
}

nav{
    width:100%;
    
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 30px 16px;

    background:rgba(255,255,255,.72);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: #cbcbcb;
}

/* Desktop */
.mobile-menu{
    display:none;
}

.nav-center{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-center a{
    padding:0 20px;
    line-height:40px;
    transition:.25s;
}

.nav-center a:hover{
    opacity:.6;
}

#contact-btn{
    border:1.5px solid #1B1B1B;
    color: #000000;
    padding:8px 20px;
    background:none;
    cursor:pointer;
    transition:.25s;
}

#contact-btn:hover{
    background:#1B1B1B;
    color:#fff;
}


/* Mobile */
.mobile-nav{
    display:none;
}


@media(max-width:768px){

    nav{
        padding:14px 20px;
    }

    .logo{
        display:none;
    }

    .nav-center{
        display:none;
    }

    .mobile-menu{
        display:flex;
        width:40px;
        height:40px;

        align-items:center;
        justify-content:center;

        border:none;
        background:none;
        cursor:pointer;

        padding:0;
    }

    .mobile-menu svg{
        width:26px;
        height:26px;
        stroke-width:2;
        transition:.25s;
    }


    .mobile-nav{
        display:flex;
        flex-direction:column;
        gap:20px;

        position:absolute;
        top:70px;
        left:0;
        right:0;

        padding:24px 18px;

        background:rgba(255,255,255,.85);
        backdrop-filter:blur(16px);
        -webkit-backdrop-filter:blur(16px);

        transform:translateY(-20px);
        opacity:0;
        pointer-events:none;

        transition:.3s ease;
    }


    .mobile-nav a{
        font-size:18px;
        padding:8px 0;
    }


    .mobile-nav.active{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }
}

/* ---------------- HERO ---------------- */

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    padding:120px 30px 0;
    margin-bottom: 80px;
}

.hero{
    background:
        url("images/bg_grid.png") no-repeat,
        #ffffff;

    background-size:1000px;
    background-position: 450px 380px;
}
@media (max-width: 800px) {
    .hero{
        height: auto;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-bottom: 0px;
    }
    .hero-columns{
        padding-bottom: 0px !important;
    }
    .hero{
    background:
        url("images/bg_grid.png") no-repeat,
        #ffffff;

    background-size:800px;
    background-position:-190px 380px;
}
}


.desktop-svg * {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: .1s;
}

.desktop-svg *:hover {
  transform: scale(1.03);
  transition-delay: 0s;
}
.desktop-svg {
  overflow: visible;
}


.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    width: 100%;
    max-width:760px;
}

.hero-columns {
    max-width: 1300px;
    padding-bottom: 40px;
}

.hero-columns svg {
    width: 100%;
    height: auto;
    display: block;
}

.why-website{
    max-width: 1160px;
    padding: 30px;
    margin: auto;
}
.why-website svg {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 80px;
}

@media (max-width: 800px) {
    .desktop-svg{
        display: none !important;
    }
    .mobile-svg{
        display: block !important;
        margin-top: 40px !important;
    }
    .why-website{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


.services{
    max-width: 1300px;
    padding: 0px 60px;
    margin: auto;
    margin-top: 90px;
    padding-top: 20px;
}

#service-card-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 60px;
    margin-top: 60px;
}
@media (max-width: 960px) {
    #service-card-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 768px) {
    #service-card-grid{
        display: block;
    }
    .services{
        padding: 0px 20px;
    }
    .service-card{
        margin-bottom: 60px;
        text-align: center;
    }
    .service-card-icon{
        margin: auto;
    }
    h3{
        font-size: 20px !important;
    }
}
.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  border-radius: 50%; /* optional if it's a circle */
  margin-bottom: 14px;
}
.service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1;
}
h3{
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}
p{
    line-height: 1.3;
    font-size: 16px;
}
.services-p{
    color: #353535;
}
.service-card{
    
}








.process{
    margin: auto;
    margin-top: 120px;
    padding-bottom: 60px;
    background-color: #613A17;
    padding-top: 100px;
}
.process-inner{
    max-width: 1300px;
    padding: 0px 60px;
    padding-bottom: 60px;
    margin: auto;
    color: #fff;
}
.step-ind{
    color: #FFAC58;
    font-weight: 800;
}
.process-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    color: #ffffff;
}
.step-container h3{
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 500;
    font-size: 28px;
    margin-top: 8px;
    margin-bottom: 16px;
}
@media (max-width: 960px) {
    .process-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .process-grid{
        display: block;
        text-align: center;
    }
    .step-container{
        margin-bottom: 60px;
    }
    .step-container h3{
        font-size: 24px !important;
        margin-top: 4px;
        margin-bottom: 12px;
    }
    .process-inner{
        padding-left: 20px;
        padding-right: 20px;
    }
}



.about{
    background-color: #ffffff;
    color: #000000;
    padding-top: 80px;
}
.about-inner{
    max-width: 1000px;
    padding: 0px 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: auto;
    background-color: #f3f3f3;
    border-radius: 34px;
}
@media (max-width: 1135px) {
    .about-inner{
        margin-left: 60px;
        margin-right: 60px;
    }
}
.about-me-txt{
    margin: auto;
    margin-top: 40px;
    max-width: 800px;
}
.about-inner p{
    text-align: start;
    margin-top: 0px;
}
.about-inner h2{
    text-align: start;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .about-inner{
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }
    .about-inner h2{
        margin-bottom: 16px;
    }
    .desktop{
        display: none;
    }
    .mobile{
        display: block !important;
    }
}
@media (min-width: 769px) {
    .about-text-wrap{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}








.contact{
    
    max-width: 1300px;
    padding: 0px 60px;
    margin: auto;
    padding-top: 100px;
    margin-top: 60px;
    text-align: center;
    margin-bottom: 300px;
}

.contact-form {
    max-width: 1000px;
    margin: auto;
    text-align: start;
    font-family: "Fustat", sans-serif;
    margin-top: 80px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.right-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.row {
    display: flex;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

label {
    margin-bottom: 2px;
    font-size: 16px;
}

input,
textarea {
    width: 100%;
    padding: 10px 18px;
    border: 1px solid #bdbdbd;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    font-family: "Fustat", sans-serif;
}
input::placeholder,
textarea::placeholder {
    font-family: "Fustat", sans-serif;
    
}

textarea {
    height: 100%;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0px;
}

.contact-form button {
    background: #222;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    
    transition: .25s;
    will-change: transform;
}
.contact-form button:hover {
    background: #111;
    transform:translateY(-2px) !important;
}
.submit-wrapper button{
    width: 100%;
}

@media (max-width: 768px) {
    .contact{
        padding: 0px 16px;
        padding-top: 20px;
        margin-bottom: 80px;
    }
    .contact-form{
        margin-top: 40px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        background-color: #f3f3f3;
        border-radius: 34px;
        padding: 16px;
        padding-bottom: 24px;
    }

    .row {
        flex-direction: column;
    }

    textarea {
        height: 220px;
    }
    
}



































.hero h1{
    font-size:clamp(2.5rem,8vw,4rem);
    line-height:1.3;
    font-weight:400;
    margin-bottom:24px;
    font-family: 'Playfair Display';
}

.wave{display:inline-block;transform-origin:70% 70%;animation:wave 2.4s infinite;}
  @keyframes wave{
    0%,60%,100%{transform:rotate(0deg);}
    10%{transform:rotate(14deg);}
    20%{transform:rotate(-8deg);}
    30%{transform:rotate(14deg);}
    40%{transform:rotate(-4deg);}
    50%{transform:rotate(10deg);}
  }

#herop{
    font-size:1.15rem;
    line-height:1.5;
    color:#000000;
    max-width:600px;
    margin:0 auto 40px;
}

.cta{
    background:#1B1B1B;
    color:#fff;
    font-size:1rem;
    transition:.25s;
}
.cta {
  opacity: 0;
  will-change: transform, opacity;
}

.cta:hover{
    opacity:.9;
    transform:translateY(-2px) !important;
}

.playfair{
    font-family:"Playfair Display",serif;
}


button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}















.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: popupShow 0.25s ease;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.close-popup {
    position: absolute;
    cursor: pointer;
    font-size: 25px;
}

@keyframes popupShow {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}








.work{
    max-width: 1120px;
    padding: 0px 60px;
    margin: 0 auto;
    margin-top: 100px;
    padding-top: 20px;
}
.work button{
    background:#1B1B1B;
    color:#fff;
    font-size:1rem;
    transition:.25s;
    will-change: transform, bakground;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.work button:hover{
    background: #000000;
    transform:translateY(-2px) !important;
}
.project-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.work-img-container{
    border-radius: 34px;
    overflow: hidden;
    height: 400px;
    display: flex;
    justify-content: center; /* Centers on X-axis */
}
.project-container img{
    height: 100%;
}
.project-container h3{
    font-size: 40px;
    font-weight: 500;
}
.project-container-text{
    display: flex;
    flex-direction: column;
}
.project-container button{
    margin-top: auto;
}
.project-container p{
    padding-bottom: 16px;
}
@media (max-width: 768px) {
    .project-container{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .project-container img{
        height: 100%;
    }
    .project-container h3{
        font-size: 30px !important;
        margin-bottom: 12px !important;
    }
    .work{
        padding: 20px;
    }
}
















.footer {
    padding: 70px 8%;
    padding-bottom: 30px;
    background: #111;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    
    
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    background: white;
    color: #111 !important;
    will-change: transform;
}
.footer-button:hover{
    text-decoration: none !important;
    transform:translateY(-2px) !important;
}


.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    color: #888;
}


@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}




















#ref-intro{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 60px;
    margin-top: 160px;
}
.ref-img-container{
    border-radius: 34px;
    overflow: hidden;
    height: 400px;
    display: flex;
    justify-content: center; /* Centers on X-axis */
}
#ref-intro h1{
    margin-bottom: 20px;
    font-size: 46px;
    font-family: "Playfair Display";
    font-weight: 500;
}
#ref-intro p{
    font-size: 18px;
}
@media (max-width: 768px) {
    #ref-intro{
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 100px;
    }
    #ref-intro h1{
        padding: 0px 16px;
    }
    #ref-intro p{
        padding: 0px 16px;
    }
    .ref-img-container{
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-radius: 0px;
    }
    #ref-intro h1{
        font-size: 30px;
    }
    #ref-intro p{
        padding-bottom: 0;
    }
}




#ref-color{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 60px;
    margin-top: 120px;
    text-align: center;
}
#ref-color p{
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 12px;
}
#ref-color svg{
    width: 600px;
    margin-top: 40px;
}
#ref-color img{
    border-radius: 34px;
    width: 100%;
    margin-top: 80px;
}
@media (max-width: 768px) {
    #ref-color{
        padding-left: 16px;
        padding-right: 16px;
    }
    #ref-color svg{
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 40px;
    }
    #ref-color img{
        margin-top: 20px;
        border: 1px solid rgb(174, 174, 174);
        border-radius: 26px;
    }
}




#ref-typo{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 60px;
    margin-top: 120px;
    text-align: center;
    margin-bottom: 160px;
}
#ref-typo p{
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 12px;
}
.typo-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 60px;
}
.typo-container svg{
    scale: .8;
}
.typo-2 svg{
    margin-top: 40px;
}
@media (max-width: 768px) {
    #ref-typo{
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 100px;
    }
    .typo-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .typo-container svg{
        scale: .6;
    }
    .typo-2 svg{
        margin-top: 20px;
    }
}





#ref-creatives{
    background-color: #151515;
}

.ref-creatives-inner{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 60px;
    padding-top: 80px;
    margin-top: 80px;
    padding-bottom: 120px;
    text-align: center;
    color: white;
}
.ref-creatives-inner p{
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 12px;
}
.creatives-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.creative-grid{
    
}
.creatives-grid .image-wrapper {
    border-radius: 24px;
    overflow: hidden;
}

.creatives-grid img {
    display: block;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    margin: -7px;
    object-fit: cover;
}
.iw1{
    grid-column: span 2;
}
.iw2{
    grid-column: span 1;
}
@media (max-width: 768px) {
    .ref-creatives-inner{
        padding-left: 16px;
        padding-right: 16px;
    }
    .creatives-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px

    }
    .iw1{
        grid-column: span 1;
    }
}
@media (max-width: 600px) {
    .creatives-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px

    }
}





#ref-other{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 60px;
    margin-top: 120px;
    text-align: center;
    align-items: center;
}
#ref-other img{
    width: 100%;
    margin-bottom: 100px;
    border-radius: 34px;
}
@media (max-width: 768px) {
    #ref-other{
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 0px;
    }
    #ref-other img{
        margin-bottom: 80px;
        border-radius: 0px;
    }
}