@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&family=Londrina+Sketch&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+HU:wght@100..400&family=Playwrite+IE+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {

  --rich-black-fogra-29: hsl(210, 26%, 7%);
  --champagne-pink_20: hsla(23, 61%, 86%, 0.2);
  --independence_30: hsla(245, 17%, 29%, 0.3);
  --gray-x-11-gray: hsl(0, 0%, 73%);
  --champagne-pink: hsl(23, 61%, 86%);
  --spanish-gray: hsl(0, 0%, 60%);
  --sonic-silver: hsl(0, 0%, 47%);
  --deep-saffron: hsl(0, 94%, 37%);
  --dark-orange: hsl(0, 91%, 31%);
  --desert-sand: hsl(23, 49%, 82%);
  --isabelline: hsl(38, 44%, 96%);
  --gainsboro: hsl(0, 0%, 87%);
  --tangerine: hsl(31, 84%, 50%);
  --cinnabar: hsl(3, 90%, 55%);
  --black_95: hsla(0, 0%, 0%, 0.95);
  --cultured: hsl(0, 0%, 93%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 27%);

  --ff-shadows-into-light: 'Shadows Into Light', cursive;
  --ff-roboto: 'Roboto', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-1: 3.2rem;
  --fs-2: 2.2rem;
  --fs-3: 1.8rem;
  --fs-4: 1.4rem;
  --fs-5: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  --section-padding: 60px;
  overflow-x: hidden;

  --shadow-1: 0 1px 4px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0 1px 2px hsla(0, 0%, 0%, 0.2);

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

  --clip-path-1: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
  --clip-path-2: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);

}



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
svg,
span,
input,
select,
button,
textarea,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
select,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.active {
  overflow: hidden;
}

:focus-visible {
  outline-offset: 4px;
}

::selection {
  background-color: orangered;
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--cultured);
}

::-webkit-scrollbar-thumb {
  background-color: orangered;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tangerine);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.h1,
.h2,
.h3,
.h4 {
  font-family: var(--ff-rubik);
  color: var(--rich-black-fogra-29);
  line-height: 1.2;
  letter-spacing: -1px;
}

.h1,
.h2 {
  font-size: var(--fs-1);
}

.h2,
.h3,
.h4 {
  font-weight: var(--fw-600);
}

.h3 {
  font-size: var(--fs-2);
}

.h4 {
  font-size: var(--fs-3);
}

.btn {
  background-color: var(--bg-color, var(--deep-saffron));
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  height: var(--height, 45px);
  padding-inline: var(--padding-inline, 35px);
  transition: var(--transition-1);
}

.btn-hover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: 1px;
  height: 1px;
  transform: translate(-50%, 51%) scale(var(--scale, 1));
  border-radius: 50%;
  background-color: var(--rich-black-fogra-29);
  z-index: -1;
  transition: var(--transition-2);
}

.btn-hover:is(:hover, :focus)::after {
  --scale: 500;
}

.section {
  padding-block: var(--section-padding);
}

.section.white {
  background-color: var(--isabelline);
}

.section-divider {
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-repeat: repeat no-repeat;
  background-position: bottom;
}

.section-divider.white::after {
  background-image: url("../images/shape-white.png");
}


.w-100 {
  width: 100%;
}

.has-scrollbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 40px;
}

.has-scrollbar::-webkit-scrollbar {
  height: 12px;
}

.has-scrollbar::-webkit-scrollbar-button {
  width: calc(25% - 40px);
}

.has-scrollbar::-webkit-scrollbar-track {
  outline: 2px solid var(--deep-saffron);
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured);
  border-radius: 50px;
}

.section-title>.span {
  display: inline-block;
  color: red;
}

.abs-img {
  position: absolute;
  transform: scale(1);
}

.scale-up-anim {
  animation: scaleUp 1s linear infinite alternate;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.section-subtitle {
  color: var(--cinnabar);
  font-family: var(--ff-rubik);
  text-align: center;
  font-weight: var(--fw-500);
}

.badge {
  position: absolute;
  background: var(--bg-color, var(--cinnabar));
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  padding: var(--padding-block, 2px) 15px;
}

.rating-wrapper {
  display: flex;
  gap: 5px;
  color: var(--deep-saffron);
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-btn-group .btn {
  display: none;
}

.header {
  --color: var(--dark-orange);
  --btn-color:black;

  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  z-index: 4;
   
  
}

.header.active {
  --color: var(--rich-black-fogra-29);
  --btn-color: var(--rich-black-fogra-29);

  position: fixed;
  top: -110px;
  background-color:white;
  box-shadow: var(--shadow-1);
  animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}


.header-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
 
}



.nav-toggle-btn {
  display: grid;
  gap: 4px;
}

.line {
  width: 10px;
  height: 3px;
  background-color:white;
  border-radius: 5px;
  transition: var(--transition-1);
}

.line.middle {
  width: 20px;
}

.line.bottom {
  margin-left: auto;
}

.nav-toggle-btn.active .line.top {
  transform: translate(1px, 3px) rotate(45deg);
}

.nav-toggle-btn.active .line.middle {
  transform: rotate(-45deg);
}

.nav-toggle-btn.active .line.bottom {
  transform: translate(-1px, -3px) rotate(45deg);
}


.navbar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  background-color: var(--white);
  padding-inline: 20px;
  box-shadow: var(--shadow-1);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.3s ease, visibility 0s 0.3s;
  z-index: 1000;
}

.navbar.active {
  height: 900px;
  margin-top: 25px;
  visibility: visible;
  transition: height 0.3s ease, visibility 0s;
}

.navbar-list {
  margin-block: 10px;
  padding: 0;
  list-style: none;
  
}

.nav-item:not(:last-child) {
  border-block-end: 1px solid hsla(0, 100%, 1%, 0.04);
}

.a .navbar-logo {
  vertical-align: middle;
  max-height: 200px;
  width: auto;
}

.navbar-link {
  color: var(--rich-black-fogra-29);
  font-size: 1.7rem;
  font-family: var(--ff-rubik);
  font-weight: bolder;
  padding: 10px 15px;
  transition: color 0.3s ease;
  display: block;
}

.navbar-link:is(:hover, :focus) {
  color: red;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width:200px;
  background-color:white;
  box-shadow: var(--shadow-1);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  
  opacity: 1;
}


.dropdown-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; 
}

.dropdown-menu .dropdown-link {
  color: var(--rich-black-fogra-29);
  padding: 10px 15px;
  width: 200px;
  text-decoration: none;
  display: block;
  border-block-end: 1px solid hsla(0, 100%, 1%, 0.04);
}

.dropdown-menu .dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-menu .dropdown-link:hover {
  background-color:orange;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: relative;
    top: 0;
    width: 100%;
  }
}



/*-----------------------------------*\
  #SLIDER BOX
\*-----------------------------------*/


.slider {
  position: relative;
  max-width: 100%;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 100px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100vh;
  position: relative;
}

.titles{
  position: absolute;
  width: 100%;
  z-index: 3;
  text-align: center;
  top: 20%;
}

@font-face {
  font-family: 'demos';
  src: url("../fonts/samarkan/SAMAN___.TTF");
}

.titles h1{
  font-size: 56px;
  font-family: 'demos', Courier, monospace;
  font-weight: normal;
  background: linear-gradient(
        to right,
        white 20%,
        orangered 30%,
        red 70%,
        white 80%
    );
  /* background: linear-gradient(
        to right,
        #7953cd 20%,
        #00affa 30%,
        #0190cd 70%,
        #764ada 80%
    ); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}

.titles p{
  color: orangered;
}

@media screen and (max-width:480px) {
  .titles{
    top: 15%;
  }
  .titles h1{
    font-size: 32px;
  }
  .titles p{
    width: 90%;
    transform: translateX(5%);
    left: -95%;
  }
}


.slide {
  min-width: 100%;
  display: none;
  height: 100vh;
}

.slide.active {
  display: block;
}

.slide img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: none;
  cursor: pointer;
  padding: 0.4%;
  font-size: 22px;
  color:black;
  border-radius: 30px;
  justify-content: center;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: orangered;
  color:white;
}



/* Overlay and content box */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.slide .overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.content {
  text-align: center;
  color: white;
  padding: 20px;
}

button {
  background-color: #ff5733;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #ff3300;
}


a.button-link {
  background-color: #ff5733;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

a.button-link:hover {
  background-color: #ff3300;
}


/* Navigation buttons */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

/* Active slide indicator */
.slide.active {
  display: block;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  background-color: #ffe9c394;

}

.about-content {
  max-width: 600px;
 
}

.about-us h2 {
  font-size: 1em;
  color: brown;
  text-align: left;
  margin-top: 20px;
}
.about-us h3{
  font-size: 1.6em;
  color:black;
  text-align: left;
}

.about-us p {
  font-size: 1.6rem !important;
  margin-bottom: 20px;
  text-align: left;
  word-spacing: 0.2rem;
  color: #333333;
}

.book-now {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--dark-orange);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.about-banner {
  margin-top: 20px;
}

.about-img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .about-us {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 100px;
  }

  .about-content {
    margin-right: 20px;
  }

}


/*-----------------------------------*\
  #home 3rd content
\*-----------------------------------*/
.image-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding: 20px;
}

.image-container img {
  width: 100%;
  height: 100%;
  max-height: 1200px;
  object-fit: cover;
}

.content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F74A1273;
  padding: 20px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  width: 80%;
  text-align: center;
}

.content-container p {
  color: #ffffff;
  text-align: center;
}

.content-container h2 {
  color: rgb(62, 41, 205);
}

.content-container h5 {
  color: white;
  font-size: 1.5rem;
}

.content-container:hover {
  background-color: rgba(255, 255, 255, 0.452);
}

.content-container h2 {
  background-color: transparent;
  margin: 0 0 10px;
}

.customer-info {
  margin-top: 10px;
  font-style: italic;
}

@media (max-width: 768px) {
  .content-container {
    width: 90%;
  }
 
}

@media (max-width: 480px) {
  .content-container {
    width: 80%;
  }
  
}

.image-32 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
  margin: 20px;
}

.image-32 div {
  text-align: center;
  flex: 1 1 150px;
  min-width: 8px;
  max-width: 100px;
}

.image-32 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-32 p {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .image-32 {
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .image-32 div {
    flex: 1 1 100%;
    min-width: 0;
  }
}


/*-----------------------------------*\
  home last content
\*-----------------------------------*/



.applynow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 400px;
}

.applynow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 800px;
  object-fit: cover;
  z-index: 0;
}

.apply-content {
  position: relative;
  z-index: 1;
}

.apply-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: brown;
  font-weight: 550;
}

.apply-content p {
  margin: 10px 0;
  font-size: 35px;
  font-weight: 800;
  color:orangered;
}
.apply-content span{
  color: black;
  margin: 10px 0;
  font-size: 20px;
  font-weight: 500;
}
.apply-button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.apply-button:hover {
  background-color: #cc5200;
}

.apply-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .apply-content h2 {
    font-size: 22px;
  }

  .apply-content p {
    font-size: 14px;
  }

  .apply-button {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .apply-content h2 {
    font-size: 1.5rem;
    margin-top: 20%;
  }

  .apply-content p {
    font-size: 12px;
  }

  .apply-button {
    padding: 8px 16px;
  }
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  overflow: hidden;
  background-color: black;
}
.a .footer-logo {
  height: auto;
  max-height: 80px;
  width: auto;
}
.footer p {
  color: white;
  font-size: 1.5rem !important;
  line-height: 2.9rem !important;

}
.footer a{
  color: white;
  font-size: 2rem;
}
a.footer-list-item {
 color: white;
 font-size: 1.5rem;
}
.footer-top .container {
  display: grid;
  gap: 30px;
  margin-top: 80px;
}

.footer-text {
  margin-block: 15px 25px;
}

.social-list {
  display: flex;
  gap: 5px;
}

.social-link {
  background-color:transparent;
  color: var(--white);
  font-size: 1.5rem;
  padding: 10px;
  transition: var(--transition-1);
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  max-width: 1200px;
}

.address-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #ff3b00;
}

.footer-list-item:hover .address-icon {
  transform: scale(1.1);
}


.footer-list-title {
  position: relative;
  max-width: max-content;
  color: white;
  font-family: var(--ff-rubik);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  letter-spacing: -1px;
}

.footer-list-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 15px);
  background-color: red;
  width: 40px;
  height: 4px;
  border-inline-end: 5px solid var(--deep-saffron);
  box-shadow: inset -5px 0 0 var(--white);
}

.footer-list>li:not(:last-child) {
  margin-block-end: 15px;
}

.footer-list address {
  max-width: 20ch;
}

.footer-bottom {
  padding-block: 20px;
  text-align: center;
}

.copyright-link {
  display: inline-block;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: underline;
}


/*-----------------------------------*\
  # PAGE LOADING LOGO
\*-----------------------------------*/


#logo-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
}

.loading-logo {
  max-height: 150px;
  width: auto;
}

.loading-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top: 5px solid red;
  animation: rotate 1s linear infinite;
  z-index: 998;
  transform-origin: 50% 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--deep-saffron);
  color: var(--white);
  padding: 15px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29);
}


/*-----------------------------------*\
  #WHATSAPP BUTTON
\*-----------------------------------*/

.whatsapp-btn {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  opacity: 1;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-btn img {
  width: 70%;
  height: auto;
}

.whatsapp-btn:is(:hover, :focus) {
  background-color: #128C7E;
}

@media (min-width:912px) {
  .whatsapp-btn {
    bottom: 85px;
    right: 26px;
  }
}
/*-----------------------------------*\
  #SERVICE -HOME
\*-----------------------------------*/

.services-section{
  background: url("../images/home-bg-image.jpg");
}
.services-section .second ,.first ,.third{
  margin-bottom: 50px;
}
.services-section h2 {
  text-align: center;
  font-size: 2em;
  color: #0b1a34;
  margin-bottom: 20px;
  padding-top: 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background-color: #0b1a34;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.service-box:hover {
  transform: translateY(-10px);
}


.service-box img {
  width: 50px;
  height: auto;
  margin-right: 15px;
}


.service-box h3 {
  color: white;
  font-size: 18px;
  margin: 0;
}


@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
   
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-box h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-box {
    padding: 15px;
  }

  .service-box img {
    width: 40px;
  }

  .service-box h3 {
    font-size: 14px;
  }
}

/*-----------------------------------*\
  #3RD CONTENT OF THE HOME PAGE
\*-----------------------------------*/
.orange-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px !important;
  background-color:#ff3b00;
}

.inner-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
.inner-content p{
  color: white;
  font-weight: 500;
  font-size: 2rem;
}
.inner-content span{
  color: white;
  font-size: 5rem;
  font-weight: 500;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  padding: 10px;
}

.item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px ;
}


@media (min-width: 768px) {
  .inner-content {
    justify-content: space-between;
  }
 
  .item {
    flex: 1;
  }
}
@media(max-width: 480px){

  .orange-container{
    padding: 20px;
  }
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


@media (min-width: 480px) {

  .header-btn-group .btn {
    display: block;
    --bg-color: var(--dark-orange);
  }
 
}



@media (min-width: 550px) {

  .container {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
  }

  .has-scrollbar>li {
    min-width: calc(50% - 5px);
  }

 
  .footer-top .container {
    grid-template-columns: 1fr 1fr;
  }

}

@media (min-width: 768px) {

  .container {
    max-width: 720px;
  }

}


/*-----------------------------------*\
  #responsive for larger than 992px screen
\*-----------------------------------*/


@media (min-width: 992px) {

  :root {

    --section-padding: 120px;

  }

  .container {
    max-width: 960px;
  }

  .has-scrollbar>li {
    min-width: calc(33.33% - 6.66px);
  }

  .h2 {
    --fs-1: 4.2rem;
  }


  .nav-toggle-btn {
    display: none;
  }

  .header .container {
    gap: 20px;
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    margin-block: 0;
    display: flex;
    gap: 5px;
  }

  .nav-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    --fs-4: 1.5rem;
    color: var(--btn-color);
    letter-spacing: -0.5px;
    font-weight:500;
    color: black;
  }
  /* #cae{} */

  .footer-top .container {
    grid-template-columns: 1fr 1fr 1fr 1.6fr;
  }

  .footer-form {
    margin-block-start: -170px;
  }


  .back-top-btn {
    bottom: 20px;
    right: 30px;
  }
  

}


@media (min-width: 1200px) {

  
  .container {
    max-width: 1200px;
  }

  .footer-top .container {
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  }

}



/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/


.cont {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 150px;
}

.payment-img,
.contact-form {
  padding: 20px;
  flex: 1;
  color: black;
}

.payment-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 800px;
}
.cont h2 {
  color: var(--deep-saffron);
}

@media (min-width: 768px) {
  .cont {
    flex-direction: row;
  }

  .payment-img,
  .contact-form {
    width: 50%;
    justify-content: center;
    align-items: center;
    display: center;
    font-family: var(--ff-rubik);
  }

  .payment-img {
    margin: 0 auto;
    text-align: center;
  }
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid black;
  border-radius: 5px;
}

button {
  background-color: var(--dark-orange);
  color: var(--white);
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button {
  display: block;
  margin: 0 auto;
}

button:hover {
  background-color: var(--tangerine);
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: 0;
  padding-bottom: 30%;
  background-color: #ffe9c394;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 50px;
}

@media (max-width: 768px) {
  .map-container {
    padding-bottom: 60%;
  }

  .map-container iframe {
    padding: 20px;
  }
}

@media (min-width: 769px) {
  .map-container {
    padding-bottom: 30%;
  }
}

/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/



.banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/about-banner.jpg');
  background-position: center;
  background-size: cover;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(rgba(0,0,0,7.5),rgba(0,0,0,0.5));

}
.banner1 {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/homam-banner.jpg');
  background-position: center;
  background-size: cover;
}
.banner2 {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/ceremonies-banner.jpg');
  background-position: center;
  background-size: cover;
}
.banner3{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBqjF0EtVmgud8G5nBBUormamc3dwPSQTT2bGSI1_ARuld7biBTwWAixdJu_gQPh7dmDe_cprHaysvE2mafRromfjtmDDybuqMQhoMuGFeBoL8Hk9jv1nxl3Wd1p3FUqN5YrLfh0NjdYY/s640/DSC_0012.JPG');
  background-position: center;
  background-size: cover;
}
.banner4{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/parikaram-23.jpg');
  background-position: center;
  background-size: cover;
}
.banner5{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://lh3.googleusercontent.com/PrjM28-JcskCs4tldkGmthbrHCyDWVqDs05xVHrsid6oW5gQM4eCjCgHd_bfYj_kEflTjw4PREF5y0O5H2D2QTc5zw3ojUErmQKlIqnlA2KdQ3BILU9jAUu9fwgpkN8q7gC0WETmCKEGCBbFSdtC44A');
  background-position: center;
  background-size: cover;
}
.banner6{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://aptemples.ap.gov.in/static/media/photogallery-03.39d74b91.webp');
  background-position: center;
  background-size: cover;
}
.banner7{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('http://prod.backend.vedasankalpa.com/media/images/D31-Sevacard1.webp');
  background-position: center;
  background-size: cover;
}
.banner8{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://i.pinimg.com/originals/87/f7/8e/87f78ec7367c19239d6fda088fbafd1c.jpg');
  background-position: center;
  background-size: cover;
}
.banner9{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/Astrology-Talk-in-Tamil-banner.jpg');
  background-position: center;
  background-size: cover;
}
.banner10{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/catering-banner.jpg');
  background-position: center;
  background-size: cover;
}
.banner11{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/gallery-banner.jpg');
  background-position: center;
  background-size: cover;
}
.banner12{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://t3.ftcdn.net/jpg/03/10/17/48/240_F_310174834_1Y0bCN4fbtJONOPMDS0qpw2JtpUkvRBm.jpg');
  background-position: center;
  background-size: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 0, 0);
  text-align: center;
}

.banner-text h1 {
  font-size: 2.5em;
  margin: 0;
}

.banner-text h2 {
  font-size: 1.5em;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.banner-text h2 .link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-right: 5px;
}

.banner-text h2 .link:hover {
  text-decoration: underline;
}

.cont {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 20px;
}

.payment-img,
.contact-form {
  padding: 20px;
  flex: 1;
  color: black;
}

.payment-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 800px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="datetime-local"],
.contact-form textarea {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
.cont h2 {
  color: red;
}

@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 2.2em;
  }

  .banner-text h2 {
    font-size: 1.4em;
  }
}

@media (max-width: 992px) {
  .banner-text h1 {
    font-size: 2em;
  }

  .banner-text h2 {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .banner-text {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .banner-text h2 {
    flex-direction: column;
    align-items: center;
  }

  .banner-text h1 {
    font-size: 1.8em;
  }

  .banner-text h2 {
    font-size: 1.2em;
  }
}

@media (max-width: 576px) {
  .banner-text h1 {
    font-size: 1.5em;
  }

  .banner-text h2 {
    font-size: 1em;
  }
}

@media (min-width: 768px) {
  .cont {
    flex-direction: row;
  }

  .payment-img,
  .contact-form {
    width: 50%;
    justify-content: center;
    align-items: center;
    display: center;
    font-family: var(--ff-rubik);
  }

  .payment-img {
    margin: 0 auto;
    text-align: center;
  }
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid black;
  border-radius: 5px;
}

button {
  background-color: var(--dark-orange);
  color: var(--white);
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button {
  display: block;
  margin: 0 auto;
}

button:hover {
  background-color: var(--tangerine);
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: 0;
  padding-bottom: 30%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 50px;
}

@media (max-width: 768px) {
  .map-container {
    padding-bottom: 60%;
  }

  .map-container iframe {
    padding: 20px;
  }
}

@media (min-width: 769px) {
  .map-container {
    padding-bottom: 30%;
  }
}

/*-----------------------------------*\
  #TABS (TOP 3 BOXES)-ABOUT PAGE
\*-----------------------------------*/

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
  padding-top: 50px;
}
.tabs-image{
  background:url('../images/home-bg-image2.jpg')
  
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  background-color: #0b1a34;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 120px;
  text-align: center;
}

.tab:hover {
  background-color: #ff5e1f;
}

.tab-icon {
  margin-bottom: 10px;
}

.tab img {
  width: 30px;
  height: 30px;
}

.about-content-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px;
  box-sizing: border-box;
  min-height: 600px;
}

.content-box {
  display: none;
  flex-direction: row;
  gap: 20px;
  background-color: white;
  box-shadow: 0.2px 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.content-box.active {
  display: flex;
}

.content-image img {
  width: 100%;
  max-width: 300px;
}

.content-text {
  flex-grow: 1;
  padding-left: 20px;
}

.content-text h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: red;
}

.content-text p {
  font-size: 1.1 rem;
  line-height: 1.6em;
  color: #333333;
}



@media (max-width: 768px) {
  .about-content-container {
    padding: 15px;
  }

  .content-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .content-image img {
    max-width: 100%;
    max-height: 80%;
    height: auto;
  }

  .content-text {
    padding-left: 0;
    padding-top: 10px;
  }

  .tabs-container {
    flex-direction: column;
    align-items: center;
  }

  .tab {
    width: 50%;
    padding: 10px;
  }
}

@media (min-width: 788px) {
  .content-image img {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 1200px;
  }
}



/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}

.gallery-item {
  flex: 1 1 30%;
  margin: 10px;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  min-width: 100px;
  height: 400px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%;
  }

  .gallery-item img {
    height: 250px;
  }
}
@media(min-width:768px){
  .gallery{
    margin: 120px;
  }
}

/*-----------------------------------*\
  #SERVICE GALLERY
\*-----------------------------------*/



.service-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  justify-content: center;
  margin: auto;
  padding: 20px;
  margin-top: 100px;
}

.service-image {
  flex: 0 1 calc(25% - 20px);
  margin-bottom: 20px;
  margin: 10px;
  background: white;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}

.service-image:hover {
  transform: scale(1.05);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-image p {
  padding: 10px;
  font-size: 1.2em;
  color: black;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .service-gallery {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service-image {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .service-image {
    flex: 0 1 100%;
  }
}



/*-----------------------------------*\
  #INNER CONTENT
\*-----------------------------------*/

.containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 100px;
  font-family: sans-serif;
}

.inner-container {
  flex: 1 1 50%;
  padding-right: 20px;
}

.inner-container img {
  width: 100%;
  height: auto;
  border-radius: 5%;
  max-width: none;
}

.inner-content-container {
  flex: 1 1 50%;
  padding-left: 20px;
}

.inner-content-container h2 {
  color:red;
  margin-bottom: 15px;
}

.inner-content-container h3 {
  margin-top: 20px;
  color: black;
}
.inner-content-container strong{
  color: black;
  margin-top: 20px;
}
.inner-content-container ul {
  padding-left: 0;
}

.inner-content-container li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 25px;
}

.custom-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  max-width: 15px;
  max-height: 15px;
  background-color: brown;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.inner-content-container p,
.inner-content-container ul {
  margin-bottom: 20px;
  color: #333333;
}

.responsive-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.responsive-image {
  flex: 1 1 50%;
  padding-left: 20px;
}

.responsive-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.description-content {
  flex: 1 1 50%;
  padding-right: 20px;
}

.description-content h2 {
  color: red;
  margin-top: 0;
}

.description-content h3 {
  margin-top: 20px;
  color:black;
}

.description-content ul {
  padding-left: 20px;
  
}

.description-content li {
  list-style-type: disc;
  margin-bottom: 10px;
  
  
}

.description-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.description-container h2 {
  color: red;
  margin-top: 0;
}

.description-container h3 {
  margin-top: 20px;
  color: black;
}

.description-container p,
.description-container ul {
  margin-bottom: 20px;
  color: #333333;
}

.description-container ul {
  padding-left: 20px;
}

.description-container li {
  list-style-type: none;
  position: relative;
  margin-left: 20px;
  margin-bottom: 5px;
  padding-left: 20px;
}

.description-container li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: brown;
  border-radius: 50%;
}

@media (max-width: 720px),
(max-width: 480px) {

  .containers,
  .responsive-container {
    flex-direction: column;
    padding: 20px;
  }

  .inner-container,
  .inner-content-container,
  .responsive-image,
  .description-content {
    padding: 0;
    width: 100%;
  }

  .inner-container img,
  .responsive-image img {
    margin-bottom: 20px;
  }

  .inner-content-container h2,
  .description-content h2 {
    font-size: 24px;
  }

  .inner-content-container h3,
  .description-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .description-container {
    padding: 20px;
  }
  
}

.services-gallery-container {
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}

.services-gallery-container h2 {
  color: red;
  text-align: center;
  margin-bottom: 20px;
}

.services-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.services-image {
  flex: 1 1 calc(33.333% - 20px);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.services-image img {
  width: 100%;
  height: auto;
}

.services-image p {
  margin: 10px 0;
  color: black;
  font-size: 20px;
}
.service-img {
    width: 200px;  
    height: 150px; 
    object-fit: cover; 
}

#haya{
  height: 370px;
}
#haya1{
  height: 370px;
}
#haya2{
  height: 270px;
}
#dhanis{
  height:370px;
}
#sashti{
  height: 356px;
}
#pantha1{
  height: 355px;
  }
  #pantha3{
    height: 270px;
    }
  
  #rituals{
    height:275px;
  }
  #thithi{
    width: 300px;
    height: 270px;
  }
  #abdigam{
    height:270px;
  }
  
  #tarpanam{
    height:270px;
  }
  #vasthu{
    height: 350px;
  }
  #seemantham{
    height:350px;
  }
  #birth{
    height: 370px;
  
  }
  #yuyu{
    height: 400px;
  }
  #tharpanam{
    height: 400px;
  }
  #tarpanam2{
    height: 370px;
  }
  #thithi1{
    width: 350px;
    height: 400px;
  }
  #thithi2{
  
    height: 372px;
  }
  
  #abdigam1{
    height:370px;
  }
@media (max-width: 720px) {
  .services-image {
    flex: 1 1 1 calc(50% - 20px);
  }
  .services-gallery-container{
    max-width: 100%;
  }
 
}

@media (max-width: 480px) {
  .services-image {
    flex: 1 1 80%;
  }

  .services-gallery-container h2 {
    font-size: 24px;
  }
}

@media (min-width: 320px) and (max-width: 720px) {

  .inner-container img,
  .responsive-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.banner.service {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.banner.service .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-service1{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/pooja-banner-inner.jpg');
  background-position: center;
  background-size: cover;
 
}
.banner-service2{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://i.pinimg.com/736x/e3/b8/20/e3b820aae5dd605e5bd2f18d2a514ad8.jpg');
  background-position: center;
  background-size: cover;
 
}
.banner-service3{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/pooja-banner-inner.jpg');
  background-position: center;
  background-size: cover;
 
}
.banner-service4{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://i.pinimg.com/736x/5b/95/15/5b9515ae4aefb924e6902ce5cb120e27.jpg');
  background-position: center;
  background-size: cover;
 
}
.banner-service5{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/pooja-banner-inner.jpg');
  background-position: center;
  background-size: cover;
 
}
.banner-service6{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 100px;
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/catering-inner.jpg');
  background-position: center;
  background-size: cover;
}
  .banner-service7{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 100px;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/hommam1.jpg');
    background-position: center;
    background-size: cover;
   
  }
  .banner-service8{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 100px;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/banner3.jpg');
    background-position: center;
    background-size: cover;
   
  }
  .banner-service9{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 100px;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/banner4.jpg');
    background-position: center;
    background-size: cover;
   
  }
.banner.service .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 0, 0);
  text-align: center;
}

.banner.service .banner-text h1 {
  font-size: 2.5em;
  margin: 0;
}

.banner.service .banner-text h2 {
  font-size: 1.5em;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.banner.service .banner-text h2 .link {
  color: white;
  text-decoration: none;
  margin-right: 5px;
}

.banner.service .banner-text h2 .link:hover {
  text-decoration: underline;
}


@media (max-width: 1200px) {
  .banner.service .banner-text h1 {
    font-size: 2.2em;
  }

  .banner.service .banner-text h2 {
    font-size: 1.4em;
  }
}

@media (max-width: 992px) {
  .banner.service .banner-text h1 {
    font-size: 2em;
  }

  .banner.service .banner-text h2 {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .banner.service .banner-text {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .banner.service .banner-text h2 {
    flex-direction: column;
    align-items: center;
  }

  .banner.service .banner-text h1 {
    font-size: 1.8em;
  }

  .banner.service .banner-text h2 {
    font-size: 1.2em;
  }
}

@media (max-width: 576px) {
  .banner.service .banner-text h1 {
    font-size: 1.5em;
  }

  .banner.service .banner-text h2 {
    font-size: 1em;
  }
}
  

/* Testimonial */


.testimonial__container .section__header {
  text-align: center;
  margin-bottom: 2rem;
  color: red;
  font-size: 2.6rem;
  padding-top: 30px;
}

.testimonial__container{
  background-color: #ffe9c37f;
}

.swiper {
  margin-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}

.testimonial__card {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}

.testimonial__card p {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  /* color:rgb(255, 0, 0); */
  color: black;
  font-weight: 500;
}

.testimonial__card img {
  max-width: 60px;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial__card h4 {
  font-size: 1.6rem;
  font-weight: bolder ;
  color: black;
}

.testimonial__card h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: brown;
  margin-bottom: 20px;
}



@media (max-width: 768px) {
  .testimonial__card {
    padding: 0.5rem;
  }

  .testimonial__card p {
    font-size: 1.5rem;
  }

  .testimonial__card h4 {
    font-size: 1.1rem;
  }

  .testimonial__card h5 {
    font-size: 0.9rem;
  }

  .testimonial__card img {
    max-width: 50px;
  }
}

@media (max-width: 480px) {
  .testimonial__card {
    padding: 20px;
  }

  .testimonial__card p {
    font-size: 1.3rem;
  }

  .testimonial__card h4 {
    font-size: 1.3rem;
  }

  .testimonial__card h5 {
    font-size: 1rem;
  }

  .testimonial__card img {
    max-width: 40px;
  }
}






/* stats */



.card-poojas {
  /* background-color: hsl(173, 85%, 47%); */
  background-color: var(--dark-orange);
}

.card-priests {
  /* background-color: hsl(351, 83%, 61%); */
  background-color: var(--dark-orange);
}

.card-types {
  /* background-color: hsl(260, 100%, 67%); */
  background-color: var(--dark-orange);
}

.card-satisfaction {
  /* background-color: hsl(42, 94%, 55%); */
  background-color: var(--dark-orange);
}

.grid-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  
}

.grid-list li {
  flex: 1 1 22%;
  margin: 10px;
}
.stats-outer{
  background: url("../images/home-bg-image2.jpg") center rgba(0, 0, 0, 0.5);
}
.stats-card {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-10);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: transform 0.3s;
  height: 220px;
  
}
.stats h3{
  color: white;
}
.stats-card h3{

  font-size: 3rem;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  max-width: 80px;
  margin: 0 auto 15px;
  display: block;
}

@media (max-width: 768px) {
  .grid-list li {
    flex: 1 1 45%;
  }

  .card-icon {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .grid-list li {
    flex: 1 1 100%;
  }

  .card-icon {
    max-width: 80px;
  }
}