/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Header Styles */
        header {
            background-color: #2d3f51;
            color: #fff;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        header a {
          color: inherit;
          text-decoration: inherit;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img {
            width: 70px;
            height: 70px;
            fill: #3498db;
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 3px 3px 3px rgba(110, 110, 110, 1.1);
            letter-spacing: 0.3rem;
        }
        nav ul {
            display: flex;
            list-style: none;
    		align-items: center;
            gap: 20px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        nav a:hover {
            color: #3498db;
        }

        nav img {
            height: 3rem;
            width: auto;
            /*border: 1px white solid;*/
        }

        
        /* Main Content Styles */
        main {
            flex: 1;
            padding: 2rem;
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
        }

        /* Layout wrapper */
        .image-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 20px;
        }

        /* Card configuration */
        .image-card {
            position: relative;
            width: 400px;
            /*height: 400px;*/
            overflow: hidden;
            /*border-radius: 8px;*/
        }

        /* Image scaling */
        .image-card img {
            width: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }

        .image-card .note {
            font-family: sans-serif;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0.5rem;
            width: 100%;
        }
        /* Centered text overlay 
        .text-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-family: sans-serif;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            text-align: center;
            width: 100%;
        }        */
        
        
        
        
        /* Footer Styles */
        footer {
            background-color: #2d3f51;
            color: #fff;
            text-align: center;
            padding: 1.5rem;
            margin-top: auto;
        }
        .socials svg {
            width: 20px;
            height: 20px;
        }
        .socials ul {
        l   ist-style-type: none;
            padding: 0;
            margin: 0;
        }

        .socials li {
            display: inline;
        }
        .socials path {
            fill: #fff;
            /*stroke: #fff;*/
        }
        
        
/* ----------contact ------------------ */        
        
/* Container Layout */
.contact-container {
    background: #ffffff;
    max-width: 1000px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
}

/* Left Side: Contact Info Styles */
.contact-info {
    background-color: #2d3f51;
    color: #ffffff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-info p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon {
    font-size: 1.25rem;
    background: #1f2937;
    padding: 10px;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Right Side: Form Styles */
.contact-form-wrapper {
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.input-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #111827;
    background-color: #fff;
    transition: all 0.2s ease;
    outline: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
}

/* Button Style */
.submit-btn {
    background-color: #4f46e5;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #4338ca;
}

/* Responsive Design for Tablets and Mobile Phones */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 100%;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .form-row {
        flex-direction: column;
    }
}
        
        
        
        
        
        
        
        
        
        
        
        
        
