/* Set the background color of the body */
body {
    background-color: aliceblue;
}

@media screen and (max-width: 1200px){
   
    html,body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* start top nav bar Global reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar styling */
.top-nav {
    background-color:#008428; /* Background color for the nav bar */
    color: white; /* Font color */
    font-family: Arial, sans-serif; /* Font choice for readability */
    padding: 10px 0; /* Padding for top and bottom */
    position: fixed; /* Keep the navbar fixed on top */
    top: 0;
    left: 0;
    width: 100%; /* Navbar covers the full width */
    z-index: 999; /* Ensures the navbar stays on top */
    overflow: hidden; /* Hides text that overflows */
    padding-bottom: 4px;
}

/* Ticker animation */
.ticker {
    display: block;
    white-space: nowrap; /* Ensures text doesn't wrap */
    animation: scroll-left 20s linear infinite; /* Animation for smooth scrolling */
}

/* Scroll animation keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* end top nav bar Global reset for margin and padding */

/* Start logo section */
.logo-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.brand-logo {
    padding-top: 35px;
}

/* End logo section */

/* main hero section section */
.hero-banner {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: url('img/%c3%a0%c2%a4%c2%a6%c3%a0%c2%a5%c2%80%c3%a0%c2%a4%c2%a8.html\ दयाल\ जन\ आवास\ योजना.png') no-repeat center center/cover;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1200px) {
    .hero-banner {
        height: 600px;
    }
}

    @media (max-width: 768px) {
        .hero-banner {
            height: 400px;
        }
    }

        @media (max-width: 480px) {
            .hero-banner {
                height: 300px;
            }
        }


/* Start Point - Fix for 4 Button Section in Mobile */

/* 4 button colomn for register-btn */
.pdtb {
    padding: 10px 0; /* Reduced padding for less top-bottom space */
    display: flex;
    justify-content: center; /* Center entire container */
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1; /* Prevent overlap */
    margin: 0 auto; /* Ensure container is centered */
    width: 100%; /* Ensure full width */
}

/* Outer Styling - Adjusted Padding for all screens */
.pdtb {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px; /* Reduced padding */
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

/* Ensure buttons stay in place, no overlap */
.pdtb {
    transform: translateY(0); /* Removed unnecessary translateY */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Container padding adjustments for top margin */
.container.pdtb {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    margin-top: 20px; /* Reduced margin for mobile */
    background-color: #FEFEDF;
}

/* Flexbox for Single Row */
.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap; /* No wrap for desktop */
    gap: 10px; /* Less gap for mobile */
    position: relative;
    z-index: 1;
}

/* Column adjustments */
.col-md-4 {
    width: auto;
    padding: 10px;
    box-sizing: border-box;
}

/* Button styling */
.blink-main {
    background-color: orange;
    border-radius: 8px;
    padding: 10px 20px; /* Reduced padding */
    font-size: 18px;
    font-weight: bold;
    color: #f3f0f0;
    display: inline-block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.blink-main:hover {
    background-color: #009553; /* Turn green on hover */
    transform: scale(1.05);
}

/* Mobile specific fixes */
@media (max-width: 768px) {

    /* Reduce padding/margin in mobile view */
    .pdtb {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%; /* Full width on mobile */
        box-sizing: border-box;
    }

    /* Mobile-specific margin adjustment */
    .container.pdtb {
        /* margin-top: 310px; */
        margin-top: 0px;
    }

    /* Flexbox adjustments for mobile */
    .pdtb .row {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        width: 100%;
    }

    /* Columns should take full width in mobile */
    .col-md-4 {
        width: 100%; /* Full width on mobile */
    }

    /* Button adjustments for mobile */
    .blink-main {
        width: 100%; /* Full width buttons */
        max-width: 300px;
        margin: 10px auto; /* Center aligned */
    }
}

/* End Point - Fix for 4 Button Section in Mobile */

/* contact us form  Section Styling */
/* Main container with changed class */
.rk-bhardwaj {
    position: relative;
    padding: 10px;
    margin-top: 10px;
}


.rk-bhardwaj .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    align-items: stretch;
    text-align: left;
}

/* Section Header Styling */
.section-header h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: green; /* Green color for Contact Us heading */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Form Styling */
.form-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.form-overlay:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Input Fields Styling */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ddd;
    margin-bottom: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #5cb85c; /* Green border on focus */
    box-shadow: 0px 4px 10px rgba(92, 184, 92, 0.3);
    outline: none;
}

#name, #phone, #email, #message {
    background-color: #f9f9f9;
    color: #333;
}

#name::placeholder,
#phone::placeholder,
#email::placeholder,
#message::placeholder {
    color: #999;
    font-style: italic;
}

/* Button Styling */
.btn-success {
    padding: 12px 25px;
    background-color: #5cb85c;
    border: none;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    margin-top: 15px;
}

.btn-success:hover {
    background-color: #4cae4c;
    cursor: pointer;
    transform: scale(1.05);
}

/* Align the Submit Button Left */
.contact-form-submit {
    text-align: left;
}

/* Textarea Spanning Full Width */
.contact-form-message textarea {
    width: 100%;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .rk-bhardwaj {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-group input, .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
}

/* Keyframe Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* About Us DEEN DAYAL Section Styling */
.about-section {
    padding: 20px;
}
.container-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blinking-heading h2 {
    background-color: #EB8224;
    color: white;
    padding: 10px;
    border-radius: 5px;
    animation: blink 1s infinite;
}

.blinking-heading h2 {
    font-size: 24px;
    font-weight: bold;
    color:  white;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media screen and (max-device-width:768px) {
    .blinking-heading {
        padding: 5px 0px !important;
    }

    .about-text h3 {
        margin-top: 7rem !important;
    }

    .about-section .paragraph-limit{
        /* width: 100%; */
        padding-right: 0px !important;
    }

}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.about-text {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 10px;
}
.about-text h3 {
    margin-top: 0;
}
.about-text hr {
    margin: 10px 0;
}
.paragraph-limit {
    margin-bottom: 10px;
}
.rahul image-container {
    width: 100%;
    height: 600px;
    object-fit: cover;
    left: 0;
    transition: opacity 1s ease-in-out;
    opacity: 1;}

.image-box {
    width: 100%;
    height: auto;
}
/* Make the image responsive */
.responsive-image {
    width: 100%; /* This makes the image fit its container's width */
    height: auto; /* Maintains the aspect ratio of the image */
    max-width: 1240px; /* Set the maximum width for larger screens */
    display: block;
    margin: 0 auto; /* Center the image */
}

/* Optional: Add some padding to ensure the image doesn't touch the section borders */
.image-section {
    padding: 20px 0;
}

/* Main container style for Configuration Section */
/* General Styles */
.configuration-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    text-align: center;
    flex: 1; /* Allows equal space for each box */
}

/* For desktop/tablet view - all boxes in a single row */
@media (min-width: 769px) {
    .configuration {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* For mobile view - boxes stacked */
@media (max-width: 768px) {
    .configuration {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Make the boxes smaller on mobile */
    .configuration-box {
        width: 80%; /* Adjust width as per your design */
        margin-bottom: 15px;
    }

    /* Add top spacing */
    .configuration {
        margin-top: 20px; /* Adjust the top space */
    }
}


/* Table Head Styling */
.emi-table thead {
    background-color: #ff9800; /* Luxurious orange background for the header */
    color: white;
    font-weight: bold;
}

.emi-table th {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd; /* Border for neat structure */
    text-transform: uppercase; /* Capitalize for bold look */
}

/* Table Body Styling */
.emi-table tbody {
    background-color: white; /* White background for data */
}

.emi-table td {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    color: #333;
    border: 1px solid #ddd;
}

/* Hover Effect for Table Rows */
.emi-table tbody tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .emi-table th, .emi-table td {
        font-size: 14px;
        padding: 10px;
    }

    .payment-section h2 {
        font-size: 28px;
    }

    .payment-section p {
        font-size: 16px;
    }
}

/* Site Plan Section Styling */
.site-plan-section {
    margin-top: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(214, 74, 74, 0.1); /* Add soft shadow */
    animation: fadeInUp 1s ease-in-out; /* Smooth fade-in animation */
}

.site-tittle h2 {
    font-size: 28px;
    margin-bottom: 5px;
    background-color: #007bff;
}

.banner-container{
    margin-top: 10px;
    padding-top: 10px;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bank Loan Banner Styling */
.bank-loan-banner {
    background-color: aliceblue; /* Orange banner */
    color: white;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 30px;
    animation: slideIn 1.2s ease-in-out;
}

.bank-loan-banner h2 {
    font-size: 30px;
    font-weight: bold;
    color: #292b29;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;

}

body{
    background-color: aliceblue;
}

/* Slide-In Animation for Banner */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* start Site map Location Advantages Section */
.shadow-container {
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Overlapping shadow effect */
    background-color: #fff;
    border-radius: 10px; /* Optional: Add rounded corners */
    margin: 20px 0;
  }
  
  /* Location Map */
  .location-map iframe {
    border: 0;
    width: 600px;
    height: 380px;
    border-radius: 10px; /* Makes the map look nice with rounded corners */
  }
  
  
  .section-header hr {
    border: none;
    height: 2px;
    background-color: #121213;
    width: 100%; /* Full width horizontal line */
}
  /* Responsive Design for Mobile */
  @media (max-width: 767px) {
    .location-map iframe {
      height: 300px; /* Adjust map height for smaller screens */
    }
  
    .shadow-container {
      padding: 15px;
      margin: 10px 0;
    }
  
    /* Ensuring the content and map stack vertically */
    .row {
      flex-direction: column;
      align-items: center;
    }
  
    .list-main ul li {
      font-size: 14px; /* Smaller font size for mobile */
    }
  }
  
  /* Section Header */
  .section-header h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Optional: Overall section spacing and background */
  .overview {
    padding: 40px 0;
  }
  
/* end Site map Location Advantages Section */

/* Responsive Styling for Smaller Screens */
@media (max-width: 768px) {
    .site-plan-container {
        flex-direction: column;
        align-items: center;
    }

    .map-container, .location-advantages {
        width: 100%;
    }

    .location-advantages ul li {
        font-size: 16px;
    }

    .bank-loan-banner {
        font-size: 18px;
    }
}

/* Amenities Section Styling */
.amenities-section {
    background-color: #f7f7f7;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-in-out;
    flex: auto;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amenities Heading */
.amenities-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideIn 1.2s ease-in-out;
}

/* Slide-in Animation for Heading */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 20px;
    align-items: stretch;
}

/* Grid Item Styling */
.grid-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

/* Image Styling */
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 5px solid #ff9800; /* Add bottom border for visual appeal */
}

/* Caption Text */
.grid-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #333;
    margin: 15px 0;
}

/* Hover Effect */
.grid-item:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

/*-- Mobile-specific CSS to ensure only one image shows and it fits fully */
@media (max-width: 768px) {
    /* Stack images vertically on mobile */
    .swiper-slide {
        width: 100% !important; /* Take full width of the container */
    }

    .swiper-wrapper {
        flex-direction: column; /* Stack the swiper slides */
    }

    /* Hide swiper navigation buttons on mobile */
    .swiper-button-prev, .swiper-button-next {
        display: none !important;
    }

    .galImg img {
        width: 100%; /* Ensure image fills the width */
        height: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Ensure no cropping occurs */
    }
}

/*-- Adjust Swiper configuration for mobile view */






.footer {
    background-color: #f4f4f4;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo-footer img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-footer img:hover {
    transform: scale(1.1);
}

.footer-description p {
    font-size: 16px;
    color: #333;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #007bff;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
}

.footer-social img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.7;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
}

/* Top Bar sticky bar */
.top-bar {
    background-color: #50A95B; /* Black background for the top bar */
    padding: 10px 0; /* Padding for the bar */
    color: #fff; /* White text color */
  }
  
  .headtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Style for phone and email buttons */
  .redbutn {
    background-color: #e74c3c; /* Red background for buttons */
    color: #fff; /* White text on buttons */
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
  }
  
  .redbutn:hover {
    background-color: #c0392b; /* Darker red on hover */
  }
  
  /* Marquee Text Styles */
  .scroll-text {
    font-weight: 500;
    font-size: 14px;
    color: #fff; /* White text for scrolling */
    padding-left: 10px; /* Padding to start a bit away from the edge */
    margin: 5px 0; /* Vertical spacing */
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .scroll-text {
      font-size: 12px; /* Smaller text for mobile */
    }
  
    .redbutn {
      font-size: 12px; /* Smaller button text for mobile */
    }
  }
  
/* Logo Section Styles */
.logo-section {
    background-color: #fff; /* Background color for the logo section */
    text-align: center; /* Center align the logo horizontally */
    padding: 0 0; /* Padding for the top and bottom */
    width: 100%; /* Make sure the logo section takes full width */
  }
   
  /* Style for the logo image */
  .brand-logo {
    max-width: 100%; /* Ensure the logo covers full width without stretching */
    height: auto; /* Maintain aspect ratio for the logo */
    display: block; /* Ensure the image is a block element */
    margin: 0 auto; /* Center the logo inside the container */
  }
  
  /* Responsive styling for mobile devices */
  @media (max-width: 768px) {
    .brand-logo {
      max-width: 100%; /* Adjust the logo size for smaller screens */
    }
  }
  

/* Green Bar Styling */
.ravi {
    background-color: #00821a; /* Green background */
    height: 50px; /* Fixed height for the nav bar */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontally center the text */
    align-items: center; /* Vertically center the text */
    color: #fff; /* White text color */
    font-size: 1.2rem; /* Text size */
    position: relative; /* Stick to the top */
    top: 0; /* Align at the top of the page */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensure it's on top */
}

.ravi P{
    text-align: center;
    margin: 10px 0;
    padding-right: 10px;
    line-height: 1.6;
    color: #fff;
    font-size: medium;
}

/* Responsive styling for mobile */
@media only screen and (max-width: 768px) {
    .ravi p {
        font-size: 1rem; /* Adjust text size for mobile */
    }
}

  /* Menu Bar Styles */ /* Navbar container */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Left Menu styles */
.menu {
    display: flex;
    gap: 20px;
}

/* Menu Links */
.menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.menu a:hover {
    color: orange; /* Hover effect to change color to orange */
}

/* Helpline and Mobile Number styling */
.helpline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Mobile number blinking between black and red */
.mobile-number {
    font-weight: bold;
    animation: blink-mobile-number 1s infinite;
}

@keyframes blink-mobile-number {
    0% { color: black; }
    50% { color: red; }
    100% { color: black; }
}

/* Buttons styling */
.button-green, .button-orange {
    padding: 10px 20px;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold; /* Bold text for buttons */
    flex: 1;
}

.top-buttons{
  flex: wrap;
}

/* Green button styling */
.button-green {
    background-color: #50A95B;
}

/* Blinking effect for "Registration Open" text */
.blink {
    animation: blink-button-text 1s infinite;
}

@keyframes blink-button-text {
    0% { color: red; }
    50% { color: white; }
    100% { color: red; }
}

/* Orange button styling */
.button-orange {
    background-color: #EB8224;
}

/* Flexbox for buttons, with equal spacing */
.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Ensure both buttons are equal size */
.buttons button {
    flex: 1;
    text-align: center;
    white-space: nowrap; /* Prevent text break */
}

/* orange and green button closed */
/* Ensure this code only applies to mobile devices */
@media only screen and (max-width: 768px) {
    .top.buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;    /* Center the buttons horizontally */
        gap: 10px;              /* Add some spacing between the buttons */
        padding: 0 10px;        /* Add a little padding to avoid edge cut-off */
        width: 100%;            /* Make the button container take full width */
    }
    
    .top.buttons button {
        width: 100%;        /* Make the buttons take full width */
        max-width: 100%;    /* Prevent them from exceeding 100% */
        box-sizing: border-box; /* Ensure padding doesn't increase the button size */
    }
    
    /* To ensure no extra space appears on the right side of the page */
    body, html {
        overflow-x: hidden; /* Prevent horizontal scrolling */
        margin: 0;
        padding: 0;
    }

    /* Make sure anchor tags inside the buttons behave properly */
    .top.buttons button a {
        display: block;
        text-align: center;
        text-decoration: none;
        color: inherit;  /* Inherit the color from the button */
        width: 100%;
    }
    
    /* Optional: Adjust the button text size for smaller screens */
    .top.buttons button span.blink {
        font-size: 30px; /* Adjust font size for smaller screens */
    }
}

/* orange and green button closed */


/* Media query for mobile/tablet view */
@media (max-width: 768px) {
    /* Aligning navbar items in column for mobile view */
    .navbar {
        justify-content: space-around; /* Center content */
    }

    /* Keep helpline and number on the same row */
    .helpline {
        align-items: top;
    }

    /* Center buttons with equal size */
    .buttons {
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 10px;
    }

    /* Hide the menu by default on mobile */
    .menu {
        display: none;
    }

    /* Show toggle button on mobile */
    .toggle-btn {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: black; /* Black colored icon */
        padding: 10px;
        background: none;
        border: none;
    }

    /* Menu active class to show on toggle click */
    .menu.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
        animation: slide-in 0.3s ease-in-out;
    }

    /* Slide-in effect for menu */
    @keyframes slide-in {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }

    /* Buttons should be full width on mobile */
    .buttons button {
        width: 100%;
    }
}

/* Toggle icon style */
.toggle-btn {
    display: none; /* Default hidden for desktop */
    font-size: 24px;
    color: black; /* Black icon */
    cursor: pointer;
}

/* Show toggle button on mobile */
@media (max-width: 768px) {
    .toggle-btn {
        display: block;
        margin-left: auto;
        display: inline-flex;
    }
}


/* Box Hover Effect */ Blink button
.custom-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image on the left takes full width and height of the column */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* Slightly rounded corners */
}

/* Text content on the right aligned to match the image height */
.content-box {
    padding-left: 20px; /* Spacing between image and text */
}

/* Headings in the content section */
.content-box h4 {
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Paragraph styling in the content */
.content-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Configuration Section Styling */
.configuration-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Individual Configuration Boxes */
.configuration-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin: 30px;
}

/* Configuration Box Hover Effect */
.configuration-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Configuration Box Title and Text */
.configuration-box h6 {
    font-size: 14px;
    color: #ea7642;
    margin-bottom: 10px;
}

.configuration-box p {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-box {
        padding: 10px;
    }

    .image-container img {
        margin-bottom: 20px;
    }

    .content-box {
        padding-left: 0;
    }

    .configuration-section {
        flex-direction: column;
    }

    .configuration-box {
        margin-bottom: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .custom-box {
        padding: 10px;
    }

    .content-box {
        padding: 10px 0;
    }
}

/* Hero Section Styles */

/* Hero Section container */
.hero-section {
    display: flex;
    /* height: 100vh; */
}

/* Left side Image */
.hero-image {
    flex: 0 0 60%; /* Image takes up 60% width */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
     /* Ensures the image is fully visible without cropping */
}

/* Right side content */
.hero-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FEFEDF;
}

/* Main heading */
.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
	color: black
}

/* Horizontal line */
.hero-content hr {
    width: 100%;
    border: 1px solid rgb(36, 32, 32);
    margin-bottom: 15px;
}

/* Location text */
.hero-content .location {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Subheading */
.hero-content h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

/* Badge Image (Sticker) */
.badge-img {
    position: absolute;
    padding-top: 10px;
    right: -70px;  /* Adjust this value to position the badge properly */
    width: 20px;   /* Badge size */
    height: auto;
}

/* Features list */
.hero-content .features {
    list-style-type: none;
    margin-bottom: 20px;
}

.hero-content .features li {
    font-size: 18px;
    margin-bottom: 10px;
	color: black;
}

/* Registration Button */
.register-btn {
    padding: 15px 30px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 35px;
    animation: blink 1s infinite; /* Blinking effect */
}

/* Blinking button text effect */
@keyframes blink {
    50% { color: green; }
}

/* Registration Fee Information */
.registration-fees {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.registration-fees .fee {
    font-size: 16px;
    text-align: center;
	font-weight: bold;
	color: black;
    width: 48%;
    padding: 10px;
    background-color: #e1b92e;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column; /* Stack image and content vertically */
    }

    /* Make the image take full width in mobile view */
    .hero-image {
        flex: 0 0 auto;
    }

    .hero-image img {
        width: 100%; /* Image takes full width of the screen */
        height: auto;
    }

    /* Adjust content padding */
    .hero-content {
        padding: 20px;
    }

    /* Adjust the size of the text for mobile */
    .hero-content h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content hr {
        width: 100%;
        border: 1px solid black;
        margin-bottom: 15px;
    }
    
    .location {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .location, .hero-content .features li, .register-btn {
        font-size: 16px;
    }

    /* Registration fees section adjustment for mobile */
    .registration-fees {
        flex-direction: column;
        align-items: center;
    }

    .registration-fees .fee {
        width: 100%;
        margin-bottom: 15px;
    }
}
 





/* head below contact form Styles */
.contact {
    background-color: aliceblue;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px; /* Space between fields */
}

.form-control {
    height: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px; /* Padding inside the input fields */
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

.contact-form-submit .btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form-submit .btn:hover {
    background-color: #218838;
}

/* About Section Styles */
.about-section {
    padding: 40px 0;
    background-color: aliceblue;
  }
  
  /* Container with shadow */
  .container-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
  }
  
  /* Blinking Heading Styles */
  .blinking-heading {
    position: relative;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 8px;
    animation: blink 1s linear infinite;
    align-self: baseline;
  }
  
  .blinking-heading h2 {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  /* Blink Animation */
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  /* Left Text Styling */
  .about-text {
    text-align: left;
    max-width: 40%;
  }
  
  .about-text h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .about-text hr {
    width: 100%;
    height: 2px;
    background-color: #333;
    margin: 10px 0;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  /* Right Side Image Styling */
  .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-box {
    width: 100%;
    padding: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .img-fluid:hover {
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-text {
      max-width: 100%;
    }
    .image-box {
      width: 100%;
    }

  }  
  
/* Amenities Styles */

.amenities-container {
    margin: 20px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #333;
}

.featSlider {
    overflow: hidden;
}

.swiper {
    display: flex;
    align-items: center;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex: 1 0 25%; /* 4 images in a row */
    margin-right: 10px; /* Space between images */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.amenities-slide {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    text-align: center;
    padding: 10px;
    position: relative;
}

.galImg img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.galImg:hover img {
    transform: scale(1.05);
}

.gal-caps {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

/* Swiper Button Styles */
.swiper-button-prev, .swiper-button-next {
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}


/* start highlights point Section */
.highlights-container {
    margin: 20px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #333;
}

.highlight_section {
    padding: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 20px; /* Space between grid items */
}

.grid-item {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.grid-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    margin: 15px 0;
    text-align: left;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.title {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

hr {
    border: none;
    height: 2px;
    background-color: #007bff;
    width: 100%; /* Full width horizontal line */
}

p {
    color: #333;
    margin-top: 10px;
    font-size: 14px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
    }
}
/* end highlights point Section */


/* footer section container */
.footer-container {
    background-color: #fefedf; /* Adjust background color as needed */
    padding: 40px 0; /* Adjust padding for top and bottom */
    border-top: 1px solid #ddd; /* Optional border at the top */
}

.footer-address {
    margin-bottom: 20px; /* Space between address boxes */
}

.footer-address-box {
    padding: 15px;
    background: white; /* Box background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.footer-address-box P {
    text-align: left;
    margin: 10px 10px;
    padding-right: 10px;
    line-height: 1.6;
    height: auto;
}

.disclaimer-box {
    margin-top: 30px; /* Space above disclaimer text */
    padding: 20px; /* Padding inside the disclaimer box */
    background: #fff; /* Background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Deeper shadow for depth */
}

.disclaimer {
    color: #555; /* Text color */
    line-height: 1.6; /* Improved line spacing */
}

/* Get In Touch Spiti Section Styles */

/* General container styling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Row Layout */
.row.top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Left Side: Title, Paragraph, and Form */
.content-left {
    flex: 0 0 45%; /* Fixed width of 45% */
    padding: 20px;
}

h2 {
    text-align: left;
    margin: 0;
    padding-bottom: 10px;
}

.line-separator {
    width: 50%; /* Line matches title width */
    margin-left: 0;
    margin-bottom: 20px;
}

p {
    text-align: justify;
    margin: 10px 0;
    padding-right: 10px;
    line-height: 1.6;
    width: 90%; /* Keep text width limited */
}

/* Get In Touch Form */
/* General container styling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Row Layout */
.row.top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Left Side: Title, Paragraph, and Form */
.content-left {
    flex: 0 0 45%; /* Fixed width of 45% */
    padding: 20px;
}

h2 {
    text-align: left;
    margin: 0;
    padding-bottom: 10px;
}

.line-separator {
    width: 50%; /* Line matches title width */
    margin-left: 0;
    margin-bottom: 20px;
}

p {
    text-align: justify;
    margin: 10px 0;
    padding-right: 10px;
    line-height: 1.6;
    width: 90%; /* Keep text width limited */
}

/* Get In Touch Form */
/* General container and layout styling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.row.top-section {
    display: flex;
    justify-content: space-between;
}

/* Left side styling */
.content-left {
    flex: 0 0 45%; /* Fixes width to around 45% */
    padding: 20px;
}

h2 {
    text-align: left;
    margin: 0;
    padding-bottom: 10px;
}

.line-separator {
    width: 50%; /* Horizontal line the length of the title */
    margin-left: 0;
    margin-bottom: 20px;
}

p {
    text-align: justify;
    margin: 10px 0;
    padding-right: 10px;
    line-height: 1.6;
}

/* Get in Touch Form Section */
.get-in-touch-container {
    margin-top: 20px;
}

.form-wrapper {
    display: flex;
    align-items: center;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 20px;
    font-weight: bold;
    color: #ea7642;
    margin-right: 20px;
}

.form-container {
    flex-grow: 1;
}

form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ea7642;
    border: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Right side image styling */
.content-right {
    flex: 0 0 45%; /* Takes 45% of the total width */
    padding: 20px;
    position: relative;
}

.nav image-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 645px; /* Set the desired max height */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 700px;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    
    left: 0;
    transition: opacity 1s ease-in-out; /* Smooth transition for image opacity */
    opacity: 1; /* Hidden by default */
}

.image-container img.active {
    opacity: 1; /* Only the active image is visible */
}

.image-dots {
    position: absolutbe;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ea7642; /* Highlight active dot */
}

/* Responsive for Mobile Devices */
@media only screen and (max-width: 768px) {
    .content-left, .content-right {
        flex: 0 0 100%; /* Left and Right Columns will stack */
        text-align: center;
    }
    
    .image-container img {
    width: 100%;
    height: 660px;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    }

    .image-container {
        margin-top: 20px;
    }

    h2 {
        text-align: center;
    }

    .line-separator {
        margin: 0 auto;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .vertical-text {
        display: none; /* Hide vertical text in mobile */
    }
}


/* Fix for the Bottom Section */
.row.bottom-section {
    margin-top: 30px; /* Add space between sections */
    padding-top: 20px;
    border-top: 1px solid #ddd; /* Divider between sections */
}

/* Mobile and Desktop Responsiveness */
@media only screen and (max-width: 768px) {
    .content-left, .content-right {
        flex: 0 0 100%;
        text-align: center;
    }

    .image-container {
        margin-top: 20px;
        height: auto;
    }

    h2 {
        text-align: center;
    }

    .line-separator {
        margin: 0 auto;
    }

    .get-in-touch-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .vertical-text {
        display: none;
    }

    .form-container {
        width: 100%;
    }
}
      

/* A4 size 2 banner Styling */
.awas-yojna-plan {
    width: 100%;
    padding: 20px 0;
    background-color: #FEFEDF; /* Light background for contrast */
}

/* Centering the title */
.awas-yojna-plan h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #002366; /* Navy blue text color */
}

/* Container for the images */
.images-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between the two images */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual image box */
.image-box {
    flex: 1;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow around images */
}

/* Styling for the images */
.awas-img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limiting height to maintain aspect ratio */
    object-fit: contain; /* Ensures the image doesn't stretch or crop */
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for the images */
.awas-img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive design for tablets and mobile */
@media screen and (max-width: 768px) {
    .images-container {
        flex-direction: column;
    }

    .image-box {
        margin-bottom: 20px;
    }
}


/* sitemap landsacpe image the section */
.site-map-landscap {
    width: 100%;
    padding: 20px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
}

/* Centering the title */
.awas-yojna-plan h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333; /* Neutral text color */
}

/* Container for the images */
.images-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between the two images */
    width: 100%;
    max-width: 1200px;
    margin:  0 auto;
    padding: 10px 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow around container */
}

/* Individual image box */
.image-box {
    flex: 1;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow around images */
}

/* Styling for the images */
.awas-img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limiting height to maintain aspect ratio */
    object-fit: contain; /* Ensures the image doesn't stretch or crop */
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for the images */
.awas-img:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Responsive design for tablets and mobile */
@media screen and (max-width: 768px) {
    .images-container {
        flex-direction: column;
    }

    .image-box {
        margin-bottom: 20px;
    }
}

/* Luxury Residential Plots Section */
/* General Section Styles */
.w-100.ravibgstar {
    position: relative;
    margin: 0;
    width: 100%;
    height: 280px;
    background-color: aliceblue;
    overflow: hidden;
}


/* Overlay Text Section */
.ravibgstar-abs {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
    background-color: #ff6600;
}

.ravibgstar-abs h2 {
    margin: 10px 0; 
    text-align: center;
}

/* Button Styles */
.ravibutton {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    color: black;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

/* Specific Styling for Registration Now Button */
.raviregistration-btn {
    background-color: red; /* Default Red Button */
    color: white;
    font-size: 18px; /* Larger Text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    animation: raviblink 1s infinite; /* Blinking Effect */
}

/* Blinking Red and Green Animation */
@keyframes raviblink {
    0% { background-color: red; }
    50% { background-color: green; }
    100% { background-color: red; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .raviregistration-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* end Luxury Residential Plots Section */

/* Start Payment Plan excel table Section */
.custom-container {
    padding: 20px; /* Proper padding */
    margin: 0 auto; /* Center the container */
    max-width: 1200px; /* Set a max-width for layout */
    position: relative; /* For overlap effect */
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for container */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Hide any overflow */
    margin-bottom: 20px;
  }
  
  /* Overlap Effect */
  .custom-table-container {
    background: #fefedf;
    padding: 15px;
    margin-top: -40px; /* Creates slight overlap */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for overlap effect */
  }
  
  /* Table Styling (Excel-like) */
  .excel-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .excel-table th, .excel-table td {
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #f9f9f9;
  }
  
  /* Header Styling */
  .main-th {
    background-color: #ea7642;
    color: #1D4534;
    font-weight: bold;
  }
  
  /* Alternating Row Colors */
  .excel-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
  }
  
  /* Animation Effect for the Table */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .excel-table {
    animation: fadeIn 2s ease-in-out; /* Fade-in animation */
  }
  
  /* Responsive Table */
  @media (max-width: 768px) {
    .table-responsive {
      overflow-x: scroll;
    }
  }
  
  /* GST Text Styling */
  .gst small {
    color: #555;
  }
  
  
  /* Adding proper margins */
  .section-header {
    margin-bottom: 30px;
  }
  
  /* end Payment Plan excel table Section */


    /* Bank Loan Banner Styling */
.bank-loan-banner {
    background-color: aliceblue;
    padding: 20px 0; /* Add padding to top and bottom */
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bank-loan-banner h2 {
    font-size: 28px;
    margin-bottom: 20px; /* Add space between heading and image */
    color: #333; /* Improve text visibility */
}

.banner-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 100%;
    max-width: 800px; /* Increase max-width for larger display */
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
}

/* Responsive Design */
@media (max-width: 768px) {
    .bank-loan-banner h2 {
        font-size: 14px;
    }

    .banner-image {
        max-width: 90%; /* Adjust for better mobile display */
    }
}
    /* icici bank loan banner styling */
  
/* Main Container for 3D Flip Boxes */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.heading h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

.heading hr {
    width: 50%;
    margin: 0 auto;
    border: 1px solid #000;
    margin-bottom: 30px;
}

/* Container styles updated */
.rk.container {
    display: flex;
    justify-content: space-between; /* Align items across full width */
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
}

.about-spiti-rk {
    margin: 20px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Flip Box Styles */
.flip-box-container {
    display: flex;
    justify-content: space-between; /* Space between flip boxes */
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    width: 100%; /* Take full width of the container */
}

.flip-box {
    background-color: transparent;
    width: 23%; /* Take nearly 1/4th width on desktop */
    height: 350px;
    perspective: 1000px;
    box-sizing: border-box;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateX(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 2px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-box-front img {
    width: 100%; /* Full width image */
    height: 70%;
    object-fit: cover;
}

.flip-box-front h3 {
    margin-top: 10px;
    font-size: 1.2em;
}

.flip-box-back {
    background-color: #f8f8f8;
    color: #333;
    transform: rotateX(180deg);
    padding: 20px;
    box-sizing: border-box;
}

.flip-box-back p {
    margin-bottom: 20px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

/* Mobile view only */
@media (max-width: 768px) {
    /* Ensure the flip-box container shows only one flip-box at a time */
    .flip-box-container {
        display: flex;
        overflow-x: auto; /* Allows horizontal scrolling (swiping) */
        scroll-snap-type: x mandatory; /* Snaps to each image during swipe */
    }

    .flip-box {
        flex: 0 0 100%; /* Ensures each flip-box takes 100% width on mobile */
        scroll-snap-align: start; /* Snaps the image at the start of the container */
    }

    /* Ensure the image takes the full size of the flip-box and does not crop */
    .flip-box img {
        width: 100%;
        height: auto;
        object-fit: cover; /* Ensures the image is fully shown without cropping */
    }
}

/* Main Container for 3D Flip Boxes */


/* location conectivity */
.banner-img {
    width: 100%;
    height: auto;
    max-width: 1448px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}


/* start Footer Styles */
/* Footer Styles */
.footer-container {
    background-color: #f8f9fa;
    border-top: 2px solid #00821a;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-box {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 180px; /* Set a fixed height for all boxes */
}

.footer-box h3 {
    color: #00821a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-box p {
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: center;
    
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.disclaimer-box h4 {
    color: #00821a;
    margin-bottom: 15px;
    text-align: center;
}

.disclaimer-box p {
    text-align: justify;
    line-height: 1.6;
    font-size: 0.9rem;
}

.copyright-info {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.copyright-info a {
    color: #00821a;
    text-decoration: none;
}

.copyright-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-box {
        width: 100%;
        margin-bottom: 20px;
        height: auto; /* Allow height to adjust on mobile */
    }
}

.footer-links-copyright {
    text-align: center;
    margin-top: 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #00821a;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright-info {
    font-size: 0.9rem;
}

.copyright-info a {
    color: #00821a;
    text-decoration: none;
}

.copyright-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
/* footer last line end */
  
  /* site map for bank recers line */
  .naveen-loan-banner {
   background-color: #ea7642;
   padding: 10px;
   margin-bottom: 0;
   margin-top: 10px;
  }
  /* site map for bank recers line */

 /* Refund Amount Styling */
.refund-amount-section {
    margin-top: -1px; /* Remove gap between sections */
}

.refund-loan-amount {
    background-color: #ea7642;
    padding: 15px;
    text-align: center;
}

.refund-loan-amount span {
    display: block;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .refund-loan-amount span {
        font-size: 14px;
    }
}
/* Refund Amount Styling */



/* Pop-Pup Buttons styling */
.buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* Popup Overlay (Full-screen black background with subtle opacity) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* On top of all content */
}

/* Popup Container with a subtle overlay and centered */
.popup-container {
    position: relative;
    background-color: #fff;
    padding: 20px; /* Padding around the image */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    max-width: 80%; /* Adjust size on desktop */
    max-height: 80%; /* Prevent overflow */
    overflow: hidden; /* Hide overflow */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    border-radius: 50%;
    background-color: #f2f2f2;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #e0e0e0;
}

/* Popup Image Styling */
.popup-image {
    width: auto; /* Set to the full width of your image */
    height: 500px; /* Maintain aspect ratio */
    max-width: 100%; /* Scale down for smaller screens */
    max-height: 100%; /* Prevent overflow */
    border: 5px solid #ddd; /* Border for better visuals */
    border-radius: 10px; /* Rounded corners */
    object-fit: contain; /* Ensure image fits the container */
    margin-top: 10px;
}
    

/* Subtle overlay effect on hover */
.popup-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    transition: transform 0.3s ease-in-out;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .popup-container {
        max-width: 95%; /* Adjust container size on smaller screens */
        max-height: 80%;
        padding: 10px; /* Reduce padding */
    }

    .close-btn {
        font-size: 20px; /* Adjust close button size on mobile */
        top: 5px;
        right: 10px;
    }
}













.navbar {
    background-color: #fefedf;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.menu a {
    color: rgb(26, 25, 25);
    text-decoration: none;
    padding: 10px;
}

.helpline {
    color: black;
    font-weight: bold;
}

.top-buttons {
    display: flex;
    gap: 10px;
}

.button-green, .button-orange {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-green {
    background-color: #4CAF50;
}

.button-orange {
    background-color: #FF9800;
}

.button-green a {
    color: white;
    text-decoration: none;
}

.blink {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Desktop styles */
@media screen and (min-width: 769px) {
    .toggle-btn {
        display: none;
    }

    .menu {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .menu {
        display: none;
    }

    .toggle-btn {
        background: none;
        border: none;
        color: #00b158;
        font-size: 29px;
        cursor: pointer;
        order: 1;
    }

    .helpline {
        order: 2;
        margin-left: 15px;
    }

    .top-buttons {
        width: 100%;
        order: 3;
        margin-top: 10px;
        justify-content: center;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        background-color: #444;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    .mobile-menu a {
        display: block;
        padding: 15px;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid #555;
    }

    .mobile-menu.active {
        display: block;
    }
}


/* CSS for the mobile view */

/* Adjust hamburger button and helpline positioning */
@media screen and (max-width: 768px) {
    /* Center the helpline text and number directly opposite the hamburger icon */
    .helpline {
        order: 2; /* Ensures helpline is positioned correctly */
        margin-left: auto; /* Move it to the center */
        margin-right: auto;
        text-align: center;
    }

    .mobile-number {
        font-weight: bold; /* Make the phone number bold */
        color: #ff9800; /* Customize the color of the number */
    }

    /* Adjust the mobile menu appearance */
    .mobile-menu {
        background-color: #f8f8f8; /* Light off-white background for mobile menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none; /* Initially hidden */
        transition: all 0.5s ease-in-out; /* Smooth slide-down transition */
        z-index: 1000;
    }

    .mobile-menu.active {
        display: block; /* Show the menu */
        animation: slide-down 0.5s ease forwards; /* Animate slide down */
    }

    /* Slide down animation */
    @keyframes slide-down {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }

    /* Styling for mobile menu items */
    .mobile-menu a {
        padding: 15px;
        text-decoration: none;
        color: #333; /* Dark color for menu links */
        display: block;
        border-bottom: 1px solid #ddd; /* Border between links */
    }
}



   /* start bottom section fixed button */
.nikita-fixed-bottom-section {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nikita-fixed-bottom-section a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    animation: buttonBlink 2s infinite, textBlink 2s infinite;
}

@keyframes buttonBlink {
    0%, 100% { background-color: #4CAF50; }
    50% { background-color: #FFA500; }
}

@keyframes textBlink {
    0%, 100% { color: white; }
    50% { color: red; }
}

@media (max-width: 768px) {
    .nikita-fixed-bottom-section a {
        padding: 12px 24px;
        font-size: 16px;
    }
}
 /* end bottom section fixed button */


 /* start mobile icon section fixed button */
 .mobile-icon-right-side {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.mobile-icon-right-side a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    border-radius: 50%;
    text-decoration: none;
}

.mobile-icon-right-side .phone-icon {
    font-size: 24px;
    animation: iconBlink 1s infinite;
}

@keyframes iconBlink {
    0%, 49% { color: white; }
    50%, 100% { color: orange; }
}

@media (max-width: 768px) {
    .mobile-icon-right-side a {
        width: 40px;
        height: 40px;
    }
    .mobile-icon-right-side .phone-icon {
        font-size: 20px;
    }
}
 /* end mobile icon fixed button */


 /* start scroll icon fixed left side */

 #scrollToTopBtn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    opacity: 0;
    visibility: hidden;
}

#scrollToTopBtn:hover, #scrollToTopBtn.highlight {
    background-color: #45a049;
}

#scrollToTopBtn.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    #scrollToTopBtn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        left: 10px;
        bottom: 10px;
    }
}

/* end start scroll icon fixed left side */


