/* Designed and developed by Aditya Panigrahi */

/* Common Sub-heading Class */
.sub-heading {
  font-family: var(--text-md-medium-font-family);
  font-weight: 700;
  font-size: 16px;
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.4;
}

/* Common Heading Class */
.heading {
  font-family: var(--text-md-medium-font-family);
  font-weight: 700;
  font-size: 42px;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.heading .highlight {
  color: var(--primary-blue);
}

/* Header Styles for Bootstrap */
/* .navbar {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 13px;
}

.navbar-brand .logo {
  width: 181px;
  height: 47px;
  object-fit: cover;
}

.navbar-nav .nav-link {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: #1e1e1ecc !important;
  font-size: 16px;
  padding: 8px 16px !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Dropdown menu items
.navbar-nav .dropdown-item {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 16px;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

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

/* Global button border radius consistency */
.btn, 
.btn-primary-custom,
.btn-outline-primary-custom,
.send-btn,
.download-btn,
.map-btn,
.career-form .send-btn {
  border-radius: 12px !important;
}

.filter-toggle-btn {
  border-radius: 50px !important;
}

/* Custom Bootstrap button with project's primary blue color */
.btn-primary-custom {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: white !important;
  transition: all 0.3s ease;
  border-radius: 12px !important;
}

.btn-primary-custom:hover {
  background-color: var(--hover) !important;
  border-color: var(--hover) !important;
  color: white !important;
}

.btn-primary-custom:focus {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 0.25rem rgba(63, 106, 217, 0.25) !important;
}

/* Special styling for Get a Quote button only */
.get-quote-btn {
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2s infinite;
  transform-origin: center;
  border-radius: 12px !important;
  /* Glassmorphism effect */
  background: rgba(63, 106, 217, 1.0) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  /* box-shadow: 0 8px 32px rgba(63, 106, 217, 0.3); */
}

.get-quote-btn:hover {
  transform: scale(1.05);
  /* Enhanced glassmorphism on hover */
  background: rgba(63, 106, 217, 0.8) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  /* box-shadow: 0 12px 40px rgba(63, 106, 217, 0.4); */
}

.get-quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.get-quote-btn:hover::before {
  left: 100%;
}

/* Pulse glow animation for the Get a Quote button */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(63, 106, 217, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(63, 106, 217, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(63, 106, 217, 0.3);
  }
}

/* Hero Banner Styles */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  position: relative;
  border-radius: 20px;
  margin-bottom: 10px;
}

.hero-banner {
  width: 100%;
  height: 70vh;
  max-height: 700px;
  min-height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
  .hero-banner {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  }
  
  .hero-banner .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Ensure carousel and hero-banner have same height */
.hero-banner .carousel {
  height: 100%;
  width: 100%;
}

/* Mobile-specific height synchronization */
@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    max-height: 700px;
    min-height: 450px;
    display: flex;
    align-items: stretch;
  }
  
  .hero-banner #heroCarousel {
    height: 100%;
    width: 100%;
    flex: 1;
  }
  
  .hero-banner #heroCarousel .carousel-inner {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  /* Hide navigation buttons in mobile view */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    display: none !important;
  }
  
  /* Show and style carousel indicators for mobile */
  .hero-banner .carousel-indicators {
    display: flex !important;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .hero-banner .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  
  .hero-banner .carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .hero-banner .carousel-indicators button:hover::before {
    width: 20px;
    height: 20px;
  }
  
  .hero-banner .carousel-indicators button.active {
    background-color: #007bff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    animation: indicatorPulse 2s infinite;
  }
  
  .hero-banner .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
  }
  
  @keyframes indicatorPulse {
    0%, 100% {
      box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    }
    50% {
      box-shadow: 0 0 25px rgba(0, 123, 255, 0.8);
    }
  }
}

.hero-banner-content {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Hero Carousel Styles */
.hero-banner .carousel {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-banner .carousel-inner {
  height: 100%;
  width: 100%;
}

.hero-banner .carousel-item {
  height: 100%;
  width: 100%;
}

.hero-banner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
}

/* Responsive banner image loading states */
.responsive-banner-img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.responsive-banner-img.loading {
  opacity: 0.7;
}

/* Device-specific image optimizations */
@media (max-width: 768px) {
  .hero-banner .carousel-item img {
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .hero-banner .carousel-item img {
    object-position: center center;
  }
}

/* Carousel Controls Styling */
.hero-banner .carousel-control-prev,
.hero-banner .carousel-control-next {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  bottom: 30px;
  top: auto;
  transform: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-banner .carousel-control-prev {
  right: 200px;
  left: auto;
}

.hero-banner .carousel-control-next {
  right: 130px;
}

.hero-banner .carousel-control-prev:hover,
.hero-banner .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 1);
  opacity: 1;
  transform: scale(1.1);
}

.hero-banner .carousel-control-prev-icon,
.hero-banner .carousel-control-next-icon {
  filter: invert(1);
  width: 18px;
  height: 18px;
}





.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-nav {
  z-index: 3;
}

.hero-btn {
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
  background-color: white !important;
  border-color: white !important;
  color: #1e1e1e !important;
  margin-right: 40px;
}

.hero-btn:hover {
  background-color: #f8f9fa !important;
  border-color: #f8f9fa !important;
  color: #1e1e1e !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-banner {
    height: 65vh;
    max-height: 650px;
    min-height: 400px;
  }
}

@media (max-width: 992px) {
  .hero-banner {
    height: 60vh;
    max-height: 600px;
    min-height: 350px;
  }
  
  .hero-btn {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .navbar-brand .logo {
    width: 150px;
    height: 40px;
  }
  
  .hero {
    min-height: 300px;
  }
  
  .hero-banner {
    height: 55vh;
    max-height: 550px;
    min-height: 320px;
  }
  
  .hero-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
  
  .hero-nav {
    margin-bottom: 1rem !important;
    margin-right: 1rem !important;
  }
  
  /* Ensure carousel controls are properly positioned on mobile */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }
  
  .hero-banner .carousel-control-prev {
    right: 160px;
  }
  
  .hero-banner .carousel-control-next {
    right: 110px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 250px;
  }
  
  .hero-banner {
    height: 65vh;
    max-height: 650px;
    min-height: 400px;
  }
  
  .hero-banner #heroCarousel {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-inner {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  /* Hide navigation buttons in mobile view */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    display: none !important;
  }
}
  
  .hero-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-right: 10px;
  }
  
  .hero-nav {
    margin-bottom: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  
  /* Smaller carousel controls for mobile */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    width: 36px;
    height: 36px;
    bottom: 15px;
  }
  
  .hero-banner .carousel-control-prev {
    right: 150px;
  }
  
  .hero-banner .carousel-control-next {
    right: 105px;
  }


@media (max-width: 480px) {
  .navbar-brand .logo {
    width: 120px;
    height: 32px;
  }
  
  .hero {
    min-height: 220px;
  }
  
  .hero-banner {
    height: 60vh;
    max-height: 600px;
    min-height: 380px;
  }
  
  .hero-banner #heroCarousel {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-inner {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  /* Hide navigation buttons in mobile view */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    display: none !important;
  }
}
  
  .hero-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-right: 8px;
  }
  
  .hero-nav {
    margin-bottom: 0.5rem !important;
    margin-right: 0.5rem !important;
  }


@media (max-width: 375px) {
  .hero {
    min-height: 200px;
  }
  
  .hero-banner {
    height: 55vh;
    max-height: 550px;
    min-height: 350px;
  }
  
  .hero-banner #heroCarousel {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-inner {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item {
    height: 100%;
    width: 100%;
  }
  
  .hero-banner #heroCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  /* Hide navigation buttons in mobile view */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    display: none !important;
  }
}
  
  .hero-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    margin-right: 6px;
  }


/* About Us Section Styles */
.about-us {
  padding: 80px 0 !important;
  background-color: #f8f9fa;
  background-image: 
    linear-gradient(rgba(248, 249, 250, 0.8), rgba(248, 249, 250, 0.8)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 0 0;
  border-radius: 20px;
  margin-bottom: 10px;
}

.about-image-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: -15px;
}

.image-placeholder {
  width: calc(95% + 15px);
  aspect-ratio: 4/3;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 12px 12px 0;
}

.about-content {
  padding: 60px 40px 60px 0px;
}

.about-heading {
  font-family: var(--text-md-medium-font-family);
  font-weight: 700;
  font-size: 48px;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-subheading {
  font-family: var(--text-md-medium-font-family);
  font-weight: 700;
  font-size: 16px;
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.4;
}

.about-text {
  margin-bottom: 32px;
}

.about-text p {
  font-family: var(--text-md-medium-font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 12px;
  height: 12px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-item span {
  font-family: var(--text-md-medium-font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}

.explore-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(63, 106, 217, 0.3);
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(63, 106, 217, 0.4);
}

/* Responsive styles for About Us section */
@media (max-width: 1200px) {
  .about-content {
    padding: 50px 30px 50px 50px;
  }
  
  .about-heading {
    font-size: 42px;
  }
  
  .heading {
    font-size: 38px;
  }
  
  .image-placeholder {
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  .about-us {
    padding: 60px 0;
  }
  
  .about-content {
    padding: 40px 20px 40px 40px;
  }
  
  .about-heading {
    font-size: 36px;
  }
  
  .heading {
    font-size: 32px;
  }
  
  .about-subheading {
    font-size: 18px;
  }
  
  .sub-heading {
    font-size: 18px;
  }
  
  .image-placeholder {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 50px 0;
  }
  
  .about-content {
    padding: 40px 20px;
    text-align: center;
  }
  
  .about-heading {
    font-size: 32px;
  }
  
  .heading {
    font-size: 28px;
  }
  
  .about-subheading {
    font-size: 16px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-placeholder {
    max-width: 300px;
    border-radius: 12px;
    width: 100%;
  }
  
  .about-image-container {
    justify-content: center;
    margin-left: 0;
  }
  
  .team-image {
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .about-us {
    padding: 40px 0;
  }
  
  .about-heading {
    font-size: 28px;
  }
  
  .heading {
    font-size: 24px;
  }
  
  .about-subheading {
    font-size: 15px;
  }
  
  .sub-heading {
    font-size: 15px;
  }
  
  .about-text p {
    font-size: 14px;
  }
  
  .feature-item span {
    font-size: 14px;
  }
  
  .image-placeholder {
    max-width: 250px;
  }
  
  .explore-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 24px;
  }
  
  .heading {
    font-size: 20px;
  }
  
  .about-subheading {
    font-size: 14px;
  }
  
  .sub-heading {
    font-size: 14px;
  }
  
  .image-placeholder {
    max-width: 220px;
  }
}

@media (max-width: 375px) {
  .about-heading {
    font-size: 22px;
  }
  
  .heading {
    font-size: 18px;
  }
  
  .image-placeholder {
    max-width: 200px;
  }
}

/* Services Section Styles */
.services {
  padding: 80px 0;
  background-color: white;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Animation styles now handled by AOS library */

.services-header {
  margin-bottom: 60px;
}

.services-main-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}

.services-main-heading .highlight {
  color: var(--primary-blue);
}

.services-subheading {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card.fade-in-visible:hover {
  transform: translateY(-8px);
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
  filter: blur(3px);
}

.service-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.app-dev-placeholder {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.web-dev-placeholder {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.ui-ux-placeholder {
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
}

.ai-ml-placeholder {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.service-card:hover .service-placeholder {
  transform: scale(1.05);
  filter: blur(3px);
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.service-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.service-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(102, 102, 102, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

.service-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.service-hover-icon i {
  color: white;
  font-size: 20px;
}

.service-card:hover .service-hover-icon {
  opacity: 1;
  visibility: visible;
}

.service-card:hover .service-content {
  opacity: 1;
}

.btn-outline-primary-custom {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 12px 30px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-blue);
  color: white;
  text-decoration: none;
}

.view-all-btn {
  margin-top: 20px;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .services-main-heading {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .services {
    padding: 60px 0;
  }
  
  .services-main-heading {
    font-size: 36px;
  }
  
  .services-subheading {
    font-size: 16px;
  }
  
  .service-card {
    padding: 0;
  }
  
  .service-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 50px 0;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
  
  .services-main-heading {
    font-size: 32px;
  }
  
  .services-subheading {
    font-size: 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-card {
    padding: 0;
  }
  
  .service-image {
    height: 160px;
  }
  
  .service-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .services {
    padding: 40px 0;
  }
  
  .services-main-heading {
    font-size: 28px;
  }
  
  .services-subheading {
    font-size: 14px;
  }
  
  .service-card {
    padding: 0;
  }
  
  .service-image {
    height: 140px;
  }
  
  .service-title {
    font-size: 16px;
  }
  
  .service-description {
    font-size: 13px;
  }
  
  .btn-outline-primary-custom {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .services-main-heading {
    font-size: 24px;
  }
  
  .service-card {
    padding: 0;
  }
  
  .service-image {
    height: 120px;
  }
}

/* Project CTA Section Styles */
.project-cta {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  margin: 40px 0;
  border-radius: 20px;
}

.project-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.project-cta-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
}

.project-cta-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.project-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.consultation-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.portfolio-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
}

/* Process Section Styles */
.process-section {
  padding: 40px 0 0 0;
  background-color: transparent;
  border-radius: 20px;
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
}

.process-number {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-blue);
}

.process-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 6px;
}

.process-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 60px;
}

.connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #e0e0e0 0%, #e0e0e0 50%, transparent 50%, transparent 100%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.connector-arrow {
  color: var(--primary-blue);
  font-size: 16px;
}

/* Responsive Design for Project CTA and Process */
@media (max-width: 992px) {
  .project-cta-heading {
    font-size: 36px;
  }
  
  .project-cta-description {
    font-size: 16px;
  }
  
  .process-grid {
    gap: 20px;
  }
  
  .process-step {
    min-width: 180px;
  }
  
  .process-icon {
    width: 50px;
    height: 50px;
  }
  
  .process-number {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .project-cta {
    padding: 30px 0;
    margin: 30px 0;
  }
  
  .project-cta-heading {
    font-size: 32px;
  }
  
  .project-cta-description {
    font-size: 15px;
  }
  
  .project-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .consultation-btn,
  .portfolio-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .process-section {
    padding: 30px 0;
  }
  
  .process-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .process-connector {
    transform: rotate(90deg);
    min-width: 40px;
  }
  
  .process-step {
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .project-cta {
    padding: 25px 0;
    margin: 25px 0;
  }
  
  .project-cta-heading {
    font-size: 28px;
  }
  
  .project-cta-description {
    font-size: 14px;
  }
  
  .process-section {
    padding: 25px 0;
  }
  
  .process-icon {
    width: 45px;
    height: 45px;
  }
  
  .process-number {
    font-size: 14px;
  }
  
  .process-title {
    font-size: 18px;
  }
  
  .process-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .project-cta-heading {
    font-size: 24px;
  }
  
  .process-icon {
    width: 35px;
    height: 35px;
  }
  
  .process-number {
    font-size: 12px;
  }
}

/* Excellence Section Styles */
.excellence-section {
  padding: 80px 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    linear-gradient(90deg, #d0d0d0 2px, transparent 2px),
    linear-gradient(0deg, #d0d0d0 2px, transparent 2px);
  background-size: 
    100% 100%,
    30px 30px,
    30px 30px;
  background-position: 
    0 0,
    0 0,
    0 0;
  border-radius: 20px;
  margin: 0 0;
}

.excellence-content {
  margin-bottom: 60px;
}

.recognition-highlight {
  color: #28a745 !important;
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-blue);
}

.stat-card-purple {
  background: #e9d5ff;
}

.stat-card-green {
  background: #d1f2eb;
}

.stat-card-orange {
  background: #ffe8cc;
}

.stat-card-blue {
  background: #cce5ff;
}

.stat-card-purple::before {
  background: #6f42c1;
}

.stat-card-green::before {
  background: #28a745;
}

.stat-card-orange::before {
  background: #fd7e14;
}

.stat-card-blue::before {
  background: #17a2b8;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 20px 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  align-self: flex-start;
}

.stat-card-purple .stat-icon {
  background: #6f42c1;
}

.stat-card-green .stat-icon {
  background: #28a745;
}

.stat-card-orange .stat-icon {
  background: #fd7e14;
}

.stat-card-blue .stat-icon {
  background: #17a2b8;
}

.stat-number {
  font-family: var(--text-md-medium-font-family);
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-title {
  font-family: var(--text-md-medium-font-family);
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.stat-detail {
  font-family: var(--text-md-medium-font-family);
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
}

/* Recognition Content */
.recognition-content {
  margin-bottom: 50px;
}

/* Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  margin-bottom: 4.5rem;
}

.logo-item {
  text-align: center;
  padding: 20px 15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item:hover {
  transform: scale(1.05);
}

.logo-image {
  max-width: 80%;
  max-height: 60px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* Verification Bar */
.verification-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.verification-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 18px;
  background: #e8f5f3;
  padding: 12px 25px;
  border-radius: 20px;
  position: relative;
  margin: 10px;
}

/* .verification-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #d1d1d1;
} */

.verification-left i {
  font-size: 18px;
  color: #1e1e1e;
}

.verification-right {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1e1e1e;
  font-weight: 500;
  padding: 12px 25px;
  flex: 1;
  justify-content: center;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .excellence-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .verification-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .excellence-section {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .verification-bar {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .excellence-content {
    margin-bottom: 40px;
  }
  
  .stats-grid {
    margin-bottom: 40px;
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .logos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .verification-right {
    flex-direction: column;
    gap: 10px;
  }
}

/* Flagship Solutions Section */
.flagship-solutions {
  padding: 80px 0;
  background: linear-gradient(180deg, #B8EDFF 0%, #8FF2B8 100%);
  border-radius: 20px;
  margin: 20px 0;
}

.flagship-header {
  margin-bottom: 60px;
}

.flagship-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.mobile-mockup-container {
  position: relative;
  z-index: 2;
}

.mobile-mockup {
  width: 350px;
  height: 700px;
  /* background: #fff; */
  border-radius: 30px;
  padding: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  position: relative;
}

.mobile-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(180deg, #DC3545 0%, #FFB6C1 100%); */
  border-radius: 25px;
  z-index: -1;
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.feature-cards-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.feature-cards-left,
.feature-cards-right {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 70px;
  pointer-events: auto;
}

.feature-cards-left {
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.feature-cards-right {
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 200px;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.icon-bg {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  margin: 0 5px;
}

.feature-icon-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 6px;
}

.feature-title {
  font-family: var(--text-md-medium-font-family);
  font-weight: 600;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.flagship-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Flagship Solutions */
@media (max-width: 1200px) {
  .feature-cards-left {
    left: 30px;
  }
  
  .feature-cards-right {
    right: 30px;
  }
  
  .feature-card {
    min-width: 180px;
    max-width: 220px;
    padding: 12px 16px;
    gap: 18px;
  }
  
  .feature-cards-left,
  .feature-cards-right {
    gap: 55px;
  }
  

}

@media (max-width: 992px) {
  .flagship-solutions {
    padding: 60px 0;
  }
  
  .flagship-content {
    min-height: 500px;
  }
  
  .mobile-mockup {
    width: 300px;
    height: 600px;
  }
  
  .feature-cards-left,
  .feature-cards-right {
    position: static;
    transform: none;
    margin: 20px 0;
  }
  
  .feature-cards-container {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
  }
  
  .feature-card {
    min-width: auto;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .flagship-solutions {
    padding: 40px 0;
    margin: 15px 0;
  }
  
  .flagship-header {
    margin-bottom: 40px;
  }
  
  .flagship-content {
    min-height: auto;
    flex-direction: column;
  }
  
  .mobile-mockup {
    width: 250px;
    height: 500px;
    margin-bottom: 30px;
  }
  
  .feature-cards-container {
    gap: 45px;
  }
  
  .feature-card {
    padding: 10px 15px;
    gap: 15px;
  }
  
  .icon-bg {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .feature-title {
    font-size: 13px;
  }
  
  .flagship-nav {
    bottom: 20px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .flagship-solutions {
    padding: 30px 0;
    margin: 10px 0;
  }
  
  .flagship-header {
    margin-bottom: 30px;
  }
  
  .mobile-mockup {
    width: 220px;
    height: 440px;
  }
  
  .feature-cards-container {
    margin-top: 20px;
    gap: 40px;
  }
  
  .feature-card {
    padding: 8px 12px;
    gap: 12px;
  }
  
  .icon-bg {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .feature-title {
    font-size: 12px;
  }
  
  .flagship-nav {
    bottom: 15px;
    gap: 15px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Bootstrap Carousel Customizations */
.carousel {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.carousel-item {
  border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(63, 106, 217, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 80px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(63, 106, 217, 1);
  border-color: rgba(255, 255, 255, 1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Hide carousel indicators on desktop */
.carousel-indicators {
  display: none !important;
}

/* Show indicators only on mobile */
@media (max-width: 768px) {
  .carousel-indicators {
    display: flex !important;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
  }
}

/* Hide carousel indicator buttons on desktop */
.carousel-indicators button {
  display: none !important;
}

/* Show and style indicator buttons only on mobile */
@media (max-width: 768px) {
  .carousel-indicators button {
    display: block !important;
    width: 12px !important;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  
  .carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .carousel-indicators button:hover::before {
    width: 20px;
    height: 20px;
  }
  
  .carousel-indicators button.active {
    background-color: #007bff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    animation: indicatorPulse 2s infinite;
  }
  
  .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
  }
}

/* Hero Carousel Specific Styles */
#heroCarousel {
  height: 70vh;
  max-height: 700px;
  min-height: 450px;
}

#heroCarousel .carousel-item {
  height: 70vh;
  max-height: 700px;
  min-height: 450px;
}

#heroCarousel .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 30px;
  bottom: 50px;
}

#heroCarousel .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#heroCarousel .carousel-caption .lead {
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* Services Carousel Specific Styles */
#servicesCarousel .carousel-item {
  padding: 20px 0;
}

#servicesCarousel .service-card {
  height: 100%;
  background: rgba(235, 248, 253, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

#servicesCarousel .service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Testimonials Carousel Specific Styles */
#testimonialsCarousel .carousel-item {
  padding: 20px 0;
}

#testimonialsCarousel .card {
  border-radius: 20px;
  transition: transform 0.3s ease;
}

#testimonialsCarousel .card:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments for carousels */
@media (max-width: 768px) {
  #heroCarousel {
    height: 70vh;
    max-height: 700px;
    min-height: 450px;
  }
  
  #heroCarousel .carousel-item {
    height: 70vh;
    max-height: 700px;
    min-height: 450px;
  }
  
  #heroCarousel .carousel-caption {
    padding: 20px;
    bottom: 30px;
  }
  
  #heroCarousel .carousel-caption h1 {
    font-size: 2rem;
  }
  
  #heroCarousel .carousel-caption .lead {
    font-size: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  #heroCarousel {
    height: 65vh;
    max-height: 650px;
    min-height: 400px;
  }
  
  #heroCarousel .carousel-item {
    height: 65vh;
    max-height: 650px;
    min-height: 400px;
  }
  
  #heroCarousel .carousel-caption {
    padding: 15px;
    bottom: 20px;
  }
  
  #heroCarousel .carousel-caption h1 {
    font-size: 1.5rem;
  }
  
  #heroCarousel .carousel-caption .lead {
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
    margin: 0 5px;
  }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Glassmorphism background effect */
.floating-buttons::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(63, 106, 217, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 130, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(70, 160, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

.primary-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: visible;
    padding: 20px 0;
    margin: -20px 0;
}

.social-buttons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 400px;
    overflow: visible;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 0 2px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    filter: brightness(1.1) contrast(1.05);
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover::after {
    opacity: 0.5;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, rgba(6, 130, 70, 0.8), rgba(6, 130, 70, 0.6));
}

.call-btn:hover {
    background: linear-gradient(135deg, rgba(6, 130, 70, 0.9), rgba(6, 130, 70, 0.7));
}

/* Email Button */
.email-btn {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.8), rgba(70, 160, 255, 0.8));
}

.email-btn:hover {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.9), rgba(70, 160, 255, 0.9));
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, rgba(6, 130, 70, 0.8), rgba(6, 130, 70, 0.6));
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, rgba(6, 130, 70, 0.9), rgba(6, 130, 70, 0.7));
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.8) 0%, rgba(70, 160, 255, 0.8) 50%, rgba(49, 77, 223, 0.8) 100%);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.9) 0%, rgba(70, 160, 255, 0.9) 50%, rgba(49, 77, 223, 0.9) 100%);
}

/* Facebook Button */
.facebook-btn {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.8), rgba(49, 77, 223, 0.8));
}

.facebook-btn:hover {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.9), rgba(49, 77, 223, 0.9));
}

/* Twitter Button */
.twitter-btn {
    background: linear-gradient(135deg, rgba(70, 160, 255, 0.8), rgba(63, 106, 217, 0.8));
}

.twitter-btn:hover {
    background: linear-gradient(135deg, rgba(70, 160, 255, 0.9), rgba(63, 106, 217, 0.9));
}

/* LinkedIn Button */
.linkedin-btn {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.8), rgba(0, 119, 181, 0.6));
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.9), rgba(0, 119, 181, 0.7));
}

/* Toggle Button */
.toggle-btn {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 0.6));
}

.toggle-btn:hover {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.7));
}

.toggle-btn.active {
    background: linear-gradient(135deg, rgba(63, 106, 217, 0.8), rgba(49, 77, 223, 0.8));
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Responsive Design for Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 100px; /* Increased from 60px to avoid scroll-to-top button */
        gap: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        right: 10px;
        bottom: 90px; /* Increased from 50px to avoid scroll-to-top button */
        gap: 8px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}



