/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}
/* home page */
/* --- Hero Section (Earth Background) --- */
.hero {
    min-height: 100vh;
    width: 100%;
    /* Gradient for glow and image background */
    background: radial-gradient(circle at 50% 100%, rgba(41, 72, 255, 0.35) 0%, transparent 65%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* header */
/* --- Navbar Styles --- */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 8%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1100;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: #fff;
}

/* Hidden Checkbox for Mobile Menu */
#nav-check {
    display: none;
}

/* Desktop Links */
.nav-links a {
    text-decoration: none;
    color: #aaa;
    margin: 0 18px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: #fff;
}

/* Desktop Social Icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #fff;
    margin-left: 22px;
    font-size: 17px;
    opacity: 0.8;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.mobile-socials {
    display: none;
    /* Desktop par hide */
}

/* --- Hero Content Container --- */
.container {
    padding: 0 8% 120px 8%;
    position: relative;
    width: 100%;
}

.meta-info {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.category-badge {
    background: #6236FF;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-badge {
    background: #fff;
    color: #000;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.title {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -1px;
}

.subtitle {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 650px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author p {
    color: #ffffff;
    font-size: 14px;
}

.author span {
    color: #fff;
    font-weight: 600;
}

/* --- Bottom Divider Line --- */
.bottom-line {
    width: 84%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    position: absolute;
    bottom: 40px;
    left: 8%;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    /* Hamburger Menu Button */
    .nav-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1100;
    }

    .nav-btn span {
        width: 28px;
        height: 2px;
        background: #fff;
        transition: 0.4s ease;
    }

    /* Side Drawer Menu Styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0a0a0a;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 50px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    /* Links inside Sidebar */
    .nav-links a {
        font-size: 14px;
        margin: 15px 0;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
        width: auto;
    }

    /* Mobile Social Icons */
    .mobile-socials {
        display: flex;
        gap: 25px;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        width: 80%;
    }

    .mobile-socials a {
        font-size: 22px;
        color: #888;
        margin: 0;
        text-decoration: none;
    }

    /* Menu Toggle Actions */
    #nav-check:checked~.nav-links {
        right: 0;
    }

    #nav-check:checked~.nav-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #nav-check:checked~.nav-btn span:nth-child(2) {
        opacity: 0;
    }

    #nav-check:checked~.nav-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Layout Adjustments for Mobile */
    .social-icons {
        display: none;
    }

    .desktop-br {
        display: none;
    }

    .title {
        font-size: 1.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 15px;
    }

    .container {
        padding: 0 6% 80px 6%;
    }

    .bottom-line {
        width: 88%;
        left: 6%;
        bottom: 30px;
    }

    .hero {
        background-position: center;
    }
}


/*  */


/* trending section */
/* --- Global Trending Layout --- */
.trending-container {
    padding: 80px 8%;
    background-color: #000;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    /* Post section wide, sidebar narrow */
    gap: 60px;
}

.section-underline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

/* --- Left Side: Post Cards --- */
.horizontal-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    margin-bottom: 45px;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

.card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.badge-purple {
    background: #6236FF;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}

.badge-time {
    background: #fff;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.card-info h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
}

.card-info p {
    color: #C3C3C3;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-link:hover {
    gap: 12px;
    opacity: 0.8;
}

/* --- Right Side: Sidebar Container --- */
.right-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Ye har cheez ko right par push karega */
    gap: 40px;
    width: 100%;
}


@media (max-width: 768px) {

    .right-sidebar {

        align-items: flex-start;

    }

}

/* Search Wrapper */
.search-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* Double check for alignment */
}

/* Search Bar Inner - Absolute Fix */
.search-bar-inner {
    background: #333333;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 260px;
    /* Is width ko aap apni marzi se kam ya zyada kar sakte hain */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-bar-inner input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* Weather Box Alignment Fix */
.weather-box {
    width: 260px;
    /* Search bar ke barabar width */
    padding: 0;
    text-align: left;
    /* Text ko box ke andar left rakhein */
}

.cat-widget {
    width: 260px;
    /* Consistency ke liye same width */
}

.weather-top h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #fff;
}

.weather-top span {
    color: #888;
    font-size: 14px;
}

.weather-main-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-main-display i {
    font-size: 45px;
    color: #fff;
}

.temp-val {
    font-size: 55px;
    font-weight: 400;
    color: #fff;
}

.celsius {
    font-size: 20px;
    color: #888;
    vertical-align: super;
    margin-left: 2px;
}

.weather-stats-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.stat {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.stat i {
    color: #fff;
    opacity: 0.8;
}

.weather-days-forecast {
    display: flex;
    justify-content: space-between;
}

.f-day {
    text-align: center;
}

.f-day span {
    display: block;
    font-size: 11px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.f-day strong {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
}

/* Categories */
.cat-widget {
    margin-top: 10px;
}

.cat-nav {
    list-style: none;
    margin-top: 10px;
}

.cat-nav li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.cat-nav li i {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.cat-nav li:hover {
    color: #6236FF;
    padding-left: 5px;
}

.cat-nav li:hover i {
    opacity: 1;
    color: #6236FF;
}

/* --- Responsive Layout --- */
@media (max-width: 1100px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .horizontal-card {
        grid-template-columns: 280px 1fr;
    }

    .search-wrapper {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .horizontal-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image img {
        height: 250px;
    }

    .search-bar-inner {
        max-width: 100%;
    }
}

/*  */

/* health section */
/* Health Section Wrapper */
/* --- Health Section Container --- */
.health-section {
    padding: 60px 8%;
    background-color: #000;
    position: relative;
    /* Line positioning ke liye lazmi hai */
    /* Purane full-width borders ko yahan se khatam kar diya */
    border-top: none;
    border-bottom: none;
}

/* TOP Limited Border */
.health-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    /* Content ke start se align */
    right: 8%;
    /* Content ke end se align */
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    display: block;
}

/* BOTTOM Limited Border */
.health-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    display: block;
}

.health-container {
    width: 100%;
}

.health-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    color: #fff;
}

/* Grid Layout for 4 Cards */
.health-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card Styling */
.health-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.health-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
}

.health-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.health-card:hover img {
    transform: scale(1.05);
}

/* Badges on Image */
.health-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.health-section .badge-purple {
    background: #6236FF;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.health-section .badge-date {
    background: #fff;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Typography */
.health-card h3 {
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .health-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile/Tablet par line ko thora adjust kiya */
    .health-section::before,
    .health-section::after {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 600px) {
    .health-grid {
        grid-template-columns: 1fr;
    }

    .health-img-wrapper {
        height: 220px;
    }
}

/*  */

/* buisness section */

/* Section Container */
.biz-section {
    padding: 60px 8%;
    background-color: #000;
}

.biz-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.biz-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    color: #fff;
}

/* --- Left Side: Posts --- */
.biz-post-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.biz-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.biz-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.badge-orange {
    background: #FF4500;
    /* Business color */
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.badge-time-dark {
    background: #fff;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.biz-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.biz-info p {
    color: #C3C3C3;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.biz-read {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Right Side: Authors Widget --- */
.authors-sidebar {
    display: flex;
    flex-direction: column;
}

.authors-list {
    margin-top: 10px;
}

.author-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

.author-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-item span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.author-item:hover span {
    color: #FF4500;
}

/* Responsive */
@media (max-width: 1000px) {
    .biz-container {
        grid-template-columns: 1fr;
    }

    .authors-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .biz-post-card {
        grid-template-columns: 1fr;
    }
}

/*  */


/* politic section */
/* Section Container */
/* --- Politic Section Container --- */
.pol-section {
    padding: 60px 8%;
    background-color: #000;
    position: relative;
    /* Pseudo-element ke liye zaroori hai */
}

/* Yahan Limited Width Border Line add ki gayi hai */
.pol-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    /* Science section ke sath match karne ke liye same alignment */
    right: 8%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    /* Same subtle color */
}

.pol-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    color: #fff;
}

/* Main Grid Layout */
.pol-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Left side: 2x2 Grid */
.pol-left-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pol-small-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pol-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
}

.pol-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Card (Right) */
.pol-featured-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pol-feat-img {
    width: 100%;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
}

.pol-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges & Meta */
.pol-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.badge-red {
    background: #FF2E2E;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.badge-date-lite {
    background: #fff;
    color: #000;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
}

/* Typography */
.pol-small-card h4 {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.pol-feat-content h2 {
    font-size: 32px;
    margin: 15px 0;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
}

.pol-feat-content p {
    color: #C3C3C3;
    font-size: 15px;
    line-height: 1.6;
}

.pol-read {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pol-main-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile par line alignment */
    .pol-section::before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 600px) {
    .pol-left-grid {
        grid-template-columns: 1fr;
    }

    .pol-feat-content h2 {
        font-size: 24px;
    }
}

/*  */

/* world section */
/* Science Section Base Styles */
/* --- Science Section Container --- */
.sci-section {
    padding: 60px 8%;
    background-color: #000;
    color: #fff;
    position: relative;
}

/* Yahan Limited Width Border Line add ki gayi hai */
.sci-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    /* Padding ke saath align karne ke liye */
    right: 8%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    /* Subtle line color */
}

.sci-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: capitalize;
}

/* --- Grid Layout --- */
.sci-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* Featured Card (Left) */
.sci-featured-card {
    display: flex;
    flex-direction: column;
}

.sci-feat-img {
    width: 100%;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
}

.sci-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta BELOW Image for Featured Card */
.sci-meta-below {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 15px;
    align-items: center;
}

.badge-green {
    background: #44CE1B;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-time-light {
    background: #fff;
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sci-feat-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.sci-feat-content p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sci-read-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Right Side Grid (Small Cards) */
.sci-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sci-small-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sci-img-wrapper {
    position: relative;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
}

.sci-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sci-badges-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.sci-small-card h4 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
}

.sci-read {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

/* --- Responsive Settings --- */
@media (max-width: 1024px) {
    .sci-main-grid {
        grid-template-columns: 1fr;
    }

    .sci-feat-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .sci-feat-content h2 {
        font-size: 24px;
    }

    .sci-right-grid {
        grid-template-columns: 1fr;
    }

    .sci-feat-img {
        height: 250px;
    }
}

/*  */

/* footer */
.ft-section {
    background-color: #000;
    color: #fff;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* Instagram Gallery - NO GAPS */
.ft-insta-container {
    width: 100%;
    margin-bottom: 80px;
}

.ft-insta-title {
    padding: 20px 8%;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    text-align: center;

}

.ft-insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    /* Exact match with image */
    padding: 0 8% 40px 8%;
}

.ft-insta-item {
    aspect-ratio: 1.2 / 1;
    /* Horizontal rectangular look */
    overflow: hidden;
}

.ft-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content Alignment */
.ft-main-container {
    padding: 0 8% 40px 8%;
}

.ft-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1.8fr;
    gap: 40px;
}

/* Logo Alignment */
.ft-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Headings with White Line */
.ft-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Lists */
.ft-list {
    list-style: none;
    padding: 0;
}

.ft-list li {
    margin-bottom: 12px;
}

.ft-list a,
.ft-double-list a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
}

.ft-double-list {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
}

.ft-list-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Subscribe Box - Exact Match */
.ft-sub-wrapper {
    display: flex;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
    margin-top: 10px;
}

.ft-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    outline: none;
    font-size: 13px;
    color: #333;
}

.ft-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

/* Copyright Section with Thin Line */
.ft-bottom {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ft-bottom p {
    font-size: 12px;
    color: #ffffff;
}

/* --- Footer Logo Styling --- */
.ft-logo-container {
    margin-top: -8px;
    /* Heading lines ke saath balance karne ke liye */
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Icon aur Text ke darmiyan space */
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.ft-brand:hover {
    transform: translateY(-2px);
}

.ft-logo-icon {
    width: 32px;
    /* Icon size thora sa bara kiya hai premium feel ke liye */
    height: 32px;
    color: #fff;
    /* White icon */
}

.ft-logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Mobile Alignment */
@media (max-width: 600px) {
    .ft-logo-container {
        margin-bottom: 30px;
    }

    .ft-logo-text {
        font-size: 20px;
    }
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .ft-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .ft-insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .ft-content-grid {
        grid-template-columns: 1fr;
    }

    .ft-insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-logo-text {
        font-size: 20px;
    }

    .ft-heading {
        font-size: 13px;
    }

    .ft-insta-title {
        font-size: 13px;
    }

    .ft-bottom{
        margin-top: 0px;
        border: none;
    }

    .ft-sub-wrapper{
            margin-left: -20px;
    }
}

/*  */

/*  */

/* about page */
/* top section */
/* --- About Feature Section --- */
.ab-feature-section {
    background-color: #000;
    color: #fff;
    padding: 100px 8%;
    font-family: 'Inter', sans-serif;
}

.ab-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Image aur content ka balance */
    gap: 60px;
    align-items: center;
}

/* Tall Image Styling */
.ab-image-tall {
    width: 100%;
    height: 650px;
    border-radius: 4px;
    overflow: hidden;
}

.ab-image-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Wrapper (Right Side) */
.ab-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ab-image-wide {
    width: 100%;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
}

.ab-image-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Styling */
.ab-text-block {
    max-width: 500px;
}

.ab-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ab-description {
    font-size: 15px;
    color: #C3C3C3;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Purple Button */
.ab-btn {
    display: inline-block;
    background-color: #8A2BE2; /* Precise Purple from image */
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.ab-btn:hover {
    background-color: #7215cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .ab-container {
        grid-template-columns: 1fr; /* Stack images on top of each other */
        gap: 40px;
    }
    
    .ab-image-tall {
        height: 500px;
    }

    .ab-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .ab-feature-section {
        padding: 60px 5%;
    }
    
    .ab-image-tall {
        height: 400px;
    }
    
    .ab-image-wide {
        height: 250px;
    }

    .ab-title {
        font-size: 24px; /* Mobile par headings choti */
    }
    
    .ab-description {
        font-size: 14px;
    }
    
    .ab-btn {
        width: 100%; /* Mobile par full width button */
        text-align: center;
    }
}
/*  */
/*  */

/* princing page */
/* pricing section */
/* --- Pricing Section Base --- */
.pr-section {
    background-color: #000;
    color: #fff;
    padding: 100px 8%;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.pr-header {
    margin-bottom: 60px;
}

.pr-main-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Pricing Grid Layout */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

/* Individual Card Styling */
.pr-card {
    padding: 60px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
    min-height: 400px;
}

.pr-card:last-child {
    border-right: none;
}

.pr-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Card Content Typography */
.pr-plan-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    height: 45px; /* Alignment fix */
}

.pr-price {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}

.pr-details {
    font-size: 13px;
    color: #C3C3C3;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Subscribe Button */
.pr-btn {
    display: inline-block;
    background-color: #555555; /* Neutral grey from image */
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pr-btn:hover {
    background-color: #fff;
    color: #000;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-card:nth-child(2) {
        border-right: none;
    }
    .pr-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 600px) {
    .pr-section {
        padding: 60px 5%;
    }
    
    .pr-grid {
        grid-template-columns: 1fr;
    }
    
    .pr-card {
        border-right: none;
        padding: 40px 20px;
    }
    
    .pr-main-title {
        font-size: 16px; /* Mobile font size smaller */
    }
    
    .pr-price {
        font-size: 24px;
    }
}
/*  */
/*  */

/* contact us page */
/* contact form  */
/* --- Contact Section Base --- */
.ct-section {
    background-color: #000;
    color: #fff;
    padding: 100px 8%;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.ct-container {
    width: 100%;
    max-width: 600px; /* Form ki width ko restrict kiya taake centered lage */
    text-align: center;
    padding-top: 50px;
}

.ct-header {
    margin-bottom: 50px;
}

.ct-main-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Form Styling */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-input, .ct-textarea {
    width: 100%;
    background-color: #111; /* Subtle dark grey background */
    border: 1px solid #222; /* Very subtle border */
    border-radius: 12px;
    padding: 18px 25px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.ct-textarea {
    height: 150px;
    resize: none; /* User resize nahi kar sakega jaisa image mein hai */
}

.ct-input::placeholder, .ct-textarea::placeholder {
    color: #555;
}

.ct-input:focus, .ct-textarea:focus {
    border-color: #444;
}

/* Submit Button - Grey Style */
.ct-submit-btn {
    background-color: #777; /* Image wala neutral grey */
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 30px; /* Fully rounded corners */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ct-submit-btn:hover {
    background-color: #fff;
    color: #000;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .ct-section {
        padding: 60px 5%;
    }
    
    .ct-input, .ct-textarea {
        padding: 15px 20px;
        font-size: 14px;
    }

    .ct-main-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ct-submit-btn {
        font-size: 14px;
        padding: 15px;
    }
}

/*  */
/*  */

/* categories page */
/* world categories section */
/* --- Categories Section Base --- */
.cat-section {
    background-color: #000;
    color: #fff;
    padding: 60px 8%;
    font-family: 'Inter', sans-serif;
}

.cat-header {
    margin-bottom: 35px;
}

.cat-main-title {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Grid Configuration - 4 Columns */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Elements */
.cat-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cat-img-box {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img-box img {
    transform: scale(1.05);
}

.cat-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    /* Limit to 2 lines for consistency */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta Data (Badges) */
.cat-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-badge {
    background-color: #8A2BE2; /* Purple World Badge */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: capitalize;
}

.cat-date {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* --- Responsive Layout --- */
@media (max-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .cat-section {
        padding: 40px 5%;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-img-box {
        height: 220px;
    }

    .cat-main-title {
        font-size: 16px;
    }

    .cat-title {
        font-size: 14px;
    }
}
/*  */

/* blog detail page */
/* blog detail section */
/* --- Blog Detail Section --- */
/* --- Updated Blog Detail CSS --- */

.bd-post-wrapper {
    background-color: #000;
    color: #fff;
    padding: 80px 8%;
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.bd-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 80px;
}

/* NEW: Badges Container for Alignment */
.bd-badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.bd-category-tag {
    background-color: #8A2BE2;
    display: inline-block;
    padding: 6px 14px; /* Slightly adjusted for better look */
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    /* margin-bottom removed because wrapper handles it */
}

/* NEW: Date Pill (White Capsule) */
.bd-date-pill {
    background-color: #fff;
    color: #333;
    padding: 6px 14px;
    border-radius: 12px; /* Capsule look */
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-date-pill svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.bd-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bd-author-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bd-author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.bd-author-name {
    font-size: 14px;
    color: #C3C3C3;
}

/* Feature Image */
.bd-feature-img {
    width: 100%;
    margin-bottom: 60px;
}

.bd-feature-img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Content & Typography */
.bd-content {
    max-width: 750px; 
    margin: 0 auto;
}

.bd-sub-heading {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.bd-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #C3C3C3;
    margin-bottom: 25px;
}

/* Blockquote Style */
.bd-quote {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    border-left: 4px solid #fff;
    padding-left: 30px;
    margin: 60px 0;
    color: #fff;
}

.bd-secondary-img {
    width: 100%;
    margin: 50px 0;
}

.bd-secondary-img img {
    width: 100%;
    border-radius: 8px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .bd-main-title {
        font-size: 32px;
    }
    .bd-post-wrapper {
        padding: 60px 5%;
    }
}

@media (max-width: 600px) {
    .bd-main-title {
        font-size: 26px;
    }
    .bd-badges-wrapper {
        gap: 8px;
    }
    .bd-category-tag, .bd-date-pill {
        font-size: 11px;
        padding: 4px 10px;
    }
    .bd-quote {
        font-size: 22px;
        padding-left: 20px;
    }
    .bd-sub-heading {
        font-size: 20px;
    }
    .bd-content p {
        font-size: 15px;
    }
    .bd-header {
        margin-bottom: 30px;
    }
}

/*  */
/*  */

/* related post */
/* --- Related Posts Section --- */
.rp-section {
    background-color: #000;
    color: #fff;
    padding: 60px 8%;
    border-top: 1px solid #222; /* Subtle top divider */
    font-family: 'Inter', sans-serif;
}

.rp-header {
    margin-bottom: 40px;
}

.rp-main-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Grid: 3 Columns as per image */
.rp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rp-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rp-img-box {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    border-radius: 8px;
    overflow: hidden;
}

.rp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rp-card:hover .rp-img-box img {
    transform: scale(1.05);
}

.rp-post-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    /* Clean line clamping */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta Badges (Matching your latest request) */
.rp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rp-badge-world {
    background-color: #8A2BE2;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.rp-pill-date {
    background-color: #fff;
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rp-pill-date svg {
    width: 13px;
    height: 13px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .rp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .rp-grid {
        grid-template-columns: 1fr;
    }
    .rp-section {
        padding: 40px 5%;
    }
    .rp-img-box {
        height: 220px;
    }
}
/*  */