


.carousel-item img {
    max-height: 400px;       /* Adjust the value as needed */
    object-fit: cover;       /* Ensures the image covers the area without distortion */
    width: 100%;             /* Ensures the image still fills the carousel width */
  }

  #service-color
  {
   
    background-color:#253854;
  }

  .navbar-nav .nav-link {
    position: relative;
    z-index: 10;
  }
.mask{
  background-color: rgba(0, 0, 0, 0.5); 
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



.navbar .dropdown-item
{
  color: #003366;
}

.custom-navbar .nav-link{
  color: #003366 !important; /* custom menu link color */
  font-weight: bold;
padding-top: 0.25rem;  /* or 0 */
  padding-bottom: 0.25rem; /* or 0 */
}

.custom-navbar .nav-link:hover {
  color: #40b3d5 !important; /* darker on hover */
}

/* Control logo height and prevent extra space */
.logo-img {
  height: 60px !important;       /* Set to your preferred size */
  width: auto;        /* Maintain aspect ratio */
  object-fit: contain;
}

.navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.custom-btn {
  background-color: #278ac5; /* warm gold-brown tone */
  color: white;
  border: none;
}

.custom-btn:hover {
  background-color: #3cadd2; /* slightly darker on hover */
  color: white;
}


.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



.big-img {
  width: 400px;           /* consistent width */
  height: 270px;          /* consistent height */
  object-fit: cover;      /* ensures image fills frame neatly */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.big-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .big-img {
    width: 320px;
    height: 220px;
  }
}
@media (max-width: 768px) {
  .big-img {
    width: 90%;
    height: 200px;
  }
}
.blue-check {
  color: #0d6efd !important;  /* Bootstrap blue */
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
  font-size: 1.1rem;
}

.feature-icon path {
  fill: url(#blue-gradient);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
}



.logo-brand {
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.8;
  
  
}

.logo-brand:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}


.feature-card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Gradient icons */
.gradient-icon {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}




.why-choose h3 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.why-choose p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.col-4, .col-md-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-brand {
  max-height: 60px;
  object-fit: contain;
}

/* Main wrapper */
.logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;          /* spacing between logos */
}

/* Logo container (desktop size) */
.logo-item {
  width: 180px;         /* bigger logos */
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.logo-brand {
  max-width: 100%;

  object-fit: contain;
  display: block;
}

/* ===================== */
/* RESPONSIVE BREAKPOINTS */
/* ===================== */

/* Tablets */
@media (max-width: 992px) {
  .logo-item {
    width: 150px;
    height: auto;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .logo-item {
    width: 130px;
    height: auto;
  }
}

/* Keep everything on one single row on mobile */
@media (max-width: 576px) {
  .logos-wrapper {
    flex-wrap: nowrap !important;     /* prevents wrapping */
    overflow-x: auto;                 /* allows horizontal scrolling if needed */
    -webkit-overflow-scrolling: touch;
  }

  .logo-item {
    width: 90px !important;           /* smaller width so all 4 fit */
    height: auto;          /* smaller height */
    flex: 0 0 auto !important;        /* prevents shrinking/weird spacing */
  }
}



.solutions-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.solution-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  scroll-snap-align: start;
}

.solution-card h4 {
  line-height: 1.3;
}

/* Hide scrollbar (optional, clean look) */
.solutions-scroll::-webkit-scrollbar {
  display: none;
}
.solutions-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.solution-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  scroll-snap-align: start;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid transparent;
}

/* Hover state */
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.05);
}

/* Active (click/tap) state */
.solution-card:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.page {
 
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  gap: 20px;               /* spacing between toggle and content */
}

/* Two clickable items side by side */
.toggle-container {
  display: flex;
  gap: 20px;  /* smaller gap between buttons */
}

.toggle-item {
  cursor: pointer;
  font-weight: bold;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
}

.toggle-item:hover {
  border-color: black;
}

/* Content area */
.content {
  display: none;
  align-items: center;
  gap: 10px;
}

.content img {
  width: 40px;
}

.content.active {
  display: flex;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;          /* smaller size */
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #4facfe, #00f2fe); /* blue gradient */
  color: white;
  font-size: 1.8rem;     /* smaller icon */
}


.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-black:hover {
  background-color: #333;
  color: #fff;
}

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

.our-work img:hover {
  transform: scale(1.05);
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Icon styling */
.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
}

.lifestyle-section {
  background-color: #f8f9fa; /* Slightly darker than pure white for contrast */
  padding-top: 60px;
  padding-bottom: 60px;
}


.custom-height {
  height: 450px; /* change to whatever height you want */
  width: auto;   /* keeps aspect ratio */
  object-fit: cover; /* fills the height nicely without stretching */
}

.why-choose-section {
  background-color: #f8f9fa; /* Light neutral background */
  padding-top: 60px;
  padding-bottom: 60px;
}

.why-choose-section i {
  transition: transform 0.3s ease;
}

.why-choose-section i:hover {
  transform: translateY(-5px); /* subtle animation */
}

.why-choose-section h5 {
  margin-bottom: 0.5rem;
}

.why-choose-section p {
  font-size: 0.9rem;
}

.contact-section iframe {
  border-radius: 0.5rem; /* optional rounded corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* subtle shadow */
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track img {
  height: 70px;
  margin: 0 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Optional subtle hover lift */
.marquee-track img:hover {
  transform: scale(1.05);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.solutions-scroll {
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.solution-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  scroll-snap-align: start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Tablet */
@media (min-width: 768px) {
  .solution-card {
    width: 320px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .solution-card {
    width: 360px;
  }
}

.footer-logo {
  max-width: 180px;   /* controls logo size */
  height: auto;
}


.pt-6 {
  padding-top: 6rem;
}

.footer-logo {
  filter: invert(33%) sepia(94%) saturate(7500%) hue-rotate(200deg) brightness(90%);
}

.img-box {
  height: 280px;          /* 👈 adjust */
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
