

        body {
            margin: 0;
            font-family: Verdana;
        }

        .main-wrapper {
            max-width: 930px;
            margin: auto;
        }

        /* ===== Top Section ===== */
        .top-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .zodiac-column-left {
            width: 200px;           /* parent height lega */
            display: flex;
            flex-direction: column;    /* ek ke niche ek */
            justify-content: flex-end; /* bottom align */
            align-items: end;
            gap: 10px;        /* horizontal center (optional) */
        }
         .zodiac-column-left img {
          width: 90px;
            height: 70px;
            margin: 3px 0;       /* horizontal center (optional) */
        }
        .zodiac-column {
                 width: 200px;
                text-align: center;
                display: flex;
                flex-direction: column;   /* images vertical */
                gap: 10px;      /* center align */
         }

        .zodiac-column img {
            width: 90px;
            height: 70px;
            margin: 3px 0;

        }

        .center-section {
            flex: 1;
            text-align: center;
        }

        .contact-text {
            font-size: 16pt;
            color: #663300;
            font-weight: bold;
        }

        /* ===== Banner ===== */
        .banner {
            text-align: center;
            margin: 15px 0;
        }

        .banner img {
            max-width: 100%;
        }

        /* ===== Result Boxes ===== */
        .result-wrapper {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .result-box {
            width: 250px;
            border: 1px solid #000;
        }

        .day-box { background: #6699ff; }
        .night-box { background: #ffff00; }

        .result-table {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            text-align: center;
            font-size: 10pt;
        }

        .result-table div {
            border: 1px solid #000;
            padding: 6px;
        }

        .result-main {
            grid-row: span 3;
            font-size: 16pt;
            font-weight: bold;
            font-style: italic;

        }

        /* ===== DataList ===== */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .data-card {
            border: 1px solid #000;
            text-align: center;
            font-size: 10pt;
            width: 129px;
            margin-left: 26px;
        }

        .date {
            font-weight: bold;
            font-style: italic;
            border-bottom: 1px solid #000;
            padding: 4px;
        }

        .data-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

        .data-row div {
            border: 1px solid #000;
            padding: 4px;
        }

        .data-main {
            grid-row: span 3;
            font-size: 16pt;
            font-weight: bold;
            font-style: italic;
            display: flex;
        }

        /* ===== Responsive ===== */
        @media (max-width:768px) {

            .top-section {
                flex-direction: column;
            }

            .zodiac-column {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:480px) {

            .data-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Parent div center alignment */
.circuler-box {
    text-align: center;
}

/* Anchor Styling */
.circuler-link {
    display: block;          /* full width */
    padding: 15px 20px;     /* charo taraf padding */
    background: #f5f5f5;    /* optional bg */
    border-radius: 12px;    /* rounded corner */
    font-weight: bold;
    text-decoration: none;
    color: #000;
    width: 100%;            /* col-12 full */
    box-sizing: border-box;
    border:2px solid #000;
    font-size:30px;
}
.circuler-link .circuler-name{
    color:black;
    font-weight:bold;
}

/* Image niche + center */
.circuler-img {
    display: block;
    margin: 15px auto 0;    /* top space + center */
    max-width: 200px;      /* size control */
}
.padng-top{
    padding-top:80px;
}
/* Image rotate animation */
.rotate-img {
    width: 200px;
    margin: 15px auto 0;
    display: block;

    animation: spin 5s linear infinite;
}

/* Keyframes */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Box spacing */
.chart-box {
    /*margin-bottom: 20px;*/
}

/* Anchor / Title */
.chart-title {
    display: block;
    padding: 8px;              /* charo taraf padding */
    background: linear-gradient(#00d309, #004503);  /* green bg */
    color: #fff;               /* white text */
    /*border: 1px solid #0a7a0a;*/
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}
.chart-title .chart-name{
    font-size:25px;
    font-weight:bold;
    color:white;
}
/* Labels niche ek ke niche ek */
.chart-label {
    display: block;            /* line break */
    text-align: center;
    padding: 0px 0;
    font-weight: 600;
    color:#000b65;
    font-size: 20px;
    font-weight: bold;
}
/* ===== MAIN OUTER BORDER ===== */
.main-row {
    border: 2px solid #0a7a0a;
    border-radius: 10px;
    overflow: hidden;

    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ===== REMOVE BOOTSTRAP GAP ===== */
.main-row > div {
    padding: 14px;
    position: relative;
}

/* ===== VERTICAL DIVIDER (RIGHT SIDE) ===== */
.main-row > div::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background: #0a7a0a;
}

/* Last column me vertical line nahi */
.main-row > div:nth-child(2n)::after {
    display: none;
}

/* ===== HORIZONTAL DIVIDER (BOTTOM) ===== */
.main-row > div::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #0a7a0a;
}

/* Last row me horizontal line nahi */
.main-row > div:nth-last-child(-n+2)::before {
    display: none;
}
@media (max-width: 768px) {

    /* Vertical remove */
    .main-row > div::after {
        display: none;
    }

    /* Horizontal full width */
    .main-row > div::before {
        left: 0;
        right: 0;
    }

    /* Last box no line */
    .main-row > div:last-child::before {
        display: none;
    }

}
.disclamer-heading{
    text-align:center;
    font-weight:bold;
}
.disclamer-para{
    font-size:14px;
    color:#340d7a;
}
/* Main Row Border + Center Text */
.prediction-heading{
    border: 2px solid #0a7a0a;   /* charo taraf border */
    padding: 14px;               /* andar space */
    text-align: center;          /* text center */
    border-radius: 8px;          /* optional rounded */
    overflow: hidden;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 9px;
}
@media (max-width: 768px) {

    .disclamer-para {
        font-size:12px;
        justify-content:center;
        line-height:none;
    }

}
    /* Heading reset margin */
    .prediction-headin .pre-heading {
        margin: 0;
        line-height: 1.6;
    }
    /* Section reset */
    #headerimg {
        width: 100%;
        overflow: hidden;     /* overflow band */
    }

    /* Footer Main Style */
    .footer-black {
        background-color: #000000; /* Pure Black Background */
        color: #ffffff;           /* White Text */
        padding: 25px 0;          /* Upar niche ki padding */
        border: 2px solid #ffffff; /* Charo taraf white border */
        /*margin-top: 30px;*/         /* Content se thoda gap */
        border-radius: 8px;       /* Thode curved corners */
    }

    /* Footer Text Styling */
    .footer-text {
        margin: 0;
        font-size: 15px;
        letter-spacing: 1px;
        font-weight: 400;
        text-transform: uppercase; /* Text ko capital karne ke liye */
    }

    /* Copyright Symbol & Highlight Color */
    .footer-text strong {
        color: #ffff00; /* Name ko highlight karne ke liye yellow (Optional) */
        font-weight: 700;
    }

    /* Mobile View Adjustments */
    @media (max-width: 767px) {
        .footer-black {
            padding: 15px 10px;
            margin: 15px 10px; /* Mobile par side se thoda gap */
        }
        .footer-text {
            font-size: 12px;
            line-height: 1.5;
        }
    }


body {
	margin-top: 20px;
	padding: 0;
	background: #A8A604;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
}
/* ===== Section Reset ===== */
#headerimg {
    width: 100%;
    overflow: hidden;
}

/* Remove bootstrap padding */
#headerimg .container-fluid {
    padding: 0;
    margin: 0;
}

/* ===== Image Base ===== */
.headerimgage {
    width: 100%;
    height: auto;        /* Laptop full screen */
    object-fit: cover;    /* Crop without stretch */
    display: block;
}
@media (max-width: 768px) {

    .headerimgage {
        width: 100%;
        height: 500px;        /* Auto height */
        max-height: 65vh;    /* Limit zoom */
        object-fit: contain; /* Full image visible */
        background: #000;    /* Empty space fill */
    }
     .headerimgage img{
        width: 100%;
        height: auto;        /* Auto height */
        object-fit: contain;
    }

}
/* Header Background aur Styling */
.main-header {
    background-color: #2c3e50; /* Dark Premium Color */
    color: white;
    padding: 10px 20px;
    position: relative;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* Logo Left, Toggle/Menu Right */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

/* Desktop Menu Styling */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    font-size: 20px;
}

.nav-menu ul li a:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

/* Mobile Toggle Button - Desktop par chupa rahega */
.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

/* --- Responsive Media Query --- */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block; /* Mobile par dikhega */
    }

    .nav-menu {
        display: none; /* By default menu band rahega */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        border-top: 1px solid #444;
    }

    /* Jab JS se 'active' class add hogi tab menu dikhega */
    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column; /* Menu upar se niche dikhega */
    }

    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }

    .nav-menu ul li a {
        padding: 2px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: end;
        padding-right: 16px;
    }
}

    /* Main Box Styling */
    .result-card {
        border: 2px solid #000;
        border-radius: 10px;
        padding: 5px;
        margin: 10px 0;
        background-color: #efd6b9;
    }

    /* Anchor to Button conversion */
    .custom-btn {
        display: inline-block;
        background-color: #522f92; /* Primary Blue */
        color: white !important;
        padding: 3px 2px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
        width: 50%; /* Column ke hisab se adjust hoga */
    }

    .custom-btn:hover {
        background-color: #0056b3;
    }

    /* Center Content Adjustments */
    .market-name {
        margin-bottom: 5px;
        font-weight: bold;
        color: #00094d;
    }

    .result-number {
        color: #670009; /* Danger red for highlight */
        font-size: 24px;
        margin-bottom: 10px;
        font-weight:bold;
    }

    /* Time side-by-side display */
    .time-container {
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: 14px;
        font-weight: 500;
    }

    .time-separator {
        color: #888;
    }
/* Mobile Specific Adjustments (Screen 768px se niche) */
    @media (max-width: 767px) {
        .result-card {
            padding: 10px;
        }
        
        /* Mobile par buttons thode chhote */
        .custom-btn {
            font-size: 12px;
            padding: 6px 2px;
        }

        .market-name {
            font-size: 16px;
        }

        .result-number {
            font-size: 20px;
        }

        /* Mobile par center div ko thoda margin */
        .mt-3 {
            margin-top: 15px !important;
        }
    }
h1, h2, h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #649632;
}

h1 { font-size: 44px; }

h2 { font-size: 26px; }

h3 { }

p, ul, ol {
	margin-top: 0;
	/*line-height: 240%;
	text-align: justify;*/
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
}

ul, ol { }

blockquote { }

a { color: #000000; }

a:hover { text-decoration: none; }

a img {
	border: none;
}

img.left {
	float: left;
	margin: 7px 30px 0 0;
}

img.right {
	float: right;
	margin: 7px 0 0 30px;
}

hr { display: none; }

.list1 {
}

.list1 li {
	float: left;
	line-height: normal;
}

.list1 li img {
	margin: 0 30px 30px 0;
}

.list1 li.alt img {
	margin-right: 0;
}

#wrapper {
}

/* Header */

#header-wrapper {
	width: 900px;
	margin: 0 auto;
}

#header {
	width: 900px;
	height: 70px;
	margin: 0 auto;
	background: url(images/img02.jpg) no-repeat left top;
}

/* Menu */

#menu {
	float: left;
	width: 1035px;
	height: 50px;
}

#menu ul {
	margin: 0;
	padding: 13px 0 0 10px;
	list-style: none;
	line-height: normal;
}

#menu li {
	display: block;
	float: left;
}

#menu a {
	display: block;
	float: left;
	margin-right: 2px;
	padding: 5px 12px;
	text-decoration: none;
	font: 14px Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
}

#menu a:hover { text-decoration: underline; }

#menu .current_page_item a {
	color: #FFFFFF;
}

/* Search */

#search {
	float: right;
	width: 305px;
	height: 76px;
}

#search form {
	float: right;
	margin: 0;
	padding: 15px 20px 0 0;
}

#search fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

#search input {
	float: left;
	font: 12px Georgia, "Times New Roman", Times, serif;
	border: none;
}

#search-text {
	width: 135px;
	height: 18px;
	padding: 3px 0 0 5px;
	background: #ECF9E4;
	color: #658453;
}

#search-submit {
	height: 21px;
	margin-left: 12px;
	color: #39561D;
}

/* Page */

#page {
	width: 900px;
	margin: 0 auto;
}

/** LOGO */

#logo {
	height: 260px;
	background: url(images/img01.jpg) no-repeat left top;
}

#logo h1, #logo p {
	float: left;
	margin: 0;
	padding: 0 0 0 20px;
	line-height: normal;
}

#logo h1 { padding-top: 140px; }

#logo h1 a {
	text-decoration: none;
	text-transform: uppercase;
	color: #FFFFFF;
}

#logo h1 a:hover { text-decoration: underline; }

#logo p {
	padding: 165px 0 0 15px;
	font: italic 13px Georgia, "Times New Roman", Times, serif;
	color: #B6ACA2;
}

#logo p a {
	text-decoration: none;
	color: #B6ACA2;
}

#logo p a:hover { text-decoration: underline; }

/* Content */

#content {
	float: left;
	width: 620px;
}

/* Post */

.post {
	margin-bottom: 25px;
}

.post .title {
	height: 55px;
	margin-bottom: 3px;
	padding: 19px 0px 2px 20px;
	background: url(images/img05.jpg) no-repeat left top;
	color: #FFFFFF;
}

.post .date {
	float: right;
	margin-top: -60px;
	padding-right: 40px;
	font-weight: bold;
	font-size: 14px;
	color: #B6ACA2;
}

.post .meta {
	margin: -40px  0 3px 25px;
	padding: 2px 30px 2px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 10px;
	color: #B6ACA2;
}

.post .meta a { color: #B6ACA2; }

.post .entry {
	padding: 25px 20px;
}

.post .links {
	margin: 0 250px 0 0;
	padding: 0 0 0 0px;
}

.post .links .comments {
}

.post .links .permalink {
	padding-left: 17px;
}

/* Sidebar */

#sidebar {
	float: right;
	width: 250px;
}

#sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
}

#sidebar li {
	margin-bottom: 30px;
	padding: 0 0 20px 0px;
	background: url(images/img04.jpg) no-repeat left bottom;
}

#sidebar li ul {
	line-height: 200%;
	padding-bottom: 20px;
}

#sidebar li li {
	margin: 0;
	padding: 0 20px;
	background: none;
}

#sidebar h2 {
	height: 33px;
	margin: 0 0 20px 0px;
	padding: 15px 0 2px 20px;
	background: url(images/img03.jpg) no-repeat left top;
	font-size: 18px;
	color: #FFFFFF;
}


#sidebar p {
	padding: 0px 15px;
	line-height: 200%;
}

#sidebar a {
	color: #FFFFFF;
}

/* Calendar */

#calendar {
}

#calendar caption {
	padding-bottom: 5px;
	font-weight: bold;
}

#calendar table {
	width: 90%;
	border-collapse: collapse;
}

#calendar thead th {
	padding: 5px 0;
	text-align: center;
}

#calendar tbody td {
	padding: 5px 0;
	text-align: center;
}

#calendar tfoot td {
	padding: 5px;
}

#calendar tfoot #next {
	text-align: right;
}

#calendar #today {
	background: #000000;
}

/* Footer */

#footer {
	width: 900px;
	height: 60px;
	margin: 0 auto;
	padding: 0;
	background: url(images/img06.jpg) no-repeat left top;
}

#footer p {
	margin: 0;
	padding: 20px 0;
	text-align: center;
	line-height: normal;
	color: #B5ADA5;
}

#footer a {
	color: #B5ADA5;
}

.mata
{ border:1px solid #000;
	-webkit-box-shadow: 0px 0px 21px 1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 21px 1px rgba(0,0,0,0.75);
box-shadow: 0px 0px 21px 1px rgba(0,0,0,0.75);
	}