/* Sachiva Design System: Custom Properties & Utilities */
:root {
  --primary-color: #007bff;
  --secondary-color: #0056b3;
  --success-color: #28a745;
  --whatsapp-color: #25d366;
  --border-radius: 15px;
  --font-main: "Roboto", sans-serif;
  --footer-bg: #f8f9fa;
  --footer-text: #2c3e50;
}

/* Utility Classes */
.fw-bold {
  font-weight: bolder;
}
.mt-5 {
  margin-top: 3rem !important;
}

/* Whatsapp Floating Button */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--whatsapp-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
}
.whatsapp i {
  font-size: 28px;
  color: white;
}

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
body {
  font-family: "Lato", sans-serif;
  color: #040000;
}

.main-logo {
  width: 200px;
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding: 45px 0;
}

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

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

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

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

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Merriweather Sans", sans-serif;
}

.heading_container p {
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

h1,
h2 {
  font-family: "Merriweather Sans", sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/*header section*/
.hero_area {
  position: relative;
  background-color: #d1e3ff;
}

.header_section {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: white;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .header_top {
  padding: 15px 0;
  background-color: #000000;
}

.header_section .header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_section .header_top .contact_nav a {
  color: #ffffff;
}

.header_section .header_top .contact_nav a i {
  color: #ff8a1d;
}

.header_section .header_bottom {
  padding: 10px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  color: #000000;
  font-weight: bold;
  font-size: 24px;
  font-weight: bold;
}

.navbar-brand span {
  color: #0355cc;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 25px;
  color: #000000;
  text-align: center;
  color: var(--nav-text-color);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #0355cc;
}

.custom_nav-container .form-inline .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .form-inline .nav_search-btn:hover {
  color: #0355cc;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.nav-link {
  margin-right: 30px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quote_btn-container a {
  color: #ffffff;
  margin-right: 25px;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #ff8a1d;
}
/* Light Mode Strong Shadow */
.header_section.scrolled {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

/* Dark Mode Soft Glow */
body.dark-mode .header_section {
  background-color: #222; /* Dark background */
}

body.dark-mode .header_section.scrolled {
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.12);
}
/* Specific styling only for Contact Us button in nav */
/*.nav-item.contact-highlight .nav-link {
  background-color: #0355cc;
  color: white;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 10px 24px !important; 
  line-height: 1.4 !important;
  display: inline-flex !important; 
  align-items: center !important;
  justify-content: center !important;
  margin-left: 12px !important;
  margin-right: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  box-sizing: border-box !important;
}*/

/*.nav-item.contact-highlight .nav-link:hover {
  background-color: #023a8a;
  color: #fff;
}*/
/* Fix spacing for nav items */
.custom_nav-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.custom_nav-container .navbar-nav {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.custom_nav-container .navbar-nav .nav-link {
  padding: 10px 0 !important; /* consistent vertical padding */
  padding-left: 0px !important;
}

/* Quote button and toggle spacing */
.quote_btn-container {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.nav-link {
  margin-right: 0 !important;
}

/*end header section*/
/* slider section */
.slider_section {
  margin-top: 78px;
  -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;
  background-size: cover;
  background-position: bottom;
}

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

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

.slider_section .detail-box {
  padding-bottom: 90px;
}

.slider_section .detail-box h2 {
  font-weight: bold;
  margin-bottom: 25px;
  color: #0355cc;
}

.slider_section .detail-box p {
  font-size: 1rem;
}

.slider_section .detail-box a {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 45px;
  background: linear-gradient(45deg, #ff8a1d, #ff5252, #ffc107);
  border: 1px solid #ff8a1d;
  border-radius: 10px;
  color: #ffffff;
  margin-top: 15px;
}

.slider_section .detail-box a:hover {
  background: #f56506;
  transform: scale(1.03);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

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

.feature_section {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.feature_section .feature_container .box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 0 10px;
  padding: 45px 15px;
  background-color: #ffffff;
  color: #555089;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.feature_section .feature_container .box .img-box {
  width: 90px;
  height: 90px;
}

.feature_section .feature_container .box .img-box svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  fill: #726dae;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.feature_section .feature_container .box .img-box svg path {
  fill: #726dae;
}

.feature_section .feature_container .box .name {
  margin-top: 20px;
  text-transform: uppercase;
  font-family: "Merriweather Sans", sans-serif;
  margin-bottom: 0;
}

.feature_section .feature_container .box:hover,
.feature_section .feature_container .box.active {
  background-color: #ff8a1d;
  color: #ffffff;
}

.feature_section .feature_container .box:hover .img-box svg,
.feature_section .feature_container .box.active .img-box svg {
  fill: #ffffff;
}

.feature_section .feature_container .box:hover .img-box svg path,
.feature_section .feature_container .box.active .img-box svg path {
  fill: #ffffff;
}

/* Forum section styling */
.container {
  padding: 10px;
}

.container h2 {
  font-weight: bold;
  color: #0e4f95;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin: 30px auto; /* auto margins for block elements */
  text-align: center; /* center text inside */
  display: block; /* ensure it behaves like a block element */
  width: 100%; /* span full width of container */
}

.forum-thread {
  padding: 20px;
  margin: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

.forum-info {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.forum-info span {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30px;
  font-size: 0.8rem;
  box-shadow: 2px 2px 10px black;
}

.forum-category {
  background-color: rgb(0, 174, 255);
}

.forum-replies {
  background-color: palevioletred;
}

.forum-date {
  background-color: burlywood;
}

.forum-replies-list {
  display: none; /* Hide replies by default */
}

.forum-thread h4:hover {
  transform: scale(1.01);
  cursor: pointer;
  color: #00bfff;
}

.forum-replies-list {
  padding: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
  border-radius: 30px;
  background: linear-gradient(
    to right,
    yellowgreen,
    rgba(200, 255, 0, 0.534),
    rgba(0, 128, 0, 0.562)
  );
}

.services-sec {
  display: inline-block;
  margin: 20px;
  padding: 20px;
  box-shadow: 2px 2px 20px rgb(255, 251, 0);
  border-radius: 20px;
  color: green;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.service-btn {
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(to right, rgb(255, 238, 0), rgb(168, 247, 79));
  border: none;
  font-weight: bold;
  transition: all 0.5s ease;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.service-btn:hover {
  transform: scale(1.15);
}

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

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

  color: #221165;
  font-size: 2.5rem;
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(to right, #101e52, #88b9ed);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: bottom left;
  /* text-shadow: 0 0 5px #000000, 0 0 10px #898588; */
}

.about_section .detail-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}
.about_section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Ensure text and image scale nicely */
.about_section .text-content,
.about_section .img-box {
  flex: 1 1 400px; /* grow/shrink with min width */
  max-width: 600px;
}

/* Text box styles */
.about_section .text-content {
  padding: 20px;
  display: flex;
  flex-direction: column; /* ensures multiple paragraphs stack */
  text-align: justify;
  width: 35vw;
  height: auto; /* let it grow automatically */
  min-height: 200px; /* optional for minimum height */
  border-radius: 30px;
  background: linear-gradient(135deg, #6486b2, #ffffff);
  box-shadow: 15px 15px 30px #282727f8, -15px -15px 30px #ffffff;
  margin-bottom: 20px;
  margin-left: 10px;
}

/* Image box */
/* */
.about_section .img-box img {
  width: 100%;
  height: auto;
  border-radius: 0 40px;
  border-right: 3px solid transparent;
  /* border-top: 3px solid transparent; */
  border-bottom: 3px solid transparent;

  background-image: linear-gradient(#fff, #fff),
    linear-gradient(
      to left,
      #101e52,
      #88e1ed,
      rgb(58, 132, 159),
      rgb(104, 167, 222)
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin: 40px; /* remove left margin */
}

/* Small screens: stack vertically */
@media (max-width: 768px) {
  .about_section {
    flex-direction: column;
    align-items: center;
  }

  .about_section .text-content,
  .about_section .img-box {
    width: 90%;
    max-width: none;
    margin-left: 0;
  }

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

.about_section button {
  display: block; /* makes it behave like a block element */
  margin: 60px auto; /* centers it */
  width: calc(100% - 100px); /* 50px space on both sides */
  border: none;
  color: #fff;
  background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
  border-radius: 25px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  box-sizing: border-box; /* ensures padding doesn't overflow width */
}

.about_section button:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 #05bada66;
  }

  70% {
    box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
}

[data-theme="dark"] .about_section .text-content {
  background: linear-gradient(45deg, #040221, #043638);
  box-shadow: 10px 10px 10px #343333, -10px -5px 10px #5b5959;
}

/* .about_section .img-box img {
border: 3px solid transparent;
border-radius: 8px; /* optional for rounded edges */
/* background-image: linear-gradient(#fff, #fff), 
                  linear-gradient(to left, #101e52, #88e1ed, rgb(58, 132, 159), rgb(104, 167, 222));
background-origin: border-box;
background-clip: padding-box, border-box;
  border-radius: 40px;
  margin-left:50px;
  width: 100%;
}  */

.professional_section {
  background-color: #d1e3ff;
}

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

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

.professional_section .detail-box h3 {
  font-family:"Merriweather Sans", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #0355cc;
}

.professional_section .detail-box p {
  margin-top: 20px;
}

.professional_section .detail-box a {
  margin-top: 25px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 45px;
  background: linear-gradient(45deg, #ff8a1d, #ff5252, #ffc107);
  border: 1px solid #ff8a1d;
  border-radius: 10px;
  color: #ffffff;
}

.professional_section .detail-box a:hover {
 background: #f56506;
 transform: scale(1.03);
 box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.blog_section p {
  color: #555050;
  font-style: italic;
}

.blog_section .container {
  margin-top: 8vh;
}

.blog_section .card-title {
  font-weight: 600;
  color: #3e3b3b;
}

[data-theme="dark"] .blog_section .card {
  background: linear-gradient(
    145deg,
    rgba(62, 121, 75, 0.4),
    rgba(51, 50, 50, 0.4),
    rgba(39, 6, 58, 0.4)
  );
  border-radius: 25px;
  box-shadow: 0 0 5px 2px rgba(202, 199, 199, 0.5);
}

.blog_section .card .btn {
  border-radius: 8px 95px;
  border: none;
  color: #fff;
  background-image: linear-gradient(30deg, #2e62bb, #4ce3f7);
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  margin: 20px;
}

.blog_section .card .btn:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

.service_section {
  position: relative;
}

.service_section .box {
  margin-top: 8vh;
  text-align: center;
  padding: 25px 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transform: translateY(0);
  cursor: pointer;
}

.service_section .box .img-box {
  width: 65px;
  height: 65px;
  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;
}

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

.service_section .box .img-box img {
  max-height: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
  animation: pulseScale 2s ease-in-out infinite;
}


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

.service_section .box .detail-box h5 {
  color: #0056b3;
  font-weight: bold;
}

.service_section .box .detail-box p {
  opacity: 0.8;
  margin: 0;
}

.service_section .box:hover .img-box img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(45deg,#007bff,#00bfff);
  color: #ffffff;
}

.service_section .btn-box a:hover {
  background: #1a5dd2;
  transform: scale(1.04);
}

.about_section_layout_padding h2 {
  padding-top: 60px;
}

.about_section_layout_padding p {
  font-size: 20px;
}

.about_section_layout_padding .fw-bold {
  padding-top: 15px;
}

.about_section_layout_padding .fw-bold-1 {
  padding-top: 0px;
  font-weight: 600;
}

.about_section_layout_padding .fw-bold-2 {
  padding-top: -10px;
  font-weight: 600;
}

.about_section_layout_padding .adjust-p {
  font-size: 20px;
  padding-bottom: 20px;
}
.about_section_layout_padding .container {
  cursor: pointer;
}
.client_section .heading_container {
  padding: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.client_section .box {
  border-radius: 15px;
  background: linear-gradient(-45deg, #a8aaac, #eef0f3, #bfe0ec);
  margin: 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.6);
  padding: 25px;
  transition: transform 0.8s ease, box-shadow 0.3s ease, background 0.8s ease;
}

.client_section .box:hover {
  background: linear-gradient(-45deg, #bfe0ec, #eef0f3, #a8aaac);
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.4),
    0 0 30px rgba(255, 0, 255, 0.2);
}

[data-theme="dark"] .client_section .box {
  background: rgb(22, 21, 21);
  box-shadow: 0 0 15px 0 rgba(195, 192, 192, 0.6);
}

[data-theme="dark"] .client_section .box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.4),
    0 0 30px rgba(255, 0, 255, 0.2);
}

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

.client_section .box .client_id .img-box {
  width: 125px;
  min-width: 125px;
  margin-right: 15px;
}

.client_section .box .client_id .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_id .client_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 25px;
}

.client_section .box .client_id .client_detail .client_info h6 {
  color: #0056b3;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.client_section .box .client_id .client_detail .client_info i {
  color: #ffcc00;
}

.client_section .box .client_text {
  margin-top: 20px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 48px;
}

.client_section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(#62b8c7, #004d40);
  box-shadow: 0 4px 12px rgb(61, 59, 59);
  outline: none;
  margin: 0 20px;
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
}

.client_section .owl-carousel .owl-nav button:hover {
  transform: scale(1.2);
}

.heading_container {
  margin-bottom: 30px;
}

.contact-form .btn-send{
  background: linear-gradient(45deg,rgb(83, 157, 110), rgb(92, 120, 165));
  border: none;
  border-radius: 8px 67px;

}

.contact-form .btn-send:hover{
  color: rgb(211, 206, 206);
  background:linear-gradient(45deg, rgb(92, 120, 165),rgb(83, 157, 110)); ;
}

.contact_section input,
.contact_section select {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #ffffff;
  outline: none;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

.contact_section input::-webkit-input-placeholder {
  color: #737272;
}

.contact_section input:-ms-input-placeholder {
  color: #737272;
}

.contact_section input::-ms-input-placeholder {
  color: #737272;
}

.contact_section input::placeholder {
  color: #737272;
}

.contact_section input.message-box {
  height: 135px;
}

.contact_section button {
  border: none;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 55px;
  background-color: #0355cc;
  border: 1px solid #0355cc;
  border-radius: 0;
  color: #ffffff;
  margin-top: 15px;
}

.contact_section button:hover {
  background-color: transparent;
  color: #0355cc;
}

.contact_section .book {
  border: none;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 55px;
  background-color: #74c40d;
  border: 1px solid #80df03;
  border-radius: 20px;
  color: #ffffff;
  margin-top: 15px;
}

.contact_section .book:hover {
  background-color: transparent;
  color: green;
  border-color: green;
}

.contact_section #downloadPDF {
  border: none;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 55px;
  background-color: #810dc4;
  border: 1px solid #ba03df;
  border-radius: 20px;
  color: #ffffff;
  margin-top: 15px;
}

.contact_section #downloadPDF:hover {
  background-color: transparent;
  color: rgb(117, 0, 128);
  border-color: rgb(124, 0, 128);
}

.contact_section .map_container {
  height: 360px;
}

.contact_section .map_container .map {
  height: 100%;
}

.info_section {
  padding: 75px 0;
  background-color: #0a0f43;
  text-align: center;
  color: #fff;
}

.info_section h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
}

.info_section .social-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

.info_section .social-box .box {
  background-color: #ffffff;
  padding: 5px 15px;
}

.info_section a {
  margin: 0 5px;
  color: #0355cc;
}

.info_section a i {
  font-size: 18px;
}

.info_section a:hover {
  color: #ff8a1d;
}

.info_items a {
  position: relative;
}

.info_items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.info_items .item .img-box {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 80px;
  background-color: #0355cc;
  color: #ffffff;
}

.info_items .item .img-box i {
  font-size: 24px;
}

.info_items .item p {
  margin-top: 25px;
  color: #fff;
  margin-bottom: 0;
  background-color: #0a0f43;
}

.info_items .item:hover .img-box {
  background-color: #ff8a1d;
}

.info_items {
  position: relative;
}

.info_items::before {
  content: "";
  position: absolute;
  top: 65px;
  width: 75%;
  height: 1px;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

 /* footer section*/
        .custom-footer {
          background: #172945;
          color: #fff;
          padding: 60px 0 30px;
          font-family: "Lato", Arial, sans-serif;
          border-top: 2px solid #233454;
        }
        
        .footer-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
          display: flex;
          flex-wrap: wrap;
          gap: 40px;
        }
        
        .footer-column {
          flex: 1;
          min-width: 280px;
        }
        
        .footer-left h2 {
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 20px;
          color: #fff;
        }
        
        .footer-left p {
          color: #c1cbe2;
          font-size: 1.05rem;
          line-height: 1.7;
          margin-bottom: 25px;
        }
        
        .cta-btn {
          display: inline-block;
          background: #20ce77;
          color: #fff;
          font-weight: 700;
          font-size: 1.1rem;
          border: none;
          border-radius: 6px;
          padding: 12px 28px;
          transition: background 0.2s, transform 0.2s;
          box-shadow: 0 2px 10px rgba(32, 206, 119, 0.1);
          text-decoration: none;
        }
        
        .cta-btn:hover {
          background: #16b86b;
          transform: translateY(-2px);
          color: #fff;
        }
        
        .footer-center h3, .footer-right h3 {
          font-size: 1.4rem;
          font-weight: 700;
          margin-bottom: 20px;
          color: #fff;
          position: relative;
          padding-bottom: 10px;
        }
        
        .footer-center h3:after, .footer-right h3:after {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          width: 40px;
          height: 3px;
          background: #20ce77;
        }
        
        .contact-list {
          list-style: none;
          padding: 0;
          margin: 0;
        }
        
        .contact-list li {
          margin-bottom: 18px;
          display: flex;
          flex-direction: column;
        }
        
        .contact-list span {
          font-weight: 700;
          color: #fff;
          margin-bottom: 5px;
          font-size: 1.05rem;
        }
        
        .contact-list a {
          color: #22a0ef;
          text-decoration: none;
          transition: color 0.15s;
          font-size: 1rem;
        }
        
        .contact-list a:hover {
          color: #20ce77;
        }
        
        .footer-social-icons {
          margin-top: 25px;
        }
        
        .footer-social-icons a {
          display: inline-block;
          color: #bcc6db;
          font-size: 1.6rem;
          margin-right: 20px;
          transition: color 0.18s, transform 0.18s;
        }
        
        .footer-social-icons a:hover {
          color: #20ce77;
          transform: scale(1.1);
        }
        
        .newsletter-text {
          color: #c1cbe2;
          margin-bottom: 20px;
          font-size: 1.05rem;
        }
        
        .newsletter-form {
          display: flex;
          flex-direction: column;
          gap: 15px;
        }
        
        .newsletter-input {
          padding: 14px 18px;
          border: none;
          border-radius: 6px;
          font-size: 1rem;
          background-color: rgba(255, 255, 255, 0.95);
          color: #333;
          outline: none;
          font-family: "Lato", Arial, sans-serif;
          width: 100%;
          box-sizing: border-box;
        }
        
        .newsletter-input::placeholder {
          color: #888;
        }
        
        .newsletter-btn {
          padding: 14px 25px;
          border: none;
          border-radius: 6px;
          background: #20ce77;
          color: white;
          font-weight: 700;
          font-size: 1rem;
          cursor: pointer;
          transition: background 0.2s, transform 0.2s;
          font-family: "Lato", Arial, sans-serif;
          width: 100%;
        }
        
        .newsletter-btn:hover {
          background: #16b86b;
          transform: translateY(-2px);
        }
        
        /* Toast notification styles */
        .toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .toast {
            padding: 16px 24px;
            border-radius: 6px;
            color: white;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            max-width: 350px;
        }
        
        .toast.show {
            transform: translateX(0);
            opacity: 1;
        }
        
        .toast.success {
            background: #20ce77;
        }
        
        .toast.error {
            background: #ff5252;
        }
        
        .toast i {
            font-size: 1.2rem;
        }
        
        /* Footer copyright */
        .footer-copyright {
            margin-top: 50px;
            color: #c1cbe2;
            font-size: 1rem;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        
        /* Responsive adjustments */
        @media (max-width: 900px) {
          .footer-container {
            flex-direction: column;
            gap: 40px;
          }
          
          .footer-column {
            width: 100%;
          }
          
          .footer-center h3:after, .footer-right h3:after {
            left: 50%;
            transform: translateX(-50%);
          }
          
          .footer-center, .footer-right {
            text-align: center;
          }
          
          .contact-list li {
            align-items: center;
          }
        }
        
        @media (max-width: 768px) {
          .toast {
              max-width: calc(100vw - 40px);
          }
        }

/* Contact Form Styles */
.contact-container,
.booking-container {
background: linear-gradient(45deg,
  rgba(15, 12, 41, 0.9) 0%,
  rgba(133, 90, 112, 0.7) 35%,
  rgba(40, 40, 94, 0.8) 65%,
  rgba(79, 6, 83, 0.6) 100%
);


  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.booking-container {
  background-color: rgba(0, 142, 167, 0.4);
}

.contact-form,
.bookingForm {
  flex: 1 1 48%;
}

.contact-form h2,
.bookingForm h2 {
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffffff;
}

[data-theme="dark"] .contact-form h2,
.bookingForm h2 {
  color: white;
}

.contact-form .form-control,
.bookingForm .form-control {
  border-radius: 25px;
  padding-left: 40px;
  margin-bottom: 20px;
  border: 1px solid #b2ebf2;
  background-color: #f1f8e9;
}

.contact-form .form-group,
.bookingForm .form-group {
  position: relative;
}

.contact-form .form-group i,
.bookingForm .form-group i {
  position: absolute;
  left: 15px;
  top: 12px;
  color: #4db6ac;
}

.btn-send,
.book {
  border-radius: 25px;
  background-color: #0e2c28;
  color: white;
  padding: 10px 30px;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-send:hover,
.book:hover {
  background-color: #0d342d;
}

.contact-image,
.booking-image {
  flex: 1 1 48%;
  text-align: center;
}

.contact-image img,
.booking-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-container,
  .booking-container {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form,
  .contact-image,
  .bookingForm,
  .booking-image {
    flex: 1 1 100%;
  }
}

/* end footer section*/

/* Contact Us Highlight Styles */

/*.contact-highlight .nav-link {
  background-color: #0a6ba3;
  color: white !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
  padding: 10px 20px;
}*/

/*.contact-highlight .nav-link:hover {
  background-color: #023e99;
  transform: scale(1.05);
  color: #ffffff !important;
}*/

/* enhancing service section */
.card:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

.card i {
  transition: transform 0.3s ease;
}

.card:hover i {
  transform: scale(1.1);
}
#card7:hover {
  background: linear-gradient(to bottom right, #e8f5e9, #c8e6c9);
  color: #000;
}

#card8:hover {
  background: linear-gradient(to bottom right, #e3f2fd, #bbdefb);
  color: #000;
}

#card9:hover {
  background: linear-gradient(to bottom right, #f1f8e9, #dcedc8);
  color: #000;
}

/*# sourceMappingURL=style.css.map */
.new-info-section {
  background-color: #0d1247;
  color: #ffffff;
  padding: 80px 0 0;
  font-family: "Arial", sans-serif;
}

.new-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Grid Layout for Footer Columns */
.footer-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
}

/* Individual Footer Columns */
.footer-column {
  /* Basic styling for all columns */
  text-align: left;
}

/* About Section Specifics */
.footer-about .footer-logo {
  display: block;
  margin-bottom: 15px;
  color: #ffffff;
  text-decoration: none;
}

.footer-about .footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-about .footer-logo h2 {
  font-size: 1.8em;
  margin: 0;
}

.footer-about .footer-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  color: #ffffff;
  font-size: 1.3em;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.footer-social-icons a:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}

/* Headings for Footer Columns */
.footer-heading {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #007bff;
  border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #007bff;
  transform: translateX(5px);
}

/* Contact Section Specifics */
.footer-contact p {
  font-size: 1em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact p i {
  font-size: 1.2em;
  color: #007bff;
  margin-right: 10px;
  padding-top: 2px;
}

.footer-contact p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: #007bff;
}

.footer-cta-area {
  margin-top: 30px;
}

/* Footer Bottom - Copyright */
.new-footer-bottom {
  background-color: #090c30;
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.new-footer-bottom p {
  margin: 0;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Responsive Adjustments --- */

@media (max-width: 992px) {
  .footer-grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  .footer-heading {
    font-size: 1.3em;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .new-info-section {
    padding: 60px 0 0;
  }
  .footer-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-column {
    text-align: center;
  }
  .footer-about .footer-social-icons {
    justify-content: center;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contact p {
    justify-content: center;
  }
  .footer-contact p i {
    margin-right: 5px;
  }
}

@media (max-width: 480px) {
  .new-info-section {
    padding: 40px 0 0;
  }
  .new-container {
    padding: 0 15px;
  }
  .footer-heading {
    font-size: 1.2em;
  }
  .footer-social-icons a {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .whatsapp {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --nav-bg: #ffffff;
  --nav-text-color: #000000;
}

[data-theme="dark"] {
  --bg-color: #000000;
  --text-color: #ffffff;
  --nav-bg: #111111;
  --nav-text-color: #ffffff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar,
.header_section,
.footer_section {
  background-color: var(--nav-bg);
}

.navbar a {
  color: var(--text-color);
}

/* Theme toggle switch */
.theme-switch {
  position: relative;
  top: 7px;
  display: inline-block;
  width: 60px;
  height: 30px;
  vertical-align: middle;
}

.theme-switch input {
  display: none;
}

.theme-switch .slider {
  background-color: #003da5;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-sizing: border-box;
  position: relative;
  transition: background-color 0.3s ease;
}

.theme-switch .slider::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  background-color: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* Icons */
.sun-icon,
.moon-icon {
  font-size: 14px;
  color: white;
  z-index: 2;
  pointer-events: none;
}

/* DARK mode toggle active */
#theme-toggle:checked + .slider::before {
  transform: translateX(30px);
}

/* Dark mode styles for services page and other elements */
[data-theme="dark"] .card {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-color: #333333 !important;
}

[data-theme="dark"] .card h5,
[data-theme="dark"] .card p {
  color: #ffffff !important;
}

[data-theme="dark"] .heading_container h2 {
  color: #ffffff !important;
}

[data-theme="dark"] .heading_container p {
  color: #cccccc !important;
}

[data-theme="dark"] .about_section_layout_padding {
  background-color: #0d1117 !important;
  color: #ffffff !important;
}

[data-theme="dark"] .about_section_layout_padding h2 {
  color: #ffffff !important;
}

[data-theme="dark"] .about_section_layout_padding p {
  color: #cccccc !important;
}

[data-theme="dark"] .about_section_layout_padding .fw-bold,
[data-theme="dark"] .about_section_layout_padding .fw-bold-1,
[data-theme="dark"] .about_section_layout_padding .fw-bold-2 {
  color: #ffffff !important;
}

[data-theme="dark"] .about_section_layout_padding .adjust-p {
  color: #cccccc !important;
}

[data-theme="dark"] .container {
  background-color: transparent !important;
}

[data-theme="dark"] .text-primary {
  color: #007bff !important;
}

[data-theme="dark"] .text-success {
  color: #28a745 !important;
}

[data-theme="dark"] .text-warning {
  color: #ffc107 !important;
}

[data-theme="dark"] .text-danger {
  color: #dc3545 !important;
}

[data-theme="dark"] .text-info {
  color: #17a2b8 !important;
}

[data-theme="dark"] .text-secondary {
  color: #6c757d !important;
}

[data-theme="dark"] .shadow {
  box-shadow: 0 0.125rem 0.25rem rgba(255, 255, 255, 0.075) !important;
}

[data-theme="dark"] .navbar-brand span {
  color: #ffffff !important;
}

[data-theme="dark"] .navbar-nav .nav-link {
  color: #ffffff !important;
}

[data-theme="dark"] .navbar-nav .nav-item.active .nav-link {
  color: #007bff !important;
}

[data-theme="dark"] .navbar-nav .nav-item:hover .nav-link {
  color: #007bff !important;
}

[data-theme="dark"] .navbar-toggler span {
  background-color: #ffffff !important;
}

[data-theme="dark"] .navbar-toggler span::before,
[data-theme="dark"] .navbar-toggler span::after {
  background-color: #ffffff !important;
}

/* Dark mode styles for footer elements */
[data-theme="dark"] .new-info-section {
  background-color: #0d1247 !important;
  color: #ffffff !important;
}

[data-theme="dark"] .footer-heading {
  color: #ffffff !important;
}

[data-theme="dark"] .footer-links ul li a,
[data-theme="dark"] .footer-services ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-links ul li a:hover,
[data-theme="dark"] .footer-services ul li a:hover {
  color: #007bff !important;
}

[data-theme="dark"] .footer-contact p {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-contact p a {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-contact p a:hover {
  color: #007bff !important;
}

[data-theme="dark"] .footer-about .footer-description {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-social-icons a {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="dark"] .footer-social-icons a:hover {
  background-color: #007bff !important;
  border-color: #007bff !important;
  color: #ffffff !important;
}

[data-theme="dark"] .new-footer-bottom {
  background-color: #090c30 !important;
}

[data-theme="dark"] .new-footer-bottom p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Dark mode styles for contributor page elements */
[data-theme="dark"] .contributors-section {
  background-color: #f8f9fa !important;
}

[data-theme="dark"] .contributor-card {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #e9ecef !important;
}

[data-theme="dark"] .contributor-name {
  color: #000000 !important;
}

[data-theme="dark"] .contributor-stats {
  background: linear-gradient(135deg, #007bff, #0056b3) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .contributor-link {
  background: #28a745 !important;
  color: #ffffff !important;
}

[data-theme="dark"] .contributor-link:hover {
  background: #218838 !important;
  color: #ffffff !important;
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .hero-section h1 {
  color: #ffffff !important;
}

[data-theme="dark"] .hero-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .loading-spinner p {
  color: #000000 !important;
}

[data-theme="dark"] .error-message {
  background: #f8d7da !important;
  color: #721c24 !important;
  border-color: #f5c6cb !important;
}

[data-theme="dark"] .error-message h4 {
  color: #721c24 !important;
}

[data-theme="dark"] .error-message p {
  color: #721c24 !important;
}

[data-theme="dark"] .error-message a {
  color: #007bff !important;
}

[data-theme="dark"] .error-message a:hover {
  color: #0056b3 !important;
}

/* Dark mode styles specifically for contributor page headings */
[data-theme="dark"] .contributors-section .heading_container h2 {
  color: #000000 !important;
}

[data-theme="dark"] .contributors-section .heading_container p {
  color: #000000 !important;
}

/* Dark mode styles specifically for home page service section text */
[data-theme="dark"] .service_section .box .detail-box h5 {
  color: #000000 !important;
}

[data-theme="dark"] .service_section .box .detail-box p {
  color: #000000 !important;
}

/* Dark mode styles specifically for home page professional section text */
[data-theme="dark"] .professional_section .detail-box p {
  color: #000000 !important;
}

/* Light Mode Defaults  */
[data-theme="light"] body {
  background-color: white;
  color: black;
}

/* Header Section */
.hero {
  background-color: #e5efff;
  color: #000;
}

/* Button */
.btn-primary {
  background-color: #ff7f27;
  color: white;
}

[data-theme="dark"] body {
  background-color: #0d1117;
  color: #f0f0f0;
}

[data-theme="dark"] .hero {
  background-color: #121212;
  color: #ffffff;
}

[data-theme="dark"] .btn-primary {
  background-color: #ff7f27;
  color: white;
}

/* Navbar */
[data-theme="dark"] .navbar {
  background-color: #1a1a1a;
  color: white;
}

[data-theme="dark"] .navbar a {
  color: white;
}

body,
.hero,
.navbar,
.btn-primary {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* top button */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 999;
  background-color: #00bfff;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: #1e90ff;
  transform: scale(1.1);
}

#backToTop i {
  pointer-events: none;
}

/* FAQ Section Header Styling */
.faq_section .heading_container h2 {
  background: linear-gradient(135deg, #4f46e5 0%, #2636c4 50%, #274bdb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.faq_section .heading_container {
  width: 100%; /* full width */
  display: flex; /* enable flexbox */
  justify-content: center; /* horizontal centering */
  align-items: center; /* vertical alignment if needed */
  text-align: center; /* fallback for multi-line text */
}

.faq_section .heading_container p {
  background: linear-gradient(135deg, #010102 0%, #192b50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px; /* remove default margins */
}

/* Dark mode header styling */
[data-theme="dark"] .faq_section .heading_container h2 {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .faq_section .heading_container p {
  background: linear-gradient(135deg, #d1d5db 0%, #f3f4f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Style For FAQ Section */
.faq_section .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #719afa 0%, #e0f2fe 50%, #9dbde8 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.faq_section .accordion-item:hover {
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}

.faq_section .accordion-header {
  margin: 0;
}

/* Header button */
.accordion-button {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  text-align: left;
  cursor: pointer;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  line-height: 1.35;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  color: #1e293b;
  box-shadow: none !important;
  outline: 0 !important;
  background-image: none !important;
  transition: all 0.2s ease;
}

/* Entire bar should feel interactive on hover*/
.accordion-button:hover {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #93c5fd 100%);
  color: #0c4a6e;
}

.accordion-button:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

/*Remove Bootstrap's chevron entirely*/
.accordion-button::after {
  display: none !important;
  content: none !important;
}

/*Active (open) state*/
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #bae6fd 0%, #93c5fd 50%, #60a5fa 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  color: #0c4a6e;
}

/*Body (answer)*/
.accordion-body {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #272f3c;
  padding: 1rem 1.25rem;
  line-height: 1.6;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* Dark Mode Styles */
[data-theme="dark"] .accordion-item {
  background: linear-gradient(135deg, #1e293b 0%, #374151 50%, #4b5563 100%);
  border: 1px solid #4b5563;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .accordion-item:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .accordion-button {
  background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
  color: #f1f5f9;
}

[data-theme="dark"] .accordion-button:hover {
  background: linear-gradient(135deg, #475569 0%, #64748b 50%, #78716c 100%);
  color: #ffffff;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #64748b 0%, #78716c 50%, #a8a29e 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  color: #ffffff;
}

[data-theme="dark"] .accordion-body {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

/*Transition on collapse*/
@media (prefers-reduced-motion: no-preference) {
  .accordion-collapse {
    transition: height 0.2s ease;
  }
}

/*Small visual polish for first/last items*/
.accordion-item:first-child .accordion-button {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.accordion-item:last-child .accordion-button.collapsed {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
/*service section with flip cards*/

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --nav-bg: #ffffff;
  --nav-text-color: #000000;
}

[data-theme="dark"] {
  --bg-color: #0d1117;
  --text-color: #ffffff;
  --nav-bg: #1a1a1a;
  --nav-text-color: #ffffff;
}

/* FIXED FLIP CARD CSS */
.flip-card {
  background-color: transparent;
  height: 360px;
  perspective: 1000px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 15px;
}

[data-theme="light"] .flip-card {
  background-color: transparent;
}

[data-theme="dark"] .flip-card {
  background-color: transparent;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background: rgba(210, 220, 232, 0.7);
  z-index: 2;
  border-radius: 30px;
  border: 1px solid rgb(98, 159, 205);
}

[data-theme="dark"] .flip-card-front {
  background:linear-gradient(45deg, rgba(137, 176, 218, 0.2), rgba(188, 194, 200, 0.4));
  border: none;
  color: #ffffff;
}

.flip-card-back {
  background-color: rgb(9, 9, 68);
  transform: rotateY(180deg);
  padding: 20px;
  color: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme="dark"] .flip-card-back{
  background-color: #037da6;
}

/* Service card styling */
.service-card {
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card .img-box {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.service-card .img-box i {
  font-size: 3rem;
  color: #726dae;
}

[data-theme="dark"] .service-card .img-box i {
  color: #9d97d4;
}

.service-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

[data-theme="dark"] .service-card h5 {
  color: #ffffff;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

[data-theme="dark"] .service-card p {
  color: #cccccc;
}

/* Back card content */
.service_section .flip-card-back h5 {
  color: white;
  margin-bottom: 15px;
  font-weight: bold;
}

.service_section .flip-card-back p {
  color: white;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service_section .flip-card-back ul {
  color: white;
  padding-left: 20px;
}

.service_section .flip-card-back ul li {
  margin-bottom: 8px;
}

.container {
  max-width: 1200px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .flip-card {
    height: 300px;
  }

  .service-card {
    padding: 20px 10px;
  }

  .service-card .img-box i {
    font-size: 2.5rem;
  }
}
/* UI enhancement for buttons in Homepage*/
.smart-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 12px 24px;
  font-size: 1.05rem;
  border-radius: 10px;
  margin: 8px;
  position: relative;
  z-index: 1;
}

.smart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
