:root {
    --primary-color: #966528;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --headline: #331F00;
}

/* ************************INNER BANNER ******************************  */

.inner-banner {
    position: relative;
    height: 50vh;
    display: flex;
    /* justify-content: center; */
    align-items: center;



}

/* Overlay effect */
.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* dark overlay */
}

.inner-banner h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    margin: 0;
    color: #fff;
    position: relative;
    z-index: 99;
}

/* ************************INNER BANNER ******************************  */


/* ************************************ CONTACT FORM *******************************  */

section.cont {
    padding: 60px 20px;
    background: #fff;
}





/* Left Image */
.image-anime img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 630px;
    object-fit: cover;
}

/* Headings */
.sub-head {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Contact Page Form */
.contactpageform {
    background: #fafafa;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contactpageform label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.contactpageform input,
.contactpageform textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.contactpageform input:focus,
.contactpageform textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(167, 139, 118, 0.2);
}

.contactpageform textarea {
    resize: none;
    min-height: 100px;
}

.contactpageform .btn2 {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.contactpageform .btn2:hover {
    background: #8d725c;
}

/* Contact Info Cards */
.cont1-sec {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.cont1-sec:hover {
    transform: translateY(-5px);
}

.ic-n {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.cont1-txt h5 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.cont1-txt p,
.cont1-txt a {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
}

.cont1-txt a:hover {
    color: var(--primary-color);
}


/* ********************** contact details ********************************  */

/* Contact Info Section */
.contact-info-section {
    padding: 60px 20px;
    background: #fafafa;
    font-family: "Poppins", sans-serif;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.info-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    /* Accent Color */
    flex-shrink: 0;
}

.info-content h5 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.info-content p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.info-content a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}


/* Visit Section */
.visit-section {
    padding: 30px 20px;

}

.visit-container {
    max-width: 1200px;
    margin: auto;
}

.visit-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.visit-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.visit-text {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Responsive Map */
.map-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* **************************  */


/* ************************* Marquee Effect ************************************  */



.section-title {
    font-size: 28px;
    font-weight: bold;
    margin: 30px;
}

.highlight {
    background: yellow;
    padding: 0 5px;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin: 0 50px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.marquee-content img:hover {
    filter: grayscale(0%);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.custom-section {
    scroll-margin-top: 300px;
}

.form-control:focus {

    outline: none;
    box-shadow: none;   /* removes glow */
}
