body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

/* === Section with bubbles === */
.bubble-section {
  position: relative;
  height: 650px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #012651, #009faf);
}

/* Bubble container (only inside section) */
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: rise 12s infinite ease-in;
}

/* Animation for bubbles */
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) scale(1.5);
    opacity: 0;
  }
}

/* Content stays on top */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

#services .nav-pills .nav-link {
  color: #0d6efd;
  /* border-radius: 50px; */
  font-weight: 500;
  color: #000000 !important;
  padding: 29px 35px;
}

#services .nav-pills .nav-link.active {
  background-color: transparent;
  border: 1px solid #052b64;
  color: #000000 !important;
}

#services .card {
  transition: transform 0.3s, box-shadow 0.3s;
}

#services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Contact */
/* SOCIAL ICONS */
.social-icons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e9ecef;
  color: #0d6efd;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}
/* footer */

footer {
  background-color: #272b2e;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.btn-custom {
  background-color: white;
  color: #0d6efd;
  border: none;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #0d6efd;
  color: white;
}

/* --- MAIN CONTENT SWIPER --- */
.main-swiper {
  width: 100%;
  height: 300px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.main-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 21px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.main-swiper .swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}

/* --- THUMBNAIL (TABS) SWIPER --- */
/* --- MAIN CONTENT SWIPER --- */
.main-swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.main-swiper .swiper-slide {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  padding: 30px;
}

.main-swiper .swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}

/* --- THUMBNAIL / TAB SWIPER --- */
.thumbs-container {
  position: relative;
  display: flex;
  align-items: center;
}

.thumbs-swiper {
  flex: 1;
  padding: 10px 0;
}

.thumbs-swiper .swiper-slide {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 220px;
}

.thumbs-swiper .text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #212529;
}

.thumbs-swiper img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
  margin-left: 10px;
}

.thumbs-swiper .swiper-slide-thumb-active {
  border-color: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

/* --- CARD COLORS --- */
.thumbs-swiper .swiper-slide:nth-child(1) {
  background-color: #e8f0ff;
}
.thumbs-swiper .swiper-slide:nth-child(2) {
  background-color: #fff1c1;
}
.thumbs-swiper .swiper-slide:nth-child(3) {
  background-color: #dff5e3;
}
.thumbs-swiper .swiper-slide:nth-child(4) {
  background-color: #ffe1e1;
}
.thumbs-swiper .swiper-slide:nth-child(5) {
  background-color: #e1f2ff;
}
.thumbs-swiper .swiper-slide:nth-child(6) {
  background-color: #f0e1ff;
}

/* --- RIGHT-SIDE BUTTONS --- */
.thumbs-nav {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.thumbs-button-prev,
.thumbs-button-next {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #e9ecef;
  color: #0d6efd;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.thumbs-button-prev:hover,
.thumbs-button-next:hover {
  background: #0d6efd;
  color: #fff;
}

.icon-box {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
  gap: 15px;
}
.icon-box i {
  background-color: aqua; /* aqua background */
  opacity: 0.5; /* low opacity */
  color: white; /* icon color */
  padding: 10px;
  border-radius: 50%; /* circle */
  font-size: 20px;
  min-width: 40px;
  text-align: center;
}

/***********************************/
.call-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff; /* dark background */
  padding: 10px 20px;
  border-radius: 10px;
  max-width: 230px;
  color: #ff5700;
}

.call-box .icon {
  background-color: #ff5700; /* aqua background */
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.call-box p{
  margin: 0;
  color: #009faf;
  font-weight:700;
}

.call-box a {
  margin: 0;
  color: #000;
}

.call-box a {
  text-decoration: none;
}

.call-box a:hover {
  text-decoration: underline;
}
/************************/
.proj_cont h1{
	font-size:36px;
	font-weight:700;
	color:#033864	
}
.proj_cont ul{
	list-style:none;
}
.proj_cont ul li{
	font-size: 16px;
    color: #363535;
    padding-bottom: 10px;
    border-bottom: 1px solid #f6f0f0a6;
}
.proj_cont ul li i{
	color:#ff5700;
	padding-right:10px;
}
a{
	text-decoration:none;
}
.admin_btn{
	 background:#CC3300;
	 padding:7px 15px;
	 color:#fff;
}
.admin_btn:hover{
	background:#033864;
	color:#fff;
}