.elementor-631 .elementor-element.elementor-element-594e200 > .elementor-container{max-width:1520px;}/* Start custom CSS for html, class: .elementor-element-87d1d1a */@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', sans-serif;
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.contact-section {
    text-align: center;
}

.header-bg {
    background-color: #1a5e20; 
    background-image: linear-gradient(135deg, #1a5e20 0%, #2e7d32 100%);
    color: white;
    padding: 60px 20px 140px;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.header-bg h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.header-bg h1 span {
    color: #ff9800;
}

.header-bg p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: -70px auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* --- Grid System --- */
.contact-grid {
    display: grid;
    /* Desktop: 4 cards */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 30px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.4rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.info-card .highlight {
    font-weight: 700;
    color: #1a5e20;
    margin-top: 5px;
}

.info-card .sub-text {
    font-size: 0.8rem;
    color: #4caf50;
    margin-top: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto; /* Push to bottom of card */
    padding-top: 15px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.social-icons a:nth-child(1) { background: #3b5998; }
.social-icons a:nth-child(2) { background: #25d366; }
.social-icons a:nth-child(3) { background: #e4405f; }

/* Features Bar */
.features-bar {
    background: white;
    padding: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.feature-item i {
    color: #ff9800;
    font-size: 1.2rem;
}

/* --- Responsive Media Queries --- */

/* Tablet: 2 cards (Between 768px and 1024px) */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .header-bg h1 { font-size: 2.2rem; }
}

/* Mobile: 1 card (Below 767px) */
@media (max-width: 767px) {
    .header-bg {
        padding: 50px 15px 110px;
    }

    .header-bg h1 {
        font-size: 1.8rem;
    }

    .container {
        margin-top: -60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-bar {
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .info-card {
        padding: 25px 20px;
    }
}/* End custom CSS */