  
  @import '../css/header.css';
  @import '../css/section.css';
  @import '../css/responsive.css';
  @import '../css/footer.css';
  
  :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
        }
        

 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }
        
        /* Page Header */

        .page-header {
    position: relative;
    width: 100%;
    height: 350px;  /* adjust as needed */
    overflow: hidden;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Position text ON TOP of the image */
.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

/* Optional overlay for better readability */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

 .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }


         /* Contact Section */
        .contact {
            /* background: #E0E0E0; */
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
        }

        .contact-info {
            background: #2c3e50;
            color: white;
            padding: 40px;
            border-radius: 10px;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: start;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: #f3efef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-form {
            display: grid;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            /* min-height: 150px; */
        }

        .submit-btn {
            background: #2c3e50;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
            justify-self: end;
        }

        .submit-btn:hover {
            background: #c0392b;
        }


        @media (max-width: 768px) {
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    .contact-contents {
        grid-template-columns: 1fr !important;
    }
    /* .contact-text ul li{
        display: inline-block !important;
    } */
}

 .form-row 
 {
 grid-template-columns: 1fr;
}

.contact-text h2,h3{
    font-size: 1.2rem;
    color: #222222;
    margin-bottom: 15px;
    font-weight: bold;
   
}

.contact-text p{
        color: #555;
    /* margin-bottom: 30px; */
    font-size: 1.05rem;
}

.contact-text ul{
    list-style: none;
    padding: 0;
}

.contact-text ul li{
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-text li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    top: 2px;
    font-size: 16px;
    color: #e74c3c;
    }

        .contact-contents {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 50px;
        }
