body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #EEEEEE;
  color: #2A4759;
}

/* Navbar */
nav {
  background-color: #2A4759;
  padding: 15px;
  text-align: center;
}

nav a {
  color: #FFFFFF;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #F79B72;
}

/* About Page */
.about-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  background-color: #DDDDDD;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-container h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  padding-top: 30px;
}

.about-container p {
  font-size: 1.1em;
  line-height: 1.6;
  padding: 0 20px 40px 20px;
}

/* Services Page */
.services-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.services-section h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2A4759;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #DDDDDD;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2A4759;
}

.service-desc {
  font-size: 1em;
  color: #333;
}

/* Contact Page */
.contact-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  background-color: #DDDDDD;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.contact-info a {
  color: #2A4759;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  color: #F79B72;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

button {
  background-color: #F79B72;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e68a60;
}
/* Navigation Styles */
.navbar {
  background-color: #2A4759;
  padding: 15px 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .brand {
  color: #fff;
  font-size: 1.5em;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  color: white;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #2A4759;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.footer {
  background-color: #2A4759;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer a {
  color: #F79B72;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer i {
  margin-right: 5px;
}
.about-section {
  background-color: #EEEEEE;
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  color: #2A4759;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
}
.testimonials {
  padding: 60px 20px;
  background-color: #eeeeee;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2A4759;
  font-family: 'Poppins', sans-serif;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 0.95em;
}

.client-name {
  font-weight: bold;
  margin-top: 10px;
  color: #2A4759;
}
.footer-link {
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  font-size: 16px;
}

.footer-link i {
  margin-right: 5px;
}

/* Custom colors */
.footer-link.whatsapp i {
  color: #25D366; /* WhatsApp green */
}

.footer-link.email i {
  color: #F79B72;  /* Theme orange */
}

.footer-link.instagram i {
  color: #E1306C;  /* Instagram pink */
}
.cta-section {
  background-color: #f79b72;
  color: white;
  text-align: center;
  padding: 80px 20px 70px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

.cta-section p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  background-color: #0c354e;
  color: white;
  padding: 16px 36px;
  border-radius: 35px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #1c333f;
  transform: scale(1.05);
}

/* Bouncing animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bounce {
  animation: bounce 1.8s infinite;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  margin-top: -5px;
}
body {
  background: url('https://images.unsplash.com/photo-1420496368970-d83b063b5b48?fit=crop&fm=jpg&h=700&q=80&w=1225') no-repeat center center;
  background-size: 1400px 700px;
  background-position: 30%;
  background-attachment: fixed;
}


.text {
  font-family: raleway;
  font-size: 40px;
  position: absolute center;
  text-align: center;
  padding-left: 0%;
  color: #000;
  margin-top: 43px;
}

.text1 {
  font-family: raleway;
  font-size: 21px;
  text-align: center;
  margin-top: -20px;
  color: #000;
}

.image {
  text-align: center;
  width: 200px;
  /* Container's dimensions */
  
  height: 200px;
  -webkit-border-radius: 75%;
  -moz-border-radius: 75%;
  box-shadow: 0 0 0 1px #eee;
  background: url("https://images.unsplash.com/reserve/ysPfhVSzSP2m629CW0mw_selfPortrait.jpg?fit=crop&fm=jpg&h=700&q=80&w=1225") center center no-repeat;
  background-size: cover;
  margin: auto;
  margin-top: 20px;
  margin-bottom: -30px;
  align-content: center;
}



.trick {
  display: inline-block;
  vertical-align: middle;
  height: 150px;
}

.image:hover {
  box-shadow: 0px 5px 20px .9px #3F3F3F;
}

.image:hover {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
  -webkit-transition: 1.6s ease-in-out;
  transition: 1.6s ease-in-out;
}



.trick:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#overlay {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  padding: 0 0 0 0;
  opacity: 1.0;
  -webkit-transition: opacity 2.25s ease;
  -moz-transition: opacity 10.25s ease;
}

#box:hover #overlay {
  opacity: 1;
}





.panel-group{
  width:350px;
  margin:auto;
  /*margin:50px 400px 50px 400px;*/
  max-width:100%;
}

.panel-heading{
  background-color:transparent !important;
}

.title{
  text-align: center;
  background-color:transparent;
  color:#000;
  font-family:lato;
  font-weight:300;
  font-size:15px;
  max-width:100%;
}




#accordion{
  background-color: transparent;
  max-width:100%;
  margin-bottom:200px;
}







.btn-outline {
  color: inherit;
  transition: all 1.4s;
  background-color: transparent;
}
/* button CSS */

.btn-danger.btn-outline {
  margin-top: 9px;
  background-color: transparent;
  color: #000;
  border-color: #000;
  padding:auto;
  padding:10px 0px 10px 0px;
  margin: 1px 5px 1px 0px;
  width: 100%;
  text-align:center;
  font-family: raleway;
  font-weight: 300;
  max-width:100%;
}


















/*---------    Contact Form    ------------*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000;
  font-size: 15px;
}
/* on hover placeholder */

input:hover::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder {
  color: #fff;
  font-size: 15px;
  font-family: raleway;
}

input:hover:focus::-webkit-input-placeholder,
textarea:hover:focus::-webkit-input-placeholder {
  color: #fff;
  font-family: raleway;
}

input:hover::-moz-placeholder,
textarea:hover::-moz-placeholder {
  color: #fff;
  font-size: 15px;
  font-family: raleway;
}

input:hover:focus::-moz-placeholder,
textarea:hover:focus::-moz-placeholder {
  color: #fff;
  font-family: raleway;
}

input:hover::placeholder,
textarea:hover::placeholder {
  color: #fff;
  font-size: 15px;
  font-family: raleway;
}

input:hover:focus::placeholder,
textarea:hover:focus::placeholder {
  color: #fff;
  font-family: raleway;
}

input:hover::placeholder,
textarea:hover::placeholder {
  color: #fff;
  font-size: 15px;
  font-family: raleway;
}

input:hover:focus::-ms-placeholder,
textarea:hover::focus:-ms-placeholder {
  color: #fff;
  font-family: raleway;
}

#form {
  position: relative;
  width: 100%;
  margin: 0px auto 0px auto;
  font-family: raleway;
}

input {
  font-family: raleway;
  font-size: 15px;
  width: 100%;
  height: 50px;
  padding: 0px 12px 0px 12px;
  background: transparent;
  outline: none;
  color: #726659;
  border: solid 1px #eee;
  border-bottom: none;
  transition: all 0.9s ease-in-out;
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  -ms-transition: all 0.9s ease-in-out;
}

input:hover {
  background: #ccc;
  color: #fff;
  font-family: raleway;
}

textarea {
  width: 100%;
  max-width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  background: transparent;
  outline: none;
  color: #000;
  font-family: raleway;
  font-size: 25px;
  border: solid 1px #eee;
  transition: all 0.9s ease-in-out;
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  -ms-transition: all 0.9s ease-in-out;
}

textarea:hover {
  background: #ccc;
  color: #fff;
  font-family: raleway;
}

#submit {
  width: 100%;
  padding: 0;
  font-family: raleway;
  font-size: 20px;
  color: #000;
  outline: none;
  cursor: pointer;
  border: solid 1px #eee;
  border-top: none;
  margin-bottom: 0px;
}

#submit:hover {
  color: #fff;
  background-color: #ccc;
}
.hoor-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #F79B72;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  z-index: 9999;
  animation: popPulse 2s ease-in-out infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hoor-btn:hover {
  background-color: #e7683f;
  transform: scale(1.1);
}

.hoor-btn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes popPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .hoor-btn span {
    display: none;
  }

  .hoor-btn {
    padding: 10px;
    border-radius: 50%;
  }
}
.cta-glow-btn {
  background-color: #F79B72;
  color: white;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(247, 155, 114, 0.6);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  display: inline-block;
}

.cta-glow-btn:hover {
  background-color: #ff966f;
  box-shadow: 0 0 25px rgba(247, 155, 114, 0.9);
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(247, 155, 114, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(247, 155, 114, 1);
  }
  100% {
    box-shadow: 0 0 10px rgba(247, 155, 114, 0.4);
  }
}
