

    /* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> */


        body {
            background-color: #ffffff;
            color: #333;
        }

       
        /* Header & Logo Styles */
        .head-contact {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: white;
            padding: 25px 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

      
        .logo-contact img {
            width: 40%;
            display: block;
            margin: 0 auto;
        }

        .logo i {
            font-size: 32px;
            color: white;
        }

        .business-name {
            font-size: 2.5rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        text-align: center;
        color: #e6e6e6;
        }

        .tagline {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        /* Main Content Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Contact Information Section */
        .contact-info1 {
            background: white;
            padding: 0px 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .contact-info:hover {
            transform: translateY(-5px);
        }

        .section-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }

        .contact-details {
            margin-top: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 10px;
            transition: background-color 0.3s;
        }

        .contact-item:hover {
            background-color: #f1f8ff;
        }

        .contact-icon {
               width: 50px;
                height: 50px;
                background: linear-gradient(135deg, #3a9dd7, #76d8fa);
                border-radius: 7%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 15px;
                flex-shrink: 0;
                /* position: relative;
                z-index: 10;
                top: 35px; */
                margin-top: 16px;
        }

        .contact-icon i {
            color: white;
            font-size: 22px;
        }

        .contact-text h3 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .contact-text p {
            color: #555;
            font-size: 1.05rem;
        }
.contact-text a{
           color: #555;
}
        /* Map & Social Section */
        .map-social {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .map-container {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .map-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #ddd;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Facebook Plugin Styling */
        .facebook-plugin {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .fb-placeholder {
            background: linear-gradient(135deg, #3b5998, #8b9dc3);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .fb-placeholder i {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .fb-placeholder h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            text-align: center;
            padding: 25px;
            border-radius: 20px 20px 0 0;
            margin-top: 40px;
        }

        .copyright {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-top: 10px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .business-name {
                font-size: 2rem;
            }
            
            .contact-grid {
                gap: 25px;
            }
            
            .contact-info, .map-container, .facebook-plugin {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .business-name {
                font-size: 1.7rem;
            }
        }
 
    
.contact-form{
       padding: 20px 31px 40px 31px;
    background-color: #9fd0ed30;
}
    
                    
                   