@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Lora, serif; line-height: 1.6; color: #333; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header { background: #f8f9fa; padding: 1rem 0; border-bottom: 2px solid #e9ecef; }
.header-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
h1.lora-sgititle {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color:#003300;
  text-shadow:1px 1px 3px #fff, -1px -1px 0 rgba(0, 80, 0, 0.9);
}

.montserrat-ptext {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.logo-section { display: flex; align-items: center; gap: 1rem; }
.logo { height: 80px; }
.title-slogan h1 { margin: 0; font-size: 1.8rem; }
.slogan { font-style: italic; color: #666; }

.header .nav ul {
    list-style: none; 
    display: flex;
    gap: 2rem;
}

.header .nav ul li {
    position: relative;
    padding-left: 1.8rem; 
}

.header .nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .nav ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0%;
    font-size: 1.1rem;
    color: #003300;
}

.header .nav ul li[data-icon="home"]::before     { content: "\f015"; } 
.header .nav ul li[data-icon="about"]::before    { content: "\f2bb"; } 
.header .nav ul li[data-icon="gallery"]::before  { content: "\f03e"; } 
.header .nav ul li[data-icon="contact"]::before  { content: "\f0e0"; } 

.header .nav ul li:hover::before {
	color: blue;
}

.header .nav ul li:hover a {
    color: blue;
}

.two-column { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; margin: 2rem 0; }
.sidebar { background: #f1f1f1; padding: 1.5rem; border-radius: 8px; }
.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    transition: transform 0.2s ease;
}

.sidebar ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\e5a9"; 
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #000; 
    font-size: 1.1rem;
    transition: all 0.3s ease; 
}

.sidebar ul li:hover::before {
    animation: pulseIcon 1.2s infinite;
    color: #0056b3; 
    transform: scale(1.2);
}

.sidebar ul li:hover {
    transform: translateX(8px);
}

.services-overlay {
    position: relative;
    background: none; 
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.45; 
    transition: opacity 0.4s ease;
}

.services-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.services-list-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
    text-align: center;
    color: #fff;
    margin-top: 2rem; 
}

.services-list-overlay h2 {
    margin-bottom: 1.5rem;
    margin-top: 0; 
    font-size: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,.9);
    letter-spacing: 1px;
}

.services-list-overlay ul {
    list-style: none;
    padding: 0;
    width: 100%; 
}

.services-list-overlay ul li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    transition: transform 0.3s ease;
}

.services-list-overlay ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c"; 
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0,123,255,0.6);
    transition: all 0.3s ease;
}


.services-list-overlay ul li:hover {
    transform: translateX(10px);
}

.services-list-overlay ul li:hover::before {
    animation: pulseIcon 1.2s infinite;
    color: #007bff;
    transform: scale(1.3);
}

.services-image:hover img {
    opacity: 0.55; 
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); text-shadow: 0 0 15px rgba(0,123,255,0.8); }
    100% { transform: scale(1); }
}
.main-content { padding: 1rem 0; }
.main-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-content img.center {
    margin-left: auto;
    margin-right: auto;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.image-row figure {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-row img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3; 
    transition: transform 0.6s ease;
}

.image-row figcaption {
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.image-row figure:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.image-row figure:hover img {
    transform: scale(1.08);
}
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0.5rem 0 0 1.2rem;
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; height: auto; border-radius: 8px; }
.gallery-grid figcaption { line-height:1;text-align: center;text-transform:uppercase; padding: 0.5rem;background: #f1f1f1;border:solid 1px  }

.footer { background: #333; color: #fff; padding: 2rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 1rem; }
.footer-column a { color: #fff; text-decoration: underline; }
hr { border: 0; border-top: 1px solid #555; margin: 1rem 0; }
.copyright { text-align: center; font-size: 0.9rem; color: #aaa; }
.footer-column:first-child {
    position: relative;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-column:first-child::before {
    content: "\f2bb"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 10rem; 
    color: rgba(255, 255, 255, 0.15); 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.footer-column:first-child > * {
    position: relative;
    z-index: 1;
}

.footer-column:first-child {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid > .footer-column:nth-child(2) {
    position: relative;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid > .footer-column:nth-child(2)::before {
    content: "\f64a"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.footer-grid > .footer-column:nth-child(2) > * {
    position: relative;
    z-index: 1;
}


.footer-grid > .footer-column:nth-child(3) {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid > .footer-column:nth-child(3)::before {
    content: "\f0c0"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.footer-grid > .footer-column:nth-child(3) > * {
    position: relative;
    z-index: 1;
}

.footer-column:nth-child(3) a {
    margin: 0 0.8rem;
    font-size: 1.8rem; 
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-column:nth-child(3) a:hover {
    transform: translateY(-4px);
}

.footer-column:nth-child(3) p {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-column:nth-child(3) p::before,
.footer-column:nth-child(3) p::after {
    content: none;
}

.footer-column h3,
.footer-column p,
.footer-column a {
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),   
        0 0 4px rgba(0, 0, 0, 0.6);       
    color: #ffffff; 
}

.footer-column h3 {
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.footer-column:nth-child(3) a i {
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 6px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.footer-column:nth-child(3) a:hover i {
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6), 
        2px 2px 6px rgba(0, 0, 0, 0.9);
    transform: translateY(-4px) scale(1.1);
}
.footer-column:nth-child(3) a[href*="facebook"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(24, 119, 242, 0.75); 
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-page .contact-info-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.contact-page .contact-info-list li::before {
    content: "" !important; 
}

.contact-page .contact-info-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.4rem;
    color: #007bff;
    width: 1.8rem;
    text-align: center;
}
.contact-page .contact-info-list li:hover::before,
.contact-page .contact-info-list li:hover i {
    animation: none;
    transform: none;
}
.contact-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.contact-info-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.contact-info-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.4rem;
    color: #007bff;
    width: 1.8rem;
    text-align: center;
}

.contact-info-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #007bff;
}

.sidebar-images {
    margin-top: 1.5rem;
}

.sidebar-images h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.sidebar-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    display: block;
    object-fit: cover;
}

.sidebar-images img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.services-overlay {
    min-height: 250px; 
}

.image-row {
    overflow: hidden;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; 
    }
    
    .footer-column:nth-child(3) a i {
        font-size: 1.5rem;
    }
    
    .services-list-overlay h2 {
        font-size: 1.6rem;
    }
    .services-list-overlay ul li {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content { flex-direction: column; text-align: center; gap: 1rem; }
    .nav ul { flex-wrap: wrap; justify-content: center; }
    .two-column { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}