/* MAKE NAVBAR ABOVE EVERYTHING */
.navbar-main,
.top-bar,
.header-nav-agileits {
    position: relative;
    z-index: 9999;
}

/* DROPDOWN FIX */
.menu ul li ul {
    position: absolute;
    z-index: 9999;   /* bring dropdown on top */
    background: #1e8449;
}

/* FIX IMAGE SECTION */
.banner,
.slider,
.flexslider,
.carousel,
img {
    position: relative;
    z-index: 1;
}

/* SECTION BACKGROUND */
.top_spl_courses {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4efe9);
}

/* HEADING */
.headerw3 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
    letter-spacing: 1px;
}

/* TABS */
.resp-tabs-list {
    text-align: center;
    margin-bottom: 30px;
}

.resp-tabs-list li {
    display: inline-block;
    padding: 10px 25px;
    margin: 5px;
    background: #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.resp-tabs-list li:hover,
.resp-tabs-list .resp-tab-active {
    background: #2E7D32;
    color: #fff;
}

/* CARD DESIGN */
.card-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* HEADINGS */
.card-box h4 {
    color: #2E7D32;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

/* VIDEO */
.video-box iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/* IMAGE */
.img-box {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* BUTTON */
.custom-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #2E7D32;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.custom-btn:hover {
    background: #1b5e20;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .card-box {
        margin-bottom: 20px;
    }
}

/* SECTION BACKGROUND */
.tripada-section {
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* TITLE */
.main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 50px;
    position: relative;
}

.main-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #43a047;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* GRID */
.tripada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

/* CARD DESIGN */
.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* HEADINGS */
.card h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.highlight {
    font-size: 20px;
    color: #388e3c;
    margin-bottom: 15px;
}

/* TEXT */
.card p {
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

/* IMAGE CARD */
.image-card {
    text-align: center;
}

.image-card img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.image-card img:hover {
    transform: scale(1.05);
}




/* GENERAL */
.container {
    width: 95%;
    margin: auto;
}

/* TOP HEADER */
.top-header {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    width: 60px;
    margin-right: 10px;
}

.logo-section span {
    font-size: 20px;
    font-weight: 600;
}

/* INFO */
.info-section {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 13px;
}

.info-section a,
.info-section span {
    text-decoration: none;
    color: #333;
}

.info-section i {
    margin-right: 5px;
    color: #145a32;
}

/* NAVBAR */
.navbar-main {
    background: #145a32;
}

.nav-flex {
    display: flex;
    align-items: center;
}

/* MENU */
.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    color: white;
    padding: 14px 18px;
    display: block;
    text-decoration: none;
    font-size: 14px;
}

/* HOVER */
.menu ul li a:hover {
    background: #2ecc71;
}

/* DROPDOWN */
.menu ul li ul {
    display: none;
    position: absolute;
    background: #1e8449;
    top: 100%;
    left: 0;
    min-width: 200px;
}

.menu ul li:hover > ul {
    display: block;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .menu {
        display: none;
        width: 100%;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu ul li ul {
        position: static;
    }

    .menu ul li.active > ul {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

/* FOOTER MAIN */
.footer-main {
    background: linear-gradient(135deg, #0f3d2e, #145a32, #1e8449);
    color: #fff;
    padding-top: 50px;
    font-family: 'Segoe UI', sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 50px;
}

/* COLUMN */
.footer-col {
    width: 23%;
    min-width: 220px;
    margin-bottom: 30px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    border-left: 4px solid #2ecc71;
    padding-left: 10px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d5f5e3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #2ecc71;
    padding-left: 6px;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #2ecc71;
    transform: scale(1.1);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.25);
    font-size: 14px;
}

.footer-bottom a {
    color: #2ecc71;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-col {
        width: 100%;
    }
}