body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Navigation Bar */
header {
  background-color: none;
  color: #f5b1b1;
  backdrop-filter: blur(20px);
  border: 2px solid hsla(0, 0%, 96%, 0.589);
  padding: 10px 0;
  position: relative;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 50px;
  border-radius: 50%;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #076590;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  padding: 8px 12px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  color: #000;
}

/* Mobile Navigation Bar */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #076590;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: none;
  color: #f5b1b1;
  backdrop-filter: blur(300px);
  border: 2px solid hsla(0, 0%, 96%, 0.589);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #076590;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #ffffff;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media (max-width: 918px) {
  .nav-links {
      display: none;
  }

  .menu-icon {
      display: block;
  }

  .logo {
      left: 50%;
      transform: translateX(-50%);
  }
}

/* hero */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: auto;
  overflow: hidden;
}

@media (max-width: 918px) {
  .hero {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: auto;
    overflow: hidden;
  }
}

.hero .overlay-itro {
  background-color: rgba(0, 0, 0, 0.6);;
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.hero-message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 170px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 8px;
  font-size: 24px;
}
/* hero */

.brochure:hover {
  background: transparent;
  color: #15151e;
  border: 3px solid #076590;
}

.brochure {
  padding: 10px 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #076590;
  border-radius: 20px;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  letter-spacing: .1rem;
  font-weight: 600;
  border: 3px solid transparent;
  width: auto;
  height: 60px;
}

/* home page */
main {
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

@media (max-width:700px){
  .main-gallery {
    width: 400px;
  }
}

section {
  margin-bottom: 32px;
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.services h2 {
  color: #076590;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 35px;
}

.service-item {
  background-color: #076590;
  color: #FFFFFF;
  padding: 20px;
  margin: 10px;
  width: 250px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

@media (max-width: 450px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    left: -10%;
    gap: 50px;
  }

  .service-item {
    width: 170px;
    height: 300px;
  }

  .service-item p {
    font-size: x-small;
    bottom: 25px;
  }

  .service-item h3 {
    bottom: 20px;
    font-size: medium;
  }
}

.service-item:hover {
  transform: scale(1.05);
}

.service-item h3 {
  position: relative;
  color: #FFCC00;
  text-align: center;
}

.service-item p {
  margin: 0;
  position: relative;
}

/******** Service Cards ******/
.container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
  position: relative;
  left: 20px;
	align-content: center;
	padding: 2rem;
  background-color: #fff;
}

@media (max-width: 450px) {
  .container { 
    left: -7%;
  }
}

.container_text {
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.card-h2 {
	position: relative;
	font-size: 25px;
}

@media (max-width: 450px) {
  .card-h2 {
    bottom: 6rem;
  }

  .card-para {
    bottom: 7rem;
  }  

  .card-h2-hr {
    position: relative;
    bottom: 7rem;
  }
}

.card-para {
  position: relative;
	color: #555555;
  text-align: center;
}

.card {
	border: 2px solid #076590;
  padding: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
  justify-content: center;
	border-radius: 20px;
}

@media (max-width: 768px) {
  .card { 
    gap: 100px;
    height: 100%;
  }
}

.card-front img {
	width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  left: 0;
	border-radius: 10px; 
}
.img_wrapper {
	position: relative;
}
.read-more {
	text-decoration: none;
	color: white;
}

.round_wrapper {
	width: 60px;
	height: 60px;
	background-color: #076590;
	border-radius: 100%;
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn {
	position: absolute;
	bottom: 0em;
	right: 0rem;
	width: 5rem;
	height: 5rem;
	background: white;
	border-top-left-radius: 50%;
}

.btn :hover {
  transform: scale(1.05);
}

.card-front {
	background-color: white;
	position: relative;
	top: 0;
	left: 0;
	width: 300px;
}

.card_container {
	position: relative;
	width: 200px;
  flex: 1;
  margin-bottom: 20px;
}

/* home page*/

/* contact page */

.additional-info {
  margin-top: 20px;
  align-items: center;
}

.additional-info h2 {
   margin-bottom: 10px;
}

.additional-info p {
  text-align: center;
}

.social-media-1 a:hover {
  color: #076590;
}

.contact {
  width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(7, 101 ,144 ,1);
  border-radius: 15px;
}

@media ( max-width: 918px) {
  .contact {
    width: 310px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(7, 101, 144, 1);
    border-radius: 15px;
  }
}

.contact h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #15151e;
}

.underline-hr {
  width: 80px;
  height: 3px;
  background-color: #076590;
  border: 1px solid #076590
}

.contact p {
  font-size: 19px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width:918px) {
  .contact p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
  }
}

.contact #contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-field {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.social-media-contact {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.social-media-contact a {
  color: #076590;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.social-media-contact a:hover {
  color: rgba(7, 101, 144, 1);
}

#contact-button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #076590;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact-button:hover {
  color: #076590;
  background-color: #15151e;
	-webkit-animation: tracking-in-expand-fwd 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand-fwd 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand-fwd {
	0% {
	  letter-spacing: -0.5em;
	  -webkit-transform: translateZ(-700px);
			  transform: translateZ(-700px);
	  opacity: 0;
	}
	40% {
	  opacity: 0.6;
	}
	100% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  opacity: 1;
	}
  }
  @keyframes tracking-in-expand-fwd {
	0% {
	  letter-spacing: -0.5em;
	  -webkit-transform: translateZ(-700px);
			  transform: translateZ(-700px);
	  opacity: 1;
	}
	40% {
	  opacity: 1;
	}
	100% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  opacity: 1;
	}
  }

#contact-feedback {
  margin-top: 10px;
  font-size: 30px;
  color: #15151e;
}

.call-sec h2 {
  text-align: center;
}
/* contact page */

/**** gallery page ****/
* {box-sizing:border-box}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  box-shadow: 0 0 10px rgba(7, 101, 144, 1);
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #076590;
  background-color: #15151e;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.4);
}

.text {
  color: #076590;
  font-size: 20px;
  font-weight: bolder;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #076590;
  font-size: 18px;
  font-weight: bolder;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10 2px;
  background-color: #15151e;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #076590;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.cursor-carousel h2 {
  text-align: center;
}

.fullscreen-gallery {
  border: 2px solid #076590;
  width: 650px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
  margin: auto;
  border-radius: 20px;
}

.fullscreen-gallery img {
  width: 150px;
  cursor: pointer;
  margin: 5px;
  border-radius: 20px;
  border: 2px solid #076590;
}

@media (max-width: 450px) {
  .fullscreen-gallery {
      width: 300px;
      grid-template-columns: repeat(auto-fit,minmax(100px, 1fr));
      gap: 10px;
      position: relative;
      left: 0;
  }

  .fullscreen-gallery img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin: 0;
  }
}

.fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.fullscreen img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

@media (max-width: 450px) {
  .fullscreen {
    width: 100vw;
    height: 100vh;
  }

  .fullscreen img {
    max-width: 80%;
    max-height: 80%;
  }
} 

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  color: #076590;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  cursor: pointer;
  background: none;
  border: none;
  color: #076590;
}

.prev-btn img, .next-btn img {
  width: 50px;
}

.prev-btn { 
  left: 20px; 
}
  
.next-btn {
  right: 20px; 
}

.gallery {
  --size: 100px;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(6, var(--size));
  grid-auto-rows: var(--size);
  margin-bottom: var(--size);
  place-items: start center;
  gap: 5px;
  
  &:has(:hover) img:not(:hover),
  &:has(:focus) img:not(:focus){
    filter: brightness(0.5) contrast(0.5);
  }

  & img {
    object-fit: cover;
    width: calc(var(--size) * 2);
    height: calc(var(--size) * 2);
    clip-path: path("M90,10 C100,0 100,0 110,10 190,90 190,90 190,90 200,100 200,100 190,110 190,110 110,190 110,190 100,200 100,200 90,190 90,190 10,110 10,110 0,100 0,100 10,90Z");
    transition: clip-path 0.25s, filter 0.75s;
    grid-column: auto / span 2;
    border-radius: 5px;

    &:nth-child(5n - 1) { 
      grid-column: 2 / span 2 
    }

    &:hover,
    &:focus {
      clip-path: path("M0,0 C0,0 200,0 200,0 200,0 200,100 200,100 200,100 200,200 200,200 200,200 100,200 100,200 100,200 100,200 0,200 0,200 0,100 0,100 0,100 0,100 0,100Z");
      z-index: 1;
      transition: clip-path 0.25s, filter 0.25s;
      border: 2px solid #FFCC00;
    }
    
    &:focus {
      outline: 1px dashed black;
      outline-offset: -5px;
    }
  }
}

.gallery-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  position: relative;
  left: 22%;
  width: 700px;
  gap: 10px;
}

@media (max-width: 768px) {
  .gallery-2 {
    left: 4%;
    gap: 5px;
  }
}

@media (max-width: 450px) {
  .gallery-2 {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    width: 100%;
    height: auto;
    left: 0;
  }
}

.image-container {
  margin: 10px;
  transition: all 0.3s ease-in-out;
}

.image-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

@media (max-width: 450px) {
  .image-container img {
    width: 100px;
    height: 100px;
  }
}

.image-container img:hover {
  border-radius: 20px;
  border: 2px solid #FFCC00;
}

.gallery-2:hover .image-container:not(:hover) {
  filter: brightness(0.3);
}

.image-container:hover {
  transform: scale(1.5);
  z-index: 1;
}

.mail-hr {
  width: 50%;
  height: 3px;
  background-color: #076590;
}

.mail-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide-mail {
  display: flex;
  animation: slide 10s infinite;
}

.slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide h1 {
  position: absolute;
  bottom: 100px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
}

@keyframes slide {
  0%, 50%, 100% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
}

.mail-area {
  background-color: #15151e;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.mail-area h2 {
  margin-bottom: 10px;
}

.mail-area .form-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mail-area .form-field label {
  font-size: 1.2em;
}

.mail-area .form-field input {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  width: 200px;
}

@media (max-width:500px) {
    .mail-area .form-field input {
        width: 200px;
    }
}

.mail-area .form-field button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #076590;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.mail-area .form-field button:hover {
  background-color: #076590;
}

.mail-area .form-field p {
  margin-top: 10px;
  font-size: 1em;
  color: #ff0;
}

/*****Services Page****/
.service-main {
  flex: 1;
  padding: 20px;
}

.service-main h1 {
  margin-top: 0;
  text-align: center;
}

.content-wrapper-1 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pricing-heading {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.pricing-hr {
  width: 100px;
  border: 2px solid #076590;
}

.pricing-hr-2 {
  width: 200px;
  border: 2px solid #076590;
}

.content-column {
  flex: 1;
  padding: 0 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #076590;
  border-right: 2px solid #076590;
  border-bottom-right-radius: 15px;
}

@media (max-width: 450px) {

  .content-wrapper-1 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .content-column {
    height: 480px;
    width: 180px;
  }
  
  .content-column h2 {
    font-size: medium;
  }

  .card-li {
    font-size: small;
  }

  .pricing-hr-2 {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .pricing-hr-2 {
    width: 100px;
  }
}

.card-heading {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  font-family: cursive;
}

ul.card-li {
  border-radius: 5px;
  padding: 8px 16px 16px 36.8px;
  position: relative;
}

ul.card-li li {
  line-height: 1.5;
  padding: 8px 0;
  list-style-type: none!important;
}

ul.card-li li:before {
  font-family: FontAwesome;
  content: "\00D7";
  position: absolute;
  left : 16px;
  color: royalblue;
}


/* footer */
.links a {
	font-family: 'Times New Roman', Times, serif;
	font-size: 19px;
	color: #fff;
	background-color: transparent;
  text-decoration: none;
  word-spacing: 10px;
}
.links :hover {
  background-color: #15151e;
  color: #076590;
}

footer {
  background-color: #15151e;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.social-media {
  margin-bottom: 1rem;
}

.social-media a {
  color: #076590;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.social-media a:hover {
  color: #ffffff;
}

.external-links {
  margin-bottom: 1rem;
}

.external-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  display: inline-block;
}

.external-links a:hover {
  color: #076590;
}
/* footer*/

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

