/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS
2- Button CSS
3- Header Area CSS
4- Home Area CSS 
5- About Area CSS
6- Services Area CSS
7- Gallery Area CSS
8- Team Area CSS
9- Testimonials Area CSS
1- Blog Area CSS
11- Contact Area CSS 
12- Appointment Area CSS 
13- Footer Area CSS
14- Scroll-Top Area CSS

*/



/*--------------------- 0- Global CSS (Start) ---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
  --main-color: #FCD900;
  --secondary-color: #035397;
  --white: #fff;
  --grey: #666;
  --border: 0.1rem solid rgba(0, 0, 0, 0.1);
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

*{
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-transform: capitalize;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
}

/* Selection Styles */
*::-moz-selection{
  color: var(--white);
  background-color: var(--main-color);
}

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

html {
  font-size: 62.6%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

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

html::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

section {
  padding: 2rem 5%;
}

.swiper-pagination-bullet{
  height: 1rem;
  width: 1rem;
  border-radius: 50rem;
}

.swiper-pagination-bullet-active{
  width: 3rem;
}

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

p{
  font-size: 1.6rem;
  color: var(--grey);
  line-height: 1.6;
}

/*--------------------- 0- Global CSS (End) ---------------------*/



/*--------------------- 1- Heading CSS (Start) ---------------------*/
.heading h2{
  color: var(--secondary-color);
  text-align: center;
  padding-bottom: 2rem;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: bold;
}

.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

/*--------------------- 1- Heading CSS (End) ---------------------*/



/*--------------------- 2- Button CSS (Start) ---------------------*/
.btn {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  background: var(--secondary-color);
  padding: 1rem 2rem;
}

.btn:hover {
  cursor: pointer;
  background: var(--main-color);
}

/*--------------------- 2- Button CSS (End) ---------------------*/



/*--------------------- 3- Header Area CSS (Start) ---------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 2rem 5%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.header.sticky{
  background: var(--secondary-color);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .logo h2{
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header .logo:hover h2 {
  transform: scale(1.05);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.header .logo h2 span{
  color: var(--main-color);
}

.header .navbar a{
  display: inline-block;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 0.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.header .navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.header .navbar a:hover::before {
  left: 100%;
}

.header .navbar a:hover,
.header .navbar a.active{
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(252, 217, 0, 0.3);
}

#menu-btn{
  font-size: 3rem;
  color: var(--white);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
}

#menu-btn:hover{
  color: var(--main-color);
  cursor: pointer;
}

.header .appointment-btn{
  display: inline-block;
  font-size: 1.6rem;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background-color: transparent;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header .appointment-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.header .appointment-btn:hover {
  cursor: pointer;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 217, 0, 0.4);
}

.header .appointment-btn:hover::before {
  left: 0;
}

/*--------------------- 3- Header Area CSS (End) ---------------------*/



/*--------------------- 4- Home Area CSS (Start) ---------------------*/
.home{
  padding: 0;
  position: relative;
}

.home-slider{
  overflow: hidden;
  position: relative;
}

.home-slider .swiper-pagination-bullet{
  height: 1.5rem;
  width: 1.5rem;
  background: var(--secondary-color);
  opacity: 0.5;
}

.home-slider .swiper-pagination-bullet-active{
  width: 3.5rem;
  background: var(--main-color);
  opacity: 1;
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1rem;
  height: 5rem;
  width: 5rem;
  padding: 2rem;
}

.home-slider .swiper-button-next{
  right: 1rem;
}

.home-slider .swiper-button-prev{
  left: 1rem;
}

.home-slider .swiper-button-prev:after, 
.home-slider .swiper-button-next:after{
  font-size: 2rem;
}

.home-item{
  height: 65rem;
}

.home-item .content{
  padding: 10rem 5%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-item .content .text{
  text-align: center;
  width: 75rem;
  padding-top: 8rem;
}

.home-item .content .text h2{
  font-size: 5.5rem;
  letter-spacing: 1px;
  color: var(--secondary-color);
  padding-bottom: 1.5rem;
  line-height: 1.15;
}

.home-item .content .text p {
  line-height: 1.4;
  font-size: 2rem;
  padding-bottom: 2rem;
  color: var(--secondary-color);
}

/*--------------------- 4- Home Area CSS (End) ---------------------*/



/*--------------------- 5- About Area CSS (Start) ---------------------*/
.about{
  overflow: hidden;
}

.about .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 4rem;
}

.about .image{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
  height: 45rem;
  overflow: hidden;
  position: relative;
}

.about .content{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
}

.about .content h1{
  font-size: 4rem;
  color: var(--secondary-color);
  padding-bottom: 1.5rem;
}

.about .content p{
  padding-bottom: 1.5rem;
}

.about .content .btn{
  margin-top: 1rem;
}

.about-info{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
}

.about-info .info-box{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 15rem;
      flex: 1 1 15rem;
  border: 0.2rem solid var(--secondary-color);
  text-align: center;
  padding: 1.5rem;
}

.about-info .info-box i{
  font-size: 4rem;
  color: var(--main-color);
  padding-bottom: 1rem;
}

.about-info .info-box h5{
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary-color);
}

/*--------------------- 5- About Area CSS (End) ---------------------*/



/*--------------------- 6- Services Area CSS (Start) ---------------------*/
.services .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-item{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33rem;
      flex: 1 1 33rem;
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.service-item .icon{
  display: inline-block;
  font-size: 2rem;
  border: 0.1rem solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  margin: 0rem auto;
}

.service-item:hover .icon{
  border-color: var(--white);
}

.service-item i{
  height: 5rem;
  width: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  margin: 0.5rem;
  background-color: var(--main-color);
}

.service-item h3{
  font-size: 2rem;
  color: var(--secondary-color);
  padding: 1rem 0;
}

.service-item:hover{
  background-color: var(--secondary-color);
}

.service-item:hover h3{
  color: var(--white);
}

.service-item:hover p{
  color: var(--white);
}

/*--------------------- 6- Services Area CSS (End) ---------------------*/



/*--------------------- 7- Gallery Area CSS (Start) ---------------------*/
.gallery .box-container{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 1rem;
}

.gallery-item{
  height: 25rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.gallery-item .content{
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(rgba(3, 83, 151, 0.7), rgba(3, 83, 151, 0.7));
  background:         linear-gradient(rgba(3, 83, 151, 0.7), rgba(3, 83, 151, 0.7));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  padding: 2rem;
  text-align: center;
}

.gallery-item .content p{
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 400;
  padding-bottom: 2rem;
}

.gallery-item .content a{
  color: var(--main-color);
  font-size: 3rem;
}

.gallery-item:hover .content{
  top: 0;
}

/* Video Gallery Item Styles */
.gallery-item.video {
  height: 25rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  cursor: pointer;
}

.gallery-item.video .video-container {
  height: 100%;
  width: 100%;
  position: relative;
  pointer-events: auto;
}

.gallery-item.video .video-container iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: none;
  pointer-events: auto;
  cursor: pointer;
}

.gallery-item.video .content {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(rgba(3, 83, 151, 0.8), rgba(3, 83, 151, 0.8));
  background:         linear-gradient(rgba(3, 83, 151, 0.8), rgba(3, 83, 151, 0.8));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  padding: 2rem;
  text-align: center;
  pointer-events: none;
}

.gallery-item.video .content p {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
  pointer-events: none;
}

.gallery-item.video .content a {
  color: #ff0000;
  font-size: 3.5rem;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.gallery-item.video .content a:hover {
  color: #cc0000;
  transform: scale(1.1);
}

.gallery-item.video:hover .content {
  top: 0;
}

/* Hover effect for video items */
.gallery-item.video:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/*--------------------- 7- Gallery Area CSS (End) ---------------------*/



/*--------------------- 8- Team Area CSS (Start) ---------------------*/
.team .box-container{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1rem;
}

.team .team-item{
  background-color: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  text-align: center;
  padding: 4rem 2rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.team .team-item .image{
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0rem auto;
}

.team .team-item .content{
  padding: 2rem 0;
  text-align: center;
}

.team .team-item .content h3{
  font-size: 2.2rem;
  padding-bottom: 0.5rem;
}

.team .team-item .icons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.team .team-item .icons a{
  display: inline-block;
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--main-color);
  border: 0.1rem solid var(--main-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 2rem;
}

.team .team-item .icons a:hover{
  color: var(--white);
  background-color: var(--main-color);
}

/*--------------------- 8- Team Area CSS (End) ---------------------*/



/*--------------------- 9- Testimonials Area CSS (Start) ---------------------*/
.testimonial-slider{
  position: relative;
  padding: 0rem 8rem 4rem 8rem;
  overflow: hidden;
}

.testimonial-slider .swiper-pagination-bullet{
  background: var(--secondary-color);
}

.testimonial-slider .swiper-pagination-bullet-active{
  background: var(--main-color);
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev{
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1rem;
  height: 5rem;
  width: 5rem;
  padding: 2rem;
}

.testimonial-slider .swiper-button-next{
  right: 5rem;
}

.testimonial-slider .swiper-button-prev{
  left: 5rem;
}

.swiper-button-prev:after, 
.swiper-button-next:after{
  font-size: 2rem;
}

.testimonial .testi-item{
  text-align: center;
  padding: 2rem 4rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.testimonial .testi-item p{
  padding-bottom: 2rem;
}

.testimonial .testi-item h3 {
  color: var(--secondary-color);
  padding-bottom: 0.5rem;
  font-size: 2.3rem;
}

.testimonial .testi-item .rating{
  margin-bottom: 2rem;
}

.testimonial .testi-item .rating i {
  color: var(--main-color);
  font-size: 1.8rem;
}

.testimonial .testi-item .image {
  height: 15rem;
  width: 15rem;
  margin: 0 auto;
}

.testimonial .testi-item .image img {
  border-radius: 50%;
  border: 0.3rem solid var(--main-color);
  padding: 0.3rem;
}

/*--------------------- 9- Testimonials Area CSS (End) ---------------------*/



/*--------------------- 10- Blog Area CSS (Start) ---------------------*/
.blog .box-container{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 1rem;
}

.blog-item{
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--white);
  border: var(--border);
  position: relative;
  overflow: hidden;
}

.blog-item .title{
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  background-color: var(--secondary-color);
  opacity: 0.9;
  font-size: 2rem;
  line-height: 1.6;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.blog-item .image{
  height: 25rem;
}

.blog-item .content{
  padding: 2rem;
}

.blog-item .info{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-item .info h3{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
}

.blog-item .info h3 i{
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.blog-item .info h3 span{
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--grey);
}

.blog-item .content .main-heading{
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  padding-bottom: 1rem;
}

.blog-item .content .main-heading:hover{
  color: var(--main-color);
}

.blog-item .content p{
  padding-bottom: 2rem;
}

/*--------------------- 10- Blog Area CSS (End) ---------------------*/



/*--------------------- 11- Contact Area CSS (Start) ---------------------*/
.contact iframe{
  height: 30rem;
  width: 100%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.contact h3{
  font-size: 3rem;
  color: var(--white);
}

.contact .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

.contact-info{
  background-color: var(--secondary-color);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
}

.contact-info > p{
  color: var(--white);
  padding: 0.5rem 0;
}

.contact-info .info-item{
  padding: 1rem 0;
}

.contact-info .info-item .gmail{
  text-transform: none;
}

.contact-info .info-item h4{
  font-size: 2.2rem;
  color: var(--white);
  padding-bottom: 0.5rem;
}

.contact-info .info-item .detail{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.contact-info .info-item .detail .icon{
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
}

.contact-info .info-item .detail p{
  color: var(--white);
}

.contact .form{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
  background-color: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
}

/* Form Autofilled input fields */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--black) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.contact .form h3{
  color: var(--black);
  padding-bottom: 1rem;
}

.contact .form .box{
  width: 100%;
  background: transparent;
  border: 0.1rem solid var(--secondary-color);
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--black);
  text-transform: none;
}

.contact .form .box::-webkit-input-placeholder{
  color: var(--grey);
  text-transform: capitalize;
}

.contact .form .box::-moz-placeholder{
  color: var(--grey);
  text-transform: capitalize;
}

.contact .form .box:-ms-input-placeholder{
  color: var(--grey);
  text-transform: capitalize;
}

.contact .form .box::placeholder{
  color: var(--grey);
  text-transform: capitalize;
}

.contact .form .box:focus {
  background: transparent;
  border-color: var(--main-color);
}

.contact .form textarea {
  height: 20rem;
  resize: none;
}

.contact .alert{
  font-size: 2rem;
  color: var(--secondary-color);
  padding-left: 1rem;
}

/*--------------------- 11- Contact Area CSS (End) ---------------------*/



/*--------------------- 12- Appointment Area CSS (Start) ---------------------*/
.appointment-table{
  position: fixed;
  top: 0;
  left: 105%;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
}

.appointment-table.active{
  left: 0;
}

.appointment-table #close-appointment-form{
  position: absolute;
  top:1rem; right:1rem;
  font-size: 5rem;
  color:var(--main-color);
  cursor: pointer;
}

.appointment-table .form{
  width: 60rem;
  background-color: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  max-height: 90%;
  overflow-y: auto;
}

.appointment-table .form::-webkit-scrollbar{
  width: 0.8rem;
}

.appointment-table .form::-webkit-scrollbar-thumb{
  border-radius: 1rem;
  background-color: #0a0903;
}

.appointment-table .form::-webkit-scrollbar-track{
  background: transparent;
}

.appointment-table .form h2{
  font-size: 2.5rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1.5rem;
}

.appointment-table .form .box {
  width: 100%;
  background: transparent;
  border: 0.1rem solid var(--secondary-color);
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-transform: none;
}

.appointment-table .form .input-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.appointment-table .form .input-box .box{
  width: 49%;
}

.appointment-table .form .box::-webkit-input-placeholder {
  color: var(--grey);
  text-transform: capitalize;
}

.appointment-table .form .box::-moz-placeholder {
  color: var(--grey);
  text-transform: capitalize;
}

.appointment-table .form .box:-ms-input-placeholder {
  color: var(--grey);
  text-transform: capitalize;
}

.appointment-table .form .box::placeholder {
  color: var(--grey);
  text-transform: capitalize;
}

.appointment-table .form .box:focus {
  background: transparent;
}

.appointment-table .form textarea {
  height: 18rem;
  resize: none;
}

.appointment-table .alert{
  font-size: 2rem;
  color: var(--secondary-color);
  padding-left: 1rem;
}


/*--------------------- 12- Appointment Area CSS (End) ---------------------*/



/*--------------------- 13- Footer Area CSS (Start) ---------------------*/
.footer {
  background-color: var(--secondary-color);
  padding: 0 2rem;
}

.footer .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-item{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25rem;
      flex: 1 1 25rem;
}

.footer-item h2{
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding-bottom: 2rem;
}

.footer-item h2 span{
  color: var(--main-color);
}

.footer-item p{
  color: var(--white);
}

.footer-item .info p{
  display: block;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-item .info i{
  color: var(--main-color);
  padding-right: 1rem;
}

.footer-item .info .gmail{
  text-transform: none;
}

.footer-item .social{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-item .social a{
  display: inline-block;
  height: 4rem;
  width: 4rem;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-item .social a i{
  color: var(--main-color);
  font-size: 2rem;
}

.footer-item .social a:hover{
  background-color: var(--main-color);
}

.footer-item .social a:hover i{
  color: var(--white);
}

.footer-item .timing h3{
  color: var(--main-color);
  font-size: 2rem;
}

.footer-item .timing p{
  margin: 0.5rem 0;
}

.footer-item .links a,
.footer-item .iinks p{
  display: block;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-item .links a i,
.footer-item .links p i{
  padding-right: 0.5rem;
  color: var(--main-color);
}

.footer-item .links a:hover{
  text-decoration: underline;
}

.footer .content{
  text-align: center;
  padding: 2rem 0;
  border-top: 0.2rem solid var(--white);
}

.footer .content p{
  font-size: 2rem;
  color: var(--white);
}

.footer .content p span{
  color: var(--main-color);
}

/*--------------------- 13- Footer Area CSS (End) ---------------------*/



/*--------------------- 14- Scroll-Top (Start) ---------------------*/
.scroll-top{
  position: fixed;
  bottom: 1rem;
  right:1rem;
  height: 5rem;
  width: 5rem;
  font-size: 3rem;
  font-weight:lighter;
  color: var(--main-color);
  background: var(--white);
  border-radius: 50%;
  border: 0.2rem solid var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 999;
}

.scroll-top:hover{
  background: var(--main-color);
  color:var(--white);
}

/*--------------------- 14- Scroll-Top (End) ---------------------*/

/*--------------------- 15- Enhanced Navigation Effects (Start) ---------------------*/

/* Smooth page transitions */
.nav-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state indicator */
.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--main-color);
  border-radius: 2px;
  animation: activeIndicator 0.3s ease-in-out;
}

@keyframes activeIndicator {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 20px;
    opacity: 1;
  }
}

/* Hover effects for navigation items */
.nav-link:hover {
  transform: translateY(-2px);
}

/* Logo animation on page load */
.header .logo h2 {
  animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation items staggered animation */
.header .navbar a {
  animation: navItemFadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.header .navbar a:nth-child(1) { animation-delay: 0.1s; }
.header .navbar a:nth-child(2) { animation-delay: 0.2s; }
.header .navbar a:nth-child(3) { animation-delay: 0.3s; }
.header .navbar a:nth-child(4) { animation-delay: 0.4s; }
.header .navbar a:nth-child(5) { animation-delay: 0.5s; }
.header .navbar a:nth-child(6) { animation-delay: 0.6s; }
.header .navbar a:nth-child(7) { animation-delay: 0.7s; }
.header .navbar a:nth-child(8) { animation-delay: 0.8s; }

@keyframes navItemFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Appointment button animation */
.header .appointment-btn {
  animation: appointmentBtnFadeIn 1s ease-out 0.8s both;
}

@keyframes appointmentBtnFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------- 15- Enhanced Navigation Effects (End) ---------------------*/

/*--------------------- 16- Page Transition Effects (Start) ---------------------*/

/* Page transition overlay */
.page-transitioning::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  z-index: 9999;
  opacity: 0;
  animation: pageTransition 0.6s ease-in-out;
}

@keyframes pageTransition {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Loading spinner for page transitions */
.page-transitioning::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 3px solid transparent;
  border-top: 3px solid var(--white);
  border-radius: 50%;
  z-index: 10000;
  animation: spin 1s linear infinite;
}

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

/* Smooth fade-in for page content */
body {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.page-transitioning {
  opacity: 0.8;
}

/*--------------------- 16- Page Transition Effects (End) ---------------------*/

/*--------------------- 17- SEO Content Area CSS (Start) ---------------------*/

/* SEO Content Added to Existing Sections */
.seo-info h3,
.seo-benefits h3 {
  color: var(--secondary-color);
  font-size: 2.2rem;
  margin: 2rem 0 1.5rem 0;
}

.seo-info p {
  font-size: 1.6rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.seo-info strong {
  color: var(--secondary-color);
}

.seo-benefits ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.seo-benefits li {
  font-size: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.seo-benefits li:before {
  content: "✓";
  color: var(--main-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.seo-contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--main-color);
}

.seo-contact-info p {
  font-size: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.seo-contact-info strong {
  color: var(--secondary-color);
}

/* Responsive adjustments for added content */
@media (max-width: 768px) {
  .seo-info h3,
  .seo-benefits h3 {
    font-size: 2rem;
  }
  
  .seo-info p,
  .seo-benefits li {
    font-size: 1.4rem;
  }
  
  .seo-contact-info {
    padding: 1.5rem;
  }
}

/* SEO Content Section */
.seo-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 5%;
}

.seo-content .heading h2 {
  text-align: center;
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.seo-content .heading h2 span {
  color: var(--main-color);
}

/* SEO Boxes */
.seo-content .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.seo-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.seo-box:hover {
  transform: translateY(-5px);
  border-color: var(--main-color);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.seo-box .icon {
  font-size: 4rem;
  color: var(--main-color);
  margin-bottom: 1.5rem;
}

.seo-box h3 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.seo-box p {
  font-size: 1.6rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.seo-box .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--main-color);
  background: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  display: inline-block;
}

/* SEO Details */
.seo-details {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

/* Why Choose Us Section */
.why-choose {
  margin-bottom: 4rem;
}

.why-choose h3 {
  font-size: 2.4rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid var(--main-color);
}

.benefit-item i {
  color: var(--main-color);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.4;
}

/* Process Steps Section */
.process-steps {
  margin-bottom: 4rem;
}

.process-steps h3 {
  font-size: 2.4rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
}

.step-number {
  background: var(--main-color);
  color: var(--secondary-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step p {
  font-size: 1.4rem;
  color: var(--secondary-color);
  line-height: 1.4;
  margin: 0;
}

/* Important Information Section */
.important-info {
  margin-bottom: 4rem;
}

.important-info h3 {
  font-size: 2.4rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.info-content p {
  font-size: 1.6rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.info-content strong {
  color: var(--secondary-color);
}

/* Contact CTA Section */
.contact-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--secondary-color), #024a7a);
  border-radius: 1rem;
  color: var(--white);
}

.contact-cta h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons .btn.primary {
  background: var(--main-color);
  color: var(--secondary-color);
}

.cta-buttons .btn.primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.cta-buttons .btn.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-buttons .btn.secondary:hover {
  background: var(--white);
  color: var(--secondary-color);
}

.contact-cta p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for SEO Content */
@media (max-width: 768px) {
  .seo-content .box-container {
    grid-template-columns: 1fr;
  }
  
  .benefits {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 25rem;
  }
  
  .seo-details {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .seo-content .heading h2 {
    font-size: 2.8rem;
  }
  
  .seo-box h3 {
    font-size: 1.8rem;
  }
  
  .why-choose h3,
  .process-steps h3,
  .important-info h3,
  .contact-cta h3 {
    font-size: 2rem;
  }
}

/*--------------------- 17- SEO Content Area CSS (End) ---------------------*/