header { 
    display:flex;
    justify-content: space-between;
    align-items: center;
    position:fixed;
    width:100%;
    height:80px;
    top:0;
    left:0;
    z-index:99;
    padding: 0 60px;
    background:#fff;
    transition: box-shadow 0.3s ease;
    
}
header.scrolled {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}
header ul {
    display:flex;
    justify-content: center;
    align-items: center;
    gap:60px;
}
header ul li.on a {
    font-weight:700;
    color:#1A73E8;
}
header h1 a {
    font-size:32px;
    font-weight:500;
    letter-spacing: -0.03em;
}
header h1 img { 
    height:50px;
}
.global-menu {
    display:none;
}
.hamburger {
    display:none;
}
.bar { 
    width: 100%; 
    height: 4px; 
    background-color: #fff; 
    position: absolute; 
    transition: all 0.3s; 
} 
.bar:nth-child(1) { 
    top: 0; 
    transition: all 100ms ease-in-out;
} 
.bar:nth-child(2) { 
    top: 14px; 
    transition: all 200ms ease-in-out;
} 
.bar:nth-child(3) { 
    top: 28px; 
    transition: all 200ms ease-in-out;
} 
.hamburger.active .bar:nth-child(1) { 
    transform: rotate(45deg); 
    top: 14px; 
} 
.hamburger.active .bar:nth-child(2) { 
    opacity: 0; 
} 
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg); 
    top: 14px; 
}

@-webkit-keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }
  
  @keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 85%;
    }
    100% {
      width: 100%;
    }
  }

main, footer {
    font-family:"Montserrat","Pretendard Variable", Pretendard;
}
.main-visual {
    padding:0;
}
.swiper-wrapper .mov:before {
    content:'';
    display:block;
    position:absolute;
    z-index:2;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
}
.swiper1 .swiper-slide {
    width:100%;
    height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    -webkit-backface-visibility:hidden;backface-visibility:hidden;
}
.swiper1 .swiper-slide .pbg {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
}
.swiper1 .swiper-slide .inner { 
    z-index:5;
}
.swiper1 .swiper-slide span {
    display:block;
    font-size:1.5rem;
    font-weight:400;
    color:#fff;
    margin-bottom:16px;
}
.swiper1 .swiper-slide p {
    font-size:4rem;
    line-height:5.5rem;
    font-weight:700;
    color:#fff;
}






.swiper1 video {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.swiper1  .bg2 {
    display:block;
    position:absolute;
    width:100%;
    height:100%;
    background:url(../img/bg2.jpg) no-repeat center center / cover;
}
.swiper1  .bg3 {
    background:url(../img/bg3.jpg) no-repeat center center / cover;
}
.homepage .bg-box {
    display:block;
    position:relative; 
    padding:100px 80px;
    border-radius: 24px;
    background:linear-gradient(81deg,#ebffe7 -31.03%,#d6f0ff 101.67%)
}
.homepage h2 {
    margin-bottom:16px;
}
.homepage .bg-box p:not(.subtitle) {
    font-size:24px;
    font-weight:600;
    line-height:36px;
}
.homepage .mockup {
    position:absolute;
}
.homepage .mockup.pc {
    width:28vw;
    right:-5%;
    top:20%;
    transform: rotate(10deg);
    z-index:3;
}
.homepage .mockup.mobile {
    width:35vw;
    right:8%;
    top:-24%;
    transform:rotate(-8deg);
}

footer {
    width:100%;
    max-width:1920px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    position:relative;
    padding:90px 90px 90px 90px;
    margin:0 auto;
}
footer ul{
    display:flex;
    align-items:center;
    justify-content: flex-start;
    gap:24px;
    width:100%;  
    color:#666;
}
footer ul li a {
    line-height:1.8em;
}
footer ul li p {
    font-size:14px;
    font-weight:700;
}
footer ul li img {
    display:inline-block;
    width:30px;
    margin-right:8px;
}
footer h3 {
    font-size:18px;
    line-height:1.4em;
    color:#222;
}
footer .right {
    text-align: right;
}
footer .right a { 
    display:block;
    font-size:26px;
    font-weight:600;
    letter-spacing: -.03em;
    margin-bottom:40px;
}
footer .right p {
    line-height:1.8em;
}
footer span {
    display:block;
    line-height:1.8em;
    margin-right:30px;
}
.footer_logo {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.footer_logo img {
    display:block;
	height:50px;
    margin-bottom:40px;
}
footer .copyright {
    margin-top:40px;
    color:#666;
    font-size:12px;
}

section {
    display: block;
    padding:150px 0;
}

.inner {
    position:relative;
    padding: 0 12%;
    width:100%;
}

.overview .subtitle {
    display:block;
    margin:0 auto;
}

.overview ul {
	display:flex;
	justify-content:space-evenly;
	align-content: flex-start;
	width:100%;
	margin-top:60px;
    gap:36px;
}
.overview ul li {
	width: 25%;
    transition: transform 0.2s ease;
}
.overview ul li:hover {
    transform: translateY(-15px);
}
.overview ul li img {
	display:block;
	margin:0 auto;
	width:100%;
    border-radius: 16px;
    box-shadow: rgba(0,0,0,.1) 0px 0px 20px -1px;
}
.overview ul li p {
    display:block;
    text-align: center;
    margin-top:24px;
}
.faq { 
    background:#f2f2f2;
}
.faq ul {
    margin-top:60px;
}
.faq ul li {
    width:100%;
    background:#fff ;
    border-radius: 24px;
    margin-bottom:24px;
}

.faq ul li button {
    display:block;
    width:100%;
    border:none;
    outline: none;
    background:url(../img/arrow_down.png) no-repeat right 24px center;
    font-size:24px;
    text-align: left;
    cursor:pointer;
    padding:24px;
}

.faq ul li button.open {
    background:url(../img/arrow_up.png) no-repeat right 24px center;
}
.faq ul li button.open p {
    color:#0540F2
}

.faq ul li .answer {
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease, padding 0.3s ease; 
    padding: 0 24px; 
}
.faq ul li .answer p {
    color:#5C6373;
}
.faq ul li .answer.open {
    border-top:1px solid #eee;
    padding:24px;
}


.layer1 {
    position:sticky;
    top:0;
}
.layer2 { 
    display:block;
    position:relative;
    overflow: hidden;
    padding:270px 0;
    color:#fff;
    background:#222;
}
.layer2 h2 { 
    color:#fff;
}

[data-aos=example-aim] {
    background: #fff;
    transition: background 5s ease 5s;
  }
  [data-aos=example-aim].aos-animate {
    background: linear-gradient(to right, #373b44, #4286f4);
    transition: background 5s ease 5s;
  }
  .layer2 .inner { 
    z-index:5;
  }


.business {
    padding:270px 0;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
.sub-title {
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.functions{
    text-align: center;;
}
.functions ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 80px;
}
.functions ul li {
    width:calc(50% - 24px);
    border-radius: 16px;
    background:#E0EBFF;
    padding:70px 60px 60px 200px;
    text-align: left;
}
.functions ul li h3 {
    font-size:32px;
    font-weight:700;
}
.functions ul li p {
    font-size:20px;
    margin-top:16px;
    word-break: keep-all;
}
.functions ul li.blue h3,
.functions ul li.blue p {
    color:#fff;
}

.functions ul li:first-of-type {
    background:#416EF2 url(../img/meritz.png) no-repeat center left 60px;
    background-size:110px 110px;
}
.functions ul li:nth-of-type(2) {
    background:#E0EBFF url(../img/ticket.png) no-repeat center left 60px;
    background-size:110px 110px;
}
.functions ul li:nth-of-type(3) {
    background:#E0EBFF url(../img/airport.png) no-repeat center left 60px;
    background-size:110px 110px;
}
.functions ul li:nth-of-type(4) {
    background:#416EF2 url(../img/calculator.png) no-repeat center left 60px;
    background-size:110px 110px;
}



.btn {
    display:block;
    position:relative;
    margin:64px auto;
    width:240px;
    height:64px;
    line-height:64px;
    text-align: center;
    border-radius: 10px;
    font-size:18px;
    color:#fff;
    font-weight:700;
    background:#011844;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    overflow:hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) translateX(-100%) rotate(45deg);
    transition: transform 0.5s ease-out;
}

.btn:hover::before {
    transform: translateY(-50%) translateX(100%) rotate(45deg);
}


.contact {
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap:24px;
    margin-top:80px;
}
.c-video {
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
}
.c-video video {
    position:relative;
    width:100%;
    height:100%;
    object-fit: cover;
}

.contact {
    display:flex;
    justify-content: space-between;
    padding-right:140px;;
}
.contact form {
    display:block;
    width:48%;
}
.contact form ul li {
    display:block;
    position:relative;
    margin-bottom:40px;
}
.contact form label { 
    position:absolute;
    left:24px;
    top:-24px;
    color:#fff;
    font-size:18px;
    font-weight:400;
    transition: all 0.3s ease;
}
.contact form label span {
    color:#b61c21;
    font-weight:800;
}
.contact form input,
.contact form textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    line-height: 60px;
    color: #000;
    padding: 0 24px;
    background: #fafafa;
    border-radius: 8px;
    font-family:"Montserrat","Pretendard Variable", Pretendard;
    border: none;
    outline: none; 
}
.contact form textarea {
    height:200px;
}

.contact form button {
    cursor:pointer;
    border: none;
    outline: none;
}

#loading { 
    display: none; 
    position: fixed; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 1000; 
}

.introduction {
	display:block;
	justify-content: center;
	align-items: center;
	position:fixed;
	bottom:60px;
	right:60px;
	width:64px;
	height:64px;
	border-radius: 50%;
	background:#fafafa;
	z-index:999;
	box-shadow: 0px 0px 20px -1px #888;
}
.introduction a {
	display:flex;
	justify-content: center;
	align-items: center;
	position:relative;
	width:100%;
	height:100%;
	border-radius: 50%;		
	background:yellow;
}
.introduction a img {
	display:block;
	margin:0 auto;
	width:42px;
}
.introduction::after {
	width: 64px;
    height: 64px;
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    border: 4px solid #fff;
    border-radius: 50%;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-name: intervalHamburgerBorder;
    animation-name: intervalHamburgerBorder;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.introuction:hover{transform:scale(1.1);}
@-webkit-keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
}



.curved-text {
    position: absolute;
    display: block;
    white-space: nowrap;
    font-size: 16px;
    text-align: center;
    width: 100%;
	color:#ccc;
	opacity: 0; 
	transition: opacity 1s ease, transform 1s;
}

.introduction:hover .curved-text {
    opacity:1;
}

.curved-text.top {
	top:0px;
}
.introduction:hover .curved-text.top {
	transform: translateY(-24px);
	animation: all .1s;
}
.curved-text.bottom {
    bottom: 0px; /* 아이콘 아래쪽에 위치 */
}
.introduction:hover .curved-text.bottom {
	transform: translateY(24px);
	animation: all .1s;
}



/* 태블릿 */ 
@media screen and (max-width: 1440px) { 
    .business ul li  h3{
        margin:16px 0;
        font-size:20px;
    }
    .business ul li p {
        font-size:15px;
        line-height:24px;
    }
    .swiper3 .description p {
        margin:8% 24px 0 50px;
        font-size:24px;
    }
    .swiper3 .description .category {
        font-size:12px;
    }
	.overview .ce {
		flex-wrap:wrap;
	}
	.overview .ce li {
		width: 25%;
	}
	.overview .ce li:nth-of-type(n+5) {
		margin-top:32px;
	}
}



/* 모바일 */ 
@media screen and (max-width: 1280px) { 
    header {
        align-items: flex-start;
        padding:5vw;
    }
    header h1 img {
        width:25vw;
    }
    #typing {
        font-size:5.5vw;
        line-height:8vw;
    }
	.inner {
		padding:0 24px;
	}
	.overview {
		padding:120px 0;
	}
    .overview p {
		width:100%;
        font-size: 24px;
        line-height: 32px;
		letter-spacing: -0.15vw;
    }
	.overview h3 {
		font-size:15px;
	}
	.overview .ce {
		padding:0;
		flex-wrap:wrap;
	}
	.overview .ce li {
		width: 25%;
	}
	.overview .ce li:nth-of-type(n+5) {
		margin-top:24px;
	}
	.overview .ce li h4 {
		margin-bottom:8px;
		font-size:12px;
		line-height:18px;
		min-height:18px;
		word-break: keep-all;
	}
	.business {
		padding:120px 0;
	}
    .business ul {
        padding-left:0;
		display:block;
		margin-top:40px;
    }
	.business ul li {
		display:block;
		width:100%;
		margin-bottom:40px;
	}
    .contact {
        display:block;
    }
    .c-video {
        width:100%;
    }
    .contact form {
        display:block;
        width:100%;
        margin-top:64px;
		padding:0 24px;
    }
    .heypoca {
        padding: 120px 00px;
    }
    .heypoca h2 {
        margin-top: -60px;
        font-size: 72px;
    }
	.heypoca h3 {
		padding:0 24px;
		letter-spacing: -0.3vw;
	}
    .heypoca .swiper2 {
        margin: -60px auto 60px auto;
    }
    .hamburger {
        position: fixed;
        top: 2vw;
        right: 2vw;
        transform: scale(0.75);
    }
    .introduction {
        position: fixed;
        bottom: 3vw;
        right: 3vw;
        transform: scale(0.75);
    }
	.sub-title {
		display:block;
		padding-left:0;
		margin-left:0;
	}
	.sub-title h2 {
		margin-bottom:24px;
	}
	.sub-title p {
		font-size:24px;
		line-height:32px;
		letter-spacing: -0.3vw;
	}
	.layer1,
	.layer2 {
		padding:120px 0;
	}
	#project .sub-title,
	#req .sub-title {
		padding:0 24px;
	}
	.swiper3 {
		width:100%;
		margin-left:0;
	}
	.swiper3 .description .category {
		font-size:8px;
	}
	.swiper3 .description .count {
		margin:5% 24px 0 24px;
		padding-bottom:16px;
	}
	.swiper3 .description .count::after {
		margin-top:70%;
	}
	.swiper3 .description p {
		margin:8% 24px 0 24px;
		letter-spacing: -0.2vw;
		font-size:20px;
	}
	.swiper3 img {
		filter:none;
	}
	.contact {
		padding-left:0;
		padding-right:0;
	}

    footer {
        display:block;
        padding: 15vw 5vw 15vw 5vw;
    }
    .footer_logo img {
        width:40vw;
        margin-bottom:16px;
    }
    footer ul li {
        display:block;
        text-align: left;
    }
    footer span {
		font-size:14px;
        line-height:1.5em;
        margin-right:0;
        letter-spacing: -0.035em;;
    }
    footer .right {
        text-align: left;
        margin-top:16px;
    }
    footer .right a {
        margin-bottom:16px;
    }
	footer .right p {
		font-size:14px;
	}
    footer .copyright {
        position:absolute;
        bottom:5vw;
        left:5vw;
        margin-top:0;
        font-size:12px;
        letter-spacing: -0.035em;;
    }
} 



/*service.html*/
.hero {
    height: 400px;
    position:relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
    text-align: center;
    overflow: hidden;
    background-color: #4779f7;
}
.hero .inner {
    z-index:10;
}

.hero-content {
    text-align: center;
}

.hero h2 {
    margin-bottom: 8px;
    color:#fff;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color:#fff;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5vh;
    background: url(../img/wave.png);
    background-size: 100vw 5vh;
  }
  .wave1 {
    animation: animate 20s linear infinite;
    z-index: 15;
    opacity: 0.9;
    animation-delay: 0s;
    bottom: 0;
  }
  .wave2 {
    animation: animate2 15s linear infinite;
    z-index: 10;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 10px;
  }
  .wave3 {
    animation: animate 10s linear infinite;
    z-index: 5;
    opacity: 0.4;
    animation-delay: -2s;
    bottom: 15px;
  }
  .wave4 {
    animation: animate2 5s linear infinite;
    z-index: 1;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 20px;
  }
  @keyframes animate {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 100vw;
    }
  }
  @keyframes animate2 {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -100vw;
    }
  }

.skills-section {
    padding: 80px 0;
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.skill-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.skill-image {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.skill-content {
    padding: 30px;
}

.skill-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1A73E8;
    font-weight:600;
}

.skill-description {
    margin-bottom: 20px;
}

.skill-features {
    list-style: none;
}

.skill-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.skill-features li:before {
    content: "✓";
    color: #1A73E8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cta-section {
    background: url(../img/contact_bg.png),linear-gradient(90deg, rgba(0, 198, 255, 1) 0%, rgba(0, 114, 255, 1) 100%) ;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;

    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    color:#fff;
}

.cta-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color:#fff;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #1A73E8;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

.price-wrap h2 {
    display:block;
    margin:0 auto 80px auto;
    text-align: center;;
}
.price-wrap .notice {
    color:#bbb;
    font-size:15px;
    text-align: right;
    display:block;
    width:100%;
    padding:0 17% 0 12%;
}

.package-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-bottom:32px;
  }
  
  .package {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 20%;
    display: flex;
    flex-direction: column;
  }
  
  .package-header {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
  }
  .package-header p {
    font-size:18px;
  }
  .package h3 {
    margin: 0 0 16px 0;
    font-size: 20px;
  }
  .package-header .red {
    font-weight:800;
    color:#b61c21;
  }
  
  .price {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
  }
  
.step-section {
    display:block;
    position:relative; 
    border-bottom:1px solid #ccc;
}
.step-section ul {
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.step-section ul li {
    display:block;
    text-align: center;
    position:relative;
}

.step-section ul li:not(:last-of-type):after {
    content:'▶';
    position:absolute;
    right:-50px;
    top:40%;
    font-size:20px;
    font-weight:100;
    font-family:'Notosans';
    color:#ccc;
}

.step-section ul li span {
    display:block;
    padding:8px 24px;
    background:#c4c4c4;
    border-radius: 24px;
    color:#fff;
    font-weight:700;
    margin-bottom:24px;
    
}
.step-section ul li p {
    font-size:24px;
}


  .select-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .package-details {
    padding: 20px;
  }
  
  .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .detail-title {
    font-weight: 500;
  }
  
  .detail-value {
    text-align: right;
    color:#004c99;
    font-weight:700;
  }
  .detail-value span {
    color:#b61c21;
    font-weight:800;
  }

  .package {
    position:relative;
  }
  /* Premium 패키지 스타일 */
  .package.premium {
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  }
  
  .package.premium .package-header {
    background-color: #fffaeb;
  }
  
  .most-popular {
    position:absolute;
    width:calc(100% - 40px);
    background-color: #ffc107;
    color: white;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    top:-14px;
    left:20px;
  }








  .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.container h1 {
    color: #007bff;
}

.container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.container th, td {
    border: 1px solid #ddd;
    padding: 10px;
}

th {
    background-color: #007bff;
    color: white;
}

.container button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.container button:hover {
    background-color: #0056b3;
}












.pricing-container {
    width: 80%;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}
.plan {
    list-style: none;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    margin: 0 10px;
}
.plan h3 {
    background: #007bff;
    color: white;
    padding: 10px;
    margin: -20px -20px 10px -20px;
    border-radius: 10px 10px 0 0;
}
.plan li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.highlight {
    background: #17c3b2;
    color: white;
}
.buy-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}
.buy-btn:hover {
    background: #0056b3;
}






/* Service Section */
.service-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.service-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.service-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon img {
    width: 36px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.squares {
    height: 100%;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    position:absolute;
    width:100%;
    left:0;
    top:0;
  }
  
  .square {
    -webkit-animation: squares 9s linear infinite;
            animation: squares 9s linear infinite;
    align-self: flex-end;
    width: 1em;
    height: 1em;
    transform: translateY(100%);
    background: #ebebeb;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  .square:nth-child(2) {
    height: 1.5em;
    width: 3em;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-duration: 27s;
            animation-duration: 27s;
    -webkit-filter: blur(11px);
  }
  .square:nth-child(3) {
    height: 2em;
    width: 1em;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
    -webkit-animation-duration: 18s;
            animation-duration: 18s;
    -webkit-filter: blur(15px);
  }
  .square:nth-child(4) {
    height: 1em;
    width: 1.5em;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-filter: blur(8px);
    -webkit-animation-duration: 23s;
            animation-duration: 23s;
  }
  .square:nth-child(5) {
    height: 1.25em;
    width: 2em;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    -webkit-filter: blur(14px);
    -webkit-animation-duration: 21s;
            animation-duration: 21s;
  }
  .square:nth-child(6) {
    height: 2.5em;
    width: 2em;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-filter: blur(9px);
    -webkit-animation-duration: 19s;
            animation-duration: 19s;
  }
  .square:nth-child(7) {
    height: 5em;
    width: 2em;
    -webkit-filter: blur(25px);
    -webkit-animation-duration: 22s;
            animation-duration: 22s;
  }
  .square:nth-child(8) {
    height: 1em;
    width: 3em;
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
    -webkit-filter: blur(9px);
    -webkit-animation-duration: 28s;
            animation-duration: 28s;
  }
  .square:nth-child(9) {
    height: 1.5em;
    width: 2em;
    -webkit-filter: blur(16px);
    -webkit-animation-duration: 19s;
            animation-duration: 19s;
  }
  .square:nth-child(10) {
    height: 3em;
    width: 2.4em;
    -webkit-animation-delay: 6s;
            animation-delay: 6s;
    -webkit-filter: blur(15px);
    -webkit-animation-duration: 22s;
            animation-duration: 22s;
  }
  
  @-webkit-keyframes squares {
    from {
      transform: translateY(100%) rotate(-50deg);
    }
    to {
      transform: translateY(calc(-100vh + -100%)) rotate(20deg);
    }
  }
  
  @keyframes squares {
    from {
      transform: translateY(100%) rotate(-50deg);
    }
    to {
      transform: translateY(calc(-100vh + -100%)) rotate(20deg);
    }
  }






/* Solution Section */
.solution-section {
    padding: 80px 0;
}

.solution-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.solution-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom:80px;
    border-bottom:1px solid #eee;
}

.solution-item:nth-child(even) {
    flex-direction: row-reverse;
}
.solution-item:last-of-type {
    border-bottom:none;
}

.solution-image {
    flex: 1;
    padding: 0 30px;
}

.solution-image img {
    width: 100%;
}

.solution-content {
    flex: 1;
    padding: 0 30px;
}

.solution-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0066cc;
}

.solution-desc {
    margin-bottom: 25px;
    color: #444;
    line-height: 1.8;
}

.solution-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #0066cc;
    color: white;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.solution-btn:hover {
    background-color: #004c99;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-image {
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    word-break: keep-all;;
}

.more-btn {
    text-align: center;
    margin-top: 40px;
}

.more-btn a {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #0066cc;
    color: #0066cc;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.more-btn a:hover {
    background-color: #0066cc;
    color: white;
}