html,
body {
    margin: 0;
    font-size: 100%;
    font-family: 'BenchNine', sans-serif;
    background:#FFFFFF ;
}

body a,body span {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: 'BenchNine', sans-serif;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: 'BenchNine', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'BenchNine', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    
}

p {
    margin: 0;
    font-size: 1em;
    color: black;
    line-height: 1.9em;
    letter-spacing: 1px;
	font-family:Comic Sans MS (cursive);
	text-align:justify;
}

ul {
    margin: 0;
    padding: 0;
}
/* --------------------- */
/* Top Header Section Styles */
/* --------------------- */

.top-header-container {
  width: 100%;                     /* Full width for the top header container */
  border: 1px solid black;        /* Strong black border around the header */
  padding: 2px;                   /* Reduced padding inside the header */
  background-color: #f9f9f9;      /* Light background color for the header */
  display: flex;                  /* Use flexbox for the entire header */
  align-items: center;            /* Vertically center the header content */
}

.top-header-content {
  display: flex;                  /* Flexbox layout for inner content */
  flex-grow: 1;                  /* Allow inner content to grow */
  justify-content: space-between; /* Space items evenly */
  flex-wrap: wrap;               /* Allow items to wrap on smaller screens */
  text-align: center;            /* Center text for all content */
}
.h3-txt{
	color:Black;
	font-size:1.75em;
	font-weight:700;
	margin-top:8px;
	text-decoration:underline;
}

.mod-txt{
	color:#e10f0f;
	font-size:1.5em;
	font-weight:850;
	text-align:Center;
    text-decoration:underline;	
}
/* Starting and ending comments for blink animation CSS */

/* Blink animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Apply blink animation to the text */
.mod-txt {
    animation: blink 1s infinite;
    color: #e10f0f; /* You can change the color as needed */
}

/* End of blink animation CSS */

/* Individual styles for header content */
.header-title,
.header-description,
.header-offers {
  flex: 1;                       /* Each section takes equal space */
  min-width: 200px;              /* Minimum width for each section */
  margin: 2px;                   /* Margin for spacing */
}
.header-description{
	font-weight:650;
}
/* Positioning the chat button */
.header-chat {
  margin-left: auto;             
  margin-top:0px;
}

.chat-button {
  background-color: lightgreen;  
  border: none;                
  padding: 10px 15px;          
  border-radius: 5px;          
  cursor: pointer;          
  font-size: 16px;         
  display: flex;               
  align-items: center;          
}

.whatsapp-icon {
  margin-right: 5px;           
}

.chat-button:hover {
  background-color: green;       
  color: white;              
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .top-header-content {
    flex-direction: column;     
    align-items: center;       
    text-align: center;         
  }

  .header-chat {
    margin-left: 0;              
    margin-top: 10px;      
  }
}

/* End of Top Header Section Styles */


/*--header --*/


.full-width-header-container {
  width: 100%;
  margin: 0 auto;
}

.full-width-image-header {
  display: flex;
  flex-wrap: wrap;      /* allows wrapping on small screens */
  width: 100%;
}

.image-container {
  flex: 1;
  min-width: 200px;     /* ensures images don’t shrink too much */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;         /* makes it responsive */
  object-fit: cover;
  display: block;
}

/* For tablets and smaller screens */
@media only screen and (max-width: 768px) {
  .full-width-image-header {
    justify-content: space-around; 
  }
}

/* For mobile devices */
@media only screen and (max-width: 480px) {
  .full-width-image-header {
    flex-direction: column; /* Stack images vertically on mobile */
    align-items: center;    /* Center images on mobile */
  }

  .image-container {
    width: 100%;           /* Each container takes full width on mobile */
    height: auto;          /* Allow height to adjust naturally */
  }

  .image-container img {
    height: auto;          /* Maintain aspect ratio */
  }
}
/* Define the fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0; 
    transform: translateY(20px); 
  }
  to {
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Apply the animation to image containers */
.image-container,.slide{
  animation: fadeIn 0.6s ease-in-out forwards; 
  opacity: 0; 
}

.image-container:nth-child(1) {
  animation-delay: 0.2s; 
}

.image-container:nth-child(2) {
  animation-delay: 0.4s; 
}

.image-container:nth-child(3) {
  animation-delay: 0.6s; 
}


.header-bg {
	 width: 100%; /* Ensure enough width */
     height: 35px; /* Ensure enough height */
     overflow: hidden; /* May need to adjust or remove */
	 position:relative;
	 font-size:18px;
	 color:White;
     padding-top:3px;
     white-space: nowrap;
     box-sizing: border-box;
     font-weight:650;
     background:#d4197d;    
}

ul.header-info-w3ls li {
    list-style: none;
    display: inline-block;
    font-size: 1em;
    color: #fff;
    letter-spacing: 1px;
}

ul.header-info-w3ls li:nth-child(2) {
    margin: 0 1em;
}

ul.header-info-w3ls li a {
    color: green;
}

/*-- //header --*/

/*-- Nav bar--*/
/* container */
.navbar{
  position: sticky; top:0; z-index:2000;
  display:flex; align-items:center; justify-content:space-between;
  background:#222; color:#fff; padding:10px 16px;
}

/* brand */
.brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.brand-logo{height:55px; width:auto; display:block;}
.brand-text{color:#fff; font-weight:700; font-size:18px; white-space:nowrap;}

/* links */
.nav-links{display:flex; align-items:center; gap:4px; list-style:none; margin:0; padding:0;}
.nav-links li{position:relative;}
.nav-links a, .dropdown-toggle{
  display:block; padding:10px 14px; text-decoration:none; color:#fff;
  background:transparent; border:0; cursor:pointer; font:inherit; text-align:left;
}
.nav-links a:hover, .dropdown-toggle:hover{background:#d4197d;}

/* dropdown (desktop default) */
.dropdown{
  display:none; position:absolute; left:0; top:100%;
  background:#111; min-width:180px; list-style:none; margin:0; padding:6px 0;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.dropdown li a{padding:10px 14px; white-space:nowrap;}
.caret{display:inline-block; transition:transform .2s ease;}

/* hamburger */
.menu-toggle{display:none; font-size:24px; background:transparent; border:0; color:#fff; cursor:pointer;}

/* ====== Mobile styles ====== */
@media (max-width: 768px){
  .menu-toggle{display:block;}
  .nav-links{
    position:absolute; left:0; right:0; top:100%;
    background:#222; flex-direction:column; align-items:stretch;
    display:none; /* hidden by default */
  }
  .nav-links.show{display:flex;}
  .nav-links a, .dropdown-toggle{padding:12px 18px;}
  .dropdown{position:static; box-shadow:none;}
  .dropdown-parent.open > .dropdown{display:block;}
  .dropdown-parent.open .caret{transform:rotate(180deg);}
}

/* ====== Desktop hover dropdown ====== */
@media (min-width: 769px){
  .dropdown-parent:hover > .dropdown{display:block;}
}

/*-- Navb bar End--*/

/*--/banner-info--*/

.slide {
    background: url(../images/1.png) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    height: 40vw;
}

.cont-btn a:hover {
    background: #28a745;
    border: 2px solid #28a745;
}

.cont-btn {
    margin-top: 1rem;
}

.mian-content {
    position: relative;
}

.top-social-icons {
    background: url(../images/dua2.png) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    height: 120px;
}

.top-content-left {
    padding: 0;
    margin-top: 12px;
}

ul.header-info-w3ls i {
    margin-right: 5px;
    color:black;
}

.social-icons li {
    list-style: none;
    display: inline-block;
}

ul.social-icons {
    margin-top: 2em;
}

ul.social-icons li a span {
    color: #636161;
    font-size: 13px;
    background: transparent;
    width: 32px;
    height: 32px;
    line-height: 27px;
    text-align: center;
    display: block;
    border: 2px solid #ddd;
    display: inline-block;
    border-radius: 50%;
}

ul.social-icons li a span:hover {
    color: #fbbc05;
}

.land-gd {
    float: left;
    width: 50%;
	padding-top:12px;
}

.land-image {
    float: right;
    width: 25%;
}

.land-content {
    float: right;
    width: 100%;
}

.head-txt{
    color:#fdfefe;
	font-size: 22px;
	text-align:center;
	font-weight:600;
	text-decoration:none;
	padding-top:12px;
}

.top-content-right {
    margin-top: 0.5em;
}

.land-image i {
    color: #fbbc05;
    font-size: 1.5em;
}

/*-- /banner-info --*/
/*-- About us--*/
.about-section {
  padding: 60px 20px;
  background: #fffaf2;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #a91b0d;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 26px;
  color: #b22222;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.about-services {
  margin-bottom: 25px;
  padding-left: 18px;
}

.about-services li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}

.about-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Fix for buttons */
.btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
  color: #fff; /* Keep text visible */
}

.call-btn {
  background: #ff4c4c;
  color: #fff;
}

.call-btn:hover {
  background: #e60000;
  color: #fff; /* Ensure text stays white */
  transform: scale(1.05);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #fff; /* Ensure text stays white */
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-services {
    text-align: left;
    display: inline-block;
    margin: 0 auto 25px auto;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-buttons {
    justify-content: center;
  }
}

/* General Styles */
.why-choose-us {
    padding: 60px 0;
    background-color:#000; /* Light background color */
}

.love-solution,
.choose-us,
.accordion-section {
    background: white; /* White background for each section */
    border-radius: 3px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    margin-bottom: 1px;
}

/* Header Styles */
.solution-header,
.choose-header {
    text-align: center;
}

.solution-header strong,
.choose-header strong {
    font-size: 1.5em;
    display: block;
    margin-bottom: 10px;
}

/* Content Styles */
.solution-content {
    display: flex;
    margin-top: 20px;
}

.solution-image {
    flex: 1;
    padding-right: 15px;
}

.solution-image img {
    max-width: 100%; /* Responsive image */
    border-radius: 2px;
}

.solution-description {
    flex: 2;
}

.solution-footer {
    margin-top: 20px;
    text-align: center;
}

.solution-footer a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff; /* Link color */
}

/* Choose Us Section Styles */
.choose-options {
    margin-top: 20px;
}

.option {
    display: flex;
    margin-bottom: 15px;
}

.option-number {
    font-size: 3em;
    font-weight: bold;
	width: 80px; /* Width of the box */
    height: 80px; /* Height of the box */
	background-color:pink;
	color: Black; /* Text color */
    text-align: center; /* Center the number */
    border-radius: 5px; /* Rounded corners (optional) */
    margin-right: 10px; /* Space between box and text */
    font-weight: bold; /* Make the number bold */
}

.option-details {
    flex: 1;
}

/* Style for the option details container */
.option-details {
    background-color: #f9f9f9; /* Light background for contrast */
    border: 1px solid #ddd; /* Light border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px; /* Padding around content */
    margin-top: 5px; /* Space between options */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Style for headings */
.option-details strong {
    font-size: 1.75em; /* Increase font size for emphasis */
    color: #d4197d; /* Dark color for the heading */
	font-family:  Helvetica (sans-serif) ;
}

/* Style for sub-headings */
.option-details span {
    display: block; /* Block display to separate from heading */
    font-size: 1.2em; /* Font size for sub-heading */
    color: #7f8c8d; /* Gray color for sub-heading */
    margin: 5px 0; /* Margin for spacing */
}

/* Style for paragraphs */
.option-details p {
    font-size: 0.9em; /* Smaller font size for paragraphs */
    color: #34495e; /* Darker color for readability */
    line-height: 1.5; /* Increase line height for readability */
    margin: 5px 0; /* Margin for spacing */
}

/* Hover effect for option details */
.option-details:hover {
    background-color: #e1f5fe; /* Light blue background on hover */
}

/* Accordion Styles */
.accordion {
    background-color:#d4197d;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
    text-transform: uppercase;
}

.active,
.accordion:hover {
    background-color: #e188cf;
}

.accordion:after {
    content: '\002B';
    color:#f5f2f2;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}

.panel {
    padding: 0 15px; /* Panel padding */
    display: none; /* Hide panel by default */
    overflow: hidden; /* Hide overflow */
}
/* Styles for the icon */

/* Contact button styles */
.contact-button {
    display: inline-block; /* Inline block for button */
    padding: 10px 20px; /* Padding for button */
    background-color:#FFC300 ; /* Green background */
    color: White; /* Text color */
    font-size: 16px; /* Font size */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text */
    text-decoration: none; /* No underline */
    margin-top: 10px; /* Space above button */
    transition: background-color 0.3s; /* Smooth transition */
}

.contact-button:hover {
    background-color: Black; /* Light green on hover */
}

/* Styles for the icon */
.icon {
    font-size: 20px; /* Size of the icon */
    margin-right: 5px; /* Space between icon and text */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solution-content {
        flex-direction: column; /* Stack content on smaller screens */
    }

    .solution-image {
        padding-right: 0; /* Remove right padding */
        margin-bottom: 15px; /* Margin below image */
    }
}

/*-- /banner-bottom- --*/

h3.tittle {
    color: #ffce3c;
    font-size: 3.5em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
    letter-spacing: 1px;
}

/*-- //banner-bottom- --*/
 #unique-responsive-text-container {
            background-color: #d4197d; 
            color: white;
            font-weight: bold;
            text-align: center;
            padding: px;
            margin: 10px;
            border-radius: 5px;
            font-family: 'Arial', sans-serif; /* Fallback font */
        }

        #unique-text-content {
            text-align: justify;
            font-family: 'Poppins', sans-serif; /* Example of a modern font */
        }

        /* Responsive for mobile */
        @media (max-width: 600px) {
            #unique-responsive-text-container {
                font-size: 16px;
                padding: 15px;
            }
        }

        /* Responsive for tablet */
        @media (min-width: 601px) and (max-width: 1024px) {
            #unique-responsive-text-container {
                font-size: 20px;
                padding: 20px;
            }
        }

        /* Responsive for desktop */
        @media (min-width: 1025px) {
            #unique-responsive-text-container {
                font-size: 22px;
                padding: 20px;
            }
        }
		
/*--bottom-last--*/

.bottom-last {
    width: 100%;
	background-color:Gray;
}

.bg-light {
    background-color: Black; /* Light background color */
    padding: 5px; /* Add padding for spacing */
}

.faq-section {
    margin-top: 20px; /* Spacing above FAQ section */
}

.faq-item {
    margin-bottom: 15px; /* Spacing between FAQ items */
}

.faq-item{
	border:1px solid Black;
	border-radius:5px;
}

.p-txt{
	font-size:15px;
	
}
.img-fluid {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}
/* For the image section */
#image-section {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden; /* Ensure no unwanted scrollbars */
}

#image-section img {
    width: 100%;
    height: auto; /* Ensure responsive scaling */
    object-fit: cover; /* Cover the entire div area without distortion */
}

/*--bottom-last--*/
/* Responsive heading section */
.responsive-heading-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Full viewport height */
    text-align: center;
}

/* Responsive heading */
.responsive-heading {
    font-size: 2rem; /* Default font size */
    color: #333; /* Heading color */
    margin: 0;
    padding: 0;
}

/* Adjustments for tablets */
@media (max-width: 768px) {
    .responsive-heading {
        font-size: 1.95rem; /* Smaller font size for tablets */
    }
}

/* Adjustments for mobile */
@media (max-width: 480px) {
    .responsive-heading {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }
}

/* Start of responsive image grid with AOS animations */
/* Container styling */
.image-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Image grid styling */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.grid-item {
    flex: 1 1 calc(25% - 40px);
    text-align: center;
}

.grid-item img {
    width: 100%;
    height: auto;
	border:3px solid Black;
    border-radius: 10px;
}

.grid-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* Mobile view */
@media (max-width: 768px) {
    .grid-item {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Small mobile view */
@media (max-width: 480px) {
    .grid-item {
        flex: 1 1 100%;
    }
}

/* End of responsive image grid with AOS animations */

h5.sub-tittle {
    margin: 1.2em 0 0 0;
    font-size: 1.5em;
    color: Black;
	 font-weight: 500;
    letter-spacing: 2px;
	font-style:italic;
}

/* ========================= 
   CSS for Services Banner Section 
   ========================= */

#services-banner {
    background: url( no-repeat center center; /* GIF background */
    background-size: cover; /* Cover the entire section */
    position: relative; /* Allows for positioning of child elements */
    z-index: 1; /* Ensures this section is above other content if needed */
}

#services-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0; /* Behind the content */
}

#service-inner-sec {
    position: relative; /* Ensure this div is positioned correctly */
    z-index: 2; /* Bring this content above the background */
}

.card {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white for better text visibility */
    border-radius: 10px;
    overflow: hidden; /* Prevents overflow of card elements */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add shadow */
}

.card-body {
    padding: 20px; /* Padding inside cards */
	border: 2px dashed #000; /* 2px width, dashed style, black color */
}

.card img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}
.card-title{
	font-family:sans-serif;
	font-size:30px bold;
	color:#d4197d;
	text-align:Center;
	font-weight:650;	
}
.card-text{
	font-family:sans-serif;
	font-size:15px;
	color:solid Black;
	text-decoration:justify;
	
}
.btn {
    margin-top: 15px; /* Space above button */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}

.btn:hover {
    background-color: #0056b3; /* Change color on hover */
    transform: translateY(-2px); /* Slightly raise the button */
}

.tittle {
    animation: fadeIn 1s ease-in-out; /* Fade in effect */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .card {
        margin-bottom: 20px; /* More space between cards on mobile */
    }
}

/* ========================= 
   End of CSS for Services Banner Section 
   ========================= */
/*** Contact form**/
.about-section {
  color: #ffffff;
}

 .astro-section h2 { font-size: 2rem; line-height: 1.4; }
  @media (max-width: 768px) {
    .astro-section h2 { font-size: 1.5rem; }
  }


/* Astrology Info Section Styles Start */
.astrology-info-section {
    padding: 50px 20px; /* Padding for the section */
    background-color: #e1e1e0; /* Light grey background */
}

.info-container {
    max-width: 1200px; /* Max width of the container */
    margin: 0 auto; /* Centering the container */
    text-align: left; /* Left text alignment */
}

.info-box {
    margin-bottom: 40px; /* Spacing between info boxes */
}

.main-title {
    font-size: 32px; /* Title font size */
    color: #d4197d ; 
    font-weight: bold; /* Bold text */
	text-align:Center;
    margin-bottom: 20px; /* Spacing below title */
}

.sub-title {
    font-size: 24px; /* Subtitle font size */
    color: #555; /* Medium grey color */
    font-weight: bold; /* Bold text */
    margin-bottom: 15px; /* Spacing below subtitle */
}

.info-text {
    font-size: 20px; /* Regular text font size */
    line-height: 1.7; /* Line height for readability */
    color: #020001; /* Light grey color */
}

.service-list {
    font-size: 20px; /* Font size for the list */
    color: #020001; /* Light grey color */
    margin-left: 20px; /* Indentation for list items */
    margin-bottom: 40px; /* Spacing below the list */
    line-height: 1.6; /* Line height for list */
}

.service-list li {
    margin-bottom: 10px; /* Spacing between list items */
}

.conclusion-text {
    font-size: 20px; /* Font size for conclusion text */
    color: #020001; /* Dark grey color */
    font-weight: 500; /* Medium weight */
}

/* Responsive Styles Start */
@media (max-width: 768px) {
    .main-title {
        font-size: 24px; /* Smaller title font size */
    }
    
    .sub-title {
        font-size: 20px; /* Smaller subtitle font size */
    }
    
    .info-text,
    .conclusion-text {
        font-size: 15px; /* Smaller text font size */
    }

    .service-list {
        font-size: 15px; /* Smaller list font size */
    }

    .info-container {
        padding: 0 15px; /* Reduced padding on smaller screens */
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 20px; /* Even smaller title font size */
    }
    
    .sub-title {
        font-size: 18px; /* Even smaller subtitle font size */
    }
    
    .info-text,
    .conclusion-text {
        font-size: 14px; /* Even smaller text font size */
    }

    .service-list {
        font-size: 14px; /* Even smaller list font size */
    }

    .info-container {
        padding: 0 10px; /* Further reduced padding on smaller screens */
    }
}
/* Responsive Styles End */

/* Astrology Info Section Styles End */

.feedback-top {
    padding: 3em;
    background: #3b3e40;
    position: relative;
}

.feedback-top-new img {
    background: url(../images/back.png) no-repeat center;
    padding:center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    height:0px;
}
.feedback-top:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 14%;
    width: 0;
    height: 0;
    border-top: 15px solid rgb(158, 159, 160);
    border-right: 4px solid transparent;
    border-left: 12px solid transparent;
    transform: rotate(0deg);
}

.feedback-top p {
    margin: 0;
    color: #fff;
}

.feedback-img {
    float: left;
    width: 17%;
    background: Black;
    padding: 0.3em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
}

.feedback-grids {
    margin: 3em 0 0;
}

.feedback-img img {
    width: 100%;
}

.feedback-info {
    margin: 1em !important;
}

.feedback-img-info {
    float: left;
    width: 65%;
    margin: 0em 0 0 1em;
}

.feedback-img-info h5 {
    color: White;
    font-size: 1em;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}
.color-txt{
	color:Black;
}

.feedback-img-info p {
    color: black;
    margin-top: .5em;
}

.feedback-img-info p span {
    color: #b1b2b3;
    font-size: 0.85em;
}

.icon-test i {
    font-size: 2em;
    color: #fcd000;
    margin-left: .4em;
    position: relative;
}

.icon-test {
    position: relative;
}

.icon-test:before {
    content: " ";
    position: absolute;
    background: #d5d8da;
    width: 77%;
    height: 2%;
    top: 54%;
    right: 5%;
}

/*-- //feedback --*/

/*--/contact--*/

/*--/contact--*/

.main_grid_contact {
    background:#990011;
    padding: 0.4em 2em;
}

.main_grid_contact label {
    color: #FFFF;
    letter-spacing: 1px;
    font-size: 1.2em;
}

.main_grid_contact input[type="text"],
.main_grid_contact input[type="email"],
.main_grid_contact textarea {
    outline: none;
    padding: 15px 15px;
    font-size: 14px;
    color: #777;
    background: #fff;
    width: 100%;
    letter-spacing: 1px;
    border: 1px solid #ebeeef;
    border-radius: 0px;
}

.main_grid_contact textarea {
    min-height: 80px;
    margin: 1em 0em;
    resize: none;
}

.main_grid_contact .input-group1 input[type="submit"] {
    outline: none;
    padding: 20px 0;
    font-size: 19px;
    color: #fff;
    background: #343a40;
    border: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0px;
}

.main_grid_contact .input-group1 input[type="submit"]:hover {
       background: #28a745;
}

.map {
    padding: 0;
}

.new-div {
	position:relative;
	width:100%;
	height:100%;
	background-color:yellow;
	
}
.map iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.address-grid i {
    font-size: 1.5em;
    color: #ffc107;
    background: #1b1e21;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    line-height: 2.5em;
}

.address-right h6 {
    font-size: 1.2em;
    color: #3f4142;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
}

.address-right p,
.address-right p a {
    color: #7c848c;
}

.main_grid_contact h4 {
    font-size: 2em;
    color: #fffF;
    text-shadow: 0 1px 2px rgba(18, 18, 19, 0.13);
    text-transform: uppercase;
}

/*--/contact--*/
/*--//contact--*/
/*--/inner-page--*/

.inner-page {
    background: url(../images/2.jpg) no-repeat center;
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
    min-height: 250px;
}

ol.breadcrumb {
    margin: 0;
}

li.breadcrumb-item {
    font-size: 0.85em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

li.breadcrumb-item a {
    color: #28a745;
}

.breadcrumb-item.active {
    color: #888;
}

ol.breadcrumb {
    background: none;
    margin: 0;
    padding: 1em 2em;
    background: #f7f7f7;
}

/*--/banner new--*/
/* Banner Styles */
.banner {
   background: url(../images/2.png) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    height: 40vw;

}

.banner-content {
    max-width: 1200px;
    width: 100%;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}	

.banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.banner-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 40vw;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .banner-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 40vw;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    .banner p {
        font-size: 0.9rem;
    }
}
/*--//banner new--*/
/*--//inner-page--*/
/*--footer--*/



.copyright-w3 {
    border-top: 1px ridge rgba(57, 57, 58, 0.46);
	color:#ffc107;
    padding-top: 2em;
}
.copyright-w3 {
    padding-bottom: 60px; /* Adjust this value based on your button height */
    position: relative; /* Ensure footer is positioned properly */
    z-index: 1; /* Keep it above other elements if necessary */
}

.new-txt{
	font-size:18px;
}
.copyright-w3 p {
    letter-spacing: 2px;
}

.copyright-w3 p a:hover {
    color: #fff;
}

.footer p {
    color: #808080;
}

.newsletter .email {
    background-color: #F4F4F4;
    border: none;
}

.footer-text input[type="email"] {
    outline: none;
    padding: 12px 15px;
    color: #fff;
    font-size: 16px;
    width: 84%;
    border: none;
    background: none;
    letter-spacing: 2px;
    float: left;
}

.newsletter {
    position: relative;
    background: #28a745;
}

.footer-text button.btn2 {
    color: #28a745;
    border: none;
    padding: 10px 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    background: none;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    float: right;
    width: 15%;
}

.footer-grid-w3ls form {
    border: 1px solid #585a5d;
    width: 100%;
    margin-top: 20px;
}

ul.social_section_1info li {
    display: inline-block;
}

ul.social_section_1info {
    margin-top: 15px;
}

ul.social_section_1info a {
    color: #808080;
    margin-right: 10px;
    font-size: 15px;
}

ul.social_section_1info a:hover {
    color: #fff;
}

.phone p a {
    color: #808080;
}

.phone p a:hover {
    color: #fff;
}

ul.links li {
    list-style-type: none;
    margin: 10px 0;
}

ul.links li a {
    color: Yellow;
}

ul.links li a:hover {
    color: #fff;
}

.copyright-w3 a i:hover {
    color: #ffa200;
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
}

.owl-item.active {
    padding: 15px;
    border: 1px solid #e4e4e4;
}

/*--social-icons--*/

/*--//social-icons--*/

.copyright-w3 a {
    color: #28a745;
}

/*--//footer--*/

/*-- to-top --*/

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 40px;
    height: 40px;
    border: none;
    text-indent: 100%;
    background: url(../images/move_up.png) no-repeat 0px 0px;
}

#toTopHover {
    width: 40px;
    height: 40px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

/*-- //to-top --*/
/* Basic button styling */
.mobile-buttons {
  display: none; /* Hidden by default */
}

.mobile-buttons a {
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 0;
  color: white;
  font-size: 16px;
  flex: 1;
  text-align: center;
}

.call-btn {
  background-color:#cb0404;
}

.chat-btn {
  background-color:#28a745;
}

/* Media query for mobile view */
@media only screen and (max-width: 768px) {
  .mobile-buttons {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  /* Make the buttons fill the screen width, side by side */
  .mobile-buttons a {
    flex: 1;
  }
}

/* Footer content adjustment */
footer {
  padding-bottom: 80px; /* Leave space for the buttons */
}

/*--responsive--*/

@media(max-width:1440px) {
    .freebies figure {
        height: 500px;
        max-height: 482px;
        margin: 0;
    }

}

@media(max-width:1366px) {
        .freebies figure {
            max-height: 463px;
            margin: 0;
        }
}

@media(max-width:1280px) {
    .freebies figure {
        max-height: 424px;
        margin: 0;
    }
}

@media(max-width:1080px) {
    .inner-page {
        min-height: 215px;
    }
    .freebies figure {
        max-height: 360px;
        margin: 0;
    }
	.feedback-top {
        padding: 2em;
	}
}

@media(max-width:1050px) {
	.freebies figure {
		max-height: 348px;
		margin: 0;
	}
}

@media(max-width:1024px) {
    h3.tittle {
        font-size:3em;
    }
    .main_grid_contact {
        padding:7em 2em;
    }
    .inner-page {
        min-height:200px;
    }
    .login-right-img {
        height: 95px;
    }
    a.navbar-brand {
        font-size: 1.2em;
        margin-top: 0.3em;
    }
    .freebies figure {
        max-height: 339px;
        margin: 0;
    }
    .about-in .card {
        padding: 2em 0.5em;
    }
}

@media(max-width:991px) {
    .footer-grid-w3ls {
        margin-top: 1.5em;
    }
    .about-in {
        margin-top: 1em;
    }
    .team-info {
        float: left;
        width: 50%;
        margin-bottom: 2em;
    }
    .progress-one {
        margin-top: 1em;
    }
    .freebies figure {
        max-height: 324px;
        margin: 0;
    }
    .address-info {
        margin-top: 2em;
    }
    .main_grid_contact {
        padding: 5em 2em;
    }
    .newsright {
        margin: 0 auto;
        width: 70%;
    }
    a.request {
        padding: 0 15px;
    }
    .navbar-nav .dropdown-menu {
        text-align: center;
    }
    .top-content-left {
        padding: 0;
        margin: 0.5em 0;
        text-align: center;
    }
}

@media(max-width:900px) {
    .freebies figure {
        max-height: 305px;
        margin: 0;
    }
}

@media(max-width:800px) {
    .main_grid_contact {
        padding: 5em 2em;
    }
    .freebies figure {
        max-height: 264px;
        margin: 0;
    }
    .top-social-icons{
        height:130px;
    }
}

@media(max-width:768px) {
    .freebies figure {
        max-height: 250px;
        margin: 0;
    }
    .stats_info {
        text-align: center;
        padding: 2em 0;
    }
    .bottom-bg p {
        width: 100%;
    }
}

@media(max-width:767px) {
    a.navbar-brand {
        font-size: 1.2em;
        margin: 0.3em 0;
    }
    .address-right {
        text-align: center!important;
        margin-top: 1em;
    }
    .main_grid_contact {
        padding: 3em 2em;
    }
}

@media(max-width:736px) {
    .slide-window .slide-wrapper .slide .slide-caption h3 {
        margin: 0rem;
        font-size: 2rem;
    }
}

@media(max-width:667px) {
    .middle-grids .card-body {
        padding: 6em 2em;
        margin-bottom: 1em;
    }
    .inner-page {
        min-height: 160px;
    }
}

@media(max-width:640px) {
    .address-right {
        text-align: center!important;
        margin: 1.2em 0;
    }
    .main_grid_contact {
        padding: 3em 2em;
    }
    .inner-page {
        min-height: 160px;
    }
    .cont-btn a {
        padding: 0.3em 1.5em;
        font-size: 1em;
    }
}

@media(max-width:568px) {
    .land-content h4 {
        font-size: 1em;
    }
    ul.header-info-w3ls li:nth-child(2) {
        margin: 0 0.5em;
    }
    .top-head-wthree {
        padding: 0.3em 0.5em;
    }
    ul.header-info-w3ls li {
        font-size: 0.95em;
    }
    .newsright {
        margin: 0 auto;
        width: 90%;
    }
    .about-in .card h5.card-title {
        font-size: 1.4em;
    }
    h4.sub-tittle {
        margin: 1.2em 0 0 0;
        font-size: 0.8em;
        color: #ffc107;
        letter-spacing: 1px;
    }
}

@media(max-width:480px) {
    h3.tittle {
        font-size: 2.5em;
    }
    .bottom-last {
        min-height: 200px;
    }
    .stats_info i {
      font-size: 2em;
    }
    .stats_info p {
      font-size: 2.5em;
    }
}
@media(max-width:440px) {
    h3.tittle {
        font-size: 2.2em;
    }
    a.navbar-brand {
        font-size: 1em;
        margin: 0.3em 0;
    }
    .team-content h3 {
        font-size: 1.2em;
    }
    .top-content-right {
        padding: 0;
    }
    .stats_info i {
        margin-top: 0.5em;
    }
    .freebies figure {
        max-height: 231px;
        margin: 0;
    }
    .cont-btn a {
        padding: 0.4em 1.5em;
        font-size: 0.8em;
    }
}

@media(max-width:414px) {
    h3.tittle {
        font-size: 2em;
    }
    .team-info {
        float: left;
        width: 80%;
        margin-bottom: 2em;
        margin-left: 2em;
    }
}

@media(max-width:384px) {
    h3.tittle {
        font-size:2.5em;
    }
    .newsright input[type="email"] {
       width: 64%;
    }
    .newsright input[type="submit"] {
        width: 35%;
        border-radius: 0px;
    }
}

@media(max-width:375px) {
    h3.tittle {
        font-size:2.3em;
    }
}

@media(max-width:320px) {
    h3.tittle {
        font-size:2em;
    }
}
/* Responsive Text CSS */
.responsive-text {
    font-size: 20px; /* Base font size */
}

/* Adjust font size for tablets */
@media (min-width: 600px) {
    .responsive-text {
        font-size: 18px; /* Font size for tablet screens */
    }
}

/* Adjust font size for desktops */
@media (min-width: 900px) {
    .responsive-text {
        font-size: 15px; /* Font size for desktop screens */
    }
}

/* Adjust font size for larger screens */
@media (min-width: 1200px) {
    .responsive-text {
        font-size: 13px; /* Font size for larger screens */
    }
}
/*--//responsive--*/
/*** Aghor text***/
.aghor-about-section {
  padding: 50px 20px;
  background: #fff7e6; /* light cream tone */
}

.aghor-container {
  max-width: 1000px;
  margin: 0 auto;
}

.aghor-content h2 {
  font-size: 30px;
  color: #a30000; /* deep red */
  margin-bottom: 15px;
  text-align: center;
}

.aghor-content h3 {
  font-size: 22px;
  color: #d00000;
  margin-top: 25px;
  margin-bottom: 10px;
}

.aghor-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}

.aghor-services {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.aghor-services li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 5px;
  color: #444;
}

.aghor-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.aghor-buttons a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn {
  background: #d00000;
  color: #fff;
}

.call-btn:hover {
  background: #a30000;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ea955;
}

/* Responsive */
@media (max-width: 768px) {
  .aghor-content h2 {
    font-size: 24px;
  }

  .aghor-content p,
  .aghor-services li {
    font-size: 15px;
  }

  .aghor-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/*** Offer***/
.offer-section {
  background: #6a0f0f; /* dark aghori red */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.offer-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.offer-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color:white;
  text-align:Center;
}

.offer-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.offer-btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-btn {
  background: #ffcc00;
  color: #000;
}

.call-btn:hover {
  background: #e6b800;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1da851;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}

/*** Contact us***/
.contact-section {
  position: relative;
  background: url("../images/shiva-bg.jpg") no-repeat center center / cover;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}


.contact-section .overlay {
  background: rgba(0, 0, 0, 0.75);
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Info Cards (Left Side) */
.contact-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent for background image effect */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px); /* glassmorphism effect */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* Lightbox Glow Effect on Hover */
.info-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0px 8px 20px rgba(255, 204, 0, 0.7); /* golden glow */
}

.info-card .icon {
  font-size: 28px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  padding: 10px;
  min-width: 48px;
  text-align: center;
}

.info-card h4 {
  margin: 0 0 5px;
  color: #ffcc00; /* golden heading */
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: #f1f1f1;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}


/* Right Side */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  color: #000;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
}
.contact-form .form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 12px;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
  outline: none;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 20px;
  outline: none;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background: #ffcc00;
  border: none;
  padding: 12px 25px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
