/*---Home css---*/
#mainSection{
	margin-top: -102px;
}
.homespacing{
    margin-bottom: 60px;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    min-height: 850px;
}



.hero h1 span {
    color: var(--purple-light);
}

.hero p {
    margin: 28px 0;
    max-width: 555px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}


.device {
    position: absolute;
    background: #0b081a;
    border: 1px solid #362060;
    box-shadow: 0 0 80px #6d33ff55;
}

.laptop {
    width: 80%;
    height: 70%;
    border-radius: 20px;
}

.phone {

    right: 40px;

    width: 180px;

    height: 360px;

    border-radius: 30px;

}

.circle {

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            #8b53ff,
            transparent);

}

.herobgBanner {
    background-image: url('https://stackcolon.com/wp-content/uploads/2026/06/herobanne.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0px;
}


/* Section 2 */

.grid {

    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.serviceSection a:hover{
    color: white;
}

.center {

    text-align: center;

}


/*---TechStack---*/
.tech-stack {
    text-align: center;
}



.section-title h2 {
    margin-top: 15px;
    margin-bottom: 60px;
}

.stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.stack-card {
    width: 140px; /* same box size */
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 25px;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgb(120 0 255);
}

.stack-card img {
    width: 90px;
    height: 55px;
    object-fit: contain;
}

@media(max-width:992px){
    .stack-grid{
        grid-template-columns: repeat(4,1fr);
    }
	 .stack-card{
        width: 120px;
    }
}

@media(max-width:768px){
    .stack-grid{
        grid-template-columns: repeat(3,1fr);
    }
	.stack-card{
        width: 100px;
    }
}

@media(max-width:480px){
    .stack-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-title h2{
        font-size: 28px;
    }
	.stack-card{
        width: 90px;
    }

    .section-title h2{
        font-size: 28px;
    }
}
/*---TechStack---*/


/* Section 3 */
.portfolio-section{
    padding:80px 0;
}

.portfolio-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.tab-btn{
    background:transparent;
    color:#fff;
    border:1px solid var(--border);
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.tab-btn.active{
    background:var(--purple);
    border-color:#7c3aed;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.portfolio-card{
    background: var(--bg);
    border:1px solid rgba(124,58,237,.3);
    border-radius:12px;
    overflow:hidden;
    transition:.4s;
}

/* .portfolio-card:hover{
    transform:translateY(-8px);
    /* box-shadow:0 0 25px rgba(124,58,237,.35);
} */

.portfolio-card img{
    width:100%;
    display:block;
}

.portfolio-card h3{
    color:#fff;
    padding:15px 15px 5px;
    font-size:18px;
}

.portfolio-card span{
    color:#999;
    display:block;
    padding:0 15px 15px;
}

.portfolio-btn{
    text-align:center;
    margin-top:40px;
}

.portfolio-btn a{
    background:var(--purple-light);
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:8px;
}

@media(max-width:991px){
    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .portfolio-grid{
        grid-template-columns:1fr;
    }
}

/*-----*/


/* Section 4 */
.portfolio-growth{
    padding:100px 0;
    position:relative;
}

.growth-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

.growth-content{
    width:38%;
}

.section-tag{
    color:#8b5cf6;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}


.growth-content p{
    color:#a8a8b3;
    line-height:1.7;
    margin-bottom:30px;
}

.growth-list{
    list-style:none;
    margin-bottom:35px;
}

.growth-list li{
    color:#d4d4d8;
    margin-bottom:14px;
    padding-left:28px;
    position:relative;
}

.growth-list li::before{
    content:"✓";
    width:18px;
    height:18px;
    background:var(--purple);
    border-radius:50%;
    color:#fff;
    position:absolute;
    left:0;
    top:2px;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
}


.growth-cards{
    width:62%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.info-card{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:18px;
    padding:32px;
    backdrop-filter:blur(15px);
}

.icon-box{
    width:60px;
    height:60px;
    border-radius:14px;
    background: var(--purple);
    color:#8b5cf6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:24px;
	color: white;
}

.info-card h3{
    color:#fff;
    font-size:36px;
    margin-bottom:5px;
}

.info-card h4{
    color:#fff;
    text-transform:none;
    font-size:18px;
    margin-bottom:12px;
    font-weight: 500;
}

.info-card p{
    color:#9ca3af;
    line-height:1.7;
}

@media(max-width:991px){

    .growth-wrapper{
        flex-direction:column;
    }

    .growth-content,
    .growth-cards{
        width:100%;
    }

    .growth-cards{
        grid-template-columns:1fr;
    }

    .growth-content h2{
        font-size:38px;
    }
}


/*-----*/


/* Section 5 */
.testimonials{
    padding:100px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}


.section-heading p{
    color:#9ca3af;
}

.client-desgi{
    font-size: 12px;
    margin-bottom: 0;
    color: var(--purple-light);
    font-weight: 500;
}
.testimonial-card{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:16px;
    padding:30px;
    height:100%;
}

.quote-icon{
    width:40px;
    height:40px;
    background:var(--purple);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    margin-bottom:20px;
}

.testimonial-content{
    color:#cbd5e1;
    line-height:1.8;
    min-height:120px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.testimonial-author img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.author-info h4{
    color:#fff;
    margin:0;
}

.swiper-pagination{
    margin-top:30px;
    position:relative !important;
}


/*------*/


/*---Blog Section---*/

.latest-insights{
    padding:100px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading p{
    color:#a8b2d1;
    font-size:16px;
}

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

.blog-card{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-image{
    display:block;
    height:220px;
}

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

.blog-content{
    padding:24px;
}

.blog-content h3{
    margin-bottom:18px;
    line-height:1.5;
}

.blog-content h3 a{
    color:#fff;
    font-size: 18px;
    text-decoration:none;
}

.blog-meta{
    margin-bottom:20px;
    color:#8a94b8;
    font-size:14px;
}

.read-more{
    color: var(--purple-light);
    text-decoration:none;
    font-weight:600;
}

.blog-btn-wrap{
    text-align:center;
    margin-top:50px;
}

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(90deg,#6a5cff,#8b5cf6);
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border-radius:8px;
    font-weight:600;
}

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/*-----*/

.portfolio img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 18px;

    background: #17132b;

}

.stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;

}

.stat {

    background: #0a0718;

    padding: 40px;

    border-radius: 20px;

    text-align: center;

}

.number {

    font-size: 48px;

    font-weight: 800;

    color: #9d67ff;

}

.testimonial {

    display: flex;

    gap: 18px;

    align-items: center;

}

.avatar {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #6a36ff;

}

.blog-card {

    overflow: hidden;

}

.blog-image {

    height: 220px;

    background:
        linear-gradient(90deg,
            #0F001F 0%,
            #2B004F 100%);

    border-radius: 14px;

    margin-bottom: 18px;

}

/*---why choose---*/

.why-wrapper{
    display:flex;
    align-items:center;
}

.why-image{
    flex:1;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-width: 600px;
}

.why-content{
    flex:1;
}

.section-tag{
    color: var(--purple-light);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.why-content h2{
    margin:15px 0;
}

.why-content p{
    line-height:1.7;
    margin-bottom:30px;
}

.why-points{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.point{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px;
    border:1px solid var(--border);
    border-radius:16px;
    background: var(--bg);
}

.point-text h4{
    color:#fff;
    margin-bottom:8px;
}

.point-text p{
    margin:0;
}

@media(max-width:991px){
    .why-wrapper{
        flex-direction:column;
    }

    .why-content h2{
        font-size:34px;
    }
}

@media(max-width:1440px){
	#mainSection {
		margin-top: -228px;
	}
	.grid {
		gap: 15px;
	}
	.card {
		padding: 20px;
	}
	.heroSectionMain{
		max-width: 500px;
	}
}
