   body {
     -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
      background-color: #f5ffff;

    }

:root {
--card-bg: #f3fbfb;
--accent: #2aa79b;
--dark: #222;
}

body {
background: white;
font-family: 'Paprika', sans-serif;    padding: 20px;
}

.frame {
border-radius: 14px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
background: url('BG.jpg') no-repeat center center fixed;
background-size: cover;
font-family: 'Paprika', sans-serif;}

.hero {
background-image: url('../images/img/aa2.webp'); /* ✅ Add this line */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 720px;
position: relative;
display: flex;
align-items: center;
justify-content: flex-start;
color: black;
text-align: left;
padding-left: 60px;
padding-right: 20px;
}

.hero-text-wrapper {
font-family: 'Paprika', sans-serif;
max-width: 700px;
z-index: 2;
}

/* Tablets */
@media (max-width: 991px) {
.hero {
min-height: 50vh;
padding: 30px 20px;
text-align: center;         /* center content */
justify-content: center;    /* center horizontally */
}

.hero-text-wrapper {
max-width: 90%;
margin: 0 auto;
padding: 0 10px;
}

.hero h1 {
font-size: 28px;
}

.floating-cta {
margin: 16px auto 0;
display: inline-block;
}
}

/* Phones */
@media (max-width: 576px) {
.hero {
min-height: 45vh;
padding: 20px 10px;
}

.hero h1 {
font-size: 22px;
}

.badge {
font-size: 12px;
padding: 6px 10px;
}

.floating-cta {
font-size: 0.85rem;
padding: 10px 14px;
}
}





.topbar {
position: absolute;
left: 0;
right: 0;
top: 0;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 10;
background: white;
padding: 12px 40px;
margin: 15px;
border-radius: 10px;
}

.logo-box {
background: white;
padding: 10px 14px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
display: flex;
align-items: center;
gap: 8px;
font-weight: 600;
}

.nav-center {
margin-left: auto;
display: flex;
gap: 26px;
align-items: center;
}

.nav-center a {
color: #222;
text-decoration: none;
font-weight: 600;
}

.cta-quote {
background: #222;
color: #fff;
padding: 8px 16px;
border-radius: 8px;
}

.torn-sep {
position: absolute;
left: 0;
right: 0;
bottom: -1px;
}

.hero .badge {
background: var(--accent);
color: #fff;
padding: 8px 14px;
border-radius: 6px;
font-weight: 600;
z-index: 3;
white-space: nowrap;
display: inline-block;
margin-bottom: 16px;
position: static;
transform: none;
left: auto;
top: auto;
}

.hero h1 {
font-family: 'Paprika', sans-serif;
font-size: 38px;
line-height: 1.05;
margin: 0 0 20px 0;
z-index: 2;
text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.floating-cta {
background: white;
padding: 18px 26px;
border-radius: 10px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
z-index: 4;
font-weight: 600;
color: #333;
white-space: nowrap;
display: inline-block;
position: static;
transform: none;
margin-top: 24px;
}

.content-section-existing {
background: var(--card-bg);
padding: 48px 64px 20px;
}

.section-title-existing {
color: var(--accent);
font-weight: 700;
/* margin-bottom: 6px; */
font-size: 1.2rem
}

.section-heading {
font-family: 'Oswald';
font-size: 28px;
color: var(--dark);
margin-bottom: 12px
}

/* .service-card {
border-radius: 12px;
background: white;
padding: 26px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
text-align: center;
height: 100%;
} */

.icon-circle {
width: 72px;
height: 72px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
background: #f6f6f6
}

.explore-btn {
margin-top: -10px;
background:rgba(255, 89, 0, 0.789);
color: black;
padding: 10px 14px;
border-radius: 8px;
display: inline-block
}

/* Responsive Styles */
@media (max-width: 991px) {
.hero h1 {
    font-size: 32px;
    line-height: 1.2;
}

.topbar {
    left: 12px;
    right: 12px;
    padding: 10px 20px;
}

.floating-cta {
    font-size: 0.9rem;
    padding: 14px 20px;
}

.content-section-existing {
    padding: 32px 20px 60px;
}

.section-heading {
    font-size: 22px;
}

.navbar-collapse {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.nav-center {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.nav-center .nav-link {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
}

.nav-center .cta-quote {
    text-align: center;
}

.service-card {
    padding: 22px 18px;
}

.service-card h6 {
    font-size: 1rem;
}

.service-card p {
    font-size: 0.8rem;
}
}

@media (max-width: 576px) {
.topbar {
    margin: 8px;
    padding: 8px 14px;
}

.logo-box img {
    width: 28px;
    height: 28px;
}

.section-heading {
    font-size: 20px;
}

.service-card {
    padding: 18px 14px;
}

.service-card h6 {
    font-size: 0.95rem;
}

.service-card p {
    font-size: 0.78rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
}

.col-sm-6 {
    width: 100%;
}

.floating-cta {
    font-size: 0.8rem;
    padding: 12px 18px;
}
}

.navbar-toggler {
border: none;
}

.navbar-toggler:focus {
box-shadow: none;
}

.navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



.service-card {
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}



.content-section {
max-width: 1300px;
height: 530px;
overflow: hidden;
margin: 1rem auto;
padding: 1rem 15px;
border-radius: 15px;
position: relative;

background-image: url("../images/img/smile2.webp"); /* Replace with actual image path */
background-size: cover;
background-position: center;
background-repeat: no-repeat;

border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}


.section-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: black;
  text-align: center;
  margin-bottom: 1.5rem;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  height: 200px;
  margin-bottom: 1rem;
  position: relative;
}

.slider-row {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.service-card {
  flex: 0 0 180px;
  background: transparent;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ff6d4d;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  animation: fadeIn 1s ease;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.icon-circle {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}


.text-muted {
  font-size: 11px;
  color: black !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 150px;
    padding: 0.75rem;
  }

  .icon-circle {
    font-size: 1.5rem;
  }

  .text-muted {
    font-size: 0.8rem;
  }
}
body {
  font-family: 'Paprika', sans-serif;
  font-size: 13px;
}

.overlay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 1100px;
max-width: 95%;
background: #080808a5;
border: 1px solid #ccc;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
display: none;
z-index: 1050;
padding: 20px;
border-radius: 8px;
overflow-x: auto;
max-height: 80vh;
overflow-y: auto;
}

/* 6 fixed columns */
.col-2 {
  flex: 0 0 auto;
  width: calc(100% / 6);
  max-width: calc(100% / 6);
}

.service-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 12px 8px;
  margin-bottom: 10px;
  text-align: center;
  transition: background-color 0.2s;
  min-height: 70px;
  font-size: 12px;
  white-space: normal;   /* allow wrapping if needed */
  overflow: visible;     /* show full text */
  text-overflow: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word; /* break long words if any */
}

.service-box:hover {
  background-color: #e9ecef;
}

.btn-hover-wrapper {
  position: relative;
  display: inline-block;
}


.service-box {
border-radius: 6px;
padding: 12px 8px;
margin-bottom: 10px;
text-align: center;
transition: background-color 0.2s;
min-height: 70px;
font-size: 12px;
white-space: normal;
overflow: visible;
text-overflow: unset;
display: flex;
align-items: center;
justify-content: center;
word-break: break-word;
border: 1px solid #dee2e6; /* default border */
}

/* Different background colors cycling every 6 cards */
.service-box:nth-child(6n+1) {
background-color: #d1e7dd;
border-color: #badbcc;
}

.service-box:nth-child(6n+2) {
background-color: #cff4fc;
border-color: #b6effb;
}

.service-box:nth-child(6n+3) {
background-color: #f8d7da;
border-color: #f5c2c7;
}

.service-box:nth-child(6n+4) {
background-color: #fff3cd;
border-color: #ffecb5;
}

.service-box:nth-child(6n+5) {
background-color: #dbe5f1;
border-color: #b7c8e8;
}

.service-box:nth-child(6n+6) {
background-color: #e2e3e5;
border-color: #d3d6d8;
}

.service-box:hover {
background-color: #e9ecef !important;
}



/* Overlay - single column on small screens */
@media (max-width: 768px) {
#overlayBox .row {
display: block !important;   /* stack vertically */
}

#overlayBox .col-2 {
width: 100% !important;      /* full width */
max-width: 100% !important;
flex: none !important;
}

#overlayBox .service-box {
width: 100%;                 /* full width box */
min-width: auto;
text-align: center;
font-size: 15px;
margin-bottom: 10px;
}
}

/* Scoped to .tripcaro-container to avoid global collision */
.tripcaro-container .tripcaro-card {
width: 340px;
height: 600px;
position: relative;
overflow: hidden;
border-radius: 16px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tripcaro-container .tripcaro-card:hover {
transform: scale(1.02);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tripcaro-container .tripcaro-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: opacity 0.3s ease;
}

.tripcaro-container .tripcaro-overlay {
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
color: rgb(243, 239, 239);
transition: background 0.3s ease;
}

.tripcaro-container .tripcaro-overlay h5 {
font-size: 1.2rem;
margin: 0;
font-weight: 600;
}

.tripcaro-container .tripcaro-overlay p {
font-size: 0.9rem;
opacity: 0.85;
}

/* Responsive */
@media (max-width: 576px) {
.tripcaro-container .tripcaro-card {
  width: 100%;
  height: 400px;
}
}
/* body {
background-color: #f8f9fa;
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 2rem;
text-align: center;
} */

h2.main-title {
font-weight: 700;
font-size: 2.5rem;
margin-bottom: 2rem;
color: #333;
letter-spacing: 0.1em;

text-align: center;
}

/* Wrapper around carousel and buttons */
.carousel-wrapper {
position: relative;
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}

.carousel {
flex: 1;
border-radius: 15px;
overflow: hidden;
/* box-shadow: 0 8px 20px rgb(0 0 0 / 0.15); */
}

/* Aspect ratio container - 16:9 */
.carousel-inner {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 aspect ratio */
}

.carousel-item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.carousel-item img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 15px;
transition: transform 0.5s ease;
}

.carousel-item.active img {
transform: scale(1.05);
}

/* Buttons outside slider with new background color */
.carousel-control-prev,
.carousel-control-next {
position: relative;
width: 3rem;
height: 3rem;
background-color: #ff6d4d;
border-radius: 50%;
transition: background-color 0.3s ease;
filter: drop-shadow(0 0 4px rgba(255,109,77,0.7));
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: 0 1rem;
flex-shrink: 0;
border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
background-color: #e65b3f;
filter: drop-shadow(0 0 6px rgba(230,91,63,0.8));
}

/* Keep icons white for contrast */
.carousel-control-prev-icon,
.carousel-control-next-icon {
filter: invert(100%);
width: 1.5rem;
height: 1.5rem;
}

/* Responsive font & controls */
@media (max-width: 768px) {
h2.main-title {
  font-size: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
}
}

@media (max-width: 480px) {
h2.main-title {
  font-size: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 2rem;
  height: 2rem;
  margin: 0 0.3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
}
}
footer .footer-logo {
font-weight: 700;
font-size: 1.5rem;
vertical-align: middle;
}

footer .footer-email-input {
max-width: 280px;
}

footer .footer-social-icon {
font-size: 1.3rem;
margin-right: 12px;
transition: color 0.3s;
}

footer .footer-social-icon.linkedin { color: #0077b5; }
footer .footer-social-icon.twitter { color: #1da1f2; }
footer .footer-social-icon.github { color: #333; }
footer .footer-social-icon.facebook { color: #1877f2; }
footer .footer-social-icon.instagram { color: #e1306c; }

footer .footer-heading {
font-weight: 600;
margin-bottom: 12px;
}

footer .footer-link {
color: #000;
text-decoration: none;
display: block;
margin-bottom: 8px;
}

footer .footer-link:hover {
text-decoration: underline;
}

footer .footer-hiring-badge {
background-color: #ff5c33;
color: white;
border-radius: 20px;
font-size: 0.6rem;
padding: 3px 8px;
margin-left: 6px;
vertical-align: top;
}

footer .footer-work-with-us {
border: 1px solid #ddd;
border-radius: 10px;
padding: 10px 16px;
display: inline-flex;
align-items: center;
margin-top: 30px;
transition: all 0.2s ease;
text-decoration: none;
color: inherit;
}

footer .footer-work-with-us:hover {
background-color: #f8f9fa;
}

footer .footer-work-with-us img {
width: 32px;
height: 32px;
border-radius: 50%;
margin-right: 10px;
}

footer .footer-bottom {
background-color: #ff6d4d;
color: white;
padding: 20px 0;
}

footer .footer-bottom a {
color: white;
text-decoration: none;
margin-left: 15px;
}

footer .footer-bottom a:hover {
text-decoration: underline;
}


.btn-primary {
background-color: #ff6d4d;
border: none;
transition: background-color 0.3s ease;
}

.btn-primary:hover {
background-color: #70eb76;
}

.modal-content {
border: none;
border-radius: 12px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.modal-header {
background-color: #ff6d4d;
color: white;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}

.modal-title {
font-weight: 600;
font-size: 1rem;
}

.form-floating > label {
color: #6c757d;
}

.form-control:focus {
border-color: #0056b3;
box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.form-label {
font-weight: 500;
margin-bottom: 0.3rem;
}

.modal-footer {
border-top: none;
}
