/* ================= ROOT ================= */

:root{
  --brand: #2F4DBA;
  --brand-2: #1F3A8A;
  --accent: #F2994A;
  --bg: #FFFFFF;
  --section-bg: #F7F8FC;
  --card: #FFFFFF;
  --text: #1F2937;
  --text-light: #6B7280;
  --button-bg: #3F455A;
  --border: #cbcdcf;
  --cta-dark: #1C1C1C;
  --cta-text: #FFFFFF;
  --glass: rgba(47,77,186,0.08);
  --line: #000;
  --radius: 10px;
  --font-sans: "Inter", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    padding-top: 80px !important;
}


.service-section{
    padding: 60px 0 30px;
}

.service-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


.service-hero{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.service-content{
    max-width: 900px;
}

.service-tag{
    font-size: 24px;
    color: var(--text);
    font-weight: 800;
    margin-bottom: 10px;
}

.service-title{
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.service-desc{
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}


.service-btn{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: var(--button-bg);
    color: var(--cta-text);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.service-btn:hover{
    background: var(--cta-dark);
}

.service-hero-img{
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    align-items: end;
    gap: 22px;
    margin-top: 40px;
}

.service-hero-img img{
    width: 100%;
    display: block;
    object-fit: cover;
    height: 270px;
}


.service-cont{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;
    margin-top: 70px;
}


.service-top p{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
 

.service-bottom{
    max-width: 900px;
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin: 0 auto;
}

.service-point{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
}

.service-dot{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e5e7eb;
    position: relative;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-dot::after{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111827;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-point p{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}


.logo-creative-section{
    max-width: 1500px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    padding:70px 0% 10px;
    overflow:hidden;
}



/* ================= service-sub  ================= */
.service-sub {
    display: flex;
    justify-content: space-between;
    gap: 180px;
    margin-top: 80px;
}

/* LEFT TEXT */
.service-left {
    flex: 1;
    max-width: 500px;
}

.service-left p {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text);
}

.service-subtext {
    margin-top: 10px;
    display: block; 
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text);
    text-align: justify;
}

/* RIGHT */
.service-right {
    flex: 1;
    max-width: 500px;
}

.service-right-txt{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 50px;
}

.service-heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text);
}


.service-img{
    max-width: 350px;
    margin: 0 auto;
}

.service-img img{
    width: 100%;
}

.service-image {
    display: flex;
    gap: 50px; 
    justify-content: space-evenly;
    flex: 1;
    text-align: center;
    margin-top: 50px;
}

.service-image img {
    max-width: 1200px;
    width: 500px;
}

/* LEFT SIDE */

.logo-left-area{
    flex:1;
    position:relative;
    display:flex;
    align-items:center;
}

.logo-big-d{
    font-size:520px;
    line-height:0.8;
    font-weight:800;
    margin:0;

    background-image:url('../assets/services/design/bg.jpeg');
    background-size:cover;
    background-position:center;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;
    color:transparent;
}

/* RED DOT */

.logo-red-dot{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#dc5148;
    position:absolute;
    bottom:70px;
    right:100px;
}

/* RIGHT SIDE */

.logo-right-area{
    flex:1;
    max-width:600px;
}

.logo-right-area h2{
    font-size:38px;
    line-height:1.35;
    font-weight:550;
    color:#111;
    margin-bottom:40px;
    letter-spacing:-1px;
}

.logo-right-area p{
    font-size:22px;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:50px;
    max-width:540px;
}

.creative-section{
    padding: 40px 0 80px;
}

.creative-title{
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 50px;
}

.creative-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* CARD */

.creative-card{
   max-width: 350px;
}

.creative-card img{
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    display: block;
}

.creative-card h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.creative-card p{
    font-size: 15px;
    font-weight: 550;
    line-height: 1.7;
    color: var(--text);
}


.service-detail{
    display: flex;
    gap: 150px;
    margin-top: 80px;
}

.detail-left{
    font-size: 30px;
    font-weight: 700;
    max-width: 450px;  
    line-height: 1.7;
    color: var(--text);
}

.detail-right{
    font-size: 16px;
    text-align: justify;
    color: var(--text);
    line-height: 1.7;
}

.workflow-wrapper {
    display: flex;
    gap: 180px;
    margin-top: 50px;
}

/* LEFT TEXT */
.workflow-left {
    position: sticky;
    top: 60px;
    flex: 1;
    max-width: 500px;
    align-self: flex-start;
    transition: transform 0.2s ease; 
}

.workflow-left p {
    
    font-size: 30px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text);
}


/* RIGHT */
.workflow-right {
    flex: 1;
    max-width: 480px;
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;  
    margin-bottom: 25px;
}


.workflow-section{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.workflow-heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text);
}

.workflow-item p {
    font-size: 16px;
    text-align: justify;
    color: var(--text);
    line-height: 1.7;
}




.illustration-section{
    padding: 60px 0 10px;
}

.illustration-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOP ================= */

.illustration-top{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 90px;
}

.illustration-left p{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.9;
    color: var(--text);
}

.illustration-right p{
    font-size: 18px;
    font-weight: 550;
    line-height: 1.9;
    color: var(--text);
}

/* ================= TITLE ================= */

.illustration-title{
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text);
}

/* ================= GRID ================= */

.illustration-grid{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* CARD */

.illustration-card{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.illustration-card img{
    width: 300px;
    height: 300px;
    object-fit: cover;
}

/* CONTENT */

.illustration-content{
    max-width: 260px;
}

.illustration-content h3{
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text);
}

.illustration-content p{
    font-size: 14px;
    color: var(--text-light);
}



.why-section {
  background: var(--bg);
  padding: 40px 0;
  font-family: var(--font-sans);
}

.why-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.why-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  margin-left: 40px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 50px;
}

/* ITEM */
.why-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
}

.why-item img{
    width: 300px;
    margin: 0 auto;
    align-content: center;
}


.why-item p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
  text-align: justify;
}


.offer-section{
    padding: 70px 0;
}

.offer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.offer-header{
    margin-bottom: 60px;
}

.offer-title{
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.offer-desc{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ================= GRID ================= */

.offer-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 90px;
}

/* CARD */

.offer-card-title{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 18px;
}

.offer-card-text{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    max-width: 480px;
}

.cta-section {
  background: var(--bg);
  padding: 30px 0 70px;
  font-family: var(--font-sans);
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.cta-eyebrow {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-title {
  max-width: 850px;
  font-size: 40px;

  font-weight: 800;
  line-height: 1.5;
  color: var(--text);
}

.word{
  position:relative;
  display:inline-block;
  cursor:pointer;
}

.word a{
  text-decoration:none;
  color:inherit;
}

.hero-line{
  position:absolute;
  left:5px;
  top: 55px;
  width:95%;
  height:14px;
}

.wave{
  stroke-dasharray:var(--len);
  stroke-dashoffset:0;
}

.u-line{
  fill:none;
  stroke:#696868;
  stroke-width:2;
}

/* hover → LTR */
.word.is-hover .wave{
  stroke:url(#rgb-gradient);
  animation:wave-ltr 3.2s ease forwards;
}

/* leave → RTL */
.word.is-leave .wave{
  stroke:url(#rgb-gradient);
  animation:wave-rtl 3.2s ease forwards;
}

/* reset */
.word.is-reset .wave{
  stroke:#696868;
  animation:none;
}


/* ================= KEYFRAMES ================= */

@keyframes wave-ltr{
  from{stroke-dashoffset:var(--len)}
  to{stroke-dashoffset:0}
}

@keyframes wave-rtl{
  from{stroke-dashoffset:0}
  to{stroke-dashoffset:var(--len)}
}


/* ================= LARGE DESKTOP ================= */

@media (min-width: 1025px) and (max-width: 1366px){

    .service-section {
        padding: 40px 0px;
    }

    .service-sub {
        gap: 60px;
    }

    .service-title{
        font-size: 46px;
    }

    .service-top p{
        font-size: 28px;
    }

    .service-bottom{
        gap: 50px;
    }

    .service-detail{
        gap: 70px;
    }

    .service-image img {
        max-width: 400px;
    }
    .creative-title{
        font-size: 32px;
    }

    .workflow-wrapper{
        gap: 80px;
    }

    .logo-big-d{
        font-size: 420px;
    }

    .logo-red-dot {
        right: 60px;
    }

    .logo-right-area h2{
        font-size: 32px;
        line-height: 1.25;
    }

    .logo-right-area p{
        font-size: 16px;
    }

    .illustration-left p {
        font-size: 21px;
    }

    .illustration-right p{
        font-size: 17px;
    }

    .illustration-title {
       font-size: 28px;
    }

    .workflow-left p {
        font-size: 28px;
    }
    
    .why-grid {
        gap: 40px;
    }

    .why-title {
        font-size: 38px;
    }

    .why-item img {
        width: 275px;
    }

    .why-item p {
        font-size: 15.5px;
    }
    
        .offer-section{
        padding: 60px 0;
    }

    .offer-title{
        font-size: 48px;
    }

    .offer-grid{
        gap: 60px 70px;
    }

    .offer-card-title{
        font-size: 26px;
    }

    .offer-card-text{
        font-size: 15px;
    }
}

/* ================= LAPTOP ================= */

@media (min-width: 769px) and (max-width: 1024px){


    .service-section {
        padding: 40px 0;
    }

    .service-sub{
        gap: 40px;
    }
    
   .service-title {
        font-size: 36px;
    }   

    .service-desc {
        font-size: 16px;
    }


    .service-subtext {
        font-size: 15px;
    }

    .service-left p {
         font-size: 26px;
    }

    .service-point p{
        font-size: 15px;
    }

    .service-cont{
        gap: 50px;
    }

    .service-top p{
        font-size: 23px;
    }

    .service-bottom{
        flex-direction: row;
        gap: 30px;
    }

    .service-right-txt{
        font-size: 26px;
    }

    .service-img {
        max-width: 300px;
    }

    .service-image {
        gap: 20px ;
    }

    .service-image img {
        max-width: 340px;
    }

    .service-detail{
        flex-direction: row;
        gap: 35px;
        margin-top: 60px;
    }

    .detail-left{
        max-width: 100%;
        font-size: 24px;
        line-height: 1.5;
    }

    .detail-right{
        font-size: 15px;
    }

    .workflow-wrapper{
        gap : 31px;
        margin-top: 50px;
    }


    .workflow-left{
        position: sticky;
    }

    .workflow-left p{
        font-size: 24px;
        line-height: 1.5;
    }

    .workflow-right{
        max-width: 100%;
    }

    .workflow-item p{
        font-size: 15px;
    }

    .logo-creative-section {
        gap: 20px;
    }

    .logo-big-d{
        font-size: 380px;
        letter-spacing: -10px;
    }

    .logo-red-dot{
        width: 60px;
        height: 60px;
        right: 40px;
        bottom: 10px;
    }

    .logo-right-area h2{
        font-size: 25px;
    }

    .logo-right-area p{
        font-size: 15px;
        line-height: 1.7;
    }

    .creative-section {
       padding: 40px 0 50px;
    }

    .creative-card {
        max-width: 300px;
    }

    .creative-title{
        font-size: 32px;
    }

    .creative-card h3{
        font-size: 20px;
    }

    .illustration-left p {
        font-size: 20px;
    }

    .illustration-right p {
        font-size: 16px;
    }

    .illustration-title {
       font-size: 26px;
    }

    .illustration-content h3 {
        font-size: 26px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .why-title {
        font-size: 34px;
    }

    .why-item:last-child {
        grid-column: span 3;
    }

    .why-item img {
        width: 275px;
    }

    .why-item p {
        font-size: 15px;
    }


     .offer-section{
        padding: 55px 0;
    }

    .offer-header{
        margin-bottom: 50px;
    }

    .offer-title{
        font-size: 42px;
    }

    .offer-desc{
        font-size: 15px;
    }

    .offer-grid{
        gap: 50px 50px;
    }

    .offer-card-title{
        font-size: 24px;
    }

    .offer-card-text{
        font-size: 14.5px;
    }


    .cta-section{
        padding-top: 10px;
    }

    .cta-title {
        font-size: 34px;
    }

    .hero-line {
        top: 45px;
    }

}

/* ================= TABLET ================= */

@media (min-width: 601px) and (max-width: 768px){

    .service-section{
        padding: 50px 0;
    }

    .service-title{
        font-size: 36px;
    }

    .service-sub {
        flex-direction: column;
        gap: 0px;
        margin-top: 35px; 
    }

    .service-title {
        font-size: 32px;
        
    }

    .service-left p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .service-left{
        max-width: fit-content;
    }

    .service-right{
        max-width: fit-content;
    }

    .service-right-txt {
        font-size: 26px;
    }

    .service-point p {
        font-size: 15px;
    }

    .service-bottom p {
        font-size: 15px;
    }

    .service-cont{
        flex-direction: column;
        gap: 40px;
        margin-top: 50px;
    }

    .service-top p{
        font-size: 21px;
        text-align: left;
    }

    .service-bottom {
        gap: 20px;
    }

    .service-img{
        display: none;
    }

    .service-image {
        flex-direction: column ;
        align-items: center ;
        gap: 25px;
    }

    .service-image img {
        width: 100%;
        max-width: 400px ;
    }

    .service-left {
        position: static ;
        top: auto ;
    }

    .logo-creative-section{
        flex-direction:column;
        gap:40px;
        padding:60px 0px 0px;
    }

    .logo-left-area{
        width:50%;
        justify-content: space-evenly;
    }

    .logo-big-d{
        font-size:220px;
    }

    .logo-red-dot{
        width:45px;
        height:45px;
        bottom:20px;
        right:20px;
    }

    .logo-right-area{
        max-width:100%;
    }

    .logo-right-area h2{
        font-size:30px;
        font-weight: 520px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .logo-right-area p{
        font-size:16px;
        line-height:1.8;
        max-width: 100%;
        margin-bottom: 0;
        text-align: justify;
    }

    .creative-section{
        padding: 20px 0 70px;
    }

    .creative-card {
        max-width: 250px;
    }

    .creative-title{
        font-size: 28px;
        margin-bottom: 40px;
    }

    .creative-grid{
        column-gap: 20px;
        row-gap: 50px;
    }

    .creative-card h3 {
        font-size: 18px;
    }

    .creative-card p {
        font-size: 14px;
    }

    .workflow-wrapper{
        flex-direction: column;
        margin-top: 5px;
        gap: 30px;
    }

    .workflow-left{
        position: static;
        max-width: 100%;
    }

    .workflow-left p{
        font-size: 26px;
    }

    .workflow-heading {
    font-size: 18px;
    }

    .workflow-right{
        max-width: 100%;
    }

     .service-hero-img{
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-hero-img img{
        height: 250px !important;
    }

    .illustration-section {
        padding: 30px 0 10px;
    }

    .illustration-top{
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .illustration-left p,
    .illustration-right p{
        font-size: 16px;
    }

    .illustration-card{
        gap: 50px;
    }

    .illustration-card img{
        width: 180px;
        height: 180px;
    }

    .illustration-content h3{
        font-size: 22px;
    }

    .why-grid{
       grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-item{
        max-width: 250px;
    }


    .why-item:last-child {
        grid-column: span 3;
    }

    .why-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .why-item img{
        width: 250px;
    }

    .why-item p {
        font-size: 15px;
    }


    .offer-section{
        padding: 20px 0 50px;
    }

    .offer-header{
        margin-bottom: 45px;
    }

    .offer-title{
        font-size: 38px;
    }

    .offer-desc{
        font-size: 14px;
        max-width: 100%;
    }

    .offer-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .offer-card-title{
        font-size: 22px;
        margin-bottom: 14px;
    }

    .offer-card-text{
        font-size: 14px;
        line-height: 1.7;
    }


    .cta-section {
        padding-top: 10px;
    }

    .cta-title {
        font-size: 26px;
    }

    .hero-line{
      top: 35px;
    }

}

/* ================= LARGE MOBILE ================= */

@media (min-width: 481px) and (max-width: 600px){

    .service-hero {
        flex-direction: column;
    }

    .service-sub {
        flex-direction: column;
        gap: 0px;
        margin-top: 35px; 
    }

    .service-left p {
       font-size: 22px;
       margin-bottom: 30px;
    }

    .service-point p{
        font-size: 14px;
    }

    .service-bottom p {
        font-size: 20px;
    }


    .service-section{
        padding: 45px 0 0px;
    }

    .service-title{
        font-size: 32px;
    }

    .service-desc{
        font-size: 14px;
    }

    .service-cont{
        flex-direction: column;
        gap: 35px;
        margin-top: 45px;
    }

    .service-top p{
        font-size: 18px;
        font-weight: 550;
        text-align: left;
    }

    .service-bottom {
        flex-direction: column;
        gap: 0px;
    }

   .service-right-txt {
        font-size: 22px;
    }
    
    .service-img {
        display: none;
    }

    .service-point p{
        font-size: 14px;
    }


    .service-right-txt {
        font-size: 24px;
    }

    .service-image {
        flex-direction: column ;
        align-items: center ;
        gap: 25px;
    }

    .service-image img {
        width: 100% ;
        max-width: 350px;
    }

    .logo-creative-section {
        padding: 50px 0 10px;
    }

    .logo-left-area{
        display: none;
    }

    .logo-right-area h2{
        font-size: 26px;
    }

    .logo-right-area p{
        font-size: 15px;
        line-height: 1.7;
       margin-bottom: 0px;
    }

    .creative-section{
        padding: 10px 0 20px;
    }

    .creative-card {
        max-width: 200px;
    }


    .creative-title{
        font-size: 26px;
        margin-bottom: 30px;
    }

    .creative-grid{
        gap: 30px;
    }

    .creative-card h3{
        font-size: 16px;
    }

    .creative-card p{
        font-size: 13px;
    }

    .workflow-wrapper {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .workflow-heading {
        font-size: 14px;
    }

    .workflow-left{
        position: static;
    }

    .workflow-left p{
        font-size: 28px;
    }

    .workflow-heading {
        font-size: 18px;
    }

    .workflow-right{
        max-width: 100%;
        margin-bottom: 20px;
    
    }

    .workflow-item p {
        font-size: 15px;
    }

    .service-hero-img {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-hero-img img{
        height: 200px !important;
    }


    .illustration-section{
        padding: 50px 0 10px;
    }

    .illustration-top{
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px;
    }

    .illustration-left p,
    .illustration-right p{
        font-size: 15px;
        line-height: 1.8;
    }

    .illustration-title{
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .illustration-grid{
        gap: 35px;
    }

    .illustration-card{
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .reverse-card{
        flex-direction: column-reverse;
    }


    .illustration-card img{
        width: 100%;
        max-width: 240px;
        height: auto;
    }

    .illustration-content{
        max-width: 320px;
    }

    .illustration-content h3{
        font-size: 22px;
        margin-bottom: 10px;
    }

    .illustration-content p{
        font-size: 13px;
    }

    .why-container{
        padding: 0;
    }

    .why-section {
        padding: 50px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-item img {
        width: 325px;
    }

    .why-item p {
        font-size: 14px;
    }


    .offer-section{
        padding: 20px 0 50px;
    }

    .offer-header{
        margin-bottom: 40px;
    }

    .offer-title{
        font-size: 34px;
        margin-bottom: 14px;
    }

    .offer-desc{
        font-size: 14px;
        line-height: 1.7;
    }

    .offer-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .offer-card-title{
        font-size: 21px;
        margin-bottom: 12px;
    }

    .offer-card-text{
        font-size: 14px;
        line-height: 1.7;
    }


    .cta-section{
        padding-top: 0px;
    }

    .cta-title {
        font-size: 26px;
        line-height: 1.8;
    }

    .hero-line {
        top: 38px;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 480px){

    .service-hero {
        flex-direction: column;
    }

    .service-sub {
        flex-direction: column;
        gap: 0px;
       margin-top: 35px; 

    }

    .service-left p {
         font-size: 18px;
        margin-bottom: 30px;
    }

    .service-point p{
        font-size: 144px;
    }

    .service-bottom p {
        font-size: 18px;
    }

    .service-img img {
        display: none;
    }


    .service-section{
        padding: 40px 0 0px;
    }

    .service-title{
        font-size: 28px;
        line-height: 1.3;
    }

    .service-desc{
        font-size: 14px;
    }

    .service-cont{
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .service-top p{
        font-size: 16px;
        text-align: left;
        font-weight: 550;
    }

    .service-bottom {
        flex-direction: column;
        gap: 0;
    }
    .service-point p{
        font-size: 14px;
    }

    .service-right-txt {
        font-size: 22px;
    }

    .service-image {
        flex-direction: column ;
        align-items: center ;
        gap: 25px;
    }

    .service-image img{
        max-width: 300px;
    }

   .logo-creative-section {
        padding: 40px 0 10px;
    }

    .logo-left-area{
        display: none;
    }

    .logo-right-area h2{
        font-size: 22px;
    }

    .logo-right-area p{
        font-size: 14px;
        line-height: 1.7;
       margin-bottom: 0px;
    }

    .creative-section{
        padding: 0 0 50px;
    }

    .creative-card {
        max-width: 300px;
    }

    .creative-title{
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .creative-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .creative-card h3{
        font-size: 16px;
    }

    .creative-card p{
        font-size: 13px;
    }

    .workflow-wrapper {
        flex-direction: column;
        gap: 30px;
        margin-top: 10px;
        
    }

    .workflow-left{
        position: static;
    }

    .workflow-left p{
        font-size: 26px;
    }

    .workflow-heading {
        font-size: 16px;
    }

    .workflow-right{
        max-width: 100%;
        margin-bottom: 20px;
    }

    .workflow-item p {
        font-size: 14px;
    }

    .service-hero-img{
       grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 410px;

    }

    .illustration-section{
        padding: 40px 0 10px;
    }

    .illustration-top{
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px
    }

    .illustration-left p,
    .illustration-right p{
        font-size: 15px;
        line-height: 1.8;
    }

    .illustration-title{
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 35px;
    }

    .illustration-card{
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .reverse-card{
        flex-direction: column-reverse;
    }

    .illustration-card img{
        width: 100%;
        max-width: 220px;
        height: auto;
    }

    .illustration-content h3{
        font-size: 20px;
    }

    .illustration-content p{
        font-size: 13px;
    }
   
    .why-container{
        padding: 0;
    }

    .why-section {
        padding: 40px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: left;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }

    .offer-section{
        padding: 20px 0 40px;
    }

    .offer-header{
        margin-bottom: 35px;
    }

    .offer-title{
        font-size: 30px;
        margin-bottom: 12px;
    }

    .offer-desc{
        font-size: 13.5px;
        line-height: 1.7;
    }

    .offer-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer-card-title{
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .offer-card-text{
        font-size: 13.5px;
        line-height: 1.7;
    }

    
    .cta-section{
        padding-top: 0px;   
    }

    .cta-title {
        font-size: 25px;
        line-height: 1.8;
    }

    .hero-line {
        top: 40px;
    }
}