 

        a {
                text-decoration: none;
        }
        .contact-container {
            /* max-width: 1200px; */
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            /*  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
            overflow: hidden;
            padding-bottom: 30px;
            /* height: 100vh; */
        }

        .contact-header {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            /* border-bottom: 1px solid #e0e0e0; */
        }

        .contact-header h1 {
            font-size: 2.5rem;
            color: #333;
            font-weight: 400;
        }

        .contact-subtitle {
            padding-top: 15px;
        }

        .moreDetails {
            padding-left:25px;
            padding-top: 15px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0;
        }

        .contact-section {
            padding: 40px 30px;
            /* border-right: 1px dashed #ccc; */
            position: relative;
   background: linear-gradient(180deg, rgba(182, 217, 242, 0) 0%, rgba(182, 217, 242, 0.3) 77.17%);
    box-shadow: 0px 10px 30px 0px #00000024;
        width: 90%;
    margin: 0 auto;
    border-radius: 15px;
    margin-bottom: 15px;
        }

        .contact-section:last-child {
            border-right: none;
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background-color: #f0f0f0; */
            border-radius: 8px;
        }

        .section-icon svg {
            width: 24px;
            height: 24px;
            fill: #666;
        }

        .section-title {
            font-size: 20px;
            color: #333;
            font-weight: 600;
        }

        .company-name {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.4;
            padding-bottom: 10px;
            border-bottom: 1px dashed #666;
        }

        .contact-details {
            color: #333;
            line-height: 1.6;
        }

        .contact-details div {
            margin-bottom: 8px;
        }

        .contact-details strong {
            font-weight: 600;
        }

        .std-note {
            font-size: 0.85rem;
            color: #777;
            margin-top: 5px;
        }

        .service-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 16px;
                border-bottom: 1px dashed #666;
                padding-bottom: 10px;
        }

        .link {
            color: #007bff;
            text-decoration: none;
        }

        .link:hover {
            text-decoration: underline;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
            }

            .contact-section {
                border-right: none;
                border-bottom: 1px dashed #ccc;
            }

            .contact-section:last-child {
                border-bottom: none;
            }

            .contact-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {

            .contact-header {
                padding: 30px 15px;
            }

            .contact-header h1 {
                font-size: 1.8rem;
            }

            .contact-section {
                padding: 30px 20px;
            }

            .section-header {
                flex-direction: column;
                text-align: center;
                margin-bottom: 25px;
            }

            .section-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .section-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .contact-header h1 {
                font-size: 1.5rem;
                padding-top: 15px;
            }

            .contact-section {
                padding: 25px 15px;
            }

            .section-title {
                font-size: 1.1rem;
            }

            .contact-details {
                font-size: 0.9rem;
            }
        }