body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color:#ffc5c5;
 
}


/* loader */
#loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffc5c5;
  border-radius: 15px; /* Rounded corners */
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow */
  height: 200vh;
}

#loader img {
  width: 200px; /* Adjust size of the logo */
  height: auto;
  margin-top: 0px;
  border-radius: 50%; /* Make image circular */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* 3D effect with shadow */
  transition: transform 0.3s; /* Smooth transformation on hover */
}


/* 3D Effect on Hover */
#loader img:hover {
  transform: translateY(-5px) scale(1.05); /* Lift and scale effect */
}

/* Main container for the text */
#line1 {
  display: flex;
  flex-direction: column;  /* Stack the headings vertically */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 90vw;
  margin: 20px auto;  /* Center the container */
  padding: 2rem;  /* Adds padding for better spacing */
  background-color: #d38d8d; /* Soft background color */
  border-radius: 10px;  /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Adds a soft shadow */
}

/* Style for both heading texts */
#loading-text-1, #loading-text-2 {
  font-size: 2rem;  /* Initial font size */
  font-weight: bold;
  text-align: center;
  color: #333;  /* Dark color for readability */
  margin: 0.5rem 0;  /* Space between headings */
  padding: 0.5rem 1rem;
  word-wrap: break-word;
  line-height: 1.4;  /* Improves readability */
}

/* Media query for tablet screens */
@media (max-width: 768px) {
  #loading-text-1, #loading-text-2 {
    font-size: 1.8rem;  /* Slightly smaller font for tablets */
    padding: 0.5rem;
  }

  #line1 {
    padding: 1.5rem;  /* Adjust container padding for tablets */
  }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
  #loading-text-1, #loading-text-2 {
    font-size: 1.4rem;  /* Smaller font for mobile screens */
    padding: 0.5rem;
  }

  #line1 {
    padding: 1rem;
    box-shadow: none;  /* Simplified on small screens */
  }
}







h1, .h1 {
  font-size: 1.7rem;
}
.layout_padding {
	padding-top: 90px;
	padding-bottom: 90px;
	background-color:#ffc5c5;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heading_container h2 {
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 42px;
}
/*header section*/
.hero_area {
	height: calc(100vh - 30px);
	background-color: #e29a9a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	/* color: white; */

}

.sub_page .hero_area {
  height: auto;
  background: none;
	background-color:#ffc5c5;
}

.hero_area.sub_pages {
  height: auto;
}

/* navbar  */

#navbar{
  
  background-color:#ffc5c5;
  color: black;
  
}
.navbar-toggler {
	padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
	font-size: var(--bs-navbar-toggler-font-size);
	line-height: 1;
	color: var(--bs-navbar-color);
	background-color: transparent;
	border: none;
	border-radius: var(--bs-navbar-toggler-border-radius);
	transition: var(--bs-navbar-toggler-transition);
}


#logo {
	width: 59px;
	height: 59px;

}

#logo img {
	width: 100%;
	height: 100%;
	border-radius: 19px;
}

/* Responsive Styles */
@media (min-width: 990px) {
  #navbarNav{
    /* background: red; */
    display: flex;
    justify-content:right;
  
  }
  }


  /* Keyframes for fade-in and scaling animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8); /* Start smaller */
  }
  to {
    opacity: 1;
    transform: scale(1); /* End at original size */
  }
}

/* Initial fade-in animation on page load */
#logo img {
  opacity: 0; /* Start hidden */
  animation: fadeInScale 02s ease forwards; /* Fade-in and scale up */
  animation-delay: .1s;
}

/* Hover effect for scaling the logo */
#logo img:hover {
  transform: scale(1.1); /* Scale the logo up slightly */
  transition: transform 0.3s ease; /* Smooth scaling on hover */
}


  .navbar , .navbar-expand-lg{
    margin: 0px 30px;
  }

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .row > div {
  position: unset;
}

.slider_section .detail-box h1 {
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
}

.slider_section .detail-box p {
	color: #000;
	margin-top: 15px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 45px -5px 0 -5px;
}

.slider_section .detail-box .btn-box a {
  text-align: center;
  width: 165px;
  font-size: 15px;
  margin: 5px;
}

.slider_section .detail-box .btn-box .btn-1 {
	display: inline-block;
	padding: 10px 0;
	background-color:#ffc5c5;
	color: #ffffff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid transparent;
	border-radius: 0;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color:none;
  color: #ffffff;
}


.slider_section .img-container .img-box img {
  width: 100%;
}

.slider_section #carouselExampleIndicators {
  position: unset;
  width: 100%;
}

.slider_section .carousel_btn-container {
  width: 120px;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 8.5%;
  z-index: 999;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.slider_section .carousel_btn-container .carousel-control-prev,
.slider_section .carousel_btn-container .carousel-control-next {
  position: relative;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
	background-color:#ffc5c5;
  margin: 2px;
}

.slider_section .carousel_btn-container .carousel-control-prev:hover,
.slider_section .carousel_btn-container .carousel-control-next:hover {
  background-color: #ff4f5a;
}

.slider_section .carousel_btn-container .carousel-control-prev {
	background-image: url(../images/prev.png);
	background-color: black;
}

.slider_section .carousel_btn-container .carousel-control-next {
  background-image: url(../images/next.png);
  background-color: black;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  width: 75px;
  bottom: 45px;
  left: initial;
  right: 25px;
}

.slider_section ol.carousel-indicators li {
  border-radius: 100%;
  text-indent: 0px;
  text-align: center;
  line-height: 55px;
  color: #ffffff;
  background-color: transparent;
  opacity: 1;
  display: none;
}

.slider_section ol.carousel-indicators li.active {
  display: block;
}

/* Custom fade animation for carousel */
.custom-fade-carousel .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Fade transition time */
}

.custom-fade-carousel .carousel-item.active {
  opacity: 1;
}






.category_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 15px;
  cursor: pointer;
}


.box:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.img-box img {
  transition: transform 0.3s ease;
}

.box:hover .img-box img {
  transform: rotate(10deg) scale(1.1);
}

.detail-box h5 {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}




/* about */
.about_section {
  text-align: center;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box h2 {
  font-weight: bold;
  text-transform: uppercase;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ff4f5a;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 0;
  margin-top: 25px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #ff4f5a;
  color: #ff4f5a;
}



/* .freelance_section */
.freelance_section {
  background-color: #ffc5c5;
}

.freelance_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.freelance_section .tab_container .t-link-box {
  margin: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out; /* Added transition for smooth effect */
}

.freelance_section .tab_container .t-link-box:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
}

.freelance_section .tab_container .t-link-box .img-box {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  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: #1a2e35;
  border-radius: 100%;
  margin-right: 35px;
  transition: transform 0.4s ease-in-out, background-color 0.3s ease; /* 3D hover effect */
}

.freelance_section .tab_container .t-link-box .img-box:hover {
  transform: rotateY(180deg); /* 3D effect on hover */
}

.freelance_section .tab_container .t-link-box .img-box img {
  width: auto;
  height: auto;
  max-width: 73px;
  max-height: 70px;
  background: #90787854;
  border-radius: 29px;
  padding: 11px;
  margin: 4px;
  transition: transform 0.5s ease-in-out; /* For smoother image transition */
}

.freelance_section .tab_container .t-link-box .img-box img:hover {
  transform: scale(1.2); /* Image zoom on hover */
}

.freelance_section .tab_container .t-link-box .detail-box h5 {
  font-weight: bold;
  color: #ff4f5a;
  animation: fadeInText 1.5s ease-in-out; /* Text animation */
  transition: color 0.3s ease;
}

.freelance_section .tab_container .t-link-box .detail-box h5:hover {
  color: #252525;
}

.freelance_section .tab_container .t-link-box .detail-box h3 {
  font-weight: bold;
  color: #252525;
  animation: bounceIn 1s ease-out; /* Bouncy text animation */
  transition: color 0.3s ease;
}

.freelance_section .tab_container .t-link-box .detail-box h3:hover {
  color: #ff4f5a;
}

.freelance_section .tab_container .t-link-box[aria-expanded="true"] .img-box,
.freelance_section .tab_container .t-link-box .img-box {
  background-color: #ffc5c5;
}

.freelance_section .img-box img {
  width: 100%;
}


.hover-3d img{
  transform: scale(1.01); /* 3D rotation and scaling */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Adds depth with a shadow */
}


/* Keyframes for text animations */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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




/* testimonals */
.client_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

.client_section .detail-box {
  text-align: center;
  margin: 25px 35px;
  padding: 45px 65px 35px 65px;
  background-color: #b1b9b1c7;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2); /* Increased shadow for depth */
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2); /* Increased shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.client_section .detail-box:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.client_section .detail-box h4 {
  font-weight: bold;
}

.client_section .detail-box p {
  margin-top: 15px;
  margin-bottom: 25px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 50%;
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%; /* Circular shape */
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  background-color: #1a2e35;
  margin: 2px;
  
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2); /* Shadow for 3D effect */
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2); /* Shadow for 3D effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.client_section .carousel-control-prev {
  background-image: url(../images/prev-angle.png);
}

.client_section .carousel-control-next {
  background-image: url(../images/next-angle.png);
}


/* Base styles for heading */
.heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.heading_container h2 {
  font-size: 32px;
  color: #333;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}


.heading_hover_effect h2:hover {
  color: #ff4f5a; /* Change text color on hover */
}

/* Underline grow effect on hover */
.heading_hover_effect h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background-color: #ff4f5a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.heading_hover_effect h2:hover::after {
  transform: scaleX(1); /* Underline expands on hover */
}

















/* Footer Section */
.footer_section {
	background-color: #ffc5c5;
	color: black;
	padding: 20px 0;
}
#contact-info{
  font-size: 1.5rem;}
.logo-text {
  font-size: 2rem; /* Logo text size */
  font-weight: bold; /* Bold font for logo */
  color: white; /* Logo text color */
  transition: transform 0.3s; /* Animation for hover */
}

.clickable a{
  text-decoration: none;
  border: none;
  color: black;
}


.logo-text:hover {
  transform: scale(1.1); /* Scale effect on hover */
}

.nav {
  margin-bottom: 20px; /* Space below navigation links */
}
.nav-link {
  position: relative;
  color: #000000; /* Default color */
  text-decoration: none;
  transition: color 0.2s ease; /* Smooth color transition */

}
/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.nav-link {
  opacity: 0; /* Start hidden */
  animation: fadeIn 1.5s ease forwards; /* 1.5 seconds fade-in */
  animation-delay: 0.5s; /* Delay for visual effect */
}


@media (max-width: 992px) {
  .nav-link {
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s ease forwards; /* 1.5 seconds fade-in */
    animation-delay: 0s; /* Delay for visual effect */
  }
  
  /* Add delay for each link */
  .nav-link:nth-child(1) {
    animation-delay: 0s;
  }
  
  .nav-link:nth-child(2) {
    animation-delay: 0s;
  }
  
  .nav-link:nth-child(3) {
    animation-delay: 0s;
  }
}

/* Add hover effect for the nav links */
.nav-link:hover {
  color: #8e8585;
  transition: color 0.3s ease; /* Smooth transition on hover */
}
.nav-link::after {

  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px; /* Position the underline slightly below the text */
  left: 50%;
  background-color: #ffffff; /* Underline color */
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
  color: #ffffff; /* Hover color */
}

.nav-link:hover::after {
  width: 100%; /* Expand underline */
  left: 0;

}


.text-center {
  text-align: center; /* Center text for contact info and copyright */
}

.map-container {
  margin: 20px 0; /* Margin for map */
  overflow: hidden; /* Contain the map */
}



iframe {
  width: 100%; /* Full width for responsiveness */
  height: 300px; /* Fixed height for the map */
  border: none; /* No border */
}

.social-icon {
	width: 90px;
	height: auto;
	transition: transform 0.3s;
	border-radius: 14px;
}

.social-icon:hover {
  transform: scale(1.1); /* Scale effect on hover */
}
.nav-link {
  font-size: 1.2rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .footer_section {
      padding: 15px 0; /* Reduced padding on smaller screens */
  }

  .logo-text {
      font-size: 1.5rem; /* Smaller logo text on mobile */
  }

  .nav-link {
    font-size: 1.2rem;
  }

  iframe {
      height: 200px; /* Reduced height for the map on mobile */
  }

  .social-icon {
    width: 96px;
    border-radius: 12px;
  }
}














/* registration modal */

 /* Modal background and padding */
 .modal-dialog {
  max-width: 700px;
  margin: 30px auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal animation for fading in */
.modal.fade .modal-dialog {
  transform: translate(0, -100px);
  transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  transform: translate(0, 0);
}

/* Custom styling for modal content */
.custom-modal-content {
  background-color: #ffc5c5;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  font-size: 24px;
  color: #000000;
  font-weight: 600;
}

.modal-body label {
  font-weight: bold;
}

/* Input field custom styling */
.form-control {
  border: px solid #333;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;

}

/* Button Styling */
.custom-submit-btn {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.custom-submit-btn:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: #6c757d;
  border-radius: 8px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #565e64;
}

/* Responsiveness */
@media (max-width: 768px) {
  .modal-dialog {
    width: 95%;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .modal-body {
    padding: 15px;
  }
}

/* rc buttons */

  #rcbuttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
    gap: 10px; /* Adds space between the buttons */
    color: black !important;
  }

  .register-btn {
    background-color: #000;
    flex: 1;
    padding: 10px 20px;
    max-width: 200px;
    text-align: center;
    color: white !important;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  .register-btn:hover{
    background-color: #ffffff;
    color: rgb(0, 0, 0) !important; /* Text color */
  }

  /* Green background for the Register button */
  #rb {
    background-color: #49c949c7;
  }

  /* Red background for the Close button */
  #cb {
    background-color: #af2828cc;
  }
  /* Adjust button size and layout on smaller screens */
  @media (max-width: 600px) {
    .register-btn {
      flex-basis: 100%; /* Makes buttons take full width on small screens */
    }
  }


  .modal {
    --bs-modal-bg: #d98e8e;
  }


  .close {
    font-size: 2.5rem;

  }







/* Ensure logo container is a flexbox */
#logo {
  display: flex;
  align-items: center;
  gap: 10px; /* Adds space between the image and the text */
}

/* Make image responsive */
#logo img {
  max-width: 100%;
  height: auto;
  width: 50px; /* You can adjust this as per your need */
}

/* Make the text responsive */
#logo h2 {
  margin: 0;
  font-size: 2rem; /* Default size for large screens */
  font-weight: bold;
  color: #333; /* Adjust color based on preference */
}

/* Responsive behavior */
@media (max-width: 768px) {
  #logo h2 {
    font-size: 1.5rem; /* Smaller font size for medium screens */
  }

  #logo img {
    width: 55px; /* Smaller image size */
  }
}

@media (max-width: 480px) {
  #logo h2 {
    font-size: 1.2rem; /* Even smaller font for mobile */
  }

  #logo img {
    width: 54px;
  }
}
