/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Make footer stick to the bottom when content is short */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Push footer down */
}


body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F4F4F4;
    color: #333;
    line-height: 1.6;
}

/* Header & Navbar */
header {
    background-color: #1F4E79;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar .logo {
    height: 75px;
}

.logo {
    background-color: white;
    /* padding: 5px; */
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.follow a{
    text-decoration: none;
    font-size: 30px;
}
#fac{
    color: blue;
}
#ins{
    color: red;
}
#lin{
    color: #1F4E79;
}

.nav-links .active {
    border-bottom: 2px solid #D4AF37;
}
.nav-links a:hover,
.nav-links .active { border-bottom: 2px solid #D4AF37; }

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

.menu-toggle img {
    width: 30px;
}

/* Hero Section */
.hero {
    background-color: #1F4E79;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #D4AF37;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* ===== NEW: Testimonials ===== */
.testimonials {
    background: #fff;
    padding: 60px 20px;
}
.testimonials h2 { text-align: center; margin-bottom: 20px; }
.testimonial-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.testimonial {
    background: #F8FAFC;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    line-height: 1.6;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial .name { margin-top: 10px; font-weight: 700; color: #1F4E79; }

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Services Overview */
.services-overview {
    padding: 40px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    width: 250px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Services Page */
.services-page {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: white;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: #F4F4F4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item h2 {
    color: #1F4E79;
    margin-bottom: 10px;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
/* About Page */
.about {
    padding: 40px 20px;
    background-color: white;
    max-width: 900px;
    margin: auto;
}

.vision-mission {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.vm-card {
    background-color: #1F4E79;
    color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Contact Page */
.contact-page {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    margin-top: 30px;
    width: 100%;
}

.contact-form-container{
    width: 30%;
}

.contact-info{
    width: 67%;
}

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

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 16px;
}

.contact-form button {
    background-color: #1F4E79;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #163b5a;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    background-color: #F4F4F4;
    padding: 20px;
    border-radius: 8px;
}

.contact-details a {
    color: #1F4E79;
    text-decoration: none;
}

.contact-info{
    display: flex;
    flex-wrap: wrap;
}

.map-contain{
    width: 100%;
}

/* Footer */
footer {
    background-color: #1F4E79;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    /* position: fixed;
    bottom: 75px;
    right: 20px;
    z-index: 100;
    color: green; */
    position: fixed;
    right: 5px;
    bottom: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #1F4E79;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .contact-container {
    display: block;
   
    width: 100%;
}

.contact-form-container{
    width: 100%;
}

.contact-info{
    width: 100%;
}
}
