html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

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

:root {
    --red: #e8001d;
    --dark-navy: #1a1a4e;
    --navy: #2b2d7e;
    --orange: #f47d2b;
    --green: #2e7d32;
    --white: #fff;
    --gray: #f5f5f5;
    --dark: #1c1c1c;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
    --blue: #1565c0;
    --fb: #3b5998;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%
}

/* ===== NEWS TICKER ===== */
.ticker-wrap {
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 36px;
}

.ticker-label {
    background: #ff691b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}

.ticker-label svg {
    width: 14px;
    height: 14px;
    fill: #fff
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    color: #fff;
    font-size: 14px;
}

.ticker-track span {
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-track span::before {
    content: '●';
    color: var(--orange);
    font-size: 8px
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ===== TOP HEADER ===== */
.top-header {
    background: #fff;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.th-logo {
    display: flex;
    align-items: center;
    gap: 14px
}

.th-logo-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #f5a623);
    border: 3px solid #ff4e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
    flex-shrink: 0;
}

.th-logo-badge img {
    width: 115px;
    height: 115px;
    object-fit: cover;
}

.th-center h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    color: #ff691b;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase
}

.th-center p {
    font-size: 18px;
    color: var(--orange);
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.th-right {
    text-align: right
}

.th-contact {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px
}

.th-contact span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 3px
}

.th-contact .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.ic-phone {
    background: var(--green);
    color: #fff
}

.ic-mail {
    background: var(--red);
    color: #fff
}

.social-row {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    margin-top: 6px
}

.social-row a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    transition: transform 0.2s;
}

.social-row a:hover {
    transform: scale(1.12)
}

.s-fb {
    background: #3b5998
}

.s-tw {
    background: #1da1f2
}

.s-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.s-yt {
    background: #ff0000
}

/* ===== ADDRESS BAR ===== */
.addr-bar {
    background: #ff691b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 9px 30px;
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
}

.addr-bar .item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.addr-bar .item .ic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.addr-bar .join-btn {
    background: #fff;
    color: var(--red);
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.addr-bar .join-btn:hover {
    background: #ffe0e0;
}

/* ===== NAV ===== */
nav.main-nav {
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    padding: 0 20px;
    top: 0;
    z-index: 9999;
    justify-content: space-evenly;
    width: 100%;
    /* position hata do — JS handle karega */
}

/* Desktop Links */
nav.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.main-nav ul li a {
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
}

nav.main-nav ul li a:hover,
nav.main-nav ul li a.active {
    color: #fff;
    border-bottom-color: var(--orange);
}

nav.main-nav ul li .nav-icon {
    font-size: 13px;
}

nav.main-nav ul li.nav-dropdown {
    position: relative;
}

nav.main-nav ul li.nav-dropdown::after {
    content: '▾';
    font-size: 10px;
    margin-left: 2px;
}

nav.main-nav .login-btn {
    background: var(--orange);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    border-bottom: none !important;
}

/* ===== Mobile Menu ===== */
.nav-toggle {
    display: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .addr-bar {
        flex-direction: column;
        padding: 8px 10px;
        gap: 5px;
    }

    nav.main-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
    }

    nav.main-nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
        /* hidden initially */
    }

    nav.main-nav ul li {
        width: 100%;
    }

    nav.main-nav ul li a {
        padding: 10px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: block;
        padding: 10px;
    }

    nav.main-nav.active ul {
        display: flex;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    /* Overlay bhi yahan common kar do */
    background-color: rgba(0, 0, 0, 0.4);
    /* fallback */
}

.slide.active {
    opacity: 1;
}

.slide-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #fff
}

/* ===== 3-COL LAYOUT ===== */
.page-body {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px 1fr 230px;
    gap: 18px;
    padding: 20px 16px;
}

/* ===== LEFT SIDEBAR ===== */
.left-col {}

.widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}

.widget-title {
    background: var(--dark-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    text-align: center;
    letter-spacing: 0.3px;
    border-bottom: 3px solid var(--red);
}

.widget-title.orange-title {
    background: var(--orange)
}

/* Events widget */
.event-mini {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0
}

.event-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.event-mini:last-of-type {
    border-bottom: none
}

.event-mini h5 {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px
}

.event-thumb {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #e65100, #ff9800);
    border-radius: 5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.event-mini .date-loc {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px
}

.view-all-btn {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 9px;
    margin: 10px 12px;
    border-radius: 5px;
    transition: background 0.2s;
}

.view-all-btn:hover {
    background: var(--dark-navy)
}

/* Follow Us */
.follow-widget {
    padding: 14px 12px
}

.follow-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fb)
}

.fb-page-box {
    background: #f0f2f5;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

.fb-page-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.fb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #f5a623);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fb-page-row h5 {
    font-size: 13px;
    font-weight: 700
}

.fb-page-row span {
    font-size: 11px;
    color: #888
}

.fb-follow-row {
    display: flex;
    gap: 8px;
    font-size: 12px
}

.fb-follow-row button {
    flex: 1;
    padding: 6px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
}

.btn-follow {
    background: var(--fb);
    color: #fff
}

.btn-share {
    background: #e4e6eb;
    color: var(--dark)
}

/* Limited offer banner */
.offer-banner {
    background: linear-gradient(135deg, var(--navy), var(--dark-navy));
    color: #fff;
    padding: 12px;
    margin: 8px 12px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 11.5px;
}

.offer-banner .price {
    font-size: 20px;
    font-weight: 900;
    color: var(--orange);
    margin: 6px 0;
}

.offer-banner .lbl {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
}

/* ===== CENTER COLUMN ===== */
.center-col {}

/* Quick action buttons */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.quick-actions .row2 {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.qa-btn {
    background: var(--dark-navy);
    color: #fff;
    padding: 9px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.qa-btn:hover {
    background: var(--navy);
    transform: translateY(-1px)
}

.qa-btn.full-row {
    grid-column: 1/-1;
    background: var(--navy);
}

/* Latest Activities */
.section-header {
    background: linear-gradient(90deg, #ff691b, #00e815);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 16px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 3px solid var(--red);
}

.activity-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.act-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.act-img.img1 {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9)
}

.act-img.img2 {
    background: linear-gradient(135deg, #fff8e1, #ffecb3)
}

.act-img-real {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.act-body {
    padding: 12px 14px
}

.act-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px
}

.act-body p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 10px
}

.act-social {
    display: flex;
    gap: 7px
}

.act-social a {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    transition: opacity 0.2s;
}

.act-social a:hover {
    opacity: 0.85
}

.as-fb {
    background: #3b5998
}

.as-tw {
    background: #1da1f2
}

.as-wa {
    background: #25d366
}

/* ===== RIGHT SIDEBAR ===== */
.right-col {}

.mgmt-member {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.member-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.mp1 {
    background: linear-gradient(135deg, #f5f0e8, #e8d5b0)
}

.mp2 {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9)
}

.member-info {
    background: var(--dark-navy);
    color: #fff;
    padding: 10px 12px;
    text-align: center;
}

.member-info h5 {
    font-size: 14px;
    font-weight: 700
}

.member-info span {
    font-size: 13px;
    color: #aaa
}

.view-all-mgmt {
    display: block;
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 9px;
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s;
}

.view-all-mgmt:hover {
    background: #c20018
}

/* ===== SECTION BANNER ===== */
.section-banner {
    background: linear-gradient(90deg, #ff691b 60%, #00e815 100%);
    margin: 0 0 0 0;
    padding: 12px 0;
    text-align: center;
    position: relative;
}

.section-banner h2 {
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    background: #fff;
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
    padding: 5px 32px;
    border-radius: 4px;
    /*border: 2px solid var(--orange);*/
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: start;
}

.about-wrap.image-right {
    grid-template-columns: 1fr 200px;
}

.about-img-box {
    width: 200px;
    height: 292px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
    font-size: 70px;
}

.about-text {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px
}

.about-text h3 {
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    border-left: 4px solid var(--orange);
    padding-left: 12px;
    margin-bottom: 12px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 10px;
    text-align: justify;
}

.read-more-btn {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 8px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin: 14px auto;
    display: block;
    width: fit-content;
    transition: background 0.2s;
}

.read-more-btn:hover {
    background: #0d47a1
}

.about-center {
    text-align: center
}

/* ===== OBJECTIVES ===== */
.obj-section {
    background: var(--gray);
    padding: 0 0 30px
}

.obj-carousel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.obj-card {
    background: #fff;
    border-radius: 10px;
    padding: 0px 18px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s;
}

.obj-circle oc1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%"

}

.obj-card:hover {
    transform: translateY(-5px)
}

.obj-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    border: 3px solid #eee;
}

.oc1 {
    background: linear-gradient(135deg, #e8f5e9, #81c784)
}

.oc2 {
    background: linear-gradient(135deg, #e3f2fd, #64b5f6)
}

.oc3 {
    background: linear-gradient(135deg, #fce4ec, #f48fb1)
}

.obj-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px
}

.obj-under {
    width: 36px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 10px
}

.obj-card p {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: justify;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: #c94012
}

.cb-left {
    left: -18px
}

.cb-right {
    right: -18px
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 4px
}

.cdot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 4px;
    cursor: pointer
}

.cdot.active {
    background: var(--orange)
}

/* ===== VIDEOS ===== */
.videos-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-4px)
}

.yt-thumb {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vt1 {
    background: linear-gradient(135deg, #1a1a2e, #16213e)
}

.vt2 {
    background: linear-gradient(135deg, #0f3460, #533483)
}

.vt3 {
    background: linear-gradient(135deg, #e94560, #0f3460)
}

.yt-play {
    width: 52px;
    height: 52px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.video-card:hover .yt-play {
    transform: scale(1.1)
}

.yt-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 3px;
}

.video-body {
    background: #fff;
    padding: 12px 14px
}

.video-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.3
}

.video-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    text-align: justify;
}

.view-all-vid {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    background: var(--red);
    color: #fff;
    padding: 9px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--gray);
    padding: 0 0 30px
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
}

.g-item {
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.g-item img,
.g-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.g-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.g-thumb gt1 img {
    width: 100%;
    height: 140px;
    object-fit: cover"

}

.g-thumb gt5 img {
    width: 100%;
    height: 140px;
    object-fit: cover
}

.gt1 {
    background: linear-gradient(135deg, #e8f5e9, #66bb6a)
}

.gt2 {
    background: linear-gradient(135deg, #fff3e0, #ffa726)
}

.gt3 {
    background: linear-gradient(135deg, #e3f2fd, #42a5f5)
}

.gt4 {
    background: linear-gradient(135deg, #fce4ec, #ef9a9a)
}

.gt5 {
    background: linear-gradient(135deg, #f3e5f5, #ce93d8);
    grid-column: span 2
}

.gt6 {
    background: linear-gradient(135deg, #e0f2f1, #4db6ac);
    grid-column: span 2
}

.g-item:hover .g-thumb,
.g-item:hover .g-img-real {
    transform: scale(1.05)
}

.view-gallery-btn {
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    background: var(--blue);
    color: #fff;
    padding: 9px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== NEWS ===== */
.news-section {
    background: #fff;
    padding: 0 0 30px
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.news-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-4px)
}

.nc-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.ni1 {
    background: linear-gradient(135deg, #e8f5e9, #81c784)
}

.ni2 {
    background: linear-gradient(135deg, #e3f2fd, #64b5f6)
}

.ni3 {
    background: linear-gradient(135deg, #fce4ec, #f48fb1)
}

.nc-body {
    padding: 14px
}

.nc-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.nc-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
}

.nc-btn {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.nc-btn:hover {
    background: #0d47a1
}

.view-all-news {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
    background: var(--blue);
    color: #fff;
    padding: 9px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.test-section {
    background: var(--gray);
    padding: 0 0 40px
}

.test-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px
}

.test-card blockquote {
    font-size: 14.px;
    color: var(--text-light);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 16px;
}

.test-card blockquote::before {
    content: '"';
    font-size: 28px;
    color: #ddd;
    line-height: 0;
    vertical-align: -12px;
    margin-right: 4px
}

.test-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #eee
}

.ta-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #ff8a65, #ff5722)
}

.av2 {
    background: linear-gradient(135deg, #64b5f6, #1565c0)
}

.av3 {
    background: linear-gradient(135deg, #a5d6a7, #2e7d32)
}

.ta-info h5 {
    font-size: 14.5px;
    font-weight: 600
}

.ta-info span {
    font-size: 13.5px;
    color: var(--text-light)
}

/* ===== CONTACT CARDS (above footer) ===== */
.contact-cards {
    background: #2a2a2a;
    padding: 28px 20px;
}

.cc-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cc-item {
    background: #383838;
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
    color: #fff;
    transition: transform 0.2s;
}

.cc-item:hover {
    transform: translateY(-3px)
}

.cc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ci-addr {
    background: #5e35b1
}

.ci-phone {
    background: #00897b
}

.ci-mail {
    background: #e53935
}

.ci-hours {
    background: #f57c00
}

.cc-item h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 7px
}

.cc-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #eee
}

/* Tablet */
@media (max-width: 992px) {
    .cc-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cc-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 40px 20px 0
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
}

.foot-brand {}

.foot-logo {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--navy));
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.foot-brand h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.foot-brand .tagline {
    font-size: 11.5px;
    color: var(--orange);
    margin-bottom: 12px
}

.foot-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
}

.follow-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #888
}

.foot-socials {
    display: flex;
    gap: 8px
}

.foot-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    transition: transform 0.2s;
}

.foot-socials a:hover {
    transform: scale(1.1)
}

.foot-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.foot-col ul {
    list-style: none
}

.foot-col ul li {
    margin-bottom: 8px
}

.foot-col ul li a {
    font-size: 15px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.foot-col ul li a::before {
    content: '›';
    color: var(--orange);
    font-weight: 900
}

.foot-col ul li a:hover {
    color: #fff
}

.foot-fb-widget {
    background: #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
}

.foot-fb-header {
    background: var(--fb);
    color: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foot-fb-header .ffi {
    font-size: 18px;
    font-weight: 900
}

.foot-fb-header div h5 {
    font-size: 13px;
    font-weight: 700
}

.foot-fb-header div span {
    font-size: 11px;
    opacity: 0.8
}

.foot-fb-body {
    padding: 10px 12px;
    background: #f0f2f5
}

.foot-fb-body p {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px
}

.foot-fb-body .ff-btn {
    background: var(--fb);
    color: #fff;
    border: none;
    padding: 7px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.footer-bottom-bar {
    background: #111;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-bar p {
    font-size: 16px;
    color: #888;
}

.footer-bottom-bar a {
    color: #888;
    font-size: 16px;
    margin-left: 14px;
    transition: color 0.2s
}

.footer-bottom-bar a:hover {
    color: #fff
}

.footer-credit {
    background: #0a0a0a;
    padding: 10px;
    text-align: center;
    font-size: 12.5px;
    color: #555;
}

.footer-credit strong {
    color: var(--orange)
}


/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease
}

.reveal.on {
    opacity: 1;
    transform: none
}

/* Responsive */
@media(max-width:1050px) {
    .page-body {
        grid-template-columns: 1fr;
        padding: 14px
    }

    .left-col,
    .right-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .about-wrap {
        grid-template-columns: 1fr
    }

    .about-img-box {
        width: 100%;
        height: 160px
    }

    .obj-carousel {
        grid-template-columns: 1fr 1fr
    }

    .news-grid,
    .test-grid,
    .videos-wrap {
        grid-template-columns: 1fr 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr
    }

    .cc-grid {
        grid-template-columns: 1fr 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {
    .th-center h1 {
        font-size: 19px
    }

    .top-header {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .th-right {
        text-align: center
    }

    .social-row {
        justify-content: center
    }

    nav.main-nav {
        flex-wrap: wrap
    }

    .obj-carousel,
    .news-grid,
    .test-grid,
    .videos-wrap,
    .quick-actions {
        grid-template-columns: 1fr
    }

    .cc-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}



.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #000000;
}

.dropdown:hover .dropdown-content {
    display: block;
}



body,
ul,
li,
a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Styling */
.main-nav {
    background: #007bff;
    font-family: Arial, sans-serif;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: #0056b3;
    color: #fff;
}

/* Dropdown Menu */
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0056b3;
    min-width: 180px;
    z-index: 1000;
    border-radius: 0 0 5px 5px;
}

.main-nav ul li ul li a {
    padding: 10px 15px;
    font-weight: normal;
}

.main-nav ul li:hover>ul {
    display: block;
}

/* Responsive: Wrap items on small screens */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li ul {
        position: static;
    }
}




/* ====== STATS BAR ====== */
.stats-bar {
    display: flex;
    gap: 0;
    background: white;
    border: 1px solid rgba(100, 200, 150, 0.15);

    overflow: hidden;
    border-bottom: 3px solid #e85210;
    border-top: 3px solid #e85210;


}

.stat-item {
    padding: 40px 52px;
    text-align: center;
    position: relative;
    flex: 1;
    transition: background 0.3s;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(100, 200, 150, 0.15);
}

.stat-item:hover {
    background: rgba(100, 200, 150, 0.04);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #e85210;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
    transition: transform 0.2s;
    font-weight: 900;
}

.stat-item:hover .stat-num {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(75, 75, 75);
    font-weight: 800;
}

/* Counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-num.animated {
    animation: countUp 0.4s ease forwards;
}

@media (max-width: 600px) {
    .stats-bar {
        flex-direction: column;
        width: 90vw;
    }

    .stat-item:not(:last-child)::after {
        right: 10%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 80%;
        left: 10%;
    }

    .stat-item {
        padding: 28px 24px;
    }
}

/* ====== QUICK BAR ====== */
.quick-bar {
    background: #ff691b;
    display: flex;
    justify-content: center;
}

.quick-bar a {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: background .2s;
    white-space: nowrap;
}

.quick-bar a:last-child {
    border-right: none
}

.quick-bar a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.page-section-bar {
    background: linear-gradient(90deg, #ff691b 60%, #00e815 100%);
    padding: 12px 0;
    text-align: center;
}

.page-section-bar h2 {
    display: inline-block;
    background: #fff;
    color: var(--dark-navy);
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 900;
    padding: 5px 36px;
    border-radius: 3px;
    border: 2px solid var(--orange);
}


/* ====== OBJECTIVES ====== */
.obj-wrap {
    max-width: 1250px;
    margin: 0 auto;
    padding: 24px 20px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.obj-card {
    background: #fff;
    border-radius: 10px;
    padding: 22px 18px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .07);
    border-top: 4px solid var(--orange);
    transition: transform .25s;
}

.obj-card:hover {
    transform: translateY(-5px)
}

.obj-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.obj-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.oi-1 {
    background: linear-gradient(135deg, #e3f2fd, #64b5f6)
}

.oi-2 {
    background: linear-gradient(135deg, #e8f5e9, #66bb6a)
}

.oi-3 {
    background: linear-gradient(135deg, #fce4ec, #f48fb1)
}

.obj-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 8px
}

.obj-card p {
    font-size: 14px;
    line-height: 1.65
}


.ta-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.floating-icons {
    position: fixed;
    left: 20px;
    /* Left side */
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    position: relative;
}

/* WhatsApp Color */
.whatsapp {
    background-color: #25D366;
}

/* Call Color */
.call {
    background-color: #e91e63;
}

/* Pulse Animation */
.float-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
    transition: 0.3s;
}


.footer-bottom-bar {
    text-align: center;
    display: block;
    /* Flex remove agar hai */

}

.footer-bottom-bar a {
    display: inline-block;
    margin: 0 5px;

}


/* footer-logo */

.foot-brand {
    max-width: 260px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
    border-radius: 50%;

}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 18px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s;
}

.footer-social-icons a:hover {
    background: #e74c3c;
    /* apne brand color se replace karo */
}




/* Obj Wrap - Responsive Grid */
.obj-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .obj-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 4%;
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
    .obj-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 5%;
    }

    .obj-card {
        padding: 20px;
    }

    .obj-icon-row {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .obj-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .obj-card h4 {
        font-size: 1rem;
        margin: 0;
    }

    .nc-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}



/* About Section - Responsive */
@media (max-width: 768px) {
    .about-wrap {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .about-img-box {
        width: 100% !important;
        height: 260px !important;
        flex: none !important;
    }

    .about-img-box img {
        height: 260px !important;
    }

    .about-text {
        flex: none !important;
        width: 100% !important;
        padding: 0 16px;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-center {
        text-align: center;
        padding: 10px 16px 20px;
    }

    .read-more-btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}



.popup {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.popup-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
}

.close {
    position: absolute;
    top: 40px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width:768px) {

    .popup {
        padding-top: 60px;
    }

    .popup-content {
        max-width: 95%;
        max-height: 75%;
        margin: auto;
    }

    .close {
        top: 40px;
        right: 20px;
        font-size: 30px;
    }

}

/* ===== Google Translate Default UI Hide ===== */
#google_translate_element {
    display: none;
}

.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;


}

/* ===== Language Dropdown ===== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    overflow: hidden;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-menu a:hover {
    background: #f5f5f5;
}

.lang-menu a.active {
    font-weight: 600;
    color: #1a73e8;
}



#google_translate_element {
    display: none;
}

.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    overflow: hidden;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-menu a:hover {
    background: #f5f5f5;
}

.lang-menu a.active {
    font-weight: 600;
    color: #1a73e8;
}

#google_translate_element {
    display: none;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
}

.lang-menu a:hover {
    background: #f5f5f5;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===== SLIDE ===== */
.slide {
    position: absolute;

    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Fallback bg colors agar image na mile */
.slide-1 {
    background-color: #1a3a5c;
    background-image: url('assets/images/hero/hero1.jpg');
}

.slide-2 {
    background-color: #2c5f2e;
    background-image: url('assets/images/hero/hero2.jpg');
}



/* ===== DARK OVERLAY ===== */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* ===== SLIDE CONTENT ===== */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 60px;
    color: #fff;
}

/* --- Tag --- */
.slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

/* --- Heading --- */
.slide-heading {
    font-size: clamp(38px, 8vw, 70px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;

}

/* --- Subheading --- */
.slide-subheading {
    font-size: clamp(19px, 2.2vw, 23px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    max-width: 520px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

/* --- Buttons --- */
.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.55s, transform 0.6s ease 0.55s;
}

.slide.active .slide-tag,
.slide.active .slide-heading,
.slide.active .slide-subheading,
.slide.active .slide-btns {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #ff691b;
    color: #fff;
    border: 2px solid#ff691b;
}

.btn-primary:hover {
    background: #ff691b;
    border-color: #ff691b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 68, 26, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== ARROWS ===== */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: #e8441a;
    border-color: #e8441a;
}

.arrow-prev {
    left: 20px;
}

.arrow-next {
    right: 20px;
}

/* ===== DOTS ===== */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e8441a;
    width: 28px;
    border-radius: 5px;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
    .slide-content {
        max-width: 500px;
        padding: 0 40px;
    }

    .slide-heading {
        font-size: clamp(24px, 5vw, 42px);
    }

    .slide-subheading {
        font-size: clamp(13px, 2vw, 16px);
        max-width: 450px;
    }

    .slide-btns {
        gap: 12px;
    }
}

/* Large Phones / Portrait tablets */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 24px;
        max-width: 100%;
    }

    .slide-heading {
        font-size: clamp(22px, 6vw, 36px);
    }

    .slide-subheading {
        font-size: clamp(12px, 3vw, 16px);
        max-width: 100%;
    }

    .slide-btns {
        flex-direction: column;
        gap: 12px;
    }

    .arrow {
        display: none;
        /* arrows hide on mobile */
    }

    .btn {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .slide-heading {
        font-size: clamp(20px, 7vw, 28px);
    }

    .slide-subheading {
        font-size: clamp(11px, 4vw, 14px);
    }

    .slide-btns {
        gap: 6px;
    }
}

.footer-bottom-bar a {
    color: #ff691b;
}

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {
    .slide-content {
        max-width: 700px;
        /* slightly wider for tablets */
        padding: 0 40px;
    }

    .slide-heading {
        font-size: clamp(40px, 10vw, 85px);
        /* slightly bigger */
    }

    .slide-subheading {
        font-size: clamp(20px, 3.5vw, 21px);
        max-width: 480px;
        /* fit tablet screen better */
    }

    .slide-btns {
        gap: 14px;
        flex-wrap: wrap;
        /* wrap if buttons overflow */
    }

    /* Adjust overlay if needed */
    .slide-overlay {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.3) 60%,
                rgba(0, 0, 0, 0.05) 100%);
    }
}