.logo,
.main-header,
.nav-menu,
.navbar {
    display: flex;
}
footer,
header {
    padding: 20px;
    background-color: #0000cd;
    color: #fff;
    text-align: center;
}
h5,
h6 {
    padding: 30px;
}
.eighthpart,
.left-section h2,
.right-section,
body {
    font-family: Arial, sans-serif;
}
.card,
.card-link p,
.custom-list,
.eighthpart,
.footer,
.image-row,
.nadi-description,
.nadi-heading,
.review-card,
.seventhpart,
.thirdpart,
footer,
h6,
header {
    text-align: center;
}
.card-link,
.contact-card a,
.floating-buttons a,
.home-link {
    text-decoration: none;
}
*,
.rows,
.slide {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
    padding-top: 120px;
    min-height: 100vh;
}
.main-header {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 80px;
    color: #fff;
    width: 100%;
}
.logo {
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: calc(100% - 60px);
}
.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.logo-text h1 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}
.logo-text p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}
.home-link {
    color: #fff;
}
.navbar {
    align-items: center;
}
.nav-menu {
    list-style: none;
    gap: 25px;
    padding: 0;
    margin: 0;
}
.dropdown-menu,
.menu-toggle {
    display: none;
    position: absolute;
}
.nav-menu li {
    position: relative;
    font-weight: 700;
}
.nav-menu li a,
.nav-menu li span {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s;
}
.nav-menu li a:hover,
.nav-menu li span:hover {
    color: gold;
}
.dropdown-menu {
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu li {
    padding: 12px 20px;
    transition: background-color 0.2s;
}
.dropdown-menu li a {
    color: #333;
    font-weight: 500;
    display: block;
}
.dropdown-menu li:hover {
    background-color: #f0f0f0;
}
.menu-toggle {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: 0 0;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    transition: transform 0.3s;
}
.menu-toggle:hover {
    transform: translateY(-50%) scale(1.05);
}
.card-link:hover,
.card:hover {
    transform: translateY(-5px);
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px auto;
    border-radius: 3px;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}
.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
@media screen and (max-width: 768px) {
    .nav-menu,
    .nav-menu::before {
        position: fixed;
        height: 100vh;
        top: 0;
    }
    .menu-toggle {
        display: block;
    }
    .navbar {
        width: 100%;
    }
    .nav-menu {
        display: flex;
        flex-direction: column;
        right: -100%;
        width: 280px;
        background: linear-gradient(135deg, #ac0202 0, #8b0000 100%);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        padding: 100px 0 30px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu::before {
        content: "";
        left: 0;
        width: 100vw;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.4s,
            visibility 0.4s;
        z-index: -1;
        backdrop-filter: blur(2px);
    }
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }
    .nav-menu > li {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(50px);
        animation: 0.5s forwards slideInMenu;
    }
    .nav-menu.active > li:first-child {
        animation-delay: 0.1s;
    }
    .nav-menu.active > li:nth-child(2) {
        animation-delay: 0.15s;
    }
    .nav-menu.active > li:nth-child(3) {
        animation-delay: 0.2s;
    }
    .nav-menu.active > li:nth-child(4) {
        animation-delay: 0.25s;
    }
    .nav-menu.active > li:nth-child(5) {
        animation-delay: 0.3s;
    }
    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .nav-menu li a,
    .nav-menu li span {
        color: #fff;
        padding: 18px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 600;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }
    .nav-menu li a::before,
    .nav-menu li span::before {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    .nav-menu li:hover a::before,
    .nav-menu li:hover span::before {
        left: 100%;
    }
    .nav-menu li:active {
        background-color: rgba(0, 0, 0, 0.2);
    }
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        margin: 0;
        opacity: 1;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .dropdown-menu.show {
        display: block;
        max-height: 500px;
    }
    .dropdown-menu li {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.9);
        padding: 15px 25px 15px 45px;
        font-size: 15px;
        font-weight: 500;
        position: relative;
    }
    .dropdown-menu li a::before {
        content: "→";
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: 0.3s;
    }
    .dropdown-menu li:hover a::before {
        opacity: 1;
        left: 30px;
    }
    .dropdown-menu li:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    .nav-menu li span::after {
        content: "▼";
        font-size: 12px;
        margin-left: auto;
        transition: transform 0.3s;
    }
    .nav-menu li span.active::after {
        transform: rotate(180deg);
    }
    .logo {
        max-width: calc(100% - 70px);
    }
    .logo-text h1 {
        font-size: 20px;
    }
    .logo-text p {
        font-size: 12px;
    }
    .logo-img {
        width: 70px;
        height: 70px;
    }
}
@media screen and (min-width: 769px) {
    .nav-menu {
        display: flex;
        justify-content: center;
        background-color: #0000cd;
        gap: 30px;
        padding: 0;
        flex-wrap: wrap;
    }
    .nav-menu > li {
        position: relative;
        padding: 15px 20px;
        cursor: pointer;
        color: #fff;
        font-weight: 700;
    }
}
.first-row,
.second-row {
    display: flex;
    gap: 20px;
    max-width: 1200px;
}
.second-row h1{
    font-size: 16px;
    
}
h5,
h6 {
    color: #000;
}
.rows {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}
.first-row {
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    background: url("/images/shivagas.webp") center center/cover no-repeat;
    padding: 20px;
    width: 90%;
    border-radius: 30px;
}
.first-row .main-img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
}
.image-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-btn {
    padding: 14px 28px;
    font-size: 16px;
    background-color: maroon;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.image-btn:hover {
    background-color: green;
}
.button-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.button-message {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.second-row {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
}
.card-link {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 250px;
    justify-content: center;
    align-items: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    min-height: 200px;
    color: inherit;
    padding-bottom: 50px;
}
.card-link:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.card-img {
    width: 140px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}
.card-link p {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 70px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.card {
    background-color: maroon;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
    .first-row {
        padding: 15px;
        margin: 10px 5px;
        width: 95%;
        flex-direction: column;
    }
    .first-row .main-img {
        width: 100%;
        max-height: 300px;
        object-fit: contain;
        margin: 0 auto;
    }
    .second-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    .card-link {
        width: 100%;
        min-height: 180px;
        padding: 10px;
    }
    .card-img {
        width: 100px;
        height: 110px;
    }
    .card-container {
        display: flex;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    .card {
        width: 100%;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 480px) {
    .card {
        min-width: 100%;
    }
}
.card h1 {
    margin-bottom: 20px;
    color: #fff;
}
@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 15px;
        gap: 20px;
    }
}
.thirdpart {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 20px;
}
.thirdpart img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

h6 {
    font-size: clamp(30px, 5vw, 55px);
}
h5 {
    font-size: clamp(20px, 3vw, 30px);
}
.sixthpart {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    background-color: #f2f2f2;
    flex-wrap: wrap;
}
.left-section {
    max-width: 40%;
    position: relative;
}
.left-section .label {
    color: #f44336;
    font-size: 25px;
    font-style: italic;
    font-weight: 700;
    background-color: #fff;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 10px;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    border-radius: 20px;
}
.left-section h1 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #743c00;
    margin: 0;
}
.right-section {
    max-width: 50%;
    border-left: 2px solid #00f;
    padding-left: 25px;
}
.right-section p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: #222;
    font-weight: 700;
}
.highlight {
    color: #e65100;
    font-weight: 700;
}
.seventhpart {
    background-color: #4b2ac7;
    padding: 80px 20px;
    color: #fff;
    position: relative;
}
.main-count h1 {
    font-size: 80px;
    font-weight: 900;
    margin: 0;
}
.main-count h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: 1px;
}
.main-count p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
}
.stat-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}
.stat-box {
    background-color: #fff;
    color: #4b2ac7;
    padding: 25px 30px;
    border-radius: 15px;
    width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.counter {
    font-size: 50px;
    font-weight: 900;
    margin: 0;
}
.stat-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.stat-box p {
    font-size: 14px;
    margin-top: 8px;
}
.eighthpart {
    background-color: #f8f8f8;
    padding: 60px 30px;
    overflow: hidden;
}
.review-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #4b2ac7;
}
.reviews-carousel {
    overflow: hidden;
    position: relative;
}
.reviews-track {
    display: flex;
    width: fit-content;
    animation: 40s linear infinite scrollReviews;
    gap: 30px;
}
.review-card img,
.reviewer-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    min-width: 280px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}
.review-card img {
    border-radius: 50%;
    margin-bottom: 15px;
}
.review-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}
.stars {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
}
.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.reviewer-img {
    border-radius: 50%;
    margin-bottom: 15px;
}
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.floating-buttons a {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 22px;
    transition: transform 0.2s;
}
.floating-buttons a.call-button {
    background-color: #f44336;
}
.floating-buttons .insta-button {
    background-color: #e1306c;
}
.floating-buttons .fb-button {
    background-color: #3b5998;
}
.floating-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.footer {
    background-color: #0000cd;
    color: #fff;
    padding: 30px 20px;
}
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}
.footer-content p {
    margin: 8px 0;
}
.footer-contact {
    margin-top: 5px;
    margin-bottom: 5px;
}
.image-row {
    background-color: rgba(2, 19, 26);
    padding: 40px 20px;
}
.centered-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}
.custom-list {
    margin: 30px auto;
}
.custom-list ul {
    display: inline-block;
    text-align: left;
    padding-left: 0;
    list-style: none;
}
.custom-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 1.5;
    color: #000;
}
.marriage-matching-content ol,
.vastu-content ul {
    padding-left: 20px;
}
.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 30px;
    height: 30px;
    background-image: url("om.jfif");
    background-size: contain;
    background-repeat: no-repeat;
}
.nadi-description,
.nadi-text {
    margin: 0 auto 40px;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}
.nadi-text {
    max-width: 900px;
}
.contact.section,
.container.content-section {
    color: #000;
}
.nadi {
    display: block;
    margin: auto;
    border-radius: 15px;
    max-width: 90%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-image,
.horoscope-steps h2 {
    margin-bottom: 30px;
    text-align: center;
}
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}
.contact-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
}
.contact-card h3 {
    margin-top: 0;
    color: #333;
}
.contact-card a {
    color: #007bff;
}
.contact-card i {
    margin-right: 8px;
}
.contact-image img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 10px;
}
.horoscope-steps {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.horoscope-steps h2 {
    font-size: 2rem;
}
.horoscope-steps .step {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.horoscope-steps ul {
    padding-left: 20px;
    list-style: none;
}
.horoscope-steps ul li::before {
    content: "•";
    color: #666;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000;
}
.marriage-matching-content,
.vastu-content {
    padding: 0 20px;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
}
.vastu-content {
    max-width: 800px;
    margin: 40px auto;
}
.marriage-matching-content h2,
.vastu-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}
.vastu-content ul {
    margin-bottom: 20px;
}
.vastu-content li {
    margin-bottom: 10px;
}
.vastu-image {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.faq,
.thumb-card {
    border-radius: 12px;
}
.marriage-matching-content {
    max-width: 800px;
    margin: 50px auto;
}
.marriage-matching-content h3 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #444;
}
.marriage-matching-content li {
    margin-bottom: 15px;
}
.shivaimg {
    padding-top: 100px;
}
.faq {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.rishi-box,
.slide {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.faq h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}
.faq h3 {
    font-size: 20px;
    color: #0056b3;
    margin-top: 20px;
    margin-bottom: 10px;
}
.faq p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
    .thirdpart {
        padding: 0 15px;
    }
    .thirdpart img {
        max-width: 80%;
        height: auto;
    }
    .vastu-image {
        width: 90%;
        max-height: 300px;
        object-fit: cover;
        margin: 15px auto;
    }
    .sixthpart {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }
    .left-section,
    .right-section {
        max-width: 100%;
        border-left: none;
        padding-left: 0;
        margin-bottom: 30px;
    }
    .left-section h2 {
        font-size: 28px;
    }
    .main-count h1 {
        font-size: 50px;
    }
    .stat-boxes {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    .stat-box {
        width: 100%;
        max-width: none;
    }
    .faq {
        padding: 20px;
    }
    .faq h2 {
        font-size: 24px;
    }
    .faq h3 {
        font-size: 18px;
    }
    .faq p {
        font-size: 15px;
    }
}
.thumb-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
}
.thumb-card {
    width: 90%;
    padding: 18px 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #3a3a3a;
    border: 2px solid #fff;
    transition: transform 0.3s;
    opacity: 1 !important;
}

@media (hover: hover) {
    .thumb-card:hover {
        transform: scale(1.05);
    }
}
@media screen and (min-width: 768px) {
    .thumb-section {
        flex-direction: row;
        justify-content: center;
    }
    .thumb-card {
        width: 300px;
        font-size: 20px;
        padding: 22px;
    }
}
@media screen and (min-width: 1200px) {
    .thumb-card {
        width: 350px;
        font-size: 22px;
        padding: 26px;
    }
}
.blog-carousel {
    text-align: center;
    padding: 60px 20px;
    background: #faf6f2;
}
.blog-carousel h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #5a3825;
    font-weight: 700;
}
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
}
.slides {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}
.blog-carousel .slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.slide {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s;
}
.blog-next,
.blog-prev,
.read-more {
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}
.slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.slide-text {
    padding: 25px;
    text-align: left;
}
.nadi-section,
.tenthhpart {
    text-align: center;
}
.slide-text h3 {
    font-size: 22px;
    color: #442f19;
    margin-bottom: 12px;
}
.slide-text p {
    color: #6b4f3a;
    font-size: 16px;
    line-height: 1.6;
}
.read-more {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #8b4513;
    border-radius: 25px;
}
.nadi-section,
.rishi-box {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}
.read-more:hover {
    background: sienna;
}
.blog-next,
.blog-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(138, 84, 34, 0.8);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 20px;
    z-index: 10;
}
.blog-next:hover,
.blog-prev:hover {
    background: rgba(90, 50, 15, 0.9);
}
.blog-prev {
    left: 15px;
}
.blog-next {
    right: 15px;
}
.nadi-section h1 {
    color: #1b4fa1;
    margin-bottom: 15px;
}
.rishi-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 14px;
}
.rishi-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
}
.rishi-content h3 {
    color: #0d3b8c;
    margin-bottom: 10px;
}
.left-image {
    flex-direction: row;
}
.right-image {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .card {
        padding: 15px;
        min-height: auto;
    }
    .card h1 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .card p {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
    }
    .review-card {
        min-width: 250px;
    }
    .reviews-track {
        animation-duration: 60s;
    }
    .slide img {
        height: 250px;
    }
    .slide-text h3 {
        font-size: 18px;
    }
    .slide-text p {
        font-size: 15px;
    }
    .rishi-box {
        flex-direction: column !important;
        text-align: center;
    }
    .rishi-image img {
        max-width: 100%;
    }
}
.second-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 8%;
    position: relative;
    background: url("/images/bluesky.webp") center center/cover no-repeat;
}
.second-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.content-side,
.logo-side {
    position: relative;
    z-index: 2;
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
}
.spinning-logo {
    width: 220px;
    height: 220px;
    animation: 20s linear infinite spin;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.content-side {
    flex: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-side h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}
.content-side p {
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: 0.6px;
}
@media (max-width: 900px) {
    .second-content {
        flex-direction: column;
        text-align: center;
    }
    .logo-side {
        margin-bottom: 30px;
    }
}
.tenthhpart {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.tenthhpart-title {
    font-size: 30px;
    margin-bottom: 15px;
}
.tenthhpart-text {
    font-size: 20px;
    line-height: 1.8;
    text-indent: 20px;
}
.contimg {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .contimg {
        max-width: 600px;
    }
}


/* Main Section */
.nadi-process-block {
  padding: 80px 20px;
  
}

/* Wrapper */
.nadi-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.nadi-description {
font-size: 18px;
  line-height: 1.6;
  text-align: left;
  grid-column: 2;
  margin: 5px 0 0 20px;
  padding-top: 10px;
  padding-right: 20px;
  position: relative;
  left: 20px;
   max-width: 800px;
  }

/* Flex Layout */
.nadi-flex-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Area */
.nadi-text-zone {
  flex: 1;
}

.nadi-heading {
  font-size: 34px;
  margin-bottom: 20px;
  color: #222;
}

/* Image Area */
.nadi-visual-zone {
  flex: 1;
  text-align: center;
}

.nadi-image {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .nadi-flex-layout {
    flex-direction: column;
    text-align: center;
  }

  .nadi-heading {
    font-size: 26px;
  }
}
 

.process-section{
    padding:70px 20px;
    text-align:center;
    background:#05052b;
    color:#fff;
    font-family:Georgia, serif;
}

.badge{
    display:inline-block;
    padding:8px 22px;
    border:1px solid rgba(255,193,7,.4);
    border-radius:30px;
    color:#d9a441;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.process-section h1{
    font-size:56px;
    font-weight:500;
    line-height:1.2;
    margin-bottom:18px;
}

.process-section h1 span{
    color:#d9a441;
}

.subtitle{
    max-width:760px;
    margin:auto;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.8;
    margin-bottom:70px;
}

.steps{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
}

.steps::before{
    content:"";
    position:absolute;
    top:28px;
    left:8%;
    width:84%;
    border-top:1px dashed rgba(217,164,65,.5);
    z-index:0;
}

.step{
    position:relative;
    z-index:2;
}

.number{
    width:58px;
    height:58px;
    background:#d9a441;
    border-radius:50%;
    margin:0 auto 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    box-shadow:0 0 18px rgba(217,164,65,.7);
}

.step h3{
    font-size:22px;
    margin-bottom:18px;
    font-weight:600;
}

.step p{
    color:#d4d4d4;
    line-height:1.8;
    font-size:16px;
    max-width:280px;
    margin:auto;
}

.btn-wrap{
    margin-top:60px;
}

.btn{
    display:inline-block;
    padding:18px 42px;
    border:1px solid #d9a441;
    border-radius:50px;
    color:#d9a441;
    text-decoration:none;
    font-size:15px;
    letter-spacing:1px;
    transition:0.3s;
}

.btn:hover{
    background:#d9a441;
    color:#05052b;
}

@media(max-width:1100px){
    .steps{
        grid-template-columns:repeat(2,1fr);
        row-gap:50px;
    }

    .steps::before{
        display:none;
    }

    .process-section h1{
        font-size:42px;
    }
}

@media(max-width:650px){
    .steps{
        grid-template-columns:1fr;
    }

    .process-section{
        padding:50px 18px;
    }

    .process-section h1{
        font-size:34px;
    }

    .subtitle{
        font-size:16px;
        margin-bottom:50px;
    }

    .step h3{
        font-size:20px;
    }
}

.process-guide{
    background:#030321;
    color:#fff;
    padding:80px 20px;
    font-family:Georgia, serif;
}

.guide-top{
    text-align:center;
    max-width:1000px;
    margin:auto;
}

.guide-badge{
    display:inline-block;
    padding:8px 22px;
    border:1px solid rgba(212,160,56,.35);
    border-radius:30px;
    color:#d4a038;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.guide-top h1{
    font-size:58px;
    line-height:1.2;
    font-weight:500;
    margin-bottom:20px;
}

.guide-top h1 span{
    color:#d4a038;
}

.guide-top p{
    max-width:760px;
    margin:auto;
    color:#d6d6d6;
    font-size:18px;
    line-height:1.9;
}

.guide-line{
    border-top:1px solid rgba(212,160,56,.15);
    margin:60px 0;
}

.guide-intro{
    max-width:1100px;
    margin:0 auto 55px;
    color:#e2e2e2;
    font-size:18px;
    line-height:2;
}

.step-box{
    max-width:1200px;
    margin:0 auto 35px;
    background:#0a0a2f;
    border:1px solid rgba(212,160,56,.35);
    border-radius:18px;
    padding:40px;
    display:flex;
    gap:30px;
    box-shadow:0 0 22px rgba(212,160,56,.10);
}

.step-num{
    min-width:70px;
    height:70px;
    background:#d4a038;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    box-shadow:0 0 18px rgba(212,160,56,.55);
}

.step-content{
    flex:1;
}

.step-content h3{
    font-size:34px;
    margin-bottom:20px;
    font-weight:600;
}

.step-content p{
    color:#e1e1e1;
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
}

.step-content h4{
    color:#d4a038;
    font-size:22px;
    margin:28px 0 18px;
}

.step-content ul{
    padding-left:25px;
    margin-bottom:20px;
}

.step-content ul li{
    margin-bottom:12px;
    color:#f0f0f0;
    font-size:17px;
    line-height:1.8;
}

.languages{
    text-align:center;
    margin-top:60px;
}

.languages h3{
    font-size:34px;
    color:#d4a038;
    margin-bottom:15px;
}

.languages p{
    font-size:22px;
    line-height:1.8;
    color:#fff;
}

@media(max-width:992px){
    .guide-top h1{
        font-size:42px;
    }

    .step-box{
        flex-direction:column;
        padding:30px;
    }

    .step-content h3{
        font-size:28px;
    }
}

@media(max-width:600px){
    .process-guide{
        padding:60px 15px;
    }

    .guide-top h1{
        font-size:32px;
    }

    .guide-top p,
    .guide-intro,
    .step-content p{
        font-size:16px;
    }

    .step-content h3{
        font-size:24px;
    }

    .step-content h4{
        font-size:19px;
    }

    .languages h3{
        font-size:28px;
    }

    .languages p{
        font-size:18px;
    }
}
.containerlan {
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    border: 5px solid #0b5d3b;
    box-shadow: 0 0 25px rgba(0, 100, 50, 0.3);
    padding: 40px;
    border-radius: 12px;
}
/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Poppins:wght@300;400;500&display=swap');
.footer-top {
  background: #04061a;
  padding: 70px 60px;
  color: #fff;
}
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-col h3 {
  color: #d4a72c;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
}
.naditam {
    color: #d4a72c;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
 
}

.footer-col h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(212,167,44,0.4);
  position: absolute;
  left: 0;
  bottom: -10px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.brand-logo img {
  width: 45px;
  height: 45px;
}

.brand-logo span {
  color: #d4a72c;
  font-family: 'Cinzel', serif;
  font-size: 20px;
}

.brand-col p {
  color: #d3d3d3;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15px;
}

.brand-col h4 {
  color: #d4a72c;
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
  color: #ddd;
  font-size: 15px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #d4a72c;
  padding-left: 6px;
}

.contact-col ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-col i {
  color: #d4a72c;
  min-width: 16px;
  margin-top: 4px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212,167,44,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a72c;
  text-decoration: none;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #d4a72c;
  color: #04061a;
  transform: translateY(-4px);
}
/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .footer-top {
    padding: 50px 25px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.contact-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-col ul li,
.contact-col ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    line-height: 1.5;
}
.contact-col ul li {
    margin-bottom: 16px;
}
.contact-col svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: block;
}


.card a {
    text-decoration: none;
    color: inherit;
}

