body {
  font-family: 'Inter';
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: white;
}
.naver{
    
    background-color: white;
    /*box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.08);*/
    position: sticky;
    top: 0;
    z-index:1000;
    
}

.header{
    display:flex;
    min-height:80px;
    align-items:center;
    padding:0 15px;
    justify-content:space-between;
    margin: auto;
    max-width: 1200px;
}
.header .logo {
    height:24px;
    box-sizing: border-box;
}

.header nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.header nav a{
    text-decoration:none;
    color:black;
    font-weight:500;
    font-size:16px;
}

.header nav .call-btn{
    border:none;
    border-radius:5px;
    color:white;
    font-weight:500;
    font-size:16px;
    padding:10px 16px;
    background:#D84040;
    transition: all 0.3s ease;
    cursor: pointer;
    
}

.intro-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:20px;
    margin-top:32px;
    max-width:1440px;
    margin:auto;
    position: relative;
    font-family:'Nunito';
    max-height:900px;
}

.intro-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    /*position: absolute;*/
    
}
.animation-section {
    position: absolute;
    height: 600px;
    padding-top: 100px;
    flex-grow: 1;
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin: auto;
    z-index: -1;
}
.ball {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter:blur(100px);
    margin: 0 20px;
}


.ball1 {
    background-color: #FFCC70;
    animation: moveUpDown1 4s infinite alternate;
}


.ball2 {
    background-color: #C850C0;
    animation: moveUpDown2 4s infinite alternate;
}


@keyframes moveUpDown1 {
    0% {
        transform: translateY(100px);
    }
    50%{
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}


@keyframes moveUpDown2 {
    0% {
        transform: translateY(-100px);
    }
    50%{
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}
.intro-section .dec-spikes{
  box-sizing: border-box;
  height:60px;
  margin-left:70px;
    
}

.intro-section span{
    font-size:40px;
    color:black;
    font-weight:800;
}

.intro-section span .highlights{
    color:#D84040;
}

.intro-section .description{
    font-weight:400;
    font-size:20px;
    color:black;
    margin:36px 0;
    text-align:center;
}


.intro-section .ill-home-main{
  box-sizing: border-box;
  height:450px;
  padding: 0 32px;
  max-width:100%;
    
}



/***********************************************************************who we are*/

.who-we-are{
    display:flex;
    gap:50px;
    max-width:1200px;
    margin:auto;
    margin-top:140px;
    padding:26px;
    font-family:'Nunito';
}



.profile-carousel {
  display: flex;
  gap: 10px;
  width:100%;
  width: 500px;
}

.profile-carousel .card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
  cursor: pointer;
  width: 80px;
  height: 360px;
}

.profile-carousel .card img {
  box-sizing: border-box;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.profile-carousel .card .card-text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6); 
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
  pointer-events: none;
  opacity: 1; /* Initially visible */
  transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

.profile-carousel .card:hover .card-text {
  opacity: 1;
}

.profile-carousel .card:hover {
  width: 300px;
}

.profile-carousel .card:not(:hover):not(.three) {
  width: 80px;
}

.profile-carousel .card:not(:hover):not(.three) .card-text{
 opacity: 0;
}

.profile-carousel .three {
  width: 300px;
}

.profile-carousel .three .card-text {
  opacity: 1;
}

.profile-carousel .one:hover ~ .three,
.profile-carousel .two:hover ~ .three {
  width: 80px;
}

.profile-carousel .one:hover ~ .three .card-text,
.profile-carousel .two:hover ~ .three .card-text{
  opacity: 0;
}



.who-we-are .content{
    flex:1;
    display:flex;
    flex-direction:column;
    min-width:400px;
    max-width: 960px;
    
}
.who-we-are .content .title{
    font-size:36px;
    font-weight:500;
    color:black;
}
.who-we-are .content .description{
    font-size:18px;
    font-weight:400;
    color:black;
    margin-top:26px;
    display: -webkit-box;
    text-align: justify;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.who-we-are img {
    max-width: 400px;
    max-height: 320px;
    display: block;
    margin: auto;
    object-fit: cover;
}



/***********************************************************************what we do*/
.what-we-do{
 width:100%;   
 max-width:1220px;
 margin:auto;
 display:flex;
 flex-direction:row;
 font-family:'Nunito';
 margin-top:160px;
}

.what-we-do .content{
    display:flex;
    flex-direction:column;
    max-width:340px;
    padding:26px;
}

.what-we-do .content .title{
    font-size:36px;
    font-weight:500;
    
}

.what-we-do .content .description{
    margin-top:20px;
    
}

.what-we-do .content button{
    background:white;
    border: #D84040 solid 1px;
    border-radius:5px;
    font-size:16px;
    color:#D84040;
    padding:10px 20px;
    display:block;
    margin:20px auto 0 0;
    cursor: pointer;
    
}
.what-we-do .content button:hover{
    background:#D84040;
    color:white;
    transition: all 0.3s ease;
    
}

.what-we-do .services{
    display:flex;
    flex-direction:column;
    flex:1;
    gap:24px;
    margin-right:26px;
}

.what-we-do .services .service-card-row{
    display:flex;
    flex-direction:row;
    gap:24px;
}

.what-we-do .services .service-card{
    flex:1;
    display:flex;
    flex-direction:column;
    height:100px;
    background:white;
    min-height:200px;
    padding:20px;
    color:black;
    border-radius:10px;
    max-width:400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: bottom left;
    box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.08);
}
.what-we-do .services .service-card-highlight{
    flex:1;
    display:flex;
    flex-direction:column;
    height:100px;
    min-height:200px;
    padding:20px;
    border-radius:10px;
    max-width:400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: bottom left;
    box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.08);
    transform: rotate(-1.5deg);    
    background:#D84040;
    color:white;
}


.what-we-do .services .service-card:hover{
    /*background:#D84040;*/
    /*color:white;*/
    /*transform: rotate(-1.5deg); */
    transform: translateY(-5px); /* scale instead of width change for better performance */
  /*transition: transform 0.3s ease-in-out;*/
    
}
.what-we-do .services .service-card .head, .what-we-do .services .service-card-highlight .head{
    display:flex;
    align-items:center;
    gap:10px;
}
/*.what-we-do .services .service-card:hover .head .icon{*/
/*    fill:white;*/
    
/*}*/
.what-we-do .services .service-card .head .icon, .what-we-do .services .service-card-highlight .head .icon{
    height:30px;
    width:30px;
    fill:black;
    
}
.what-we-do .services .service-card .head .title, .what-we-do .services .service-card-highlight .head .title{
    font-size:20px;
    font-weight:500;
    
}

.what-we-do .services .service-card .description, .what-we-do .services .service-card-highlight .description{
    margin-top:16px;
}

.what-we-do .services .service-card .readmore, .what-we-do .services .service-card-highlight .readmore{
    margin-top:auto;
}


/***********************************************************************our projects*/

.our-projects{
    display:flex;
    flex-direction:column;
    margin:auto;
    margin-top:100px;
    max-width: 1200px;
    font-family:'Nunito';
    display: flex;
    flex-direction: column;
}

.our-projects .content{
    display:flex;
    flex-direction:column;
    text-align:right;
    padding: 0 26px;
}

.our-projects .content .title{
    font-size: 32px;
    font-weight:600;
    color:black;
}

.our-projects .content .description{
    font-size: 20px;
    font-weight:400;
    color:black;
}

.our-projects .content .seemore{
    font-size: 20px;
    font-weight:500;
    color:#D84040;
    margin-top:12px;
    cursor: pointer;
}

.our-projects .projects-grid{
    display:flex;
    flex-wrap: wrap;
    margin: 0 26px;
    margin-top: 48px;
    gap: 12px;
    justify-content: space-around;
}

.our-projects .projects-grid img{
    max-width: 500px;
    border-radius: 15px;
    padding: 16px 0;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.08);
}



/***********************************************************************cloud to cutomers*/

.cloud-to-customers{
    display:flex;
    max-width:1200px;
    margin:auto;
    justify-content:space-around;
    width:100%;
    margin-top:100px;
    font-family:'Nunito';
    align-items:center;
}


.cloud-to-customers .content{
    display:flex;
    flex-direction:column;
    padding:26px;
    
}

.cloud-to-customers .content .ill_from_to_arrow{
    margin-left:230px;
    width:150px;
    box-sizing: border-box;
}

.cloud-to-customers .content span{
    font-size:40px;
    font-weight:800;
    color:black;
    
}
.cloud-to-customers .content .highlights{
    color:#D84040;
}

.cloud-to-customers .content .contact{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
}

.cloud-to-customers .content .contact .info-row{
    display:flex;
    align-items:center;
    gap:4px;
}

.cloud-to-customers .content .contact .divider{
    height:16px;
    width:1px;
    background:#888888;
}
.cloud-to-customers .content .contact .info-row img{
    box-sizing: border-box;
    width:20px;
    height:20px;
}

.cloud-to-customers .content .contact .info-row span{
    font-size:14px;
    color:#888888;
    font-weight: 400;
}

.cloud-to-customers .content button{
    margin:16px auto 0 0;
    background:#D84040;
    color:white;
    border:none;
    border-radius:5px;
    padding:10px 16px;
    font-weight:400;
    font-size:16px;
    cursor: pointer;
}
.cloud-to-customers .ill-contact-info{
    box-sizing: border-box;
    width:500px;
}



/***********************************************************************footer*/
footer{
    display:flex;
    flex-direction:column;
    max-width:1200px;
    width:100%;
    margin:auto;
    margin-top:100px;
    margin-bottom:26px;
}

footer .divider{
    width:100%;
    height:3px;
    background:#EEEEEE;
    border-radius:10px;
}

footer .content{
    display:flex;
    justify-content:space-between;
    margin:36px 0;
}

footer .content .company-info{
    display:flex;
    flex-direction:column;
    max-width:300px;
    padding:22px;
}

footer .content .company-info .company{
    display:flex;
    flex-direction:row;
    gap:10px;
}


footer .content .company-info .company img{
    
    box-sizing: border-box;
    width:40px;
    height:40px;
    border:2px solid black;
    padding:4px;
    border-radius:5px;
}

footer .content .company-info .company .name .title{
    font-size:20px;
    font-weight:500;
    color:black;
}
footer .content .company-info .company .name{
    display:flex;
    flex-direction:column;
}

footer .content .company-info .company .name .description{
    font-size:12px;
    font-weight:400;
    color:#888888;
}

footer .content .company-info .address{
    font-size:14px;
    font-weight:400;
    color:#888888;
    margin-top:20px;
}

footer .content .others{
    display:flex;
    gap: 22px;
}

footer .content .others .pages, footer .content .others .help{
    display:flex;
    flex-direction:column;
    margin:0 22px;
    gap:6px;
} 

footer .content .others .pages h2, footer .content .others .help h2{
    font-size: 16px;
}

footer .content .others .pages a, footer .content .others .help a{
    
    text-decoration:none;
    color:#888888;
}

footer .copy-right{
    display:flex;
    align-items:center;
}
footer .copy-right span{
    box-sizing: border-box;
    display: block;
    min-width:500px;
    text-align:center;
    font-size:14px;
    color:#888888;
}


@media (max-width: 600px) {
    .header nav a{
        display:none;
    }
    
    .intro-section span{
        font-size:30px;
    }
    
    .ball{
        width: 120px;
        height: 120px;
        filter:blur(60px);
    }
    .intro-section .ill-home-main{
        height:300px;
    }
    
    .who-we-are{
        margin-top:48px;
        flex-wrap:wrap-reverse;
        gap:26px;
    }
    .profile-carousel {
      width: 300px;
    }
    
    .who-we-are .profile-carousel{
        margin:auto;
    }
    .who-we-are .content{
        flex:none;
        width:100%;
        min-width:auto;
        text-align:center;
    }

     .what-we-do {
        flex-wrap:wrap;
        margin-top: 48px;
        
    }
        
    .what-we-do .content{
        margin:auto;
    }
    .what-we-do .content span{
        text-align:center;
    }
    .what-we-do .content button{
        margin: 20px auto;
    }
    .what-we-do .services{
        min-width:auto;
        margin:20px;
    }  
    .what-we-do .services .service-card-row{
        margin:auto;
        flex-wrap:wrap;
    }
    
    .what-we-do .services .service-card{
        min-width:260px;
        margin:auto;
    }
    
    .what-we-do .services .service-card-highlight{
        min-width:260px;
        margin:auto;
    }
    .cloud-to-customers{
        text-align:center;
        margin-top:48px;
    }
    .cloud-to-customers .content .ill_from_to_arrow{
        width:100px;
        margin-left:140px;
    }
    .cloud-to-customers .content span{
        font-size:24px;
    }
    .cloud-to-customers .content .contact{
        flex-direction:column;
        justify-content:center;
    }
    .cloud-to-customers .content .divider{
        display:none;
    }
    .cloud-to-customers .content button{
        margin:16px auto;
    }
    .cloud-to-customers .ill-contact-info{
        display:none;
    }
    .our-projects .content{
        text-align:center;
    }
    .our-projects .projects-grid img{
        max-width: 100%;
    }
        
    footer .copy-right span{
        min-width:300px;
    }
    
    footer .content{
        flex-wrap: wrap;
    }
    
    footer .content .company-info{
        min-width: 200px;
        margin: auto;
        text-align: center;
    }
    
    footer .content .company-info .company{
        flex-direction: column;
        align-items: center;
        
    }
    
    footer .content .others{
        min-width: 300px;
        flex-direction: column;
        margin: auto;
        text-align: center;
    }
       

}


@media (min-width: 600px) and (max-width: 800px) {
    
    .who-we-are {
        display: flex;
        flex-wrap: wrap-reverse;  
        justify-content: center;
    }
    
    .who-we-are .content{
        min-width:100%;
        
    }
    
    .who-we-are .content .title{
        text-align:center;
    }
    
    .who-we-are .content .description{
        -webkit-line-clamp: 16;
        font-size:16px;
        margin-top:15px;
        text-align:center;
    }
    .what-we-do {
        flex-wrap:wrap;
    }
    .what-we-do .content{
        margin:auto;
    }
    .what-we-do .content span{
        text-align:center;
    }
    .what-we-do .content button{
        margin: 20px auto;
    }
    .what-we-do .services{
        min-width:400px;
        margin:26px;
    }    
    .what-we-do .services .service-card-row{
        margin:auto;
        flex-wrap:wrap;
    }
    
    .what-we-do .services .service-card{
        min-width:400px;
        margin:auto;
    }
    .what-we-do .services .service-card-highlight{
        min-width:400px;
        margin:auto;
    }
    .our-projects .content{
        text-align:center;
    }

    .our-projects .projects-grid img{
        max-width: 360px;
    }
    .cloud-to-customers .content .ill_from_to_arrow{
        width:150px;
        margin-left:140px;
    }
    .cloud-to-customers .content span{
        font-size:36px;
    }
    
    footer .copy-right span{
        min-width:300px;
    }
    
    footer .content{
        flex-wrap: wrap;
    }
    
    footer .content .company-info{
        min-width: 260px;
        margin: auto;
        text-align: center;
    }
    
    footer .content .company-info .company{
        flex-direction: column;
        align-items: center;
        
    }
    
    footer .content .others{
        min-width: 440px;
        flex-direction: column;
        margin: auto;
        text-align: center;
    }
    


}

@media (min-width: 800px) and (max-width: 1100px) {
    
    .who-we-are {
        display: flex;
        flex-wrap: wrap-reverse;  
        justify-content: center;
    }    
    .who-we-are .content .title{
        text-align:center;
    }
    
    .who-we-are .content .description{
        -webkit-line-clamp: 16;
        font-size:16px;
        margin-top:15px;
        text-align:center;
    }
    
    .what-we-do {
        flex-wrap:wrap;
    }
    
    .what-we-do .content{
        margin:auto;
    }
    .what-we-do .content span{
        text-align:center;
    }
    .what-we-do .content button{
        margin: 20px auto;
    }
    
    .what-we-do .services{
        min-width:550px;
        margin:26px;
    }
    
    .what-we-do .services .service-card-row{
        margin:auto;
    }
    

    .our-projects .projects-grid img{
        max-width: 300px;
    }
    
    .cloud-to-customers{
        text-align:center;
    }
    .cloud-to-customers .content .contact{
        justify-content:center;
    }
    .cloud-to-customers .content button{
        margin:16px auto;
    }
    .cloud-to-customers .ill-contact-info{
        display:none;
    }
    

}























































