/* ============= Base Styles ============= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    background-color: #f0f2f4;
    font-family: "Poppins", sans-serif !important;

  }
  body, html {
    overflow-x: hidden;
  }


  
  /* NAVBAR BASE STYLES */
  .navbar-custom {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    color: #000;
    font-weight: bold;
    height: 80px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  /* Initial state: white text */
  .navbar-custom .nav-link {
    color: white !important;
    transition: color 0.3s ease;
  }
  
  /* When scrolled: black text */
  .navbar-custom.scrolled .nav-link {
    color: #000 !important;
  }
  .navbar-custom.scrolled .nav-link .active{
    color: #d63384 !important;
  
  }
  
  /* When Scrolled or Menu Opened on Mobile */
  .navbar-custom.scrolled,
  .navbar-custom.menu-open {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* NAV LINKS */
  .navbar-nav .nav-link {
    margin-right: 20px;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #d63384 !important;
  }
  
  .nav-link.active {
    color: #d63384 !important;
  }
  
  /* TOGGLER ICON STYLING */
  .navbar-toggler {
    border: 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, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  /* CV BUTTON STYLES */
  .cv-wrapper {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    background-color: #f0f2f4;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .cv-wrapper:hover {
    background-color: #d63384;
  }
  
  .cv-wrapper:hover .cv-button {
    color: white;
    background-color: transparent;
  }
  
  .cv-button {
    background-color: #f0f2f4;
    color: #3c3c3c;
    font-weight: 500;
  }
  
  /* DROPDOWN MENU */
  .nav-item.dropdown .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .dropdown-header {
    padding: 10px 16px;
    color: #d63384;
    font-weight: 600;
  }
  
  /* SCROLL TO TOP */
  .scroll-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #d63384;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: background 0.3s;
  }
  
  .scroll-top:hover {
    background: #a41d64;
  }
  
  /* RESPONSIVE NAVBAR MENU BACKGROUND */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background-color: #ffffff !important;
      padding: 1rem;
      color: #000 !important;
      border-radius: 0 0 10px 10px;
    }
  
    .navbar-custom.menu-open {
      background-color: #ffffff !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .navbar-collapse .nav-link {
      color: #000 !important;
    }
  }
  
  
  /* SHOW DROPDOWN ON HOVER FOR DESKTOP */
  @media (min-width: 992px) {
    #servicesNavItem:hover .dropdown-menu {
      display: block;
    }
  }






.custom-footer {
  background-color: #575b6b;
  color: white;
}

.custom-footer p,
.custom-footer a {
  color: #d3d3d3;
  text-decoration: none;
  font-size: 14px;
}

.custom-footer .text-highlight {
  color: #d63384;
  font-weight: 600;
  font-size: 14px;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links.large-links li {
  margin-bottom: 10px;
}

.footer-links.large-links li a {
  font-size: 22px;
  font-weight: 500;
  color: white;
}

.footer-links.small-links li {
  margin-bottom: 8px;
}

.footer-links.small-links li a {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.custom-footer hr {
  border-top: 1px solid #fff;
}

/* Social Icons */
.custom-footer i {
  font-size: 20px;
  color: #ffffff;
  transition: color 0.3s;
}

.custom-footer i:hover {
  color: #d63384;
}

/* Open Roles Button */
.open-roles-btn {
  background-color: #ffffff;
  color: #d63384;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.open-roles-btn:hover {
  background-color: #d63384;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links.large-links li a {
    font-size: 18px;
  }
  .custom-footer i {
    font-size: 18px;
  }
  .open-roles-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .custom-footer .row {
    text-align: center;
  }
}







.about-section {
  background-color: #f5a2cb; /* Plain pink background */
  color: #000;
  text-align: center;
  padding: 50px;
}

.about-section h1 {
  font-size: 3rem;
  margin-top: 20px;
}

.about-section p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}



.text-highlight {
  color: #d63384;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Curved Image Wrapper */
.curved-image-wrapper {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
}

.curved-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #d63384;
  color: #fff;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/* Info Boxes */
.info-box {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.info-box:hover {
  box-shadow: 0px 5px 20px rgba(214, 51, 132, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .curved-image-wrapper {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }
  .about-growth-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .curved-image-wrapper {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}







.text-highlight {
  color: #d63384;
  font-weight: 600;
  letter-spacing: 1px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 250px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.15);
}

/* Service Label on Top */
.service-label {
  background: #d63384;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    text-align: center;
  }
}



.vision-mission-section {
 
  overflow: hidden;
}

.pink-bg {
  background: linear-gradient(135deg, #d63384, #d63384);
}

.vision-icon, .mission-icon {
  font-size: 2rem;
  color: white;
}

.vision-image {
  min-height: 400px;
  background: url('https://via.placeholder.com/700x600') no-repeat center center/cover;
}

/* Responsive */
@media (max-width: 991px) {
  .vision-image {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .vision-mission-section .row {
    flex-direction: column;
  }
}



/* Image Wrapper */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

/* Main Big Image */
.main-img {
  width: 100%;
  height: auto;
  border-top-right-radius: 150px;
}

/* Bottom Small Shaped Image */
.bottom-img {
  position: absolute;
   bottom: -40%;
  left: 45%;
  width: 60%;
  border-bottom-right-radius: 50px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Expertise Badge */
.expertise-badge {
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #d63384;
  color: #fff;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.expertise-badge small {
  font-size: 11px;
  display: block;
}

/* Responsive Settings */
@media (max-width: 767px) {
  .bottom-img {
    position: static;
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
  }

  .expertise-badge {
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 5px 10px;
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #2da41d;
  color: white;
  font-size: 22px; /* Slightly smaller for better fit */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
  background-color: #1c7c13;
  transform: scale(1.1);
}


@media (max-width: 991.98px) {
  .navbar-collapse.show {
    background-color: #ffffff; /* Or any color you prefer */
    padding: 1rem;
    border-radius: 0 0 10px 10px;
  }

  .navbar-collapse.show .nav-link {
    color: #000 !important;
  }

  .navbar-collapse.show .dropdown-menu {
    background-color: #ffffff;
  }
}

/* CTA Banner Section */
.cta-banner-section {
  background: url('Managed_IT_Service_Slider_Image.jpg') center center/cover no-repeat;
  background-attachment: fixed;
  
  color: white;
  padding: 100px 20px;
  min-height: 300px;
  position: relative;
}
.cta-banner-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust the 0.4 to control darkness */
  z-index: 1;
}

.cta-banner-section .container {
  position: relative;
  z-index: 2;
}

.cta-btn {
  background-color: white;
  color: #d63384;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner-section {
    padding: 80px 15px;
  }

  .cta-banner-section h2 {
    font-size: 2rem;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 15px;
    margin-top: 20px;
  }
}