/* mega menu css  */

/* ✅ MEGA SERVICES STYLES (Conflict-Free) */
.mega-services-dropdown {
  position: relative;
}


.mega-service-icon img {
  border-radius: 50%;
}

.mega-services-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 1.6rem;
  margin-top: 1rem;
}

.mega-services-dropdown:hover .mega-services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mega-service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1rem;
  border-radius: 8px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  border: 1px solid #eee;
  position: relative;

}

.mega-service-card:hover {


  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.mega-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-service-card:hover .mega-service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.mega-service-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mega-service-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.4;
}

.mega-service-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mega-service-card:hover .mega-service-arrow {
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 992px) {
  .mega-services-menu {
    width: 90vw;
    left: 5vw;
    transform: translateY(10px);
  }

  .mega-services-dropdown:hover .mega-services-menu {
    transform: translateY(0);
  }

  .mega-services-grid {
    grid-template-columns: 1fr;
  }
}

/* mega services style end  */


.service-card {
  background-color: #f8f9fa !important;
}

/* Desktop Dropdown Styles */
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.dropdown-container:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #f1f1f1;
}

/* Mobile Dropdown Styles */
.mobile-dropdown-content {
  display: none;
  padding-left: 20px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* mega menu css end  */
/* navbar start  */

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 4%;
  background: #2A4B7C;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
}

.nav-links a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #00dbde 0%, #482af4 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: #5D9CEC;
}

.cta-button {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  color: white !important;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 198, 255, 0.5);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: pulse-animation 2s infinite;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.7);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:active {
  transform: translateY(1px);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.5);
  }

  50% {
    box-shadow: 0 6px 25px rgba(0, 198, 255, 0.8);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.5);
  }
}

.cta-button a {
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-button:hover a {
  transform: scale(1.02);
}

.hamburger {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px;
  transition: all 0.3s ease;
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 150;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: #16213e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 999;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu a:hover {
  color: #00dbde;
}

.mobile-cta {
  background: linear-gradient(90deg, #2171fc 0%, #1b50fb 100%);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #00dbde;
  transform: rotate(90deg);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}


.mobile-menu a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu a:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu a:nth-child(6) {
  transition-delay: 0.6s;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 0.8rem 3%;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .cta-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
  }
}

@media (max-width: 850px) {
  .navbar>a img {
    height: 60px;
  }

  .nav-links {
    gap: 0.7rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.3rem 0;
  }

  .cta-button {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {

  .nav-links,
  .cta-button {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    padding: 0.8rem 5%;
  }

  .navbar>a img {
    height: 50px;
    /* Further reduce logo size for mobile */
  }
}

/* Hamburger Animation */
.hamburger.active .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line2 {
  opacity: 0;
}

.hamburger.active .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}




/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #040000;
  /* Background color for the entire website, including individual sections */
  --default-color: #f8f8f8;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e59d02;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #191919;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f8f8f8;
  /* The default color of the main navmenu links */
  --nav-hover-color: #e59d02;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1b1a1a;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1b1a1a;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f8f8f8;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e59d02;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1b1a1a;
  --surface-color: #282828;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1b1b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: black;
  background-color: #fff;
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background-image: linear-gradient(rgba(28, 29, 31, 0.65), rgba(23, 4, 69, 0.65)),
    url('../img/breadcrumb.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0px ;
  text-align: center;
  position: relative;
}

.page-title h1 {
  color: #F5F5F5;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title .breadcrumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 8px 16px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-title .breadcrumbs ol li {
  display: flex;
  align-items: center;
}

.page-title .breadcrumbs ol li a {
  color: #4a6cf7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.page-title .breadcrumbs ol li a:hover {
  color: #2a4ec7;
}

.page-title .breadcrumbs ol li a i {
  margin-right: 6px;
  font-size: 14px;
}

.page-title .breadcrumbs ol li.current {
  color: #6c757d;
  font-weight: 600;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 12px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "›";
  display: inline-block;
  padding-right: 12px;
  color: #adb5bd;
  font-size: 18px;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #fff;
  /* padding: 60px 0; */
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #811616;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 4px 0;
}

.section-title h2:after {
  margin: 0 0 4px 15px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 20px;
  color: black;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  /* padding-top: 60px; */
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #F5F5F0;
  padding-bottom: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  border-radius: 50%;
  top: -20%;
  right: -10%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  filter: blur(40px);
  animation: float 4s ease-in-out infinite reverse;
  z-index: 1;
}

.hero .hero-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero .hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #333333;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero .hero-title {
    font-size: 42px;
  }

  .hero {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 36px;
  }

  .hero {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .hero .hero-title {
    font-size: 28px;
  }
}

.hero .hero-title .typed {
  background: #811616;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero .hero-title .typed::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #00d2ff 0%, color-mix(in srgb, #00d2ff, #8b5cf6 50%) 100%);
  border-radius: 2px;
}

.hero .hero-description {
  font-size: 1.2rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero .hero-actions .action-btn {
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero .hero-actions .action-btn.secondary {
  background: transparent;
  color: #555555;
  border: 1px solid #00AEED;
}

.hero .hero-actions .action-btn.secondary:hover {
  background: #02b4dc;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-image-showcase {
  position: relative;
}

.hero .hero-image-showcase .image-wrapper {
  position: relative;
  background: transparent;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .hero-image-showcase .image-wrapper img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.hero .hero-image-showcase .floating-card {
  position: absolute;
  background: #587b99;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.hero .hero-image-showcase .floating-card.card-1 {
  top: 15%;
  left: -45px;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image-showcase .floating-card.card-2 {
  bottom: 15%;
  right: -60px;
  animation: float 3s ease-in-out infinite reverse;
}

.hero .hero-image-showcase .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon i {
  color: white;
  font-size: 20px;
}

.hero .hero-image-showcase .floating-card .card-content .card-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-image-showcase .floating-card .card-content .card-info p {
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.85rem;
  white-space: nowrap;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero .floating-card.card-1 {
    left: -30px;
    top: 10%;
  }

  .hero .floating-card.card-2 {
    right: -30px;
    bottom: 10%;
  }

  .hero .hero-actions {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero .hero-actions .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 30px;
  }

  .hero .hero-badge {
    margin-bottom: 20px;
  }

  .hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero .hero-actions {
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# New hero section
--------------------------------------------------------------*/
 
  .hero-custom {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .container-custom-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .row-custom-hero {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .align-items-center-custom {
    align-items: center;
  }
  
  .col-custom-hero-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
    width: 100%;
  }
  
  .hero-main-content-custom {
    padding-right: 30px;
  }
  
  .hero-subtitle-custom {
    color: #6c757d;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-title-custom {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #212529;
  }
  
  .hero-title-highlight-custom {
    color: #3d85c6;
    position: relative;
    display: inline-block;
  }
  
  .hero-title-highlight-custom::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3d85c6, transparent);
    border-radius: 3px;
  }
  
  .hero-description-custom {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .hero-actions-custom {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .hero-btn-primary-custom, .hero-btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .hero-btn-primary-custom {
    background-color: #3d85c6;
    color: white;
  }
  
  .hero-btn-primary-custom:hover {
    background-color: #2a6fb8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero-btn-secondary-custom {
    background-color: transparent;
    color: #3d85c6;
    border: 2px solid #3d85c6;
  }
  
  .hero-btn-secondary-custom:hover {
    background-color: #3d85c6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero-btn-icon-custom {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .hero-btn-primary-custom:hover .hero-btn-icon-custom,
  .hero-btn-secondary-custom:hover .hero-btn-icon-custom {
    transform: translateX(5px);
  }
  
  .hero-image-showcase-custom {
    position: relative;
  }
  
  .image-wrapper-custom {
    position: relative;
    display: inline-block;
  }
  
  .img-fluid-custom-hero {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .floating-card-custom {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }
  
  .card-1-custom {
    top: 20%;
    right: -20px;
    animation-delay: 0.5s;
  }
  
  .card-2-custom {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
  }
  
  .card-content-custom {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .card-icon-custom {
    width: 40px;
    height: 40px;
    background: #3d85c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }
  
  .card-info-custom h4 {
    margin: 0;
    font-size: 18px;
    color: #212529;
  }
  
  .card-info-custom p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .col-custom-hero-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .hero-main-content-custom {
      padding-right: 0;
      margin-bottom: 50px;
      text-align: center;
    }
    
    .hero-title-custom {
      font-size: 2.8rem;
    }
    
    .hero-actions-custom {
      justify-content: center;
    }
    
    .card-1-custom, .card-2-custom {
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      margin: 10px auto;
      max-width: 200px;
    }
    
    .image-wrapper-custom {
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .hero-custom {
      padding: 60px 0;
    }
    
    .hero-title-custom {
      font-size: 2.2rem;
    }
    
    .hero-actions-custom {
      flex-direction: column;
      align-items: center;
    }
    
    .hero-btn-primary-custom, .hero-btn-secondary-custom {
      width: 100%;
      justify-content: center;
    }
  }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: #fff;
}

.content p {
  color: rgb(68, 67, 67);
}
.feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item h5 {
  font-weight: 600;
}

.feature-item p {
  color: rgb(68, 67, 67);
}

.bg-infotechs-about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-infotechs-light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.bg-infotechs-about-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(46, 134, 193, 0.1);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.bg-infotechs-about-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(243, 156, 18, 0.1);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.bg-infotechs-about-content {
  position: relative;
  z-index: 2;
}

.bg-infotechs-about-heading {
  color: var(--bg-infotechs-primary);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.bg-infotechs-about-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--bg-infotechs-accent);
}

.bg-infotechs-about-text {
  color: grey;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.bg-infotechs-about-highlight {
  color: var(--bg-infotechs-secondary);
  font-weight: 600;
}

.bg-infotechs-about-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.bg-infotechs-about-img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.bg-infotechs-about-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.bg-infotechs-about-img-container:hover .bg-infotechs-about-img {
  transform: scale(1.03);
}

.bg-infotechs-about-timeline {
  position: relative;
  padding: 40px 0;
}

.bg-infotechs-about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #3498db;
  transform: translateX(-50%);
}

.bg-infotechs-about-timeline-item {
  margin-bottom: 40px;
  position: relative;
  width: 50%;
  padding: 0 40px;
  box-sizing: border-box;
}

.bg-infotechs-about-timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 70px;
}

.bg-infotechs-about-timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 70px;
}

.bg-infotechs-about-timeline-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.bg-infotechs-about-timeline-content::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
}

.bg-infotechs-about-timeline-item:nth-child(odd) .bg-infotechs-about-timeline-content::after {
  right: -10px;
}

.bg-infotechs-about-timeline-item:nth-child(even) .bg-infotechs-about-timeline-content::after {
  left: -10px;
}

.bg-infotechs-about-timeline-date {
  font-weight: 700;
  color: #3498db;
  margin-bottom: 10px;
}

.bg-infotechs-about-values-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 20px;
}

.bg-infotechs-about-cta {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .bg-infotechs-about-timeline::before {
    left: 30px;
  }

  .bg-infotechs-about-timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

  .bg-infotechs-about-timeline-item:nth-child(even) {
    left: 0;
  }

  .bg-infotechs-about-timeline-item:nth-child(odd) .bg-infotechs-about-timeline-content::after,
  .bg-infotechs-about-timeline-item:nth-child(even) .bg-infotechs-about-timeline-content::after {
    left: 50px;
    right: auto;
  }

  .bg-infotechs-about-heading {
    font-size: 2.2rem;
  }

  .bg-infotechs-about-subheading {
    font-size: 1.1rem;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .bg-infotechs-about-section {
    padding: 60px 0;
  }

  .bg-infotechs-stat-box {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .bg-infotechs-stat-number {
    font-size: 2rem;
  }

  .bg-infotechs-stat-icon {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .bg-infotechs-stats-heading {
    font-size: 1.5rem;
  }

  .bg-infotechs-stat-box {
    padding: 20px 15px;
  }
}

.it-about-section {
  background-color: #fff;
  margin-top: 0;
}

.it-pretitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #811616;
  display: inline-block;
}

.it-maintitle {
  color: black;
  font-size: 25px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.it-subtitle {
  color: black;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
}

.it-brandtext {
  color: #811616;
}

.it-service-box-modern {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.it-service-box-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(1, 173, 237, 0.15);
  border-color: rgba(1, 173, 237, 0.2);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 173, 237, 0.1) 0%, rgba(1, 173, 237, 0.2) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.it-service-box-modern:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #01ADED 0%, #0077B5 100%);
  transform: scale(1.1);
}

.service-icon {
  font-size: 32px;
  color: #01ADED;
  transition: all 0.3s ease;
}

.it-service-box-modern:hover .service-icon {
  color: white;
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.it-service-box-modern:hover .service-title {
  color: #0077B5;
}

.service-description {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.it-service-box-modern:hover .service-description {
  color: #4a5568;
}

.it-service-box-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #01ADED, #0077B5);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.it-service-box-modern:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.it-btn-primary {
  border: none;
  background: linear-gradient(135deg, #01ADED 0%, #0077B5 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  outline: none;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(1, 173, 237, 0.3);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.4, 1);
  text-transform: uppercase;
}

.it-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 173, 237, 0.4);
  color: #fff;
}

.it-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(1, 173, 237, 0.3);
}

.it-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0077B5 0%, #01ADED 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.it-btn-primary:hover::before {
  opacity: 1;
}

.it-btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.it-btn-primary:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.it-btn-primary.with-icon {
  padding-right: 40px;
}

.it-btn-primary .btn-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.it-btn-primary:hover .btn-icon {
  transform: translate(5px, -50%);
}

@media (max-width: 992px) {
  .it-maintitle {
    font-size: 36px;
  }

  .it-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .it-section {
    padding: 60px 0;
  }

  .it-maintitle {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 30px 0;
}

.features .intro-content h2 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
}

.features .intro-content p {
  font-size: 16px;
  color: rgb(68, 67, 67);
  margin-bottom: 35px;
  line-height: 1.6;
}

.features .intro-content .feature-stats {
  display: flex;
  gap: 30px;
}

.features .intro-content .feature-stats .stat-item {
  text-align: center;
}

.features .intro-content .feature-stats .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #09498c;
  line-height: 1;
}

.features .intro-content .feature-stats .stat-item .stat-label {
  font-size: 14px;
  color: rgb(68, 67, 67);
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

.features .intro-image {
  position: relative;
}

.features .intro-image img {
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.features .intro-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.features .intro-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--heading-color), transparent 40%));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.features .feature-item {
  position: relative;
  background: transparent;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(2, 2, 161, 0.582), color-mix(in srgb, rgb(66, 150, 252), transparent 50%));
  transition: left 0.5s ease;
}

.features .feature-item .feature-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, #811616, transparent 90%);
  line-height: 1;
  z-index: 1;
}

.features .feature-item .feature-content {
  position: relative;
  z-index: 2;
}

.features .feature-item .feature-content .feature-icon {
  margin-bottom: 25px;
}

.features .feature-item .feature-content .feature-icon i {
  font-size: 32px;
  font-weight: 700;
  color: white;
  background: #811616;
  opacity: 0.9;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.features .feature-item .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: black;
  line-height: 1.3;
}

.features .feature-item .feature-content p {
  font-size: 15px;
  color: rgb(68, 67, 67);
  margin-bottom: 25px;
  line-height: 1.6;
}

.features .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.features .feature-item .feature-content .feature-tags .tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: color-mix(in srgb, #811616, transparent 90%);
  color: #811616;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features .feature-item:hover::before {
  left: 0;
}

.features .feature-item:hover .feature-number {
  color: color-mix(in srgb, #811616, transparent 70%);
  transform: scale(1.1);
}

.features .feature-item:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .feature-item:hover .feature-tags .tag {
  background: #811616;
  color: white;
}

@media (max-width: 991px) {
  .features .intro-content {
    margin-bottom: 40px;
  }

  .features .intro-content h2 {
    font-size: 32px;
  }

  .features .intro-content .feature-stats {
    justify-content: center;
    gap: 25px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .features .intro-content .feature-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .features .intro-content .feature-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .features .intro-content .feature-stats .stat-item .stat-number {
    font-size: 24px;
  }

  .features .intro-content .feature-stats .stat-item .stat-label {
    margin-top: 0;
  }

  .features .feature-item {
    padding: 25px;
  }

  .features .feature-item .feature-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .features .feature-item .feature-content h4 {
    font-size: 20px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .features .intro-content h2 {
    font-size: 28px;
  }

  .features .intro-content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Features Tabs Section
--------------------------------------------------------------*/
.features-tabs {
  padding: 60px 0;
  background-color: #fff;
}

.features-tabs .tabs-wrapper {
  background-color: #fbfbfb;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
}

.features-tabs .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .features-tabs .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.features-tabs .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .features-tabs .nav-item {
    flex: none;
  }
}

.features-tabs .nav-link {
  background: #f1f1f1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: black;
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.features-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cc4f4f;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .features-tabs .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.features-tabs .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: #cc4f4f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-tabs .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .features-tabs .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.features-tabs .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.features-tabs .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: black;
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.features-tabs .nav-link .tab-content span {
  font-size: 13px;
  color: grey;
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content span {
    font-size: 12px;
  }
}

.features-tabs .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .nav-link:hover::before {
  opacity: 1;
}

.features-tabs .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-tabs .nav-link:hover .tab-icon i {
  color: #1a444d;
}

.features-tabs .nav-link:hover .tab-content h5,
.features-tabs .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.features-tabs .nav-link.active {
  border-color: #1a444d;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .nav-link.active::before {
  opacity: 1;
}

.features-tabs .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.features-tabs .nav-link.active .tab-icon i {
  color: #1a444d;
}

.features-tabs .nav-link.active .tab-content h5,
.features-tabs .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

/* .features-tabs .tab-content .tab-pane {
  padding: 40px 0;
} */

@media (max-width: 768px) {
  .features-tabs .tab-content .tab-pane {
    padding: 20px 0;
  }
}

.features-tabs .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features-tabs .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features-tabs .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: #cc4f4f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}

.features-tabs .content-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features-tabs .content-wrapper h3 {
    font-size: 24px;
  }
}

.features-tabs .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(68, 67, 67);
  margin-bottom: 30px;
}

.features-tabs .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.features-tabs .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-tabs .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: #811616;
  flex-shrink: 0;
}

.features-tabs .content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  color: rgb(68, 67, 67);
  line-height: 1.4;
}

.features-tabs .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item {
  text-align: center;
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #3a7bd5;
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: rgb(68, 67, 67);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-tabs .content-wrapper .btn-primary {
  background: #1e40ff;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: white;
  background-color: #01ADED;
}

.features-tabs .content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.features-tabs .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features-tabs .visual-content {
  position: relative;
}

.features-tabs .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features-tabs .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.features-tabs .visual-content .main-image:hover img {
  transform: scale(1.05);
}

.features-tabs .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #4390a1;
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}

.features-tabs .visual-content .floating-card i {
  font-size: 28px;
  color: white;
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card i {
    font-size: 24px;
  }
}

.features-tabs .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features-tabs .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
  background-color: #fff !important;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: brown;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 1.1rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(68, 67, 67);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
  color: var(--contrast-color);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services .intro-content .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.services .intro-content .cta-button:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.services .intro-content .cta-button:hover::before {
  opacity: 1;
}

.services .intro-content .cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  width: 80%;
  height: 400px;
  object-fit: cover;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 1rem;
  }
}

.services .services-grid .service-card {
  background: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 15px 20px color-mix(in srgb, var(--surface-color), transparent 80%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #811616;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: #0072ff;
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(68, 67, 67);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #f8f8f8;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, #811616, transparent 90%);
  color: #811616;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: rgb(68, 67, 67);
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #811616;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--contrast-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: #811616;
  border-color: #811616;
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, #00d2ff, transparent 15%);
  border-color: color-mix(in srgb, #00d2ff, transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, #034b65, transparent 70%);
  color: #055673;
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: #01ADED;
  border-color: #01ADED;
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: #77acb8;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: white;
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: #f6f5f5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: #01ADED;
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: #811616;
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: transparent;
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(68, 67, 67);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: #01ADED;
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: black;
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: rgb(68, 67, 67);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: blue;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: #01ADED;
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 60px 0;
  background-color: #fdfdfd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

.stats .avatars {
  position: relative;
}

.stats .avatars img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent-color);
  margin-right: -15px;
  transition: transform 0.3s ease;
}

.stats .avatars img:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.stats .counters h2 {
  color: black;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .counters h2 span {
  display: inline-block;
}

.stats .counters p {
  color: rgb(68, 67, 67);
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .stats .row {
    text-align: center;
  }

  .stats .avatars {
    justify-content: center;
    margin-bottom: 40px;
  }

  .stats .counters h2 {
    font-size: 36px;
  }

  .stats .counters p {
    font-size: 16px;
  }

  .stats .counters .col-md-4 {
    margin-bottom: 30px;
  }

  .stats .counters .col-md-4:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .stats {
    padding: 60px 0;
  }

  .stats .avatars {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats .avatars img {
    margin: 0 -8px;
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
  background-color: #F5F5F5;
}

.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: #811616;
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: grey;
  max-width: 600px;
}

@media (max-width: 991px) {
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team .team-header p {
    margin: 0 auto;
  }

  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

.team .team-controls .team-control-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #01ADED;
  border-radius: 50%;
  color: #01ADED;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-controls .team-control-btn:hover {
  background: #01ADED;
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

.team .team-member:hover .member-image:before {
  opacity: 0.8;
}

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: black;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team .team-member .member-image .member-social a:hover {
  background: #1a444d;
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #811616;
  margin-bottom: 15px;
}

.team .team-member .member-content p {
  font-size: 14px;
  line-height: 1.6;
  color: grey;
  margin-bottom: 0;
}

/* contact section css  */
:root {
  --it-primary: #006400;
  --it-secondary: #228B22;
  --it-light: #90EE90;
  --it-dark: #013220;
}

/* Unique class prefix to avoid conflicts */
.it-contact-container {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 4rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.it-contact-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.01) 0%, rgba(34, 139, 34, 0.01) 100%);
  z-index: 0;
}

.it-contact-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.it-contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 4px;
  background: #811616;
  border-radius: 2px;
}

.it-contact-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* border-top: 4px solid #0066FF; */
  z-index: 1;
}

.it-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.it-office-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.it-office-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #811616;
}

.it-contact-info {
  margin-bottom: 1.5rem;
}

.it-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.it-contact-icon {
  color: #0066FF;
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 3px;
}

.it-contact-text {
  color: #555;
  line-height: 1.6;
}

.it-contact-text a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.it-contact-text a:hover {
  color: var(--it-primary);
}

.it-map-container {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.it-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.it-contact-form .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.it-contact-form .form-control:focus {
  border-color: #0066FF;
  box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.15);
}

.it-submit-btn {
  background-color: #0072ff;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.it-submit-btn:hover {
  background-color: #0066FF;
  transform: translateY(-2px);
}

/* Animated background elements */
.it-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 100, 0, 0.05);
  z-index: 0;
  animation: float 15s infinite ease-in-out;
}

.it-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.it-circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: -30px;
  animation-delay: 2s;
}

.it-circle-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .it-contact-card {
    margin-bottom: 2rem;
  }

  .it-contact-title::after {
    width: 30%;
  }
}

/* Add these styles to your existing CSS */
.it-contact-image {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.it-form-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* Adjust the form spacing */
.it-contact-form {
  padding-bottom: 1rem;
}

/* Style for the select dropdown */
.it-contact-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23006400' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

/* Style for the checkbox */
.it-contact-form .form-check-input {
  border: 1px solid var(--it-primary);
}

.it-contact-form .form-check-input:checked {
  background-color: var(--it-primary);
  border-color: var(--it-primary);
}

.it-contact-form .form-check-label {
  color: #555;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 60px 0;
  background: #F5F5F5;
}

.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: black;
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: black;
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: grey;
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: grey;
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

.form-2-wrapper {
  background: #e5e7eb;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(58, 42, 240, 0.2);
}

input.form-control {
  padding: 11px;
  border: none;
  border: 2px solid #405c7cb8;
  /* border-radius: 30px; */
  background-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
}

input.form-control:focus {
  box-shadow: none !important;
  outline: 0px !important;
  background-color: transparent;
}

button.login-btn {
  background: #449bf8;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 30px;
}

.register-test a {
  color: #000;
}

.social-login button {
  border-radius: 30px;
}

.form-select {
  padding: 11px;
  border: 2px solid #405c7cb8;
  border-radius: 30px;
  height: calc(3.5rem + 2px);
  line-height: 1.5;
  color: #495057;
  background-color: transparent;
  background-clip: padding-box;
}

.form-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.student-login-main {
  background-color: #E6F7FD;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-info i {
  color: whitesmoke;
  background-color: rgb(87, 83, 83);
  transition: all 0.3s ease;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.contact-info i:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.contact-info li a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
}

.contact-info li a:hover {
  color: var(--accent-color);
}


/* careeer */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.job-card {
  height: 90%;
  background-color: #E0E6F0 !important;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  padding: 25px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Job Title */
.job-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 10px;
}

/* Job Meta Info */
.job-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.job-meta-item {
  margin-right: 15px;
  display: inline-block;
}

/* Skill Badge */
.badge-custom {
  background-color: #f1f3f5;
  color: #2c3e50;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Apply Button */
.job-card .btn-sm {
  font-weight: 600;
  padding: 6px 16px;
}

.input-group-text {
  background-color: #ffffff;
  border: 2px solid #ced4da;
  border-right: none;
  border-radius: 12px 0 0 12px;
}

.form-control {
  border: 1px solid #ced4da;
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 119, 255, 0.25);
  border-color: #2877ff;
}

.form-select {
  border-radius: 12px;
  padding: 10px;
  font-weight: 500;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease;
}

.form-select:focus {
  border-color: #2877ff;
  box-shadow: 0 0 0 0.2rem rgba(40, 119, 255, 0.25);
}

.cta-section {
  background: linear-gradient(135deg, #1f4037, #99f2c8);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  /* margin: 60px 0; */
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-section .btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.cta-section .btn-outline-light {
  color: white;
  border: 2px solid white;
  background: transparent;
}

.cta-section .btn-outline-light:hover {
  background-color: white;
  color: #1f4037;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-light {
  background-color: white;
  color: #1f4037;
  border: 2px solid white;
}

.cta-section .btn-light:hover {
  background-color: #f1f1f1;
  color: #1f4037;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}


#why-join {
  background: #fff;
}

.benefits-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefits-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefits-icon {
  /* background: linear-gradient(135deg, #ff758c, #ff7eb3); */
  background-color: #00AEED;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 117, 140, 0.4);
}

.benefits-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.benefits-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* culture card css end   */
.culture-section {
  padding: 80px 0;
  background: #fff;
}

.culture-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.culture-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.culture-icon {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.culture-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.culture-card p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}


/* card css end  */

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #7c3aed;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --accent-color: #f59e0b;
  --success-color: #10b981;



  --primary: #2563eb;
  --primary-light: #3b82f6;
  --dark: #1e293b;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}


.hero-section {
  position: relative;
  background-image: url(/assets/img/career\ bg.jpeg);
  background-position: center;
  background-size: cover;
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-title1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title1::after {
  content: '';
  position: absolute;
  bottom: -10px !important;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #811616;
  border-radius: 2px;
}


.job-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #811616;
}

.job-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 0.9rem;
}

.job-meta-item i {
  margin-right: 0.5rem;
  color: #16213e;
}

.badge-custom {
  background-color: #0184a1;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
}


.author-info h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.author-info p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}

.faq-header button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  background-color: white;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-header button:hover {
  color: var(--primary-color);
}

.faq-header button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #f8fafc;
}

.faq-body {
  padding: 1.5rem;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-body p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.cta-section {
  background: #027088;
  color: white;
  padding: 5rem 0;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  /* margin: 5rem 0; */
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
}

.cta-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-outline-light {
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border-width: 2px;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* footer section */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-links h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 12px !important;
  }

  .cta-title {
    font-size: 2rem;
  }
}

.job-header {
  background: #eeeeee;
  color: black;
}

.application-form {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.form-section {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.btn-apply {
  position: relative;
  background: linear-gradient(145deg, #439eb2, #04d2fc);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(1, 79, 96, 0.3);
}

.btn-apply:hover {
  background: linear-gradient(145deg, #02b7df, #0184a1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2, 183, 223, 0.4);
}

.btn-apply:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(2, 183, 223, 0.4);
}

.btn-apply::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: 0.5s;
}

.btn-apply:hover::before {
  left: 100%;
}

.btn-apply span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-apply span::after {
  content: '→';
  transition: transform 0.3s ease;
  color: white;
}

.btn-apply:hover span::after {
  transform: translateX(3px);
}

.hover-grow:hover {
  transform: scale(1.05);
}

.hover-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.hover-fill:hover {
  translate: 2px;
  background-color: #ae3939;
  color: white !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* ...................................
        pricing section
................................... */
.pricing-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 30px 15px;
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.basic .pricing-header {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.professional .pricing-header {
  background: linear-gradient(135deg, #ff6b6b 0%, #d63939 100%);
}

.premium .pricing-header {
  background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
}

.diamond .pricing-header {
  background: linear-gradient(135deg, #a1c4fd 0%, #6e97fd 100%);
}

.pricing-header-content {
  position: relative;
  z-index: 2;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 5px 0;
  position: relative;
}

.pricing-period {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 5px;
}

.pricing-features {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-grow: 1;
}

.pricing-features li {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: grey;
}

.pricing-features i {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.basic .pricing-features i {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.professional .pricing-features i {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
}

.premium .pricing-features i {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

.diamond .pricing-features i {
  background: rgba(161, 196, 253, 0.2);
  color: #a1c4fd;
}

.badge-popular {
  position: absolute;
  top: 30px;
  right: -35px;
  background: #b92828;
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.badge-diamond {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: rgb(246, 246, 247);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(3px);
  z-index: 3;
}

.btn-pricing {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s;
  border: 2px solid transparent;
  margin: 20px;
  width: calc(100% - 40px);
}

.basic .btn-pricing {
  background: #6c757d;
  color: white;
}

.professional .btn-pricing {
  background: #ff6b6b;
  color: white;
}

.premium .btn-pricing {
  background: #667eea;
  color: white;
}

.diamond .btn-pricing {
  background: #77aafd;
  color: #fff;
}

.btn-pricing:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title2 {
  position: relative;
  margin-bottom: 15px;
}

.section-title2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: #811616;
}

.package-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.diamond-icon {
  color: #fbfbfc;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: none;
}

.tabs-nav .nav-link {
  border: 0.5px solid grey;
  padding: 10px 20px;
  font-weight: 600;
  color: #6c757d;
  border-radius: 50px;
  margin: 0 5px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.tabs-nav .nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.tabs-nav .nav-link:hover:not(.active) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.diamond-feature {
  padding: 10px 15px;
}

.card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-content {
  padding: 15px;
  flex-grow: 1;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.package-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Popup content */
.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

.form-group {
  margin-bottom: 15px;
}


.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  /* width: 100%; */
  /* padding: 8px 12px; */
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.submit-btn {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #0b5ed7;
}

:root {
  --sm-silver: #C0C0C0;
  --sm-gold: #FFD700;
  --sm-platinum: #E5E4E2;
  --sm-diamond: #b9f2ff;
  --sm-primary: #6C63FF;
  --sm-primary-dark: #564FD9;
  --sm-secondary: #FF6584;
  --sm-dark: #2D3748;
  --sm-light: #F7FAFC;
  --sm-gray: #718096;
  --sm-light-gray: #E2E8F0;
  --sm-radius-lg: 12px;
  --sm-radius-md: 8px;
  --sm-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --sm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sm-pricing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  position: relative;
  overflow: hidden;
}

.sm-pricing-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0) 70%);
  border-radius: 50%;
}

.sm-section-subtitle {
  display: inline-block;
  color: var(--sm-secondary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  background: rgba(255, 101, 132, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.sm-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sm-section-title span {
  color: var(--sm-primary);
  position: relative;
}

.sm-section-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(108, 99, 255, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.sm-section-description {
  color: var(--sm-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.sm-pricing-card {
  background: white;
  border-radius: var(--sm-radius-lg);
  box-shadow: var(--sm-shadow);
  overflow: hidden;
  transition: var(--sm-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid var(--sm-light-gray);
  margin-bottom: 1.5rem;
}

/* popup css start  */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.popup-content {
  background-color: #fff;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.popup-inner {
  display: flex;
  flex-direction: row;
}

.form-side {
  flex: 1;
  padding: 40px 30px;
}

.image-side {
  flex: 1;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
}


.image-side img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}

h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}


.text-secondary {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}


.form-group {
  margin-bottom: 20px;
}

#planForm .form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #0d6efd;
}

.submit-btn {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0b5ed7;
}

/* Responsive */
@media (max-width: 768px) {
  .popup-inner {
    flex-direction: column;
  }

  .image-side {
    display: none;
  }

  .form-side {
    padding: 25px;
  }
}

/* popup css end  */


.sm-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Plan Specific Colors */
.sm-silver-card {
  border-top-color: var(--sm-silver);
}

.sm-silver-card .sm-pricing-header {
  background: linear-gradient(135deg, #f3f3f3 0%, var(--sm-silver) 100%);
}

.sm-gold-card {
  border-top-color: var(--sm-gold);
}

.sm-gold-card .sm-pricing-header {
  background: linear-gradient(135deg, #fff9e6 0%, var(--sm-gold) 100%);
}

.sm-platinum-card {
  border-top-color: var(--sm-platinum);
}

.sm-platinum-card .sm-pricing-header {
  background: linear-gradient(135deg, #f5f5f5 0%, var(--sm-platinum) 100%);
}

.sm-diamond-card {
  border-top-color: var(--sm-diamond);
}

.sm-diamond-card .sm-pricing-header {
  background: linear-gradient(135deg, #e6f7ff 0%, var(--sm-diamond) 100%);
}

.sm-popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--sm-secondary);
  color: white;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(255, 101, 132, 0.2);
  z-index: 1;
}

.sm-pricing-header {
  padding: 2rem;
  color: var(--sm-dark);
  text-align: center;
  position: relative;
}

.sm-pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sm-pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}

.sm-pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  margin-right: 4px;
  align-self: flex-start;
  margin-top: 6px;
}

.sm-pricing-period {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  align-self: flex-end;
  margin-left: 4px;
  margin-bottom: 4px;
}

.sm-pricing-description {
  font-size: 0.95rem;
  color: var(--sm-dark);
}

.sm-pricing-features {
  padding: 2rem;
  flex-grow: 1;
  background: rgba(247, 250, 252, 0.5);
}

.sm-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-feature-item {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--sm-dark);
}

.sm-feature-item::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--sm-primary);
}

.sm-pricing-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.sm-btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--sm-transition);
  width: 100%;
  background: var(--sm-primary);
  color: white;
  border: none;
  box-shadow: 0 4px 6px rgba(108, 99, 255, 0.2);
}

.sm-btn-pricing:hover {
  background: var(--sm-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(108, 99, 255, 0.3);
  color: white;
}

/* Custom Package Form */
.sm-custom-package-form {
  max-width: 800px;
  margin: 5rem auto 0;
  background: white;
  border-radius: var(--sm-radius-lg);
  box-shadow: var(--sm-shadow);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.sm-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sm-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.sm-form-title span {
  color: var(--sm-primary);
}

.sm-form-label {
  font-weight: 600;
  color: var(--sm-dark);
}

.sm-form-label span {
  color: var(--sm-secondary);
}

.sm-form-control,
.sm-form-select {
  padding: 0.875rem 1rem;
  border-radius: var(--sm-radius-md);
  transition: var(--sm-transition);
}

.sm-form-control:focus,
.sm-form-select:focus {
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
  border-color: var(--sm-primary);
}

.sm-btn-submit {
  padding: 0.7rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--sm-transition);
  background: #5da6f9;
  color: white;
  border: none;
  box-shadow: 0 4px 6px rgba(255, 101, 132, 0.2);
}

.sm-btn-submit:hover {
  background: #5f6cf9;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(8, 126, 244, 0.3);
  color: white;
}

/* FAQ Section */
.sm-faq-section {
  padding: 5rem 0;
  background: white;
}

.sm-faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sm-faq-title span {
  color: var(--sm-primary);
  position: relative;
}

.sm-faq-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(108, 99, 255, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.sm-faq-subtitle {
  color: var(--sm-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.sm-accordion-button {
  font-weight: 600;
  color: var(--sm-dark);
}

.sm-accordion-button:not(.collapsed) {
  color: var(--sm-primary);
  background-color: rgba(108, 99, 255, 0.05);
}

.sm-accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.sm-accordion-body {
  color: var(--sm-gray);
}

/* Responsive Adjustments */
@media (max-width: 992px) {

  .sm-section-title,
  .sm-faq-title {
    font-size: 2.2rem;
  }

  .sm-pricing-price {
    font-size: 2.2rem;
  }

  .sm-custom-package-form {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {

  .sm-pricing-section,
  .sm-faq-section {
    padding: 3rem 0;
  }

  .sm-section-title,
  .sm-faq-title {
    font-size: 2rem;
  }

  .sm-popular-badge {
    right: -25px;
    padding: 0.2rem 1.5rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {

  .sm-section-title,
  .sm-faq-title {
    font-size: 1.8rem;
  }

  .sm-pricing-price {
    font-size: 2rem;
  }

  .sm-custom-package-form {
    padding: 2rem 1.5rem;
  }

  .sm-pricing-header,
  .sm-pricing-features {
    padding: 1.5rem;
  }
}

/* team */
.team-section {
  padding: 20px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.team-section .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4f46e5;
  margin-bottom: 15px;
  background: rgba(79, 70, 229, 0.1);
  padding: 6px 15px;
  border-radius: 30px;
}

.section-title1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.team-member {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #4f46e5;
  transform: translateY(-3px);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.member-info span {
  display: block;
  font-size: 0.875rem;
  color: #4f46e5;
  font-weight: 600;
  margin-bottom: 15px;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.member-skills span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 0;
}

.team-cta {
  text-align: center;
  margin-top: 40px;
}

.team-cta p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0072ff;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
  background: #00c6ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(79, 70, 229, 0.5);
  color: white;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .section-title1 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 0;
  }

  .member-image {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;


    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title1 {
    font-size: 1.55rem;
  }
}

/* blog section css  */
.bg-infotechs-blog {
  font-family: 'Poppins', sans-serif;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  background: #F8FAFF;
}

.bg-infotechs-blog * {
  box-sizing: border-box;
}

.bg-infotechs-blog .blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bg-infotechs-blog .blog-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, #00AFEE, #0066FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.bg-infotechs-blog .blog-subtitle {
  color: #64748B;
  font-weight: 400;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.bg-infotechs-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.bg-infotechs-blog .blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 175, 238, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(0, 175, 238, 0.1);
}

.bg-infotechs-blog .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 175, 238, 0.15);
}

.bg-infotechs-blog .blog-card-image-container {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bg-infotechs-blog .blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bg-infotechs-blog .blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.bg-infotechs-blog .blog-card-content {
  padding: 1.75rem;
}

.bg-infotechs-blog .blog-card-tag {
  display: inline-block;
  background: rgba(0, 175, 238, 0.1);
  color: #00AFEE;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-infotechs-blog .blog-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0F172A;
  line-height: 1.4;
}

.bg-infotechs-blog .blog-card-excerpt {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bg-infotechs-blog .blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid #F1F5F9;
}

.bg-infotechs-blog .blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bg-infotechs-blog .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E2E8F0;
}

.bg-infotechs-blog .author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
}

.bg-infotechs-blog .blog-card-date {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 500;
}

.bg-infotechs-blog .blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00AFEE;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bg-infotechs-blog .blog-card-cta:hover {
  color: #0066FF;
}

.bg-infotechs-blog .blog-card-cta svg {
  transition: transform 0.3s ease;
}

.bg-infotechs-blog .blog-card-cta:hover svg {
  transform: translateX(3px);
}

.bg-infotechs-blog .view-all-container {
  text-align: center;
  margin-top: 4rem;
}

.bg-infotechs-blog .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(90deg, #00AFEE, #0066FF);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 175, 238, 0.3);
}

.bg-infotechs-blog .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 175, 238, 0.4);
}

.bg-infotechs-blog .view-all-btn svg {
  transition: transform 0.3s ease;
}

.bg-infotechs-blog .view-all-btn:hover svg {
  transform: translateX(8px);
}

@media (max-width: 1024px) {
  .bg-infotechs-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bg-infotechs-blog {
    padding: 3rem 1.5rem;
  }

  .bg-infotechs-blog .blog-title {
    font-size: 2.25rem;
  }

  .bg-infotechs-blog .blog-subtitle {
    font-size: 1.1rem;
  }

  .bg-infotechs-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ............blog-details............ */
.blog-detail-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

.blog-article {
  flex: 0 0 70%;
}

.blog-sidebar {
  flex: 0 0 30%;
}

/* Article Header */
.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.category-tag {
  background-color: #811616;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #222;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  display: block;
}

.author-title {
  font-size: 0.9rem;
  color: #666;
}

/* Featured Image */
.featured-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.featured-image:hover img {
  transform: scale(1.02);
}

/* Article Content */
.article-content {
  line-height: 1.8;
  color: #444;
  font-size: 1rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.intro {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #222;
  position: relative;
  padding-bottom: 0.5rem;
}

.article-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #811616;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
  color: #333;
}

blockquote {
  border-left: 4px solid #45B34A;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: #f8f9fa;
  font-style: italic;
  color: #555;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.image-gallery img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.03);
}

/* Sidebar Styling */
.sidebar-widget {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #45B34A;
}

.author-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.author-card .author-avatar {
  width: 70px;
  height: 70px;
}

.author-details h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.author-details p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.author-link {
  font-size: 0.9rem;
  color: #45B34A;
  font-weight: 600;
}

.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-post-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #333;
  transition: color 0.3s ease;
}

.popular-post-title:hover {
  color: #45B34A;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.subscribe-btn {
  padding: 0.8rem;
  background-color: #45B34A;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #3a9a3f;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-detail-container {
    flex-direction: column;
    padding: 1rem;
  }

  .blog-article,
  .blog-sidebar {
    flex: 0 0 100%;
  }

  .article-title {
    font-size: 2rem;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }
}


/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.card-header {
  background-color: #02b4dc;
}

.chatbot-toggle {
  position: fixed;
  background-color: #811616;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
  background-color: #7c0715;
  transform: translateY(1.5px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.chatbot-body {
  height: 300px;
  overflow-y: auto;
  padding: 15px;
  background-color: #f8f9fa;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
}

.user-message {
  background-color: #007bff;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 5px;
}

.bot-message {
  background-color: #e9ecef;
  color: #212529;
  margin-right: auto;
  border-bottom-left-radius: 5px;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message {
  animation: fadeIn 0.3s ease-out;
}

/* ...........webdevelopment......... */

:root {
  --bg-infotechs-primary: #6c63ff;
  --bg-infotechs-secondary: #4d44db;
  --bg-infotechs-accent: #ff6584;
  --bg-infotechs-dark: #2d3748;
  --bg-infotechs-light: #f8f9fa;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Animated Gradient Background */
.bg-infotechs-gradient-bg {
  background: linear-gradient(-45deg, #6c63ff, #4d44db, #ff6584, #ffb347);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero Section */
.bg-infotechs-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  color: white;
}

.bg-infotechs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.bg-infotechs-hero-content {
  position: relative;
  z-index: 1;
}

.bg-infotechs-hero-title {
  font-size: 2.5rem;
  color: #F0FAF2;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.bg-infotechs-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.client-logos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.client-logos-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.client-logo-item {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%) opacity(70%);
  transition: all 0.3s ease;
}

.client-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

@media (max-width: 768px) {
  .client-logos-track {
    gap: 20px;
    animation-duration: 15s;
  }

  .client-logo-item {
    width: 120px;
    height: 60px;
  }
}

/* Floating Animation */
.bg-infotechs-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.bg-infotechs-service-icon {
  font-size: 3.5rem;
  background: linear-gradient(to right, var(--bg-infotechs-primary), var(--bg-infotechs-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.bg-infotechs-feature-card {
  border: none;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-infotechs-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(77, 68, 219, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bg-infotechs-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.bg-infotechs-feature-card:hover::before {
  opacity: 1;
}

.bg-infotechs-feature-card .card-body {
  padding: 2.5rem;
}

.bg-infotechs-process-wrapper {
  position: relative;
  padding-left: 40px;
}

.bg-infotechs-process-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #4e54c8, #8f94fb);
  border-radius: 10px;
}

.bg-infotechs-process-step {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bg-infotechs-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bg-infotechs-process-step-number {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: #4e54c8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
}

.bg-infotechs-process-step-content {
  padding-left: 20px;
}

.process-features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.process-features-list li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .bg-infotechs-process-wrapper {
    padding-left: 30px;
  }

  .bg-infotechs-process-step-number {
    left: -30px;
  }
}

.bg-infotechs-benefits-list {
  list-style: none;
  padding-left: 0;
}

.bg-infotechs-benefits-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.bg-infotechs-benefits-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--bg-infotechs-primary);
}

/* Tech Stack */
.bg-infotechs-tech-stack .badge {
  font-size: 3rem;
  padding: 0.6rem 1rem;
  margin: 0.5rem;
  background-color: rgba(108, 99, 255, 0.1);
  color: var(--bg-infotechs-primary);
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.bg-infotechs-tech-stack .badge:hover {
  transform: translateY(-3px);
}

/* Testimonial Card */
.bg-infotechs-testimonial-card {
  border: none;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bg-infotechs-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(108, 99, 255, 0.05);
  line-height: 1;
}

.bg-infotechs-testimonial-card .card-body {
  padding: 2rem;
}

/* CTA Section */
.bg-infotechs-cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.bg-infotechs-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.bg-infotechs-cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.bg-infotechs-cta-content {
  position: relative;
  z-index: 1;
}

/* Buttons */
.bg-infotechs-btn-primary {
  background: linear-gradient(to right, var(--bg-infotechs-primary), var(--bg-infotechs-secondary));
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.bg-infotechs-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
  color: white;
}

.bg-infotechs-btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bg-infotechs-btn-outline:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

/* Section Title */
.bg-infotechs-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.bg-infotechs-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--bg-infotechs-primary), var(--bg-infotechs-accent));
  border-radius: 2px;
}

.bg-infotechs-section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Process Steps */
.bg-infotechs-process-step {
  position: relative;
  padding-left: 90px;
  margin-bottom: 3rem;
}

.bg-infotechs-process-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, var(--bg-infotechs-primary), var(--bg-infotechs-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Portfolio Hover Effect */
.bg-infotechs-portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.bg-infotechs-portfolio-img {
  transition: all 0.5s ease;
}

.bg-infotechs-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(108, 99, 255, 0.5), rgba(77, 68, 219, 0.7));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: white;
  transition: all 0.4s ease;
}

.bg-infotechs-portfolio-item:hover .bg-infotechs-portfolio-overlay {
  opacity: 1;
}

.bg-infotechs-portfolio-item:hover .bg-infotechs-portfolio-img {
  transform: scale(1.1);
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .bg-infotechs-hero-title {
    font-size: 2rem;
  }

  .bg-infotechs-feature-card .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .bg-infotechs-hero {
    padding: 6rem 0;
    text-align: center;
  }

  .bg-infotechs-hero-title {
    font-size: 2rem;
  }

  .bg-infotechs-hero-subtitle {
    font-size: 1rem;
  }

  .bg-infotechs-process-step {
    padding-left: 0;
    padding-top: 80px;
    text-align: center;
  }

  .bg-infotechs-process-step-number {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}

/*......... graphicdesigning......... */
.bg-hero-section {
  background: #047fac;
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.bg-hero-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.bg-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 20px;
}

.bg-hero-section img {
  max-height: 350px;
  width: auto;
}

.bg-sub-heading {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.bg-primary-btn {
  background-color: #ff6584;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.bg-primary-btn:hover {
  background-color: #e64c6d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bg-service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.bg-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bg-service-icon {
  font-size: 2.5rem;
  color: #6c63ff;
  margin-bottom: 20px;
}

.bg-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2d2d39;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.bg-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ff6584;
}

/* Portfolio Section Styles */
.bg-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.bg-section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #4a6cf7;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Filter Buttons */
.bg-filter-btn {
  background: white;
  color: #4a6cf7;
  border: 1px solid #4a6cf7;
  border-radius: 30px;
  padding: 8px 20px;
  margin: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bg-filter-btn:hover,
.bg-filter-btn.active {
  background: #4a6cf7;
  color: white;
  border-color: #4a6cf7;
}

/* Portfolio Items */
.bg-portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.bg-portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bg-portfolio-item img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.bg-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 108, 247, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-portfolio-item:hover .bg-portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 20px;
  color: white;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.bg-portfolio-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.portfolio-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.portfolio-link {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: white;
  color: #4a6cf7;
  transform: scale(1.1);
}

.bg-primary-btn {
  background: #4a6cf7;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bg-primary-btn:hover {
  background: #3a5bd9;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .filter-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bg-filter-btn {
    padding: 6px 15px;
    font-size: 0.8rem;
    margin: 3px;
  }

  .bg-section-title {
    font-size: 2rem;
  }
}

/* Animation classes */
.bg-animate-pop {
  animation: bgPopAnimation 0.5s ease;
}

@keyframes bgPopAnimation {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bg-main-heading {
    font-size: 2.5rem;
  }

  .bg-hero-section {
    padding: 80px 0;
  }
}

/* Testimonials Section */
.bg-testimonials {
  background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bg-testimonials__decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(105, 90, 166, 0.05);
  z-index: 0;
}

.bg-testimonials__decor--top {
  top: -150px;
  right: -150px;
}

.bg-testimonials__decor--bottom {
  bottom: -150px;
  left: -150px;
}

.bg-testimonials__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.bg-testimonials__title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #667eea, #764ba2);
  border-radius: 2px;
}

/* Testimonial Cards */
.bg-testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.bg-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bg-testimonial-card__client {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e9ecef;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-testimonial-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0;
}

.bg-testimonial-card__position {
  font-size: 0.85rem;
  color: #718096;
}

.bg-testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 20px 0;
  font-style: italic;
  position: relative;
}

.bg-testimonial-card__quote:before {
  content: '"';
  font-size: 3rem;
  color: rgba(105, 90, 166, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.bg-testimonial-card__stars {
  margin-top: 15px;
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bg-testimonials {
    padding: 60px 0;
  }

  .bg-testimonials__title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .bg-testimonial-card {
    margin-bottom: 30px;
  }

  .bg-testimonials__decor {
    width: 200px;
    height: 200px;
  }

  .bg-testimonials__decor--top {
    top: -100px;
    right: -100px;
  }

  .bg-testimonials__decor--bottom {
    bottom: -100px;
    left: -100px;
  }
}

/* CTA Section Styles */
.gfx-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.gfx-cta__circle--top-right {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.gfx-cta__circle--bottom-left {
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  z-index: 1;
}

.gfx-cta__content {
  position: relative;
  z-index: 2;
}

.gfx-cta__heading {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.gfx-cta__subheading {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem !important;
}

.gfx-cta__btn-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gfx-cta__btn--primary {
  display: inline-block;
  padding: 15px 30px;
  background: white;
  color: #764ba2 !important;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.gfx-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
  color: #764ba2 !important;
}

@media (max-width: 768px) {
  .gfx-cta-section {
    padding: 60px 0;
  }

  .gfx-cta__heading {
    font-size: 2rem;
  }

  .gfx-cta__subheading {
    font-size: 1.1rem;
  }

  .gfx-cta__btn--primary,
  .gfx-cta__btn--secondary {
    padding: 12px 24px;
  }
}

/* ...........training-section........... */
.ita-bg-primary {
  background-color: #2563eb;
}

.ita-bg-secondary {
  background-color: #1e293b;
}

.ita-bg-light {
  background-color: #f8fafc;
}

.ita-bg-dark {
  background-color: #0f172a;
}

.ita-text-primary {
  color: #2563eb;
}

.ita-text-secondary {
  color: #1e293b;
}

.ita-text-accent {
  color: #f43f5e;
}

.ita-text-light {
  color: #f8fafc;
}

.ita-text-gray {
  color: #94a3b8;
}

.ita-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.ita-btn-primary {
  background-color: #2a4378;
  color: white;
}

.ita-btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.ita-btn-outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.ita-btn-outline:hover {
  background-color: #2563eb;
  color: white;
  transform: translateY(-2px);
}

.ita-btn-accent {
  background-color: #811616;
  color: white;
  border: 2px solid #811616;
}

.ita-btn-accent:hover {
  background-color: brown;
  border-color: brown;
  transform: translateY(-2px);
}

.ita-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  width: 100%;
}

.ita-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.ita-card-header {
  background-color: #2a4378;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1.20rem;
}

.ita-card-body {
  padding: 0 24px 24px;
}

.ita-card-body p {
  color: black;
  margin-top: 10px;
}

.ita-card-body li {
  color: grey;
  font-size: 1rem;
}

.ita-hero {
  background: linear-gradient(135deg, #628ccf 0%, #2a4378 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.ita-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center right;
  background-size: cover;
  opacity: 0.20;
}

.ita-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-weight: 700;
}

.ita-section-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: #f43f5e;
  bottom: -12px;
  left: 20%;
  border-radius: 2px;
}

.ita-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2563eb;
}

.ita-course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f43f5e;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ita-testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2563eb;
}

.ita-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.ita-modal-content {
  background-color: white;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  overflow: hidden;
  animation: itaModalFadeIn 0.3s ease;
}

@keyframes itaModalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ita-modal-header {
  padding: 20px;
  background-color: #027088;
  color: white;
  position: relative;
}

.ita-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.ita-modal-body {
  padding: 30px;
}

.ita-form-group {
  margin-bottom: 20px;
}

.ita-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.ita-form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.ita-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ita-py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ita-py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ita-text-center {
  text-align: center;
}

.ita-mb-0 {
  margin-bottom: 0;
}

.ita-mb-20 {
  margin-bottom: 20px;
}

.ita-mb-30 {
  margin-bottom: 30px;
}

.ita-mb-40 {
  margin-bottom: 40px;
}

.ita-mb-50 {
  margin-bottom: 50px;
}

.ita-mt-30 {
  margin-top: 30px;
}

.ita-d-flex {
  display: flex;
}

.ita-justify-between {
  justify-content: space-between;
}

.ita-align-center {
  align-items: center;
}

.ita-flex-col {
  flex-direction: column;
}

.ita-w-full {
  width: 100%;
}

.ita-relative {
  position: relative;
}

.ita-absolute {
  position: absolute;
}

/* Updated Grid System */
.ita-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ita-col-md-4,
.ita-col-md-6,
.ita-col-lg-4 {
  margin-bottom: 30px;
  box-sizing: border-box;
}

.ita-col-md-4 {
  flex: 1 0 calc(33.333% - 20px);
}

.ita-col-md-6 {
  flex: 1 0 calc(50% - 20px);
}

.ita-col-lg-4 {
  flex: 1 0 calc(33.333% - 20px);
}

.ita-list-unstyled {
  list-style: none;
  padding-left: 0;
}

.ita-img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.ita-bg-accent {
  background-color: #6498fa;
}

.ita-h-full {
  height: 100%;
}

.ita-me-3 {
  margin-right: 1rem;
}

.ita-ms-3 {
  margin-left: 1rem;
}

.ita-p-4 {
  padding: 1.5rem;
}

.ita-text-warning {
  color: #f59e0b;
}

@media (max-width: 992px) {

  .ita-col-md-4,
  .ita-col-lg-4 {
    flex: 1 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {

  .ita-col-md-4,
  .ita-col-md-6,
  .ita-col-lg-4 {
    flex: 1 0 100%;
  }

  .ita-hero {
    padding: 100px 0 80px;
  }

  .ita-hero::before {
    width: 100%;
    opacity: 0.1;
  }
}

.bg-infotechs-features {
  position: relative;
  overflow: hidden;
}

.bg-infotechs-card {
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.bg-infotechs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bg-infotechs-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.bg-infotechs-icon {
  font-size: 36px;
  color: #2b6cb0;
  position: relative;
  z-index: 2;
  line-height: 80px;
}

.bg-infotechs-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ebf4ff;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.bg-infotechs-card:hover .bg-infotechs-icon-bg {
  transform: scale(1.1);
  background: #bee3f8;
}

.bg-infotechs-learn-more {
  color: #2b6cb0;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.bg-infotechs-learn-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #2b6cb0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bg-infotechs-card:hover .bg-infotechs-learn-more:after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .bg-infotechs-card {
    margin-bottom: 30px;
  }
}

/* ........social media marketing........ */
.buzz-gradient-bg {
  background: #fff;
  background-size: 200% 200%;
  animation: buzzGradientPulse 8s ease infinite;
}

@keyframes buzzGradientPulse {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Animation Classes */
.buzz-float {
  animation: buzzFloat 3s ease-in-out infinite;
}

@keyframes buzzFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.buzz-spin {
  animation: buzzSpin 8s linear infinite;
}

@keyframes buzzSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.buzz-pulse:hover {
  animation: buzzPulseEffect 1s infinite;
}

@keyframes buzzPulseEffect {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.buzz-glow-text {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  animation: buzzGlowPulse 2s ease-in-out infinite alternate;
}

@keyframes buzzGlowPulse {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(100, 149, 237, 0.7);
  }
}

/* Card Styles */
.buzz-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.buzz-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), 0 10px 10px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.buzz-btn-flare {
  background: linear-gradient(45deg, #00a8ff, #00d2ff, #0095ff);
  border: none;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.buzz-btn-flare:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.buzz-btn-flare::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.buzz-btn-flare:hover::after {
  left: 100%;
}

/* Stats Counter */
.buzz-counter {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, #0066FF, #0095ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.buzz-testimonial {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.buzz-testimonial::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

.buzz-testimonial p {
  color: grey;
  font-size: 1rem;
}

.buzz-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.buzz-badge {
  padding: 0.35em 0.65em;
  font-weight: 500;
  border-radius: 50rem;
}

.buzz-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buzz-hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Card Styling */
.contact-form-card {
  border: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 5px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%); */
}

/* Animated Heading */
.animated-heading {
  position: relative;
  display: inline-block;
  color: #333;
  font-weight: 700;
}

.animated-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 2px;
  animation: headingUnderline 2s infinite alternate;
}

@keyframes headingUnderline {
  0% {
    width: 60px;
  }

  100% {
    width: 45%;
  }
}

/* Floating Labels */
.form-floating {
  position: relative;
}

.form-floating label {
  color: #7f8c8d;
  transition: all 0.3s ease;
}

.form-floating .form-control {
  border: none;
  border-bottom: 2px solid #ecf0f1;
  border-radius: 0;
  padding-left: 0;
  background: transparent;
  box-shadow: none;
}

.form-floating .form-control:focus {
  border-bottom-color: #3498db;
  box-shadow: none;
}

.form-floating .form-control:focus~label,
.form-floating .form-control:not(:placeholder-shown)~label {
  transform: scale(0.85) translateY(-1.5rem) translateX(-0.15rem);
  color: #3498db;
}

/* Validation Feedback */
.invalid-feedback,
.valid-feedback {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:valid~.valid-feedback {
  opacity: 1;
  transform: translateY(0);
}

/* Submit Button */
.btn-send-message {
  position: relative;
  overflow: hidden;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}

.btn-send-message:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 117, 252, 0.4);
}

.btn-send-message:active {
  transform: translateY(0);
}

.btn-send-message .btn-text,
.btn-send-message .btn-icon,
.btn-send-message .btn-sent-confirm {
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-send-message .btn-icon {
  transform: translateX(5px);
  opacity: 0;
  position: absolute;
  right: 20px;
}

.btn-send-message .btn-sent-confirm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.btn-send-message:hover .btn-text {
  transform: translateX(-10px);
}

.btn-send-message:hover .btn-icon {
  transform: translateX(0);
  opacity: 1;
}

.btn-send-message.sent .btn-text,
.btn-send-message.sent .btn-icon {
  opacity: 0;
  transform: translateY(-20px);
}

.btn-send-message.sent .btn-sent-confirm {
  opacity: 1;
  animation: sentConfirmation 0.5s ease;
}

@keyframes sentConfirmation {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Input Focus Animation */
.form-control:focus {
  animation: inputFocus 0.5s ease;
}

@keyframes inputFocus {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Mobile Mega Menu Styles */
.mobile-dropdown-content {
  display: none;
  width: 100%;
  padding: 0 15px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-mega-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-mega-item img {
  margin-right: 10px;
  flex-shrink: 0;
}

.mobile-mega-item h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: white;
}

.mobile-mega-item p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-dropdown-toggle i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}



/* .........digital marketing css ...........*/
.bgd-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.bgd-service-icon-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
}

.bgd-service-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #f0f4ff;
  color: #4361ee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bgd-service-card h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #2b2d42;
  font-weight: 600;
}

.bgd-service-card p {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.3;
}

.bgd-service-link {
  color: #4361ee;
  font-weight: 600;
  text-decoration: none;
  margin-left: 15px;
  transition: transform 0.2s;
}

.bgd-service-seo .bgd-service-icon {
  color: #3f37c9;
  background: #f0f0ff;
}

.bgd-service-ppc .bgd-service-icon {
  color: #4cc9f0;
  background: #f0f9ff;
}

.bgd-service-social .bgd-service-icon {
  color: #f72585;
  background: #fff0f5;
}

.bgd-service-content .bgd-service-icon {
  color: #4895ef;
  background: #f0f7ff;
}

.bgd-service-email .bgd-service-icon {
  color: #560bad;
  background: #f5f0ff;
}

.bgd-service-analytics .bgd-service-icon {
  color: #b5179e;
  background: #fff0fb;
}

.bgd-service-card:hover {
  transform: translateX(3px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.bgd-service-card:hover .bgd-service-link {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .bgd-service-card {
    padding: 10px 12px;
  }

  .bgd-service-icon-text {
    gap: 10px;
  }

  .bgd-service-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

.dhero-section {
  background-image: url(/assets/img/digitalbg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 88;
  height: 100vh;
  width: 100vw;
}

.dhero-section::before {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dhero-content {
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: linear-gradient(90deg, #fff, #811616);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.custom-brown-badge {
  background-color: rgba(165, 42, 42, 0.1);
  color: #A52A2A;
  border-radius: 10px;
  padding: 5px 10px;
}

.brown-underline {
  position: relative;
  text-align: center;
}

.brown-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background-color: #A52A2A;
}

/* Services Section Styling */
#services {
  position: relative;
  overflow: hidden;
}

.bgd-service-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: rgb(255, 255, 255);
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bgd-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bgd-service-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.bgd-service-icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.bgd-service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(74, 128, 240, 0.15) 0%, rgba(0, 198, 255, 0.15) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.bgd-service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.bgd-service-card:hover .bgd-service-icon {
  color: #4a80f0;
  transform: scale(1.15) translateY(-5px);
}

.bgd-service-card:hover .bgd-service-icon::after {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}

.bgd-service-card h4 {
  color: brown;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.bgd-service-card p {
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.bgd-service-card a {
  transition: all 0.3s ease;
  margin-top: auto;
}

.bgd-service-card:hover a {
  color: #3a6fd0 !important;
}

.bgd-service-card a i {
  transition: transform 0.3s ease;
}

.bgd-service-card:hover a i {
  transform: translateX(5px);
}

/* ..........whychoose.......... */
.bgInfotech-why-choose {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.bgInfotech-why-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: none;
  position: relative;
  overflow: visible;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.bgInfotech-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 101, 252, 0.1) 0%, rgba(82, 112, 246, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.bgInfotech-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6003f5 0%, #1858fc 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 0 0 16px 16px;
}

.bgInfotech-why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(45, 3, 253, 0.15);
}

.bgInfotech-why-card:hover::before {
  opacity: 1;
}

.bgInfotech-why-card:hover::after {
  transform: scaleX(1);
}

.bgInfotech-why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.4s ease;
  display: inline-block;
}

.bgInfotech-why-card:hover .bgInfotech-why-icon {
  transform: rotateY(360deg) scale(1.2);
}

.bgInfotech-why-card-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111112;
  position: relative;
  display: inline-block;
}

.bgInfotech-why-card-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2525fb;
  transition: width 0.4s ease;
}

.bgInfotech-why-card:hover .bgInfotech-why-card-title::after {
  width: 100%;
}

.bgInfotech-why-card-text {
  color: #6c757d;
  font-size: 0.95rem;
  transition: all 0.4s ease;
}

.bgInfotech-why-card:hover .bgInfotech-why-card-text {
  color: #495057;
  transform: translateX(5px);
}

.bgInfotech-why-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #721cfd 0%, #4b6ffb 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.4s ease;
}

.bgInfotech-why-card:hover .bgInfotech-why-badge {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 4px 10px rgba(110, 72, 170, 0.3);
}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1.02);
  }

  50% {
    transform: translateY(-10px) scale(1.02);
  }

  100% {
    transform: translateY(0px) scale(1.02);
  }
}

/*......... digital-portfolio....... */
.bgd-portfolio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.bgd-portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  width: calc(25% - 23px);
  aspect-ratio: 1/1;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.bgd-portfolio-card {
  position: relative;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bgd-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(1);
}

.bgd-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.7), rgba(63, 53, 248, 0.7));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(20px);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.bgd-portfolio-item:hover .bgd-portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.bgd-portfolio-item:hover .bgd-portfolio-img {
  transform: scale(1.2) rotate(2deg);
}

@media (max-width: 1200px) {
  .bgd-portfolio-item {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 992px) {
  .bgd-portfolio-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .bgd-portfolio-item {
    width: 100%;
  }
}

/* .....bdg-cta section....... */
.cta-section {
  background: linear-gradient(135deg, #a39dfb 0%, #c3d5fe 100%);
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  opacity: 0.1;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  opacity: 0.1;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  border: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

:root {
  --primary-blue: #1a56db;
  --secondary-blue: #3b82f6;
  --light-blue: #e0f2fe;
  --dark-brown: #5c4033;
  --medium-brown: #8b5a2b;
  --light-brown: #d2b48c;
  --accent-brown: #a0522d;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.email-hero-bg {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(224, 242, 254, 0.7) 100%),
    url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.email-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(28, 100, 219, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.email-feature-card {
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(30px);
  opacity: 0;
  background: white;
  overflow: hidden;
  position: relative;
}

.email-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-brown), var(--primary-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.email-feature-card.animated {
  transform: translateY(0);
  opacity: 1;
}

.email-feature-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.email-feature-card:hover::after {
  transform: scaleX(1);
}

.email-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(201, 233, 254, 0.8) 100%);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.1);
}

.email-feature-card:hover .email-icon-container {
  transform: rotateY(180deg) scale(1.1);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.email-feature-card:hover .email-icon-container i {
  color: #fff !important;
  transform: rotateY(-180deg);
}

.email-stats-box {
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.5s ease;
  transform: scale(0.9);
  opacity: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid transparent;
}

.email-stats-box.animated {
  transform: scale(1);
  opacity: 1;
}

.email-stats-box:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(26, 86, 219, 0.15);
  border-bottom-color: var(--primary-blue);
}

.email-cta-section {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  border: 1px solid rgba(224, 242, 254, 0.8);
  position: relative;
  overflow: hidden;
}

.email-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  animation: rotate 20s linear infinite;
}

.email-testimonial-card {
  border-left: 4px solid var(--primary-blue);
  padding-left: 20px;
  transition: all 0.5s ease;
  transform: translateX(-30px);
  opacity: 0;
  background: white;
  border-radius: 0 12px 12px 0;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.email-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(26, 86, 219, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.email-testimonial-card.animated {
  transform: translateX(0);
  opacity: 1;
}

.email-testimonial-card:hover {
  transform: translateX(10px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.email-pricing-card {
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(40px);
  opacity: 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.email-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgb(114, 114, 254);
}

.email-pricing-card.animated {
  transform: translateY(0);
  opacity: 1;
}

.email-pricing-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 15px 30px rgba(26, 86, 219, 0.1);
  transform: translateY(-10px) !important;
}

.email-pricing-popular {
  position: absolute;
  top: 10px;
  right: 20px;
  background: linear-gradient(90deg, brown, blue);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
  z-index: 2;
}

.email-workflow-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateY(30deg) translateX(50px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.email-workflow-img.animated {
  transform: perspective(1000px) rotateY(0) translateX(0);
}

.email-faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.email-faq-header {
  background-color: #F0FAF2;
  padding: 18px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: white;
  border-left: 4px solid transparent;
}

.email-faq-header:hover {
  background-color: var(--light-blue);
  border-left-color: var(--primary-blue);
}

.email-faq-header.collapsed {
  border-left-color: transparent;
}

.email-faq-body {
  padding: 20px;
  background-color: #F9FAFB;
  color: black;
  border-top: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.email-process-step {
  transition: all 0.5s ease;
  transform: translateX(-80px);
  opacity: 0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.email-process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--dark-brown), var(--primary-blue));
  transition: all 0.5s ease;
}

.email-process-step.animated {
  transform: translateX(0);
  opacity: 1;
}

.email-process-step:hover {
  transform: translateX(10px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  transition: all 0.5s ease;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--accent-brown) 100%);
  margin-right: 20px;
  flex-shrink: 0;
}

.email-process-step:hover .step-number {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.email-final-cta {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-blue) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  border-radius: 0;
}

.email-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: rotate 15s linear infinite;
}

.email-final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/always-grey.png');
  opacity: 0.05;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.btn-outline-primary {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.3);
}

.btn-light {
  background: white;
  color: var(--primary-blue);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  color: var(--primary-blue);
}

h2,
h6 {
  color: brown;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.bg-primary {
  background-color: var(--primary-blue) !important;
}

.border-primary {
  border-color: var(--primary-blue) !important;
}

.email-form-input {
  transition: all 0.3s ease;
  transform-origin: left;
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
}

.email-form-input:focus {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(26, 86, 219, 0.1);
  border-color: var(--primary-blue);
}

.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.25rem rgba(26, 86, 219, 0.25);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-blue) 100%);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.floating-shapes div {
  position: absolute;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.05);
  animation: float 15s infinite linear;
}

/* @keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
} */

.counter {
  font-weight: 700;
  color: var(--primary-blue);
}

.email-feature-card h4 {
  transition: all 0.3s ease;
}

.email-feature-card:hover h4 {
  color: var(--primary-blue);
}

.email-pricing-card h4 {
  transition: all 0.3s ease;
}

.email-pricing-card:hover h4 {
  color: var(--primary-blue);
}

.email-testimonial-card h5 {
  transition: all 0.3s ease;
}

.email-testimonial-card:hover h5 {
  color: var(--primary-blue);
}

.email-stats-box h3 {
  color: var(--primary-blue);
}

.email-stats-box:hover h3 {
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.email-feature-card .card-body {
  position: relative;
  z-index: 1;
}

.email-feature-card .hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #fff;
}

.email-feature-card:hover .hover-bg {
  opacity: 1;
}

/* web development css  */

            /* Hero Section Styles */
.bg-development-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a6c, #2a4298, #3a5fc0);
    overflow: hidden;
}

.bg-development-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.bg-development-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.bg-development-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bg-development-hero-text {
    flex: 1;
    color: white;
}

.bg-development-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.bg-development-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.bg-development-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.bg-development-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.bg-development-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bg-development-btn-primary {
    background-color: #ffffff;
    color: #2a4298;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bg-development-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bg-development-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.bg-development-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.bg-development-hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.bg-development-stat {
    display: flex;
    flex-direction: column;
}

.bg-development-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bg-development-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.bg-development-hero-visual {
    flex: 1;
    position: relative;
}

.bg-development-hero-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.bg-development-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bg-development-hero-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 250px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.bg-development-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5fc0;
    font-size: 1.25rem;
}

.bg-development-card-content h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #1a2a6c;
}

.bg-development-card-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

/* Service Overview Styles */
.bg-development-services {
    padding: 56px 0;
    background-color: #f8faff;
}

.bg-development-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-development-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bg-development-section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(58, 95, 192, 0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #3a5fc0;
    margin-bottom: 16px;
}

.bg-development-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 16px;
}

.bg-development-section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.bg-development-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bg-development-service-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bg-development-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bg-development-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background-color: rgba(58, 95, 192, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5fc0;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.bg-development-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 12px;
}

.bg-development-service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bg-development-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3a5fc0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bg-development-service-link:hover {
    gap: 12px;
}

.bg-development-cta {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bg-development-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 12px;
}

.bg-development-cta p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .bg-development-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bg-development-hero-title {
        font-size: 2.5rem;
    }
    
    .bg-development-hero-buttons {
        justify-content: center;
    }
    
    .bg-development-hero-stats {
        justify-content: center;
    }
    
    .bg-development-hero-visual {
        width: 100%;
        max-width: 500px;
    }
    
    .bg-development-hero-card {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .bg-development-services-grid {
        grid-template-columns: 1fr;
    }
    
    .bg-development-hero-title {
        font-size: 2rem;
    }
    
    .bg-development-section-title {
        font-size: 2rem;
    }
}
/* Features Section Styles */
.bg-development-features {
    padding: 20px 0;
    background-color: #f8faff;
}

.bg-development-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-development-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bg-development-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(58, 95, 192, 0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #3a5fc0;
    margin-bottom: 16px;
}

.bg-development-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 16px;
}

.bg-development-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.bg-development-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bg-development-feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bg-development-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bg-development-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background-color: rgba(58, 95, 192, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5fc0;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.bg-development-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 12px;
}

.bg-development-feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bg-development-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.bg-development-tech-tag {
    padding: 6px 12px;
    background-color: rgba(58, 95, 192, 0.08);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #3a5fc0;
    font-weight: 500;
}

.bg-development-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3a5fc0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.bg-development-feature-link:hover {
    gap: 12px;
}

/* Development Process Styles */
.bg-development-process {
    padding: 20px 0;
    background-color: white;
}

.bg-development-process-timeline {
    position: relative;
    margin-bottom: 60px;
}

.bg-development-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #3a5fc0, #1a2a6c);
    border-radius: 4px;
}

.bg-development-process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.bg-development-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #3a5fc0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(58, 95, 192, 0.3);
}

.bg-development-step-content {
    background-color: #f8faff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bg-development-process-step:hover .bg-development-step-content {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bg-development-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5fc0;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-development-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 12px;
}

.bg-development-step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bg-development-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bg-development-step-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.bg-development-step-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #3a5fc0;
}

.bg-development-cta {
    text-align: center;
    padding: 40px;
    background-color: #f8faff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bg-development-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 12px;
}

.bg-development-cta p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bg-development-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #3a5fc0;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 95, 192, 0.3);
}

.bg-development-btn:hover {
    background-color: #2a4298;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 95, 192, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .bg-development-process-timeline::before {
        left: 20px;
    }
    
    .bg-development-process-step {
        padding-left: 60px;
    }
    
    .bg-development-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 0;
    }
}

@media (max-width: 768px) {
    .bg-development-title {
        font-size: 2rem;
    }
    
    .bg-development-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bg-development-process-timeline::before {
        left: 15px;
    }
    
    .bg-development-process-step {
        padding-left: 50px;
    }
    
    .bg-development-step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}
    
