/* SECTION WRAPPER */
.contact-section {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto 60px auto;   /* ⭐ पहले 150px था — अब heading ऊपर आएगी */
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(to bottom, #ffffff, #fafaff);
}

/* TITLE */
.contact-title {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

/* SUBTITLE */
.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;   /* ⭐ कम किया — spacing tight */
}

/* GRID LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: -10px;  /* ⭐ पूरे cards को थोड़ा ऊपर खींचता है */
}

/* CONTACT CARD (Glass Effect) */
.premium-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 32px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border: 1px solid rgba(230, 230, 255, 0.6);
}

/* HOVER LIFT */
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff7b00, #ff5500);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

/* ICON */
.icon-box i {
    font-size: 30px;
    color: white;
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.38);
}

/* Card Headings */
.premium-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.premium-card h4 {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

/* Text Inside Cards */
.premium-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.65;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .premium-card {
        padding: 28px;
    }

    .contact-title {
        font-size: 32px;
    }
}

/* SOCIAL ICONS */

.social-links {
    display: flex !important;        /* horizontal layout */
    flex-direction: row !important;  /* row = left to right */
    gap: 20px;                       /* space between icons */
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.social-links li {
    margin: 0;
}
.social-links i {
    font-size: 24px;
    color: #002b5b;   /* your blue color */
    cursor: pointer;
    transition: 0.3s ease;
}
.social-links i:hover {
    color: #ff7a00;
    transform: scale(1.15);
}
