

/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    bottom: 80px;
    right: 25px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
    background-color: #FBF9D1 !important;
}

.navbar {
    /* padding: 15px 0; */
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@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;
    }
}


/*** Hero Header ***/
.hero-header {
    /* margin-top: -120px;
    padding-top: 120px; */
    /* background: url(../img/hero-bg.jpg) top center no-repeat; */
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}
.header-carousel img{
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    border-radius: 15px;
    z-index: -1;

}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
    height: 350px;
    object-fit: cover;
    width:100%;
}
  

  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%,#54371b);
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 15px 0;
    font-size: 14px;
    border-top: 1px solid #fff;
}

.footer .copyright a {
    color: #fff;
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Modern Auth Buttons */

.navbar .btn-outline-dark {
    border-width: 2px;
    transition: all 0.3s ease;
}

.navbar .btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

.navbar-collapse{
justify-content: space-around;}

/* Cloud Top */
.footer-cloud {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    top: -50px;
}

.footer-cloud svg {
    display: block;
    width: 100%;
    height: 50px;
}

.footer-main {
    position: relative;
    background: 
        linear-gradient(
            135deg,
            rgba(98, 36, 17, 0.644),
            rgba(124, 46, 23, 0.724),
            rgba(70, 25, 12, 0.95)
        ),
        url('../img/footer-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    padding: 30px 0;
    color: #fff;
}

.footer-blog-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.footer-blog-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.footer-blog-content a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.footer-blog-content a:hover {
    color: #f4b183;
}

.footer-blog-content span {
    font-size: 12px;
    color: #ccc;
}





   .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h1 {
            color: #622411;
            font-size: 2.8rem;
            
            margin-bottom: 15px;
           
        }

        .section-header p {
            color: #622411;
            font-size: 1.1rem;
        }

        .tabs-container {
            background: white;
            border-radius: 24px;
           box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .tabs-nav {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-bottom: 3px solid #e9ecef;
            position: relative;
        }

        .tab-button {
            padding: 24px 20px;
            border: none;
            background: #fff;
            font-size: 1rem;
            font-weight: 600;
            color: #6c757d;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tab-button:hover {
             background: #622411;
            color: #FBF9D1;
        }

        .tab-button.active {
             background: #622411;
            color: #FBF9D1;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, #667eea, #764ba2);
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        .tabs-content {
            position: relative;
            min-height: 450px;
        }

        .tab-pane {
            display: none;
            padding: 50px;
            animation: fadeIn 0.5s ease;
        }

        .tab-pane.active {
            display: block;
            background-color: #FBF9D1;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: center;
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }

        .image-container:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .image-container img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            /* background: linear-gradient(to top, rgba(102, 126, 234, 0.9), transparent); */
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .image-container:hover .image-overlay {
            transform: translateY(0);
        }

        .image-overlay span {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .text-content h2 {
            font-size: 2.2rem;
            color: #2d3748;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .text-content h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #622411, #764ba2);
            border-radius: 2px;
        }

        .text-content p {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: #f7fafc;
            border-radius: 8px;
            border-left: 3px solid #667eea;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: #edf2f7;
            transform: translateX(5px);
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            flex-shrink: 0;
        }

        .feature-text {
            color: #2d3748;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .tabs-nav {
                grid-template-columns: repeat(2, 1fr);
            }

            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .image-container {
                max-width: 400px;
                margin: 0 auto;
            }

            .features-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .section-header h1 {
                font-size: 2rem;
            }

            .tabs-nav {
                grid-template-columns: 1fr;
            }

            .tab-button {
                padding: 18px 15px;
                font-size: 0.95rem;
            }

            .tab-pane {
                padding: 30px 20px;
            }

            .text-content h2 {
                font-size: 1.8rem;
            }

            .text-content p {
                font-size: 1rem;
            }
        }

        /* Icon styles */
        .icon-check {
            content: '✓';
        }









         .process-section {
  padding: 50px 0;
  background: #FBF9D1 ;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 38px;

  color: #622411;
}

.section-header p {
  color: #6c757d;
  font-size: 16px;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: #ffffff;
  padding: 18px 30px;
  border-radius: 16px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
  font-size: 55px;
  font-weight: 800;
  color: rgba(12, 45, 72, 0.05);
  position: absolute;
  top: 20px;
  right: 25px;
}

.process-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #622411, #331309);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.process-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #622411;
}

.process-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }
}


 .blog-section {
    padding: 50px 0px;
    background: #FBF9D1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #622411;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 15px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(98,36,17,0.08);
    transition: 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(98,36,17,0.2);
}

.blog-img {
    height: 230px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: #622411;
    font-weight: 600;
}

.blog-content h4 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}
.blog-content h4 a{
    color: #622411;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    text-decoration: none;
    color: #622411;
    font-weight: 600;
    transition: 0.3s;
}

.read-more:hover {
    letter-spacing: 1px;
}

/* Navigation Buttons */
.blog-prev,
.blog-next {
    width: 50px;
    height: 50px;
    background: #622411;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.blog-prev:hover,
.blog-next:hover {
    background: #4a1b0d;
}
.blog-prev {
    left: 10px;
}

.blog-next {
    right:10px;
}


 .cta-section {
    position: relative;
    background: url('../img/cta-bg.jpg') center center/cover no-repeat fixed;
    padding: 150px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #622411;
    color: #fff;
    font-size: 14px;
   
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #4a1b0d;
    color: #fff;
    transform: translateY(-3px);
}



 .premium-pricing {
    padding: 20px 0px;
  
}

.pricing-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.pricing-card {
    background:  #FBF9D1;
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 50px 35px;
    position: relative;
    transition: 0.4s ease;
    border: 1px solid rgba(98, 36, 17, 0.1);
    box-shadow: 0 15px 40px rgba(98, 36, 17, 0.08);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(98, 36, 17, 0.2);
}

.plan-name {
    font-size: 20px;
    color: #622411;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #622411;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #777;
}

.plan-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 14px;
    font-size: 14px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #622411;
    font-weight: bold;
}

/* Button */
.join-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    background: #622411;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.join-btn:hover {
    background: #4a1b0d;
    letter-spacing: 1px;
}

/* Featured Card */
.featured {
    background: linear-gradient(145deg, #622411, #7c2f17);
    color: #fff;
    
    box-shadow: 0 30px 70px rgba(98, 36, 17, 0.35);
}

.featured .plan-name,
.featured .price,
.featured .plan-desc,
.featured .features li {
    color: #fff;
}

.featured .features li::before {
    color: #fff;
}

.featured .join-btn {
    background: #fff;
    color: #622411;
}

.featured .join-btn:hover {
    background: #f3e3db;
}

/* Ribbon */
.ribbon {
    position: absolute;
    top: -15px;
    right: 25px;
    background: #f4b183;
    color: #622411;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.section-header h2{
     border: 2px solid #622411;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
}
.section-header h1{
     border: 2px solid #622411;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
}
.chardham-section h2{
        border: 2px solid #622411;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
}
.heading-section h3{
     border: 2px solid #622411;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
   
}