/**********  CSS **********/
:root {
    --primary: #5B8C51;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #404A3D;
}

a {
    color: white;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
    overflow: hidden;

}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    /* background: url(../img/Aboutbanner.jpg) center center no-repeat; */
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/

.productdiv h1 {
    margin-bottom: 0% !important;
}

/* Reset and Base Styles */
.logo-slider-container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Main Container */
.brand-showcase-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 20px;
}

.brand-showcase-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #030303;
    font-weight: 600;
}

/* Slider Container */
.brand-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Slider Track */
.brand-logo-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.brand-logo-slide {
    min-width: calc(100% / 4);
    padding: 18px;
    display: flex;
    margin: 2px;
    flex-direction: column;
    align-items: center;
    background-color: #9cbedc;
    border-radius: 20px;
}

/* Logo Image Container */
.brand-logo-img-container {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

}

/* Logo Text */
.brand-logo-text {
    text-align: center;
    font-size: 14px;
    color: #0e0d0d;
    font-weight: 500;
    margin-top: 8px;
}

/* Navigation Arrows */
.brand-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: none;
    font-size: 18px;
    color: #333;
}

.brand-slider-nav.brand-slider-prev {
    left: 0;
}

.brand-slider-nav.brand-slider-next {
    right: 0;
}

/* Dots Navigation */
.brand-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.brand-slider-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.brand-slider-dot.brand-slider-active {
    background-color: #4CAF50;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .brand-logo-slide {
        min-width: calc(100% / 4);
    }
}

@media (max-width: 768px) {
    .brand-logo-slide {
        min-width: calc(100% / 3);
        padding: 0 10px;
        margin-bottom: 10px;
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .brand-slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .brand-logo-slide {
        min-width: calc(100% / 2);
    }
}

/*** Blog ***/
.blogmaindiv {
    display: flex;
    text-align: center;
}

.blogdiv {
    padding: 8px;
    margin: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.blogdiv h6 {
    padding-top: 8px;
    text-align: left;

}

.blogdiv img {
    border-radius: 20px;
    width: 100%;
}

@media (max-width: 600px) {
    .blogmaindiv {
        flex-direction: column;
    }

    .blogdiv {
        width: 100%;
    }

    .blogdiv img {
        width: 100%;
    }
}

/*** Testimonial ***/
.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    /* margin: 2px; */
    background-color: white;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    padding: 40px;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: calc(100% / 3);
    padding: 20px;
    display: flex;
    margin: 5px;
    flex-direction: column;
    border-radius: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fw-semi-bold {
    background-color: white;
    border-radius: 10px;
    padding: 5px 9px;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #4CAF50;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-role {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-rating {
    text-align: center;
    color: #ffc107;
    font-size: 1rem;
    margin: 10px 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-dot.active {
    background-color: #4CAF50;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 1.2rem;
    color: #333;
    user-select: none;
    border: none;
}

.testimonial-arrow.prev {
    left: 10px;
}

.testimonial-arrow.next {
    right: 10px;
}

@media (max-width: 992px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        padding: 10px;
    }

    .testimonial-slider {
        padding: 20px;
    }

    .testimonial-slide {
        min-width: 100%;
    }

    .testimonial-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/*** Footer ***/
.footer {
    color: black;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: black;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #2c5e8a;
    letter-spacing: 1px;
    box-shadow: none;
}

.bg-dark {
    background-color: #3C8DBC !important;
}

.header .header-panel img {
    max-width: 50px;
    transition: transform 0.3s ease-in-out;
}

.mb-5 {
    color: #3C8DBC !important;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 7px;
    /* color: black; */
    background-color: #2c5e8a;
    ;
    color: white;
}

.copyright a {

    /* background-color: #3C8DBC; */
    color: white;
    font-weight: 900 !important;
}

.btn-secondary {
    color: #000;
    background-color: #ff6600;
    border-color: #EDDD5E;
}

.img-fluid1 {
    max-width: 100%;
    height: 230px;
}

.bg-secondary {
    background-color: #3C8DBC !important;
}

.whitetxt {
    color: white !important;
}

.form-control {
    border: 2px solid #3c8dbc;
}

/* *{
    overflow-y: hidden ;
} */
/* ====== Menu Bar ======= */
.header {
    background-color: #2c5e8a;
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.right-buttons {
    display: flex;
    align-items: center;
}

.donate-btn,
.login-btn {
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.donate-btn {
    background-color: #ff6600;
    color: white;
    border: none;
}

.donate-btn:hover {
    background-color: #c0392b;
}

.login-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
}

.menu-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #2c3e50;
    color: white;
    transition: all 0.3s;
    z-index: 1000;
    overflow-y: auto;
}

.menu-sidebar.active {
    left: 0;
}

.menu-header {
    padding: 20px;
    background-color: #1a252f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    border-bottom: 1px solid #34495e;
}

.menu-items li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.menu-items li a:hover {
    background-color: #34495e;
}

.dropdown-menu {
    display: none;
    background-color: #34495e;
    list-style: none;
}

.dropdown-menu li a {
    padding-left: 40px;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

.main-content {
    padding: 20px;
    text-align: center;
}

.main-content h1 {
    color: #2c8a4a;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

/* =======Terms and Condition Start ======== */
.termdiv {
    margin-bottom: 30px;

}

.termsec h4 {
    color: orangered;
}

.termsec {
    visibility: visible;
    animation-delay: 0.1s;
    animation-name: fadeInUp;
}


/* =======Terms and Condition End ======== */

/* =============== FAQ'S Start======== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.faqsec {
    font-family: 'Poppins', sans-serif;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.faq-container {
    max-width: 800px;
    width: 100%;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.faq-title h1 {
    font-size: 2.5rem;
    color: #3C8DBC;
    margin-bottom: 15px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #2c5e8a 100%);
    border-radius: 2px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.faq-item:not(:last-child) {
    margin-bottom: 25px;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #3a4a6d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #667eea;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #2c5e8a 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.faq-item.active::before {
    transform: scaleY(1);
}

@media (max-width: 768px) {
    .faq-title h1 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* ====== FAQ'S End======== */

/* ====== Disclaimer Start ======= */
.Disclaimersec {
    visibility: visible;
    animation-delay: 0.1s;
    animation-name: fadeInUp;
}

/* ====== Disclaimer End ======= */

/* Domain Now Start*/
.Donatenowdiv img {
    border-radius: 20px;
    margin-bottom: 20px;
}

.Donatenowdiv {
    margin: 5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border-radius: 20px;
    padding: 20px;
}

.col-lg-4 {
    width: 31.33333%;
}

/* login popup Form Start*/


.btn-open-popup {
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-open-popup:hover {
    background-color: #45a049;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px;
    max-width: 90%;
    position: relative;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.close-btn:hover {
    color: #333;
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #2c5e8a;
}

.switch-form {
    text-align: center;
    margin-top: 15px;
    color: #666;
}

.switch-form a {
    color: #4CAF50;
    /* text-decoration: none; */
    cursor: pointer;
}

.switch-form a:hover {
    text-decoration: underline;
}

#registration-form {
    display: none;
}

/* login popup Form End*/

/* Online Gausala Visit Start */
.gaushala-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gaushala-popup-container {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gaushala-popup-header {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c5e8a;
    text-align: center;
}

.gaushala-form-group {
    margin-bottom: 15px;
}

.gaushala-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.gaushala-form-group input,
.gaushala-form-group textarea,
.gaushala-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.gaushala-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gaushala-form-col {
    flex: 1;
    min-width: 150px;
}

.gaushala-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.gaushala-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gaushala-btn-submit {
    background-color: orangered;
    color: white;
}

.gaushala-btn-submit:hover {
    background-color: #2c5e8a;
}

.gaushala-btn-cancel {
    background-color: #f1f1f1;
    color: #333;
}

.gaushala-btn-cancel:hover {
    background-color: #ddd;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .gaushala-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .gaushala-form-col {
        width: 100%;
    }

    .gaushala-popup-container {
        padding: 15px;
    }
}

/* Online Gausala Visit End */

/* Latest News and Updates Start */
.Updnewsdivmain {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 10px;
    border-radius: 20px;
    margin: 30px 2px;
}

.Updnewsdiv {
    padding: 10px;
}

.Updnewsdiv h4 {
    margin: 10px;
}

.Updnewsdiv p {
    margin-top: 10px;
}

.Updnewsdiv1 {
    width: 100px;
}

.Updnewsdiv img {
    width: 100%;
    border-radius: 20px;
}

.Updnewsdiv a {
    color: orangered;
    margin: 10px;
    border-style: dotted;
    padding: 5px;
    border-radius: 10px;
}

/* Latest News and Updates End */

/* Newsletter Start */
.newsletterdiv{
   text-align: center;
   margin: 20px 0px;
}
.newsletterdiv img {
    width: 100%;
    border-radius: 20px;
}

.newsletterdiv h5{
   margin-top: 20px;
}
/* Newsletter End */

/* Blogs detail Start */
.blogsdetailsdiv{
    padding: 30px;
}
.blogsdetailsec h5{
    color: orangered;
}
.blogsdetailsdiv2 img{
    padding: 20px 1px;
   width: 100%;
}
.blogsdetailsdiv2 a{
   color: #000;
}
.blogform{
   margin-top: 40px;
   /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
padding: 20px;
}

  .form-group {
            margin-bottom: 15px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        
        textarea {
            height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: orangered;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .submit-btn:hover {
            background-color: #45a049;
        }
        
        .required::after {
            content: "*";
            color: red;
            margin-left: 4px;
        }


/* Blogs detail End */

@media only screen and (max-width: 600px) {
  .col-lg-4{
   width: 100%;
  }
  .col-lg-4 p{
   text-align: justify;
  }
   .col-lg-3 p{
   text-align: justify;
  }
  .col-lg-3{
   width: 100%;
  }
  .donate-btn{
        padding: 1px 2px;
        display: none;
  }

}
