.home-section {
	padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto
}

.hero {
    position: relative;
    padding: 110px 0;
    background: radial-gradient(circle at 85% 40%,rgba(47,91,255,.15),transparent 40%),radial-gradient(circle at 10% 20%,rgba(47,91,255,.08),transparent 45%),linear-gradient(180deg,#f9fbff 0,#eef2ff 100%);
    overflow: hidden
}

.hero:after,.hero:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    z-index: 0
}

.hero:before {
    top: -120px;
    right: -120px;
    background: radial-gradient(circle,rgba(47,91,255,.12),transparent 70%)
}

.hero:after {
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle,rgba(47,91,255,.08),transparent 70%)
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

.hero-text {
    flex: 1
}

.hero-image {
    position: relative
}

.hero-image img {
    width: 400px;
    border-radius: 14px
}

.hero-image .hero-badge {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 50px
}

.about h2,.hero h1 {
    margin-bottom: 20px;
    color: #111827
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.5px
}

.hero p {
    font-size: 20px;
    color: #4b5563;
    max-width: 520px;
    line-height: 1.7
}

.btn,.company-card .btn {
    display: inline-block;
    color: #fff;
    text-decoration: none
}

.btn {
    margin-top: 30px;
    padding: 14px 28px;
    background: linear-gradient(135deg,#2f5bff,#4c6fff);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(47,91,255,.25);
    transition: all .25s ease
}

.btn:hover {
    background: linear-gradient(135deg,#2f5bff,#1729d8);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(47,91,255,.35);
	color: #fff
}

.about {
    background: #f6f7fb
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap
}

.about-image img {
    width: 500px;
    border-radius: 12px
}

.about-text {
    flex: 1
}

.about h2 {
    font-size: 40px
}

.about p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 18px
}

.projects {
    background: #fff;
}

.projects h2 {
    text-align: center
}

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

.card {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .25s ease
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08)
}

.card h3 {
    margin-bottom: 12px;
    color: #111827
}

.card p {
    line-height: 1.7
}

.companies {
    background: #f6f7fb;
    text-align: center
}

.companies h2,.projects h2 {
    margin-bottom: 50px;
    font-size: 38px;
    color: #111827
}

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

.company-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .25s ease
}

.company-card:hover,.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,.08)
}

.company-card h3,.skill-card h3,.skills h2 {
    margin-bottom: 10px;
    color: #111827
}

.card p,.company-card p {
    color: #4b5563
}

.skills {
    background: #fff
}

.skills h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px
}

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

.skill-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .25s ease
}

.skill-card p {
    color: #4b5563;
    line-height: 1.7
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg,#1729d8,#3a4eff);
    color: #fff;
    text-align: center
}

.contact-box {
    max-width: 700px;
    margin: auto
}

.contact h2 {
    font-size: 38px;
    margin-bottom: 20px
}

.contact p {
    font-size: 18px;
    line-height: 1.7;
    opacity: .9
}

.contact .btn {
    background: #fff;
    color: #1729d8;
    box-shadow: none
}

.contact .btn:hover {
    transform: translateY(-3px)
}

.site-footer h3 {
	position:relative;
}

.site-footer h3:after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #1729d8;
	margin-top: 10px;
}

@media (min-width:779px) {
	.home-section {
		padding: 100px 0
	}
	
	.hero h1 {
		font-size: 50px
	}
	
	.project-grid {
		grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
	}
	
	.about p {
		font-size: 20px
	}
}
