

body {
  font-family: 'Inter', sans-serif;
  margin: 0px;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}
.line-vr-section {
        position: relative;
        margin: -25px auto;
        border: 0;
        border-left: 3px solid;
        border-color: var(--clr-theme-color);
        width: 3px;
        height: 50px;
        z-index: 10;
        opacity: 1;
    }
    .section-padding{
        padding: 20px 0;
    }
    .context{
        text-align: center;
    }
    .context h1{
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 15px;
        color: #1b1b1b;
        margin: 0px 0px 5px 0px;
    }
    .context h6{
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin: 0px 0px 5px 0px;
    }
    .line-hr-section.center {
        margin: 15px auto;
    }
    .line-hr-section {
        width: 70px;
        border-top: 3px solid black !important;
        opacity: 1;
        margin: 15px 0;
    }
 
  .container {
     max-width: 1200px;
    margin: 0 auto;
    }

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

        .service-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #84B499, #267846);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
        }

        .service-card:hover .service-icon::before {
            width: 200%;
            height: 200%;
        }

        .service-icon img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon img {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-description {
            color: #718096;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: justify;
        }

        .learn-more-btn {
            background: #2d3748;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .learn-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .learn-more-btn:hover::before {
            left: 100%;
        }

        .learn-more-btn:hover {
            background: linear-gradient(45deg, #667eea, #764ba2);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover .arrow {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 25px 20px;
            }
            
            .service-title {
                font-size: 20px;
            }
            
            .service-description {
                font-size: 15px;
                text-align: justify;
            }
        }

        /* Staggered animation on load */
        .service-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
/* contactbutton */
/* Existing contactbutton styles */
.connect{
    margin-top: 60px;
}
.connect h2{
    text-align: center;
    font-size: 30px;
    margin-left: 90px;
}
.connect p{
    text-align: center;
    font-size: 20px;
    margin-left: 100px;
}

.connect .btn1{
    text-align: center;
    color: white;
}

.btn1{
    margin-left: 600px;
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #002c1B;
    background-color: #066A33;
    margin-top: 10px;
    text-decoration: none;
    font-size: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.btn1 a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

/* Responsive styles */
@media only screen and (max-width: 1200px) {
    .btn1 {
        margin-left: calc(50% - 80px); /* Center the button */
    }
    
    .connect h2 {
        margin-left: 0;
    }
    
    .connect p {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .connect h2 {
        font-size: 28px;
    }
    
    .connect p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .connect h2 {
        font-size: 24px;
    }
    
    .connect p {
        font-size: 16px;
        margin: 10px 20px;
    }
    
    .btn1 {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    .btn1 a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .connect h2 {
        font-size: 22px;
    }
    
    .connect p {
        font-size: 15px;
        margin: 10px 15px;
    }
    
    .btn1 {
        padding: 10px 18px;
        font-size: 0.85em;
        margin-top: 15px;
    }
    
    .btn1 a {
        font-size: 13px;
    }
}