@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Raleway, sans-serif;
  }
  

  body {
    font-family: Raleway, sans-serif;
    overflow-x: hidden;
   
  }

  nav {
    position:absolute;
    z-index: 1000;
  }

  .carousel-item {
    position: relative;

  }
  /* .carousel-item {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
} */
  .carousel-item img {
    width: 100%;
    height:800px;
    object-fit: cover;
    display: block;
  }

  
  

  
  .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: 1; /* Places the overlay above the image */
  }
  
  .carousel-caption {
    position: relative;
    z-index: 2; /* Ensures captions are above the overlay */
  }
  

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 20px 0px !important; */
  }

  .logo {
    color: white;
    height: 64px;
    /* background: rgba(231, 227, 227, 0.1); */
 
  }

  .navbar-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul a {
    text-decoration: none;
    color: white;
    padding: 10px;
  }
  
  nav ul .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 4px solid orange;
    border-bottom: 15px solid white;
    list-style: none;
    background: #fff;
    padding:20px;
    margin: 0;
  }
  
  nav ul .dropdown li a {
    display: block;
    color: #00435a;
    font-size: 14px;
    font-weight: 400;
  }
  
  nav ul li:hover > .dropdown {
    display: block;
    width: 200px;
  }
  

  .navbar a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s;
  }

  .navbar a:hover {
    color: orange;
  }

  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .dropdown a {
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
  }

  .navbar li i{
    font-size: 10px;
  }

  .navbar li:hover .dropdown {
    display: block;
  }

  .right-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .container-fluid{
    padding: 0px 80px !important;
  }

  .right-buttons button {
    margin-left: 1rem;
    padding: 0.9rem 1.3rem;
    font-size: 12px;
    border: none;
    background: orange;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 2px;
  }

  .right-buttons button i {
    margin-left: 10px; /* Adds gap between text and arrow */
    transform: rotate(45deg); /* Tilts the arrow to the right */
    display: inline-block; /* Ensures proper rotation alignment */
    transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.right-buttons button:hover i {
    transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}

  .right-buttons button:hover {
    background: #00435a;
  }

 
  .sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 344px;
    height: 100%;
    padding: 64px 0 30px;
    background: white;
    color: #00435a;
    transition: right 0.8s;
    z-index: 1100;
    overflow-y: scroll;
  
    /* Scrollbar styling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #00435a #f0f0f0; /* For Firefox */
  }
  
  /* Webkit scrollbar styles */
  .sidebar::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: #f0f0f0; /* Track color */
    border-radius: 8px; /* Track border-radius */
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background-color: #00435a; /* Thumb color */
    border-radius: 8px; /* Thumb border-radius */
    border: 2px solid #f0f0f0; /* Space around thumb */
  }
  
  .sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #003548; /* Thumb color on hover */
  }
  

.sidebar .sidebar-padding{
  padding: 0 40px 30px;
  
}
.sidebar.active {
    right: 0;
}

.sidebar img {
  height: 40px;
}

.sidebar .close-btn {
  font-size: 24px;
  color: #00435a;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sidebar .close-btn:hover {
    transform: scale(1.2);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 50px; /* Push list below the close button */
}

.sidebar ul li{
  border-bottom: 1px solid rgb(205, 202, 202);
  padding: 0px 45px 0px;
}

.sidebar a {
    text-decoration: none;
    color: #00435a;
    display: block;
    margin: 0.7rem 0;
    font-size: 18px;
}

.sidebar .social{
  padding: 50px 50px 20px;
  color: black;
}

.sidebar .social-icons{
  padding: 0px 0px 20px;
  color: black;
}

.sidebar .social-icons div:hover{
  color: orange;
}

.sidebar .social-icons h2{
  color: #00435a;
  font-size: 19px;
}

.sidebar .social-icons i {
padding-right: 6px;

  color: #00435A;
}

.sidebar .social-icons i:hover{
  color:#00435A;
  background-color: white;
}


  .menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
  }

  .menu-btn img{
    height: 30px;
    filter: brightness(0) invert(1);
    
  }


  .carousel-data h5 {
    font-weight: 400;
    width: 20%;
    display: flex;
    text-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    z-index: 50;
    position: relative; /* For positioning the pseudo-element */
    padding: 5px 10px; /* Adds spacing around the text */
}

.carousel-data h5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    opacity: 0.5;
    z-index: -1; /* Sends background behind the text */

}

.carousel-data{
  position: fixed;
  top: 270px;
}

  .carousel-data p{
    font-size: 78px;
    font-weight: 700;
    line-height: 90px;
    padding: 23px 0px;
  }

  .carousel-btn{
    display: flex;
    justify-content: center;
    gap: 31px;
  }


  .carousel-btn .btn1 i {
    margin-left: 10px; /* Adds gap between text and arrow */
    transform: rotate(45deg); /* Tilts the arrow to the right */
    display: inline-block; /* Ensures proper rotation alignment */
    transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.carousel-btn .btn1:hover i {
    transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}

.carousel-btn .btn2 i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.carousel-btn .btn2:hover i {
  transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}

  .carousel-btn .btn1{
    padding: 15px 30px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #21424d;
    letter-spacing: 1px;

  }

  .carousel-btn .btn1:hover{
    background-color:#21424d ;
    color: white;
  }

  .carousel-btn .btn2{
    padding: 15px 30px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    background-color: #faad00;
    color: white;
    letter-spacing: 1px;

  }

  .carousel-btn .btn2:hover{
    background-color:#21424d ;
    color: white;
  }




  .carousel-indicators button {
    width: 2px;
    height: 12px;
    background-color: #333; /* Default dot color */
    border: none;
  }
  
  .carousel-indicators .active {
    background-color: #007bff; /* Active dot color */
  }

  .section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 80px 100px !important;

}

.left-column {
    width: 50%;
    position: relative;
}

.right-column {
  width: 40%;
  position: relative;
  top: 50px;
}

.left-column .img1 {
    width: 460px;
    height: 490px;
    object-fit: cover;
}



.absolute-image {
  position: absolute;
  top: 75%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 70%;
  z-index: -1;
}

.left-column::before {
  content: "";
  position: absolute;
  left: 102px;
  bottom: -38px;
  z-index: 1;
  width: 130px;
  height: 65px;
  background-color: #00435a;
  border-radius: 0 0 10rem 10rem;
}

.left-column::after {
  content: "";
  position: absolute;
  left: 373px;
  top: 125px;
  z-index: -2;
  width: 180px;
  height: 180px;
  background-color: transparent;
  border: 30px solid #faad00;
  border-radius: 50%;
}
.heading {
    margin-bottom: 35px;
}

.heading h2 {
    font-size: 50px;
    color: #00435a;
    font-weight: 700;
    font-family: Raleway, sans-serif;
    line-height: 60px;
    font-style: normal;
    margin-bottom: 35px;
}

.heading p {
    font-size: 16px;
    color: black;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
}

.stat {
    text-align: center;
   
}

.stat .private-Cubicles{
  width: 90px;
}
.stat img{
  
    height: 72px;
    width: 72px;
    border-radius: 100%;

}

.stat h4 {
    font-size: 29px;
    color: #00435a;
    font-weight: 600;
}

.stat h4 span {
    font-size: 29;
    color: #00435a;
    font-weight: 800;
}

.stat h3 {
    font-size: 18px;
    color: #00435a;
    font-weight: 700;
}

.button-wrapper {
    margin-top: 53px;
}

.button {
  display: inline-block;
  padding: 13px 28px;
  letter-spacing: 1px;
  background-color: #faad00;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.button i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.button:hover i {
  transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}


.button:hover {
    background-color: #00435a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-main {
  background-color: #002633;
  padding: 40px 0 0 0;
  color: white;
}
.footer-main a {
  color: white;
  text-decoration: none;
}
.footer-main h5 {
  font-size: 3rem;
}

.Purchase-theme-circle {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  width: 140px;
  height: 140px;
  line-height: 20px;
  border-radius: 100%;
  text-align: center;
  position: relative;
  background-color: #faad00;
  transition: background-color 0.3s ease-in-out;
}

.Purchase-theme-circle:hover {
  background-color: #00435a;
}

.Purchase-theme-circle i {
  rotate: 20deg;
  transition: transform 0.3s ease-in-out, rotate 0.3s ease-in-out;
}

.Purchase-theme-circle:hover i {
  transform: translateY(-10px);
}
footer ul,
ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bootom-footer li a {
  color: rgb(255 255 255 / 49%);
}
.bootom-footer li a:hover {
  color: white;
}
.bootom-footer p {
  color: rgb(255 255 255 / 49%);
  font-size: 14px;
}
.bootom-footer p a {
  color: rgb(255 255 255 / 49%);
}
.bootom-footer p a:hover {
  color: white;
}

.footer-links {
  padding: 20px 0;
}

.footer-links button{
 
    background: orange;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
}

.footer-links i{
  color: orange;
  font-size: 14px;
}

.footer-links img {
  height: 67px;
}

.footer-links h6 {
  font-size: 1.5rem;
  padding: 15px 0;
  color: rgb(255 255 255 / 49%);
}

.recent-post-content-footer{
  color: white;
}
.footer-links ul li {
  margin: 10px 0;
}
.footer-contectNo {
  font-size: 1rem;
  /* font-weight: 600; */
}
.footerMail a {
  text-decoration: none;
}
.Subscribe-now {
  color: rgb(255 255 255 / 49%);
  font-size: 1.5rem;
  padding: 15px 0;
}
.Subscribe-input {
  border: none;
  border-bottom: 1px solid white;
  background-color: transparent;
  width: 100%;
  padding: 10px 12px;
  border-radius: 3px;
}
.Subscribe-input:focus {
  outline: none;
}

.articles-card a{
  text-decoration: none;
}


.recent-articles {
  padding: 60px 15px;
  background-color: #f8f9fa;
}


.recent-articles .Explore{
    padding-left: 60px ;
    font-size:18px;
  }
  
.make-customer {
  color: #00435a;
  font-size: 3.5rem;
  text-align: right;
  padding-right: 40px;
}

.recent-box {
  border-right: 5px solid #faad00;
}

.recent-articles p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.card-content p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00435a;
  padding-right: 20px;
  transition: all 0.3s ease-in;
}

.card-content span {
  font-size: 0.9rem;
  color: #666;
}
.recent-articles h5 {
    color: #00435A;
    font-size: 3.5rem;
    text-align: right;
    padding-right: 40px;
  }
  

.recent-articles img {
  border-radius: 5px;
}
.card-content p:hover {
  color: #faad00;
  cursor: pointer;
}
.card-content .yellow-dot {
  height: 5px;
  width: 5px;
  background-color: #faad00;
}

.story-card {
    border: 1px solid rgba(0, 67, 90, 0.1);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 2s ease, box-shadow 2s ease;
  }
  
  .story-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .story-card:hover .uppersection{
        transform: translateY(-20px);

  } 

  .uppersection {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .hero-story-img {
    width: 80px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(70%) sepia(81%) saturate(2081%)
      hue-rotate(2deg) brightness(97%) contrast(105%);
  }
  
  .story-name {
    font-weight: 600;
    margin-top: 10px;
    color: #00435a;
    transition: color 0.3s ease;
  }
  

  .story-card:hover .hero-story-img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(25%) sepia(48%) saturate(710%) hue-rotate(149deg) brightness(93%) contrast(96%);
  }
  
  .story-card:hover .story-name {
    color: #fff;
  }
  

  .bottom-hover-div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #faad00;
    z-index: 1;
    transition: height 0.7s ease;
    display: flex;
    align-items: end;
  }
  .bottom-hover-div p{
    color: white;
    text-align: center;
    display: none;
    transition: all 0.2s ease;
    
  }
  
  .story-card:hover .bottom-hover-div p{
    display: block;
  }
  .story-card:hover .bottom-hover-div {
    height: 100%;
  }
   .Explore-para {
    padding-left: 60px;
    font-size: 18px;
  }
  
  .custom-section {
    display: flex;
    flex-wrap: wrap;
  
    position: relative;
    overflow-x: hidden;

  }
  .pink-overlay{
    position: absolute;
    height: 60%;
    width: 100%;
    z-index: -1;
    background-color:#fdf5ea;
    left: -80px;
    margin-top: 30px;
  }

  .custom-container {
    display: flex;
    padding: 60px 80px !important;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 77px;

    
  }

  
  .custom-column-left {
    flex: 1;
    padding: 20px;
  }
  
  .custom-heading {
    font-size: 34px;
    font-weight: bold;
    color: #00435a;
    margin: 0;
  }
  
  .custom-column-right {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  
  }
  .custom-column-right-video video {
    width: 120%;
    height: 90%;
    transform: translateX(56px);
}
  
  .custom-client-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    column-gap: 73px;
  }
  
  .custom-client-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  .custom-client-box:hover {
    transform: translateY(-5px);
  }
  
  .client-main-img,
  .client-hover-img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
  }
  
  .client-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .custom-client-box:hover .client-main-img {
    opacity: 0;
  }
  
  .custom-client-box:hover .client-hover-img {
    opacity: 1;
  }

  .custom-column-right{
    left: 500px;
  }

  .benifits-of-setting-icon-box{
    height: fit-content;
    background-color: #FDF5EA;
    width: fit-content;
    padding: 5px 8px;
    color: black;


 }
 ul,ol{
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
   
 }

 
 .benifits-of-setting-conetent{
    padding: 10px 40px;
 }
 .benifits-of-setting-conetent h5{
    color: rgb(0 67 90 / 10%);
    font-size: 5.5rem;
    font-weight: 800;
    text-align: left;
 }
 .benifits-of-setting-conetent h6{
        color: #00435A;
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 22px;
    
 }
 .benifits-of-setting-conetent-col{
        padding: 0 !important;
 }
 .benifits-of-setting-conetent p{
    font-size: 16px;
    text-align: justify;
 }
 .benifits-of-setting-conetent-list p{
    font-size: 16px;
    text-align: justify;
    color: #00435a;
 }
 .benifits-of-setting-img{
    height: 100%;
    width: 100%;
 }
 .frame{
    padding: 0 !important;
    margin: 0 !important;
 }


 .marquee-section {
  width: 100%;
  overflow: hidden;
  /* margin-bottom: 20px; */
  padding: 40px 0;
}

.marquee-container {
  display: flex;
  position: relative;
  white-space: nowrap;
  animation: scroll-marquee 12s linear infinite;
}

.marquee-inner {
  display: inline-flex;
  gap: 50px; /* Space between items */
}

.marquee-item {
  line-height: normal;
  width: auto;
  font-size: 75px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  /* -webkit-text-stroke: 1px #00435a; */
  /* -webkit-text-fill-color: transparent; */
  /* font-family: "Inter", serif; */
  /* font-family: "Playwrite VN", serif; */

  margin: 0;
  padding: 0;
}

.marquee-star{
  transition: transform 1s cubic-bezier(.22,.61,.36,1);
  font-size: 75px;
  font-weight: 800;

}

.marquee-container {
  display: flex;
  animation: scroll-marquee2 20s linear infinite;
}

/* Keyframe Animation for Scrolling */
@keyframes scroll-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-marquee2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

.service-section{
  background-color: #00435a;
  height: auto;
  padding: 100px 0;
}

.service-section .service-text{
  padding-bottom: 70px;
}

.service-section h1 {
  color: white;
  font-family: Raleway, sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 60px;
    letter-spacing: 0;
    text-transform: none;
    font-style: normal;
}

.service-section .service-btn{
  background-color: #faad00;
  color: white;
}

.button-service {
  display: inline-block;
  padding: 13px 28px;
  letter-spacing: 1px;
  background-color: #faad00;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.button-service i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.button-service:hover i {
  transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}


.button-service:hover {
    color: #00435a;
    background-color: white;
}

.my-sliders{
  height: 400px;
  /* width: 400px; */
  position: relative;
  overflow: hidden;
  
}

.service-img{
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px; /* Default height for desktop */
  margin-bottom: 74px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.my-sliders::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0,0,0, 0.2));
  z-index: 1; 
  overflow-y: hidden;
}
  
.my-sliders img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;


}

.my-sliders:hover img{
  transform: scale(1.1);
  overflow: hidden;
  
}

.my-sliders .text {
  position: absolute;
  z-index: 10;
  bottom: 13px;
  left: 40px;
  right: 40px; /* Ensure text and icon stay within bounds */
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribute space between text and icon */
}



.my-sliders .text h2 {
  font-size: 19px;
  text-wrap: nowrap;
}
.my-sliders .text i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */
  font-size: 20px;
}
  
.my-sliders .text:hover i{
  transform: rotate(90deg); 
} 

.about-bannerr {
  position: relative;
  width: 100%;
  height: 443px;
  overflow: hidden;
  border-radius: 15px;
}

.about-bannerr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-bannerr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,rgba(0.67.90,0) 0%,rgba(0,67,90,0.5) 5%,rgba(0,67,90,0.2) 30%,rgba(0,67,90,0.1) 100%);
  z-index: 1; /* Places the overlay above the image */
  border-radius: 15px;
}

.about-bannerr .banner-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centering the text */
  color: white;
  text-align: center; /* Centers text within the container */
  z-index: 10; /* Places the text above the overlay */

}

.about-bannerr .banner-text br{
  display: none;
}

.about-bannerr .banner-text h1 {
  font-size: 43px;
  color: white;
  font-weight: 600;
  text-wrap: nowrap;
}



.about-banner {
  position: relative;
  width: 100%;
  height: 443px;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  z-index: 1; /* Places the overlay above the image */
}

.about-banner .banner-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centering the text */
  color: white;
  text-align: center; /* Centers text within the container */
  z-index: 10; /* Places the text above the overlay */

}

.about-banner .banner-text br{
  display: none;
}

.service-card .left-col-service {
 visibility: hidden;
position: absolute;
}

.about-banner .banner-text h2 {
  font-size: 40px;
  color: white;
  font-weight: 600;
  text-wrap: nowrap;
}

.pink-overlay-contact {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: #fdf5ea;
  margin-top: 30px;
}

.about-banner .banner-text h1 {
  font-size: 43px;
  color: white;
  font-weight: 600;
  text-wrap: nowrap;
}

.about-banner .banner-text .banner-sub {
  font-size: 16px;
  margin-top: 16px;
  color: white;
  
}

.about-banner .banner-text .banner-sub a {
  color: white;
  text-decoration: none;
  
}



.about-banner .banner-text .banner-sub a:hover {
  color: orange;
  text-decoration: none;
  
}

/* tetsimoanils csss */
#testimonials-section {
  background-image: url('/assets/images/map-bg.png');
  background-size: 70%;
  left: 50%;
  background-repeat: no-repeat;
  background-position: center center;
}

#testimonial {
  padding: 30px 0;
  text-align: center;
  left:25%;
}

#testimonial .item {
  display: block;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  text-align: center; /* Center text within each item */

}

#testimonial .testimonial-star{
  margin-bottom: 15px;
  color: #faad00;
  font-size: 13px;
}


#testimonial .item p {
  font-weight: 400;
  font-size: 25px;
}



/*  */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 100px 0;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 100px 0;
}

.my-blog {
  position: relative; 
  overflow: hidden; 
  border-radius: 8px; 
}

.no-decoration {
  text-decoration: none;
}

.no-decoration:hover {
  text-decoration: none; /* Ensures no underline even on hover */
}



.my-blog .blog-header{
  padding: 20px 0;
}


.my-blog .blog-text{

  font-size: 13px;
  font-weight: 600;
}

.blog-text span{
  color: #00435A;
}



.my-blog img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;


}


.my-blog h3 {
  color: #00435a;
  font-size: 21px;
  font-weight: 500;
  padding: 10px 0;
  line-height: 30px;
}

.my-blog:hover h3{
  color: orange;
}
.my-blog:hover img{
  transform: scale(1.05);
  
}

.my-blog .yellow-dot {
  height: 6px;
  width: 6px;
  background-color: #faad00;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.buttons button {
  padding: 0.9rem 1.3rem;
  font-size: 12px;
  border: none;
  background: orange;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  letter-spacing: 2px;
}

.buttons button i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.buttons button:hover i {
  transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}

.buttons button:hover {
  background: #00435A;
}

.buttons button {
  padding: 0.7rem 0.8rem;
  font-size: 12px;
  letter-spacing: 1px;
}


/* contact */

/* Basic Styling */


.elementor-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 60px;
  gap: 57px;
}


.elementor-column {
  flex: 1;
  margin: 10px;
}

.elementor-widget-wrap {
  margin-bottom: 30px;
}

/* Styling the Header Text */
.pbmit-heading-subheading h2 {
  font-size: 49px;
  color: #00435a;
  font-weight: 650;
  line-height: 51px;
}
.pbmit-heading-desc {
  font-size: 1rem;
  color: black;
  margin: 27px 0;
}



/* Social Links */

.contact-form-social h3 {
  color: #00435a;
  font-size: 22px;
  margin-bottom: 19px;
}

.pbmit-social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.pbmit-social-links li {
  display: inline-block;
  border: 1px solid #f39c12;
  padding: 5px 9px;
  border-radius: 50%;
}

.pbmit-social-links li:hover{
  background-color:#f39c12 ;
  color: white;

}

.pbmit-social-links .pbmit-social-li i {
  font-size: 19px;
  color: #f39c12;
  transition: color 0.3s ease;
}

.pbmit-social-links .pbmit-social-li:hover i{
  color:white;
}


.pbmit-custom-heading h2{
  color: #00435a;
  font-size: 36px;
  font-weight: 650;
}


.pbmit-form {
  padding-top: 30px;
}

/* Services dropdown styles */
.services-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0; /* Collapsed by default */
  transition: max-height 0.3s ease-in-out; /* Smooth slide effect */
}

.services-menu li {
  padding: 0;
  
}

.services-menu li a {
  color: #00435A;
  text-decoration: none;
}



/* Rotate arrow when menu is open */
#servicesArrow {
  margin-left: auto;
  transition: transform 0.3s ease-in-out; /* Smooth rotation */
  font-size: 12px;
}

.rotate {
  transform: rotate(180deg); /* Arrow rotates 180 degrees */
}

/* Open dropdown menu */
.services-menu.open {
  max-height: 500px; /* Adjust based on content */
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}


.input-group input,select,
.input-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #fdf5ea;
  border-radius: 4px;
  font-size: 1rem;
}

.input-group input:focus,.input-group select:focus,
.input-group textarea:focus {

  outline: none;
}

/* Make the input and label display in a row using flex */
 .input-agree{
  display: flex;
  align-items: center; /* Align checkbox and label vertically */
  gap: 10px; /* Add space between checkbox and label */
}

/* Optional: Style the checkbox and label */
.input-agree input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2); /* Optional: Make the checkbox slightly larger */
}
.input-agree label {
  margin: 0;
  font-size: 14px; /* Adjust the font size if needed */
}


input{
  outline: none !important;
  border: 1px solid rgb(249, 246, 246);
}
textarea,select{
  border: 1px solid white;
}




.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #888;
}

/* Submit Button */
.wpcf7-submit {
  background-color: #f39c12;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #e67e22;
}

/* General Widget Styles */
.widget {
  padding: 20px;
  margin-top: 40px;
  border: 1px solid rgb(234, 230, 230);
}

.widget-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #00435A;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}



/* Recent Posts List */
.recent-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-post-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.recent-post-item a{
  text-decoration: none;
}

.sidebar .social a{
  color: black;
}

.recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Recent Post Image */
.recent-post-img img {
  width: 82px;
  height: 82px;
  /* border-radius: 8px; */
  margin-right: 16px;
  object-fit: cover;
}

/* Recent Post Content */
.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.recent-post-title:hover {
 color: #00435A;
}

.recent-post-date {
  font-size: 14px;
  color: #777;
}




.pbmit-all-post-list {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin: 0;
  font-family: DM Sans, sans-serif; /* Use a clean font */
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  border: 1px solid rgb(234, 230, 230);
}

/* List Item Styling */
.pbmit-all-post-list li {
  margin: 4px 0; /* Space between list items */
  text-transform: uppercase;
}

.pbmit-all-post-list li .yellow-dot {
  height: 8px;
  width: 8px;
  background-color: #faad00;
}

.pbmit-all-post-list li:hover .yellow-dot{
  background-color: white;
}


/* Anchor Tag Styling */
.pbmit-all-post-list li a {
  display: block;
  text-decoration: none; /* Remove underline */
  color: black; /* Neutral text color */
  padding: 10px 42px;
  border-radius: 5px;
  transition: all 0.3s ease; /* Smooth hover effect */
}

/* Hover Effect */
.pbmit-all-post-list li a:hover {
  background-color: #00435a; /* Light gray background on hover */
  color: white; /* Blue text on hover */

}
 .pbmit-all-post-list .pbmit-post-active li .yellow-dot{
  background-color: white;
}

/* Active Item Styling */
.pbmit-all-post-list .pbmit-post-active a {
  background-color: #00435a; /* Blue background for active item */
  color: white; /* White text for active item */
  font-weight: 600;
}

.service-btn{
  gap: 30px;
}

.service-btn i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */

}

.pbmit-all-post-list li a:hover i {
  transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}

.service-card{
  padding: 90px 0;
}


.pbmit-ads-banner {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 349px;
  padding: 30px 0;
  color: white;
  text-align: center;
  margin-top: 40px;
}

.pbmit-ads-inner {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 11px;
}

.pbmit-ads-logo img {
  width: 165px;
  height: auto;
  margin-bottom: 15px;
}

.pbmit-ads-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.pbmit-svg-btn {
  margin-top: 20px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #fcb900; /* Button background */
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-arrow:hover {
  background-color: #ffc847; /* Button hover color */
  transform: translateY(-3px);
}

.pbmit-svg-arrow {
  margin-left: 10px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.btn-arrow:hover .pbmit-svg-arrow {
  stroke: black;
  transform: translateX(5px);
}

.service-card .left-col{
  position: sticky; /* Enables sticky positioning */
  top: 20px; /* Distance from the top of the viewport */
  align-self: flex-start; /* Ensures proper alignment within a flex container */
  height: fit-content; /* Ensures it adjusts to the content size */
  padding-left: 15px;
}

.service-card .left-col-data{
  position: sticky; /* Enables sticky positioning */
  top: 20px; /* Distance from the top of the viewport */
  align-self: flex-start; /* Ensures proper alignment within a flex container */
  height: fit-content;
}



.service-card .right-col .content-main{
  padding: 50px 0;
  color: #00435A;
}

.service-card .right-col h1 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 17px;
}

.service-card .right-col p{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  color: black;

  line-height: 24px;
  
}

.service-card .right-col .accordion__content p{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  color: black;
  padding: 12px 20px 0;
  line-height: 24px;
  
}
.service-card .right-col p a{
  text-decoration: none;
  color: #00435A;
}

.service-card .right-col .main-image  {

  width: 100%;
  object-fit: cover;
}

.service-card .right-col img {
  height: 560px;
  width: 100%;
}

.service-card .right-col .small-img {
  display: flex; /* Ensure flexbox for alignment */
  gap: 1rem; /* Adjust the gap as per design */
  width: 100%;
  margin: 30px 0;
}

aside .button-wrapper {
  margin-top: 30px;
}

.service-card .right-col .small-img img {
  width: calc(50% - 0.5rem); /* Dynamic width for images within the container */
  height: 300px;
  border-radius: 8px; /* Add rounded corners if needed */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional styling for shadow */

}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.accordion h1{
  color: #00435A;
  font-weight: 600;
}
.accordion__item {
  border: 1px solid #e5f3fa;
  border-radius: 10px;
  overflow: hidden;
}

.accordion__header {
  padding: 20px 25px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #00435A;
  font-size: 17px;
  transition: background 0.3s ease;
}

.accordion__header::after {
  content: '';
  background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}



.accordion__header:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.accordion__header.active {
  background: #fdf5ea;
}

.accordion__header.active::after {
  transform: rotateX(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  /* padding: 10px 20px; */
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item.active .accordion__content {
  max-height: 9999px;
  font-size: 17px;
  padding: 15px 25px; /* Dynamic height with padding */
}

.right-col.accordion__item.active .accordion__content p{
  font-size: 17px;
  text-align: justify;
}

.privacy{
  padding: 80px 0px;
}

.privacy p {
  font-size: 17px;
  font-weight: 600;
}


.privacy h4{
  font-weight: 550;
  color: #00435A;
}
.privacy h5{
  font-weight: 550;
  color: #00435A;
}


.privacy span{
  font-weight: 600;
  color: #00435A;
}

.privacy ul li  {
  font-size: 17px;
  font-weight: 600;
  list-style-type: disc;
  margin-left: 20px;
}

.privacy li a{
  text-decoration: none;
  color: #00435A;
}


.contact-no a{
  text-decoration: none;
  color: #00435A;
  font-size: 1.2rem;
  font-weight: bold;
}

.contact-mail a{
  text-decoration: none;
  color: #00435A;
  font-size: 1.2rem;
  font-weight: bold;
}


.Build-growth-para{
  text-align: justify;
}

.carousel-item {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}



/* 19-03-2025  */


.get-quote-phone{
  display: none;
}
.phone-call-mobile{
  display: none;
}
.mail-phonw{
  display: none;
}
.whatsap-icon img{
  height: 50px;
  width: 50px;
}
.whatsap-message {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999999;
}


.whatsap-icon {
  animation: bounce-icon 2s infinite;
}

.get-quote-phone {
  animation: bounce-button 2.5s infinite; 
}
.phone-call-mobile{
  animation: bounce-phone-icon 2.8s infinite;

}
.mail-phonw{
  animation: bounce-mail-icon 3.1s infinite;
  background-color: green !important;

}


@keyframes bounce-phone-icon {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

@keyframes bounce-mail-icon {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-6px);
  }
}


@keyframes  bounce-icon  {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}



@keyframes bounce-button {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  60% {
    transform: translateY(-10px);
  }
}



/* form  */
/* Container for the form with backdrop */
.form-container {
  position: fixed;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: opacity 0.3s ease-in-out;
  /* overflow: auto; */
}

/* Form container with padding and rounded corners */
/* .form-pop {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  overflow-y: auto;
  padding: 20px;
  color: #333;
  border-radius: 40px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.form-pop:hover {
  transform: translateY(-5px);
} */





/* Main section with background color */
.form-main {
  background-color: #000;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

.book-appoinment{
  color: #fff;
  font-weight: 800;
  font-size: 2.3rem;
}
.book-appoinment-para{
  color: #ffffff  ;
  font-weight: 700;
  text-align: center;
}
.Form-img {
  width: 100%;
  height: 220px;
  background-image: url("/assets/images/newFormBannerr.webp");
  background-position: center;
  background-size: cover;
  border-bottom: 2px solid white;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Heading styling */
h5 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

/* Form input labels */

.form-group {
  margin-top: 15px;
}





.form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
} 

/* Styling for text inputs, selects, and textareas */
.form-control,
.form-select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 15px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.message{
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  box-sizing: border-box;
  font-weight: 500;
  background-color: red;
}
.form-control:focus,
.form-select:focus {
  border-color: #f94612;
  outline: none;
  box-shadow: 0 0 5px rgba(249, 70, 18, 0.5);
  color: #333;
}

/* Styling for the button */
.form-query{
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

.btn-book-now {
  background-color: #fff; 
  color: #000;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-book-now:hover {
  background-color: #21424d; /* Darker shade for hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  color: white;
}

.btn-book-now:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


  .query-btns-form{
    padding: 10px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;

    background-color: #ffff;
    color:#000;
    letter-spacing: 1px;


  }

  .query-btns-form:hover{
    background-color:#21424d ;
    color: white;
  }










.remark-lines-parent h5 {
  color: #f3870c;
}

.swal2-popup {
  display: none;
  position: relative;
  z-index: 999999 !important;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem;
}






/* pop from new  */

/* .form-pop{
  background: linear-gradient(135deg, #FFD700, #FFA500);
  width: 700px;
  height: 400px;
  border-radius: 0.3rem;
  position: relative;
  

} */

.new-form-pop-icons{
  color: #000 !important;
}

.form-pop{
  /* background: linear-gradient(135deg, #FFD700, #FFA500); */
  width: 600px;
  height: 570px;
  border-radius: 0.3rem;
  /* overflow: hidden; */
  position: relative;
  background-image: url("/assets/images/serviceLeftBanner/1.webp");
  background-size: cover;
  background-position: center;
  
  /* background-image: url(); */

}
.form-pop .left-side img{
  width: 100%;
  height: 400px;
  /* object-fit: cover; */
  border-radius: 0.3rem;

}

.close-icon {
  all: unset;
  position: absolute;
  z-index: 10;
  right: 0;
  top: -16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon i {
  background-color: #fff;
  /* color: #0000 !important; */
  border-radius: 50%;
  padding: 10px;
  font-size: 1.2rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-pop .right-side{
  height: 100%;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.query-btns-form {
  background-color: #FAAD00; /* Primary blue color */
  color: #fff; /* White text */
  border: none;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.query-btns-form:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px);
}

.query-btns-form:active {
  background-color: #004494; /* Even darker on click */
  transform: translateY(0);
}

.query-btns-form i {
  margin-left: 10px; /* Adds gap between text and arrow */
  transform: rotate(45deg); /* Tilts the arrow to the right */
  display: inline-block; /* Ensures proper rotation alignment */
  transition: transform 0.3s; /* Optional: Smooth transition for tilt */
}

.query-btns-form:hover i {
  transform: rotate(90deg); /* Optional: Further tilts the arrow on hover */
}

.pop-input-box{
  /* background-color: red; */
  margin-top: 1rem;
}


.form-control-pop{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 800;
  font-weight: 500;
  margin-bottom: 15px;
  background-color: #f9f9f9;
}

.pop-submit {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  background-color: #D35400; /* Blue primary color */
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
}



.pop-submit:hover {
  background: linear-gradient(90deg, #036ee2de, #036ee2de);
}

/* pop query btn  */
.pop-query-btn {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  /* background: linear-gradient(45deg, #28a745, #218838);  */
  background-color: #D35400;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
}

.pop-query-btn:hover {
  background: linear-gradient(90deg, #036ee2de, #036ee2de);
}

.pop-query-btn i{
  margin-left: 10px;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.3s;
}

.pop-query-btn:hover i{
  transform: translateY(-10px);
  transform: translateX(10px);
}




@media (max-width: 767px) {
  .book-appoinment{
    font-weight: 800;
    font-size: 1.8rem;
  }
  /* .form-pop{
    height: auto;
    
    position: relative;
  
  } */

  /* new pop  */
  .form-pop{
    height: 350px;
    width: 350px !important;
    
    position: relative;
  
  }
  .close-icon {
    all: unset;
    position: absolute;
    z-index: 10;
    right: 0;
    top: -18px !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
