﻿
/* =====================================================
   36Knockout Global Stylesheet
   Author : 36Knockout
   Version: 1.0
===================================================== */

/* ===================== RESET ===================== */

*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

/* ===================== ROOT ===================== */

:root{

    /* Brand Colors */

    --primary:#0d6efd;
    --primary-dark:#0b5ed7;
    --secondary:#2563eb;

    /* Backgrounds */

    --bg:#f8fafc;
    --white:#ffffff;
    --light:#f1f5f9;

    /* Text */

    --text:#111827;
    --text-light:#64748b;

    /* Borders */

    --border:#e2e8f0;

    /* Shadows */

    --shadow-sm:0 2px 8px rgba(0,0,0,.05);
    --shadow-md:0 8px 25px rgba(0,0,0,.08);
    --shadow-lg:0 15px 40px rgba(0,0,0,.12);

    /* Radius */

    --radius:14px;

    /* Animation */

    --transition:.3s ease;
}

/* ===================== BODY ===================== */

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:var(--text);
    background:var(--bg);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* ===================== LINKS ===================== */

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

/* ===================== IMAGES ===================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===================== BUTTONS ===================== */

button{
    cursor:pointer;
    border:none;
    font:inherit;
}

/* ===================== LISTS ===================== */

ul,
ol{
    list-style:none;
}

/* ================= TOP HEADER ================= */

.top-header{
    background:linear-gradient(135deg,#0ea5e9,#6366f1);
    padding:12px 20px;
    color:#fff;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1200px;
    margin:auto;
}

/* LOGO */

.logo img{
    height:45px;
    width:auto;
}

/* TITLE */

.site-title{
    text-align:right;
}

.site-title h1{
    font-size:18px;
    margin:0;
    font-weight:800;
}

.site-title p{
    margin:2px 0 0;
    font-size:12px;
    opacity:0.9;
}

/* RESPONSIVE */

@media(max-width:768px){

    .header-inner{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .site-title{
        text-align:center;
    }
}

/*==============================
        PREMIUM HERO
===============================*/

.hero{

    position:relative;
    overflow:hidden;

    padding:110px 20px;

    background:
    radial-gradient(circle at top left,#dbeafe 0%,transparent 40%),
    radial-gradient(circle at bottom right,#ede9fe 0%,transparent 45%),
    linear-gradient(135deg,#f8fbff,#ffffff);

}


/* Decorative circles */

.hero::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:#2563eb10;

    border-radius:50%;

    top:-220px;
    left:-120px;

}

.hero::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    background:#7c3aed10;

    border-radius:50%;

    bottom:-180px;
    right:-100px;

}

.hero-content{

    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.hero-badge{

    display:inline-block;

    background:#ffffff;

    color:#2563eb;

    padding:10px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    border:1px solid #dbeafe;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:30px;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.1;

    color:#0f172a;

    margin-bottom:20px;

}

.hero h1 span{

    background:linear-gradient(90deg,#2563eb,#7c3aed);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-text{

    font-size:20px;

    color:#334155;

    line-height:1.8;

    max-width:820px;

    margin:auto;

}

.hero-sub{

    margin-top:25px;

    font-size:17px;

    color:#64748b;

    max-width:760px;

    margin-left:auto;
    margin-right:auto;

    line-height:1.8;

}

.hero-buttons{

    margin-top:45px;

}

.hero-buttons a{

    display:inline-block;

    margin:10px;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

    font-size:15px;

}

.hero-buttons a:first-child{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    box-shadow:0 18px 35px rgba(37,99,235,.30);

}

.hero-buttons a:first-child:hover{

    transform:translateY(-4px);

    box-shadow:0 24px 40px rgba(37,99,235,.40);

}

.hero-buttons .outline{

    background:#fff;

    color:#2563eb;

    border:2px solid #2563eb;

}

.hero-buttons .outline:hover{

    background:#2563eb;

    color:#fff;

}

/* Mobile */

@media(max-width:768px){

.hero{

    padding:70px 18px;

}

.hero h1{

    font-size:36px;

}

.hero-text{

    font-size:16px;

}

.hero-sub{

    font-size:15px;

}

.hero-buttons a{

    display:block;

    width:100%;

    margin:12px 0;

}

}



/* ================= RELATED NEWS ================= */

.related-news{
    padding:50px 20px;
    background:#f8fafc;
}

.related-news h2{
    text-align:center;
    font-size:32px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:35px;
    position:relative;
}

.related-news h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#2563eb;
    margin:12px auto 0;
    border-radius:5px;
}

/* ================= NEWS CARD ================= */

.related-card{
    display:flex;
    align-items:center;
    gap:18px;
    max-width:900px;
    margin:0 auto 20px;
    padding:18px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    text-decoration:none;
    color:#111827;
    box-shadow:0 6px 18px rgba(15,23,42,.05);
    transition:all .3s ease;
}

.related-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(15,23,42,.12);
    border-color:#2563eb;
}

/* ================= IMAGE ================= */

.related-card img{
    width:180px;
    height:110px;
    object-fit:cover;
    border-radius:14px;
    flex-shrink:0;
}

/* ================= CONTENT ================= */

.related-card h3{
    font-size:20px;
    font-weight:700;
    line-height:1.5;
    color:#0f172a;
    margin-bottom:10px;
    transition:.3s;
}

.related-card:hover h3{
    color:#2563eb;
}

.related-card p{
    font-size:14px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

    .related-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .related-card img{
        width:100%;
        height:220px;
    }

    .related-news h2{
        font-size:26px;
    }

    .related-card h3{
        font-size:18px;
    }
}


/* ================= SECTIONS ================= */

.section{
    padding:60px 20px;
    text-align:center;
}

.section h2{
    font-size:22px;
    margin-bottom:20px;
}

/* ================= GRID ================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:16px;
    max-width:1100px;
    margin:0 auto;
}

/* ================= CARDS ================= */

.card{
    background:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    font-weight:700;
    transition:0.3s;
}

.card small{
    display:block;
    margin-top:6px;
    font-weight:400;
    color:#64748b;
}

.card:hover{
    transform:translateY(-5px);
}

/* ================= MEDICAL ================= */

/* ================= MEDICAL ================= */

.medical{
    background:linear-gradient(135deg,#f8fcff 0%, #eef8ff 50%, #e5f4ff 100%);
    border:1px solid #d6ecff;
    border-radius:24px;
    padding:60px 35px;
    margin:50px auto;
    box-shadow:0 15px 40px rgba(14,165,233,.08);
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.medical::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(14,165,233,.06);
    border-radius:50%;
    top:-140px;
    right:-120px;
}

.medical::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(37,99,235,.05);
    border-radius:50%;
    bottom:-100px;
    left:-70px;
}

/* Keep content above background */

.medical > *{
    position:relative;
    z-index:2;
}

/* Heading */

.medical h2{
    font-size:34px;
    color:#0f4c81;
    font-weight:800;
    margin-bottom:12px;
}

.medical p{
    font-size:17px;
    color:#5f6f82;
    max-width:720px;
    margin:0 auto 28px;
    line-height:1.8;
}

/* Premium Button */

.medical a{
    display:inline-block;
    margin-top:20px;
    padding:14px 34px;
    background:linear-gradient(135deg,#0ea5e9,#2563eb);
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-size:15px;
    font-weight:700;
    letter-spacing:.3px;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
    transition:.35s ease;
}

.medical a:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#0284c7,#1d4ed8);
    box-shadow:0 18px 35px rgba(37,99,235,.35);
}
/* ================= ASTROLOGY ================= */

.astrology{
    background:#fff7eb;
    border:1px solid #f0d9a7;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    margin:40px auto;
}

.astrology h2{
    font-size:32px;
    color:#7a3b00;
    margin-bottom:10px;
}

.astrology p{
    color:#666;
    font-size:17px;
    margin-bottom:25px;
}

.astrology .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-bottom:30px;
}

.astrology .card{
    background:#fff;
    border:1px solid #f2d39c;
    border-radius:12px;
    padding:18px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.astrology .card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.astrology .card small{
    display:block;
    margin-top:8px;
    color:#777;
    font-size:14px;
    font-weight:400;
}

.astrology a{
    display:inline-block;
    padding:12px 28px;
    background:#8b4513;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.astrology a:hover{
    background:#6d340d;
}
/* ================= PROPERTY ================= */

.property{
    background:#fff7ed;
}

.property a{
    display:inline-block;
    margin-top:15px;
    padding:10px 16px;
    background:#f97316;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
}

/* ================= FOOTER ================= */

.site-footer{
    background:#0f172a;
    color:#fff;
    margin-top:60px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    padding:40px 20px;
    max-width:1200px;
    margin:auto;
}

.footer-col h4{
    font-size:16px;
    margin-bottom:10px;
    color:#facc15;
}

.footer-col p{
    font-size:13px;
    color:#cbd5e1;
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:6px;
}

.footer-col ul li a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:13px;
}

.footer-col ul li a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    padding:15px;
    background:#020617;
    font-size:13px;
    color:#94a3b8;
}

.footer-bottom a{
    color:#facc15;
    text-decoration:none;
}

