html,
body {
    margin: 0;
    font-size: 100%;
    font-family: 'BenchNine', sans-serif;
   background-color: #F5F5DC;
}

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;
    
}
.slider {
    position: relative;
    max-width: 100%;
    margin: 12px auto;
    
  }

  .slides {
    display: flex;
    
    width: 100%;
  }

  .slide {
    min-width: 100%;
  }

  .slide img {
    width: 100%;
    display: block;
  }

  .nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  .nav button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
  }

  .nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 1.9em;
    letter-spacing: 1px;
	font-family:math;
	text-align:Center;
}

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: #469704;      /* 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: 100%;              /* Minimum width for each section */
  margin: 2px;                   /* Margin for spacing */
}
.header-description{
	font-weight:650;
}
/* Positioning the chat button */
.header-chat {
  margin-left: auto;             /* Push the chat button to the right */
  margin-top:0px;
}

.chat-button {
  background-color: lightgreen;  /* Light green background for the button */
  border: none;                  /* Remove default button border */
  padding: 10px 15px;           /* Padding for the button */
  border-radius: 5px;           /* Rounded corners for the button */
  cursor: pointer;               /* Pointer cursor on hover */
  font-size: 16px;               /* Font size for the button */
  display: flex;                 /* Use flexbox to align icon and text */
  align-items: center;           /* Center items vertically */
}

.whatsapp-icon {
  margin-right: 5px;            /* Spacing between icon and text */
}

.chat-button:hover {
  background-color: #469704;       /* Darker green on hover */
  color: white;                  /* Change text color on hover */
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .top-header-content {
    flex-direction: column;       /* Stack items vertically on smaller screens */
    align-items: center;          /* Center items */
    text-align: center;           /* Center text */
  }

  .header-chat {
    margin-left: 0;               /* Reset margin for the chat button */
    margin-top: 10px;             /* Add space above the button */
  }
}


/* --------------------- */
/* End of Top Header Section Styles */
/* --------------------- */

/*--/header --*/
/* General reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.full-width-header-container {
  width: 100%;           /* Ensure the container takes up full width */
  margin: 5px auto;       /* Center the container */
}

.full-width-image-header {
  display: flex;
  width: 100%;           /* Full width for the header */
}

.image-container {
  flex: 1;               /* Each container takes equal space */
        /* Fixed height for all image containers */
  overflow: hidden;      /* Hide overflow to maintain aspect ratio */
}

.image-container img {
  width: 100%;           /* Images take full width of the container */
           /* Maintain aspect ratio */
  object-fit: cover;     /* Cover the container while preserving aspect ratio */
}



/* For tablets and smaller screens */
@media only screen and (max-width: 768px) {
  .full-width-image-header {
    justify-content: space-around; /* Adjust spacing for smaller screens */
  }
}

/* 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 */
           /* Allow height to adjust naturally */
  }

  .image-container img {
    height: auto;          /* Maintain aspect ratio */
  }
}
/* Define the fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0; /* Start transparent */
    transform: translateY(20px); /* Slightly move up */
  }
  to {
    opacity: 1; /* End fully visible */
    transform: translateY(0); /* Back to original position */
  }
}

/* Apply the animation to image containers */
.image-container,.slide{
  animation: fadeIn 0.6s ease-in-out forwards; /* 0.6 seconds for fade-in */
  opacity: 0; /* Initially set to transparent */
}

/* Delay the animation for each image container for staggered effect */
.image-container:nth-child(1) {
  animation-delay: 0.2s; /* Delay for first image */
}

.image-container:nth-child(2) {
  animation-delay: 0.4s; /* Delay for second image */
}

.image-container:nth-child(3) {
  animation-delay: 0.6s; /* Delay for third image */
}



.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:#000;
     padding-top:5px;
     white-space: nowrap;
     box-sizing: border-box;
     font-weight:650;
     background:#fed900;    
}

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 --*/


/*--/banner-info--*/

.slide {
   
    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.html) 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;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 1px;
    background-color: #fff;
  }

  .card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .card {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
  }

  .card h3 {
    color: darkgreen;
    margin: 15px 0 10px;
  }

  .card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
  }

  .card .btn {
    background-color: darkgreen;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
  }

  .card .btn:hover {
    background-color: green;
  }
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 --*/
/* General Styles */
.why-choose-us {
    padding: 60px 0;
    background-image: url('../images/bg.html');
}

.love-solution,
.choose-us,
.accordion-section {
   background-color:#fff;
    border-radius: 3px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    margin-bottom: 30px;
}

/* Header Styles */
.solution-header,
.choose-header {
    text-align: center;
}

.solution-header strong,
.choose-header strong {
    font-size: 1.5em;
    display: block;
    margin-bottom: 10px;
	background-color:#fed900;
}

/* 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: #000;
}

.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: #a51314;
    font-size: 3.5em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
    letter-spacing: 1px;
}

.services-section {
    background: linear-gradient(to right, #5f0000, #000000);
    padding: 60px 0;
}
.container {
    padding-right: 15px;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.best-serv3 {
    text-align: center;
}
.best-serv3 h3 {
    font-size: 60px;
    color: #ffeb3b;
    font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
h1, h3, h2 {
    font-family: 'Sansita', sans-serif;
}
.services-section .service-box {
    margin-bottom: 30px;
}
.best-serv6 {
    background: #ffedb4;
}
.best-serv7 {
    overflow: hidden;
}
.best-serv7 img {
    transition: 400ms linear;
}
.best-serv8 {
    padding: 0 0px;
    margin: 0px 0 0 0;
}
.best-ttex1 {
    color: #6a0000;
    padding: 10px 10px 0 10px;
}
.best-ttex1 h4 {
    padding: 0px;
    font-size: 20px;
    font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.5rem;
    }
}
.best-serv9 {
    padding: 10px;
    color: #000;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.best-serv9 p.text {
    height: 181px;
    margin-bottom: 22px;
    overflow: auto;
}
p {
    padding: 0 0 10px 0;
    line-height: 28px;
    font-size: 16px;
    margin: 0px;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.services-section .service-box .best-iccn {
    text-align: center;
    background-color: black;
}
.best-iccn {
    padding: 10px 0;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}svg:not(:host).svg-inline--fa, svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}

.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}
img, svg {
    vertical-align: middle;
}
img, svg {
    vertical-align: middle;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}

.other-service-box {
    background: linear-gradient(to right, #5f0000, #000000);
    padding: 60px 0;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.best-serv3 {
    text-align: center;
}
.best-serv3 h3 {
    font-size: 45px;
    color: #ffeb3b;
    font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
h1, h3, h2 {
    font-family: 'Sansita', sans-serif;
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}
.h3, h3 {
    font-size: calc(1.3rem + .6vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.best-serv3 h4 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 0;
    line-height: 30px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.5rem;
    }
}
.h4, h4 {
    font-size: calc(1.275rem + .3vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.5rem;
    }
}
.h4, h4 {
    font-size: calc(1.275rem + .3vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.pt-5 {
    padding-top: 3rem !important;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box {
    text-align: center;
    overflow: hidden;
    position: relative;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box:before {
    content: '';
    background-image: repeating-linear-gradient(-30deg, #940000, #940000 5%, #940000 10%);
    width: 120%;
    height: 140%;
    border-radius: 25px;
    box-shadow: 0 0 15px #000;
    opacity: 0.7;
    transform: rotate(0deg);
    position: absolute;
    top: 0;
    right: 155%;
    z-index: 1;
    transition: all .7s;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box img {
    width: 100%;
    height: 100%;
    transition: all .5s;
}
img {
    max-width: 100%;
}
img, svg {
    vertical-align: middle;
}
img, svg {
    vertical-align: middle;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box .box-content {
    width: 60%;
    opacity: 0;
    transform: translateY(-50%) rotate(-55deg);
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    transition: all .7s;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 3px #000;
    margin: 0 0 3px 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
h1, h3, h2 {
    font-family: 'Sansita', sans-serif;
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}
.h3, h3 {
    font-size: calc(1.3rem + .6vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}
.h3, h3 {
    font-size: calc(1.3rem + .6vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
user agent stylesheet
h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
.ser-bxx2 {
    position: absolute;
    bottom: -28px;
    left: 0px;
    background-color: #ffcd00;
    color: #000;
    width: 80%;
    padding: 10px;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
user agent stylesheet
div {
    display: block;
    unicode-bidi: isolate;
}
.box {
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box .post {
    color: #ffcd00;
    font-size: 19px;
    font-style: italic;
    text-transform: capitalize;
    padding: 10px 0 0 0;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.box:before {
    content: '';
    background-image: repeating-linear-gradient(-30deg, #940000, #940000 5%, #940000 10%);
    width: 120%;
    height: 140%;
    border-radius: 25px;
    box-shadow: 0 0 15px #000;
    opacity: 0.7;
    transform: rotate(0deg);
    position: absolute;
    top: 0;
    right: 155%;
    z-index: 1;
    transition: all .7s;
}
.box .box-content {
    width: 60%;
    opacity: 0;
    transform: translateY(-50%) rotate(-55deg);
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    transition: all .7s;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.ser-bxx2 {
    position: absolute;
    bottom: -13px;
    left: -13px;
    background-color: #ffcd00;
    color: #000;
    width: 119%;
    padding: 10px;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.ser-bxx2 h4 {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    padding: 0 10px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.5rem;
    }
}
.h4, h4 {
    font-size: calc(1.275rem + .3vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.5rem;
    }
}
.h4, h4 {
    font-size: calc(1.275rem + .3vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
user agent stylesheet
h4 {
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
.serv-ourr4 {
    padding: 10px;
}
/*-- //banner-bottom- --*/
 #unique-responsive-text-container {
            background-color: #fed900; 
            color: #000;
            font-weight: bold;
            text-align: center;
          
            font-family: 'Arial', sans-serif; /* Fallback font */
        }

        #unique-text-content {
            text-align: center;
            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 */
}
#testimonials {
    float: left;
    width: 100%;
    background-image: linear-gradient(#fed500, #ffa600);
    padding: 4%
}
.abtt-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #000;
    letter-spacing: 6px;
    font-family: 'Familjen Grotesk', sans-serif;
    text-transform: uppercase;
}
#services-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     /* Dark overlay */
    z-index: 0; /* Behind the content */
}
.bg-light {
    background-color: Black;
    padding: 5px;
}
#service-inner-sec {
    position: relative;
    z-index: 2;
}
h3.tittle {
    color: #a51314;
    font-size: 3.5em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
    letter-spacing: 1px;
}
.tittle {
    animation: fadeIn 1s ease-in-out;
}
.text-center {
    text-align: center !important;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'BenchNine', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
}
h3, .h3 {
    font-size: 1.75rem;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 10px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.card-body {
    padding: 20px;
    background: #000;
}
.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.card-text {
    font-family: sans-serif;
    font-size: 15px;
    color: #fff;
}

.best-ser {
    float: left;
    width: 100%;
    padding: 0px 0px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}
html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s;
}
html:not(.no-js) [data-aos=zoom-in] {
    -webkit-transform: scale(.6);
    transform: scale(.6);
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
[data-aos] {
    pointer-events: none;
}
@media (min-width: 1200px) {
    .col-lg-4 {
        width: 33.33333333%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-4 {
        width: 33.33333333%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
}
@media (min-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
.col-xs-12 {
    width: 100%;
}
.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
user agent stylesheet
div {
    display: block;
    unicode-bidi: isolate;
}
.best-border {
    float: left;
    width: 100%;
    -webkit-box-shadow: 0px 0px 35px -20px;
    box-shadow: 0px 0px 35px -20px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 8px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.best-img {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.best-img img {
    width: 100%;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}
img {
    max-width: 100%;
}
img {
    vertical-align: middle;
}
img {
    border: 0;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.best-title.hdd {
    float: left;
    width: 100%;
    padding: 8px 15px;
    font-size: 25px;
    font-weight: 600;
    color: #dc0000;
}
.hdd {
    font-family: "Oswald", sans-serif;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.best-desc {
    float: left;
    width: 100%;
    font-size: 18px;
    padding: 0px 15px 20px 15px;
    color: #000;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.best-what {
    float: left;
    width: 100%;
    font-size: 18px;
    padding: 0px 15px 20px 15px;
}
.best-what a {
    padding: 5px 8px;
    background: green;
    color: #fff;
    font-size: 16px;
}
a {
    color: #16a085;
    text-decoration: none;
    -webkit-transition: .25s;
    transition: .25s;
}
a {
    color: #337ab7;
    text-decoration: none;
}
a {
    background-color: transparent;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
user agent stylesheet
a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

i {
    font-style: italic;
}
.best-img a {
    float: left;
    width: 250px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    background: #2f4a0b;
    color: #ffffff;
    position: absolute;
    font-size: 22px;
    font-weight: bold;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-top-right-radius: 30px;
}
a {
    color: #16a085;
    text-decoration: none;
    -webkit-transition: .25s;
    transition: .25s;
}
a {
    color: #337ab7;
    text-decoration: none;
}
a {
    background-color: transparent;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.best-img a i {
    padding-right: 10px;
    color: #ffeb00;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
user agent stylesheet
i {
    font-style: italic;
}
.best-img a {
    float: left;
    width: 250px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    background: #2f4a0b;
    color: #ffffff;
    position: absolute;
    font-size: 22px;
    font-weight: bold;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-top-right-radius: 30px;
}
a {
    color: #16a085;
    text-decoration: none;
    -webkit-transition: .25s;
    transition: .25s;
}
a {
    color: #337ab7;
    text-decoration: none;
}
.testi-section {
    float: left;
    width: 100%;
    padding: 50px 0px;
    background: #ffeb00;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-section1 {
    position: relative;
    z-index: 2;
    background-position: center;
    background-size: cover;
}
@media (min-width: 1200px) {
    .col-lg-12 {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-12 {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
}
@media (min-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-section2 {
    padding: 0 35px;
    position: relative;
    z-index: 9;
}
@media (min-width: 1200px) {
    .col-lg-12 {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-12 {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
}
@media (min-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-title strong {
    display: block;
    color: #ffeb00;
    font-size: 35px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
}
.hdd {
    font-family: "Oswald", sans-serif;
}
b, strong {
    font-weight: 700;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
user agent stylesheet
strong {
    font-weight: bolder;
}
.testi-title {
    padding: 0;
    text-align: center;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}
html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s;
}
html:not(.no-js) [data-aos=zoom-in] {
    -webkit-transform: scale(.6);
    transform: scale(.6);
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
.testi-1 {
    padding: 20px 15px 0px;
    margin-bottom: 20px;
    margin-top: 20px;
}
[data-aos] {
    pointer-events: none;
}
@media (min-width: 1200px) {
    .col-lg-4 {
        width: 33.33333333%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-6 {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
}
@media (min-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-2 {
    padding: 0;
}
@media (min-width: 1200px) {
    .col-lg-12 {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-12 {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
}
@media (min-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.item__author {
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 16px;
    display: flex
;
    align-items: center;
    line-height: 1;
    background: #ffeb00;
    border-radius: 58px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testimonial__img {
    padding-top: 12px;
    padding-right: 24px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testimonial__img img {
    border-radius: 50%;
    width: 80px;
    border: 3px solid #fff;
}
img {
    max-width: 100%;
}
img {
    vertical-align: middle;
}
img {
    border: 0;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-name {
    text-align: left;
    display: flex;
    flex-direction: column;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-name p {
    padding: 10px 0px 6px 0px;
    color: #dc0000;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}
p {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.72222;
}
p {
    margin: 0 0 10px;
}
.testi-name span {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 5px 0 5px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.fa-star:before {
    content: "\f005";
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
i {
    font-style: italic;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi__content p {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 33px;
    color: #fff;
    margin-top: 20px;
}
p {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.72222;
}
p {
    margin: 0 0 10px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testi-section1:after {
    content: "";
    height: 100%;
    background: #2f4a0b;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
    top: 0;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.hind-li.box.deal-part {
    float: left;
    width: 100%;
    padding: 3px 0pc;
    background: #2f4a0b;
    text-align: center;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.hind-li.box.deal-part ul {
    margin: 0;
    padding: 0;
}
ul, ol {
    margin-bottom: 15px;
}
ol, ul {
    margin-top: 0;
    margin-bottom: 10px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.deal-part ul li {
    list-style: none;
    display: inline-block;
    background: #fff;
    padding: 10px 3%;
    border-radius: 15px;
    border: solid 1px #eee;
    margin-right: 1%;
    transition: 0.5s;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div {
    display: block;
    unicode-bidi: isolate;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
[data-aos] {
    pointer-events: none;
}


img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 1.9em;
    letter-spacing: 1px;
    font-family: math;
    text-align: Center;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: -15px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
#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; 
	    background: #000;
}

.card img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}
.card-title{
	font-family:sans-serif;
	font-size:25px;
	color:#fed900;
	text-align:Center;
	font-weight:650;	
}
.card-text{
	font-family:sans-serif;
	font-size:15px;
	color:#fff;
	
	
}
.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 
   ========================= */


/*--story--*/

.freebies .content-right {
    padding-left: 80px
}
.news-grid {
    padding: 0;
}
.freebies article.item {
    position: relative;
    background-color: #000
}

.freebies article.item h4 {
    font-size: 1.2em;
    line-height: 15px;
    display: inline-block;
    margin-bottom: 30px;
    padding: 15px 30px 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: solid 2px #fff
}

.freebies article.item img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    min-width: calc(100% + 1px);
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.freebies .overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    opacity: 0;
    background-color: rgba(3, 123, 31, 0.69);
}

.freebies .freebies-intro {
    margin-bottom: 80px
}

.freebies figure {
    position: relative;
    overflow: hidden;
    height: 500px;
    max-height: 500px;
    margin:0;
}

.freebies figure:hover .overlay {
    opacity: 1
}

.freebies figure figcaption .freebie-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    max-width: 700px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center
}

.freebies figure figcaption .freebie-content .date {
    font-size: 1em;
    display: block;
    color: #fff;
    letter-spacing: 2px;
}

.freebies figure figcaption .like-share-wrapper {
    font-size: 13px;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff
}

.freebies figure figcaption .like-share-wrapper a {
    color: #fff
}

.freebies figure figcaption ul li {
    display: inline-block;
    padding: 0 10px 0 0;
    border-right: solid 1px rgba(255, 255, 255, 0.25)
}

.freebies figure figcaption ul li:last-child {
    padding: 0 0 0 10px;
    border-right: none
}

.freebies figure figcaption ul li i {
    margin-right: 5px
}
/* Astrology Info Section Styles Start */
.astrology-info-section {
    padding: 43px 9px; /* Padding for the section */
    background-color: #ffffff; /* 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: #fed900 ; 
    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: 16px; /* Regular text font size */
    line-height: 1.7; /* Line height for readability */
    color: #fff; /* Light grey color */
	    text-align: justify;
}

.service-list {
    font-size: 16px; /* Font size for the list */
    color: #fed900; /* 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 */
	    list-style: circle;
}

.service-list li {
    margin-bottom: 10px; /* Spacing between list items */
}

.conclusion-text {
    font-size: 16px; /* Font size for conclusion text */
    color: #444; /* 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: #fff;
    position: relative;
}

.feedback-top-new img {
    background: url(../images/back.html) 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(255 255 255);
    border-right: 4px solid transparent;
    border-left: 12px solid transparent;
    transform: rotate(0deg);
}

.feedback-top p {
    margin: 0;
    color: #000;
}

.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;
	    color: #fff;

}

.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.html) 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-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--*/

.footer-grid-w3ls h3 {
    font-size: 2em;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.8em;
}

.footer-text p,
.contact-info p {
    color: #FFFF;
    line-height: 1.7em;
}

.phone {
    margin-top: 20px;
}

ul.links {
    float: left;
    width: 100%;
}

.contact-info h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.9;
    color: #ffffff;
}

.copyright-w3 {
    border-top: 1px ridge rgba(57, 57, 58, 0.46);
	color:#fff;
    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:#ec3b05;
}

.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 */


/*--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 */
	        text-align: center;
        color: #fed900;
}

/* 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: 25px; 
		text-align: center;
		        color: #fed900;
    }
}
figure p{
	color:#fff;
}

/*--//responsive--*/