body {
    margin: 0;
    font-family: Open Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #777;
    overflow-x: hidden;
    padding-top: 150px;

}

html,
body {
    overflow-x: hidden;
}



/* Navbar background */
/* ================= NAVBAR ================= */
.custom-navbar {
    background-color: #B0DEA1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    border-bottom: 1px solid #2d0a55;
    height: 150px;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    

}

/* Nav links */
.navbar .nav-link {
    /* color: #2d0a55 !important; */
    font-weight: 500;
    margin: 0 12px;
    transition: 0.3s;
    font-weight:bold;
    color: #3d077a;
}

/* Hover */
.navbar .nav-link:hover {
    color: #fff !important;
    background-color:#3d077a;
    border-radius: 10px;
}

/* Active link */
.navbar .nav-link.active {
    border-bottom: 2px solid ;
    color: #3d077a;
}

/* ================= DROPDOWN ================= */
.navbar .dropdown-menu {
    border-radius: 10px;
    /* border: none; */
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
}

/* Dropdown items */
.navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

/* Hover effect */
.navbar .dropdown-item:hover {
    background-color: #B0DEA1;
    color: #3d077a;
    padding-left: 25px;
}

.breadcrumb{
    color: #a39b9b;
}


.breadcrumb a {
    text-decoration: none;
    font-size: 14px;
    color: #B0DEA1;
}

.breadcrumb a:hover {
    text-decoration: underline ;
    
}

/* ================= DESKTOP HOVER ================= */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .navbar-nav {
        background: #B0DEA1;
        padding: 15px;
    }

    .navbar .nav-link {
        margin: 10px 0;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        text-align: center;
    }

    .navbar .dropdown-item {
        padding: 12px;
    }
}

.info-box {
    border: 1px solid #e0e0e0;
    padding: 25px;
    background: #fff;
    height: 100%;
}


.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler::before {
    content: "☰";
    font-size: 24px;
    color: #3d077a;
}

/* Title */
.box-title {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Image fix */
.info-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    .info-box {
        padding: 20px;
    }
}


/* Section background */
.service-section {
    background: #f9f9f9;
}

/* Box styling */
.service-box {
    padding: 20px;
    height: 100%;
}

/* Icons */
.service-icon {
    width: 60px;
    margin-bottom: 15px;
}

/* Heading */
.service-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT ALIGNMENT FIX */
.service-box p {
    text-align: justify;
    /*same like your screenshot */
    line-height: 1.8;
    /* proper spacing */
    font-size: 14px;
    color: #555;
}

/* Equal height columns */
.service-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 991px) {
    .service-box {
        text-align: center;
    }

    .service-box p {
        text-align: justify;
    }
}


/* Center everything */
.service-box {
    text-align: center;
    padding: 20px;
    height: 100%;
}

/* ICON CENTER FIX */
.service-icon {
    width: 60px;
    display: block;
    margin: 0 auto 15px auto;
    /* 🔥 centers image */
    transition: 0.4s ease;
}

/* 🔥 HOVER EFFECT */
.service-box:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    /* zoom + slight rotate */
}

/* Optional: add glow effect */
.service-box:hover .service-icon {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* Heading */
.service-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.service-box p {
    text-align: justify;
    line-height: 1.8;
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .service-box {
        margin-bottom: 20px;
    }
}

.page-title {
    margin-top: 0;
}


.page-title {
    margin-top: 0;
}

.page-header-section {
    margin-top: 0;
    padding-top: 0;
}

.bg-image {
    margin-top: 0 !important;
}

.page-banner,
.bg-image {
    padding-top: 40px;
    /* 🔥 pushes content down */
    padding-bottom: 60px;
}

/* ===== TABLE BASE ===== */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

/* Header */
.custom-table thead {
    background-color: #B0DEA1;
    color: #fff;
}

.custom-table th {
    text-align: left;
    padding: 14px;
    font-weight: 600;
}

/* Body */
.custom-table td {
    padding: 12px;
    border: 1px solid #B0DEA1;
    color: #555;
    vertical-align: top;
}

/* Alternate rows */
.custom-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover */
.custom-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {

    .custom-table {
        font-size: 14px;
    }

    .custom-table th,
    .custom-table td {
        padding: 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .custom-table {
        font-size: 13px;
    }

    .custom-table th,
    .custom-table td {
        padding: 8px;
    }
}

/* Horizontal scroll for small screens */
.table-responsive {
    overflow-x: auto;
}

.contact-info {
    margin-left: 100px;
}

.map {
    margin-right: 100px;
}


/* SECTION BACKGROUND LIKE SCREENSHOT */
.director-section {
    background: #f5f5f5;
    padding: 40px 20px;
}

/* CARD */
.director-card {
    padding: 20px;
}

/* IMAGE */
.image img {
    width: 140px;
    height: auto;
    border-radius: 4px;
}

/* NAME */
.subtitle h5 {
    color: #3d077a;
    font-weight: 700;
    margin-top: 10px;
    font-size: 18px;
}

.subtitle p {
    color: #3d077a;
    font-weight: 600;
    margin: 0;
}

.subtitle{
    transition: 0.3s;

}

/* HEADING (MATCH SCREENSHOT STYLE) */
.director-heading {
    color: #3d077a;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* PARAGRAPH */
.content-responsive p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* ✅ TABLET */
@media (max-width: 992px) {

    .image img {
        width: 130px;
    }

    .director-heading {
        font-size: 22px;
    }
}

/* ✅ MOBILE */
@media (max-width: 768px) {

    .director-section {
        padding: 30px 15px;
    }

    .image img {
        width: 120px;
    }

    .director-heading {
        text-align: center;
        font-size: 20px;
    }

    .content-responsive p {
        font-size: 14px;
    }

    .subtitle h5 {
        font-size: 16px;
    }
}

/* ✅ SMALL MOBILE */
@media (max-width: 480px) {

    .image img {
        width: 100px;
    }

    .content-responsive p {
        font-size: 13px;
        line-height: 1.7;
    }
}


/* Contact SECTION */
.contact-section {
    background: #f5f5f5;
    padding: 40px 20px;
}

/* HEADINGS */
.section-title {
    font-weight: 600;
    margin-bottom: 20px;
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* FORM */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

form input:focus,
form textarea:focus {
    border-color: #7bbf3f;
}

/* BUTTON */
form button {
    background: #6ad446;
    color: white;
    border: 1px solid #51a835;
    padding: 8px 20px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #7bbf3f;
}

/* ADDRESS */
.address-section h4 {
    color: #2b6cb0;
    margin-bottom: 15px;
}

.address-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ✅ TABLET */
@media (max-width: 992px) {
    .map-container iframe {
        height: 250px;
    }
}

/* ✅ MOBILE */
@media (max-width: 768px) {

    .section-title {
        text-align: center;
    }

    form button {
        width: 100%;
    }

    .address-section {
        text-align: center;
    }
}

/* ✅ SMALL MOBILE */
@media (max-width: 480px) {

    .map-container iframe {
        height: 200px;
    }

    form input,
    form textarea {
        font-size: 13px;
    }
}


/* FOOTER SECTION */
/* ===== FOOTER FINAL FIX ===== */

.footer-section {
    background: black;
    padding: 60px 0;
}

.footer-title {
    color: #B0DEA1;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: #fff;
    line-height: 1.8;
    font-size: 14px;
}

/* MAP SIZE PERFECT */
.footer-map {
    width: 100%;
    height: 320px;
    border: 0;
}

/* COPYRIGHT */
.footer {
    background: black;
    color: #B0DEA1;
}

.footer a {
    color: #B0DEA1;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-map {
        margin-top: 20px;
        height: 250px;
    }
}

.footer-home {
    background: #f5f5f5;
    padding: 50px 0;
}

.footer-home h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* LIST */
.footer-list {
    font-size: 14px;
    list-style: disc;
    padding-left: 20px;
}

.footer-list li {
    margin-bottom: 8px;
}

/* LINKS */
.footer-list a {
    text-decoration: none;
    color: #68a830;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-list a:hover {
    color: #3d077a;
    padding-left: 5px;
}

/* TEXT */
.footer-home p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* MAP */
.footer-map {
    width: 100%;
    height: 220px;
    border: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .footer-home {
        padding: 40px 20px;
    }

    .footer-map {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-home {
        text-align: center;
    }

    .footer-list {
        list-style: none;
        padding-left: 0;
    }

    .footer-list li {
        margin-bottom: 10px;
    }

    .footer-map {
        margin-top: 20px;
        height: 180px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-home h4 {
        font-size: 18px;
    }

    .footer-home p {
        font-size: 13px;
    }

    .footer-map {
        height: 160px;
    }
}