

/************************ section first start ****************************/
/* NAVBAR */
.navbar{
    position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 91%;
	padding: 0px 27px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 50px;
	backdrop-filter: blur(6px);
	background: rgb(255 255 255 / 32%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.navbar a{
    text-decoration:none;
    margin:0 15px;
    color:#333;
    font-weight:500;
}
.btn{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(34,197,94,0.4);
    transition:0.3s;
}
.btn:hover{
    transform:translateY(-3px);
}

/* HERO */
.hero1{
      background: url(../img/service-bg.png) #e8f2ed no-repeat center center / cover;;
    display: flex;
	align-items: center;
	/*justify-content: space-between;*/
	padding: 77px 8% 60px;
}

/* LEFT */
.hero-left1{
    max-width:600px;
    animation:fadeUp 1s ease;
}

.tag1{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#dcfce7;
    color:#16a34a;
    font-size:14px;
    margin-bottom:20px;
}

.hero1 h1{
    font-size:48px;
    line-height:1.3;
    margin-bottom:20px;
}

.hero1 h1 span{
    color:#16a34a;
}

.hero1 p{
    color:#666;
    margin-bottom:25px;
}

.features1{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.features1 span{
    background:#fff;
    padding:8px 14px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    font-size:14px;
}

.buttons1{
    display:flex;
    gap:15px;
}

.secondary1{
    background:#fff;
    color:#333;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* RIGHT */
.hero-right1{
    position:relative;
    width:600px;
}

/* FLOATING CARDS */
.card{
    position:absolute;
    width:100%;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    animation:float 4s ease-in-out infinite;
}

.card img{
    width:100%;
    border-top: 20px solid #2fd675;
	border-right: 20px solid #20b05c;
}

/* POSITIONS */
.card1{ 	animation-delay: 0s;
	top: -258px;}
.card2{ top:120px; right:0; animation-delay:1s;}
.card3{ bottom:-40px; left:80px; animation-delay:2s;}

/* MAIN CARD */
.main-card{
    width:260px;
    padding:20px;
    background:linear-gradient(135deg,#166534,#22c55e);
    color:#fff;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(34,197,94,0.4);
    animation:fadeUp 1.2s ease;
}

/* ANIMATIONS */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
}

/* RESPONSIVE */
@media(max-width:900px){
    .hero{
        flex-direction:column;
        text-align:center;
    }
    .hero-right{
        margin-top:40px;
    }
}
/**************************** section first end ************************/

/***************************** services start *************************/

.services-body{
    	background: url(../img/service-bg.png) #e8f2ed no-repeat center center / cover;
      /*background: linear-gradient(135deg, #f5f7fa, #e4ecf7);*/
    padding: 60px 20px;
}

/* HEADER */

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 42px;
    font-weight: 600;
    color: #1c1c3c;
}

.services-header p {
    color: #777;
    margin-top: 10px;
}

/* GRID */

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

/* CARD */

.service-card {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* HOVER EFFECT */

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* GRADIENT CARDS */

.service-card.green {
    background: linear-gradient(135deg, #00c853, #00bfa5);
    color: #fff;
}

.service-card.green p {
    color: rgba(255,255,255,0.8);
}

/* ICON */

.icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* TEXT */

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

/* ARROW BUTTON */

.arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.service-card:hover .arrow {
    transform: rotate(45deg) scale(1.1);
    background: #fff;
    color: #333;
}

/* FLOATING DECOR */

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
}

/* RESPONSIVE */

@media(max-width: 768px){
    .services-header h1 {
        font-size: 30px;
    }
}
/************************** services end ******************************/