/* Services Dropdown - Horizontal with Right Expansion */
.services-dropdown {
  position: relative;
}

.services-dropdown .dropdown-toggle {
  cursor: pointer;
}

.services-mega-menu {
  position: fixed;
  top: 72px;
  left: 168px;
  right: 0;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  max-width: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1500;
  max-height: calc(100vh - 100px);
  overflow: visible;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding-left: 150px;
}

.services-dropdown:hover .services-mega-menu {
  opacity: 1;
  visibility: visible;
}

.services-grid-two-col {
  display: flex;
  flex-direction: column;
  width: 321px;
  background: #272727;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  pointer-events: auto;
}

.service-category-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-category-item:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-header:hover,
.service-category-item.active .category-header {
  color: #fff;
  /* background: rgba(0, 0, 0, 0.05); */
}

.category-header i {
  font-size: 14px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.category-header:hover i {
  opacity: 1;
}

.service-category-item.active .category-header i {
  opacity: 1;
}

/* Right side expansion panel */
.category-services {
  position: fixed;
  left: calc(50% + 306px);
  top: 72px;
  width: 344px;
  background: #3a3a3a;
  padding: 30px 0px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  z-index: 1001;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.service-category-item.active .category-services {
  opacity: 1;
  visibility: visible;
}

/* Ensure left column stays visible */
.services-dropdown:hover .services-grid-two-col {
  z-index: 1002;
  position: relative;
}

.category-services a {
  display: block;
  padding: 12px 20px;
  color: #111111 !important;
  text-decoration: none !important;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-bottom: 5px;
  /* cursor: pointer; */
}

.category-services a:last-child {
  border-bottom: none;
}

.category-services a:link {
  color: #fff !important;
}

.category-services a:visited {
  color: #fff !important;
}

.service-category-item .category-services a:hover,
.service-category-item .category-services a:link:hover,
.service-category-item .category-services a:visited:hover,
.category-services a:hover,
.category-services a:link:hover,
.category-services a:visited:hover {
  color: #e03a3c !important;
  background: rgba(0, 0, 0, 0.03) !important;
  padding-left: 25px !important;
}

.category-services a:active {
  color: #e03a3c !important;
}

/* Force hover color - highest priority */
.services-dropdown .services-mega-menu .services-grid-two-col .service-category-item .category-services a:hover,
.services-mega-menu .category-services a:hover,
div.category-services a:hover {
  color: #e03a3c !important;
  background: rgba(0, 0, 0, 0.03) !important;
}

/* Responsive Mobile Layout for Services Dropdown */
@media (max-width: 991px) {
  /* Services dropdown in mobile menu */
  .services-dropdown {
    position: relative;
  }
  
  /* Services link styling in mobile */
  .services-dropdown > a.dropdown-toggle {
    color: #fff !important;
  }
  
  .services-mega-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 0;
    background: #fff;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    z-index: auto;
    opacity: 0;
    visibility: hidden;
    display: block;
    pointer-events: auto;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .services-dropdown.active .services-mega-menu {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }
  
  .services-grid-two-col {
    width: 100%;
    max-width: 100%;
    background: #272727;
    box-shadow: none;
    border-right: none;
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
  }
  
  .service-category-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .category-header {
    padding: 15px 20px;
    font-size: 14px;
    white-space: normal;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  .category-header:hover,
  .service-category-item.active .category-header {
    color: #fff;
    background: rgba(0, 0, 0, 0.03);
  }
  
  /* Mobile: Services expand below category */
  .category-services {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    max-height: 0;
    padding: 0;
    background: #3a3a3a;;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: none;
    border-left: none;
  }
  
  .service-category-item.active .category-services {
    max-height: 500px;
    padding: 5px 0;
    overflow-y: auto;
  }
  
  .category-services a {
    padding: 10px 20px 10px 40px;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    white-space: normal;
    line-height: 1.3;
    margin-bottom: 0;
    color: #111111 !important;
  }
  
  .category-services a:hover {
    padding-left: 45px;
    color: #e03a3c !important;
  }
  
  .category-services a:visited:hover {
    color: #e03a3c !important;
  }
  
  .category-services a:active {
    color: #e03a3c !important;
  }
  
  /* Arrow rotation on mobile */
  .service-category-item.active .category-header i {
    transform: rotate(90deg);
  }
  
  /* Ensure smooth scrolling */
  .services-grid-two-col {
    scroll-behavior: smooth;
  }
}

/* Each row */
.mega-row {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  width: 100%;
}

/* All rows: 3 equal columns */
.mega-row .mega-column {
  flex: 1;
  min-width: 0;
  max-width: calc(33.333% - 16.67px);
}

.mega-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 0 10px;
}

.mega-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 0;
}

.mega-column a {
  display: block;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s, padding-left 0.2s;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.mega-column a:hover {
  color: #e03a3c;
  padding-left: 5px;
}

/* Responsive adjustments */
@media (min-width: 1920px) {
  .mega-menu {
    width: min(1200px, 90vw);
    max-width: 1200px;
    padding: 40px 50px;
  }
  
  .mega-row {
    gap: 30px;
  }
  
  .mega-column h4 {
    font-size: 17px;
  }
  
  .mega-column a {
    font-size: 16px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .mega-menu {
    width: min(1100px, 92vw);
    max-width: 1100px;
  }
}

@media (max-width: 1400px) {
  .mega-menu {
    width: min(1000px, 92vw);
    padding: 30px;
  }
  
  .mega-row {
    gap: 22px;
  }
  
  .mega-column {
    padding: 0 8px;
  }
  
  .mega-column h4 {
    font-size: 15px;
  }
  
  .mega-column a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .mega-menu {
    width: min(900px, 90vw);
    padding: 25px;
  }
  
  .mega-row {
    gap: 20px;
  }
  
  .mega-column {
    padding: 0 6px;
  }
  
  .mega-column h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .mega-column a {
    font-size: 13px;
    padding: 6px 0;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    width: min(700px, 88vw);
    padding: 20px;
    gap: 25px;
  }
  
  .mega-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .mega-row .mega-column {
    flex: 1 1 auto;
    max-width: 100%;
  }
  
  .mega-column {
    padding: 0;
  }
  
  .mega-column h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .mega-column a {
    font-size: 13px;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .mega-menu {
    width: min(400px, 90vw);
    padding: 20px;
    gap: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
  }
  
  .mega-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .mega-row .mega-column {
    flex: 1 1 auto;
    max-width: 100%;
  }
  
  .mega-column {
    min-width: auto;
    padding: 0;
  }
  
  .mega-column h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .mega-column a {
    font-size: 13px;
    padding: 6px 0;
  }
}






/*--------------------------------------------------------------
# Dropdown Styles
--------------------------------------------------------------*/
.navbar .dropdown {
  position: relative;
}
  
  .mega-column {
    min-width: 10vw !important; /* Balanced column width */
    max-width: 12vw !important; /* Balanced max-width */
    flex: 1 !important; /* Equal distribution */
  }
  
  .mega-column h4 {
    font-size: 14px !important; /* Slightly smaller font */
    margin-bottom: 12px !important; /* Better spacing */
    line-height: 1.3 !important;
  }
  
  .mega-column a {
    font-size: 11px !important; /* Smaller font to fit more content */
    margin-bottom: 6px !important; /* Better spacing */
    padding: 2px 0 !important; /* Better padding */
    line-height: 1.3 !important;
  }
  
  .mega-column li {
    font-size: 11px !important; /* Smaller font to fit more content */
    margin-bottom: 6px !important; /* Better spacing */
    padding: 2px 0 !important; /* Better padding */
    line-height: 1.3 !important;
  }
  
  .mega-column li a {
    font-size: 11px !important; /* Smaller font to fit more content */
    margin-bottom: 6px !important; /* Better spacing */
    padding: 2px 0 !important; /* Better padding */
    line-height: 1.3 !important;
  }

/* Large screens - ensure 5 columns fit */
@media (min-width: 1200px) and (max-width: 1919px) {
  .mega-menu {
    width: 82vw;
    max-width: 950px;
  }
  
  .mega-column {
    min-width: 12vw;
    max-width: 14vw;
  }
}

/* Fix for screens <= 425px - prevent left cutoff */
@media (max-width: 425px) {
  .mega-menu {
    left: 0 !important; /* Align to left edge to prevent cutoff */
    transform: translateX(0) !important; /* Remove any centering that causes cutoff */
    max-width: calc(100vw - 20px) !important; /* Ensure it doesn't exceed viewport */
  }
}

/* Specific fix for 1024px screens */
@media (min-width: 1024px) and (max-width: 1199px) {
  .mega-menu {
    width: 70vw !important; /* Reduced width for better fit */
    max-width: 850px !important; /* Smaller max-width */
    min-width: 1000px !important; /* Smaller min-width */
    gap: 0.5vw !important; /* Reduced gap */
    padding: 0.8vw 0.6vw !important; /* Reduced padding */
    left: 0 !important; /* Align to left edge */
    transform: translateX(calc(-55% + clamp(-37.5vw, 0px, 37.5vw))) !important; /* Remove centering transform */
    /* Ensure menu stays within viewport */
    /* max-width: calc(100vw - 20px) !important; Leave margin on right */
  }
  
  .mega-column {
    min-width: 12vw !important; /* Smaller column width */
    max-width: 12vw !important; /* Smaller max-width */
    flex: 1 !important; /* Allow equal distribution */
    /* Prevent overflow and ensure text wrapping */
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
  }
  
  .mega-column h4 {
    font-size: 11px !important; /* Smaller heading */
    margin-bottom: 8px !important; /* Reduced margin */
    line-height: 1.2 !important; /* Tighter line height */
  }
  
  .mega-column ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  
  .mega-column a {
    font-size: 10px !important; /* Smaller font */
    margin-bottom: 4px !important; /* Reduced margin */
    padding: 1px 0 !important; /* Minimal padding */
    line-height: 1.2 !important; /* Tighter line height */
    /* Ensure text wraps within column */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .mega-column li a {
    font-size: 10px !important; /* Smaller font */
    margin-bottom: 4px !important; /* Reduced margin */
    padding: 1px 0 !important; /* Minimal padding */
    line-height: 1.2 !important; /* Tighter line height */
    /* Ensure text wraps within column */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .mega-column li {
    font-size: 10px !important; /* Smaller font */
    margin-bottom: 4px !important; /* Reduced margin */
    padding: 1px 0 !important; /* Minimal padding */
    line-height: 1.2 !important; /* Tighter line height */
    /* Ensure text wraps within column */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* Medium screens - adjust for better fit */
@media (max-width: 1199px) and (min-width: 992px) {
  .mega-menu {
    width: 75vw;
    max-width: 700px;
  }
  
  .mega-column {
    min-width: 8vw;
    max-width: 10vw;
  }
}

/* Responsive stacking */
@media (max-width: 991px) {
  .mega-menu {
    flex-direction: column;
    gap: 3vw;
    min-width: auto;
    width: 95vw; /* Use almost full viewport width on mobile */
    max-width: none;
    padding: 3vw;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mega-column {
    min-width: auto;
    flex: none;
  }
  
  .mega-column h4 {
    white-space: normal; /* Allow wrapping on mobile */
    font-size: 13px; /* Increased font size */
  }
  
  .mega-column a {
    white-space: normal; /* Allow wrapping on mobile */
    font-size: 11px !important; /* Increased font size */
  }
  
  .mega-column li {
    font-size: 11px; /* Increased font size */
  }
  
  .mega-column li a {
    font-size: 11px; /* Increased font size */
  }
}

/* Fix mobile menu layout for screens <= 768px */
@media (max-width: 768px) {
  .mega-menu {
    width: 90vw !important; /* Increase width to prevent cutoff */
    max-width: none !important; /* Remove max-width constraint */
    padding: 2vw 3vw !important; /* Increase padding for better spacing */
    left: 0 !important; /* Align to left */
    transform: translateX(0) !important; /* Remove any transforms */
  }
  
  .mega-column {
    min-width: auto !important; /* Allow flexible width */
    max-width: none !important; /* Remove max-width constraint */
    flex: 1 !important; /* Equal distribution */
    padding: 0 1vw !important; /* Add horizontal padding */
  }
  
  .mega-column h4 {
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
    font-size: 12px !important; /* Slightly larger font */
    margin-bottom: 8px !important; /* Better spacing */
  }
  
  .mega-column a {
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
    font-size: 10px !important; /* Appropriate font size */
    margin-bottom: 4px !important; /* Better spacing */
    padding: 2px 0 !important; /* Add padding */
  }
  
  .mega-column li {
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
    font-size: 10px !important; /* Appropriate font size */
    margin-bottom: 4px !important; /* Better spacing */
    padding: 2px 0 !important; /* Add padding */
  }
  
  .mega-column li a {
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
    font-size: 10px !important; /* Appropriate font size */
    margin-bottom: 4px !important; /* Better spacing */
    padding: 2px 0 !important; /* Add padding */
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .mega-menu {
    width: 95vw !important; /* Use almost full width on very small screens */
    padding: 3vw 2vw !important; /* Increase padding */
    max-width: none !important; /* Remove max-width constraint */
  }
  
  .mega-column {
    min-width: auto !important; /* Allow flexible width */
    max-width: none !important; /* Remove max-width constraint */
    padding: 0 0.5vw !important; /* Reduce padding for smaller screens */
  }
  
  .mega-column h4 {
    font-size: 11px !important; /* Smaller font for very small screens */
    margin-bottom: 6px !important; /* Reduced margin */
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
  }
  
  .mega-column a {
    font-size: 9px !important; /* Smaller font for very small screens */
    margin-bottom: 3px !important; /* Reduced margin */
    padding: 1px 0 !important; /* Reduced padding */
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
  }
  
  .mega-column li {
    font-size: 9px !important; /* Smaller font for very small screens */
    margin-bottom: 3px !important; /* Reduced margin */
    padding: 1px 0 !important; /* Reduced padding */
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
  }
  
  .mega-column li a {
    font-size: 9px !important; /* Smaller font for very small screens */
    margin-bottom: 3px !important; /* Reduced margin */
    padding: 1px 0 !important; /* Reduced padding */
    white-space: nowrap !important; /* Disable wrapping */
    overflow: visible !important; /* Show all text */
    text-overflow: clip !important; /* Don't add ellipsis */
  }
}


/*--------------------------------------------------------------
# Dropdown Styles
--------------------------------------------------------------*/
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown > a,
.navbar .dropdown > a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navbar .dropdown > a i,
.navbar .dropdown > a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navbar .dropdown:hover > a,
.navbar .dropdown .active,
.navbar .dropdown .active:focus,
.navbar .dropdown li:hover > a {
  color: #e03a3c;
}

.navbar .dropdown:hover > a i {
  transform: rotate(180deg);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  /* left: 14px; */
  left: 0 !important;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  min-width: 200px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active > a,
.navbar .dropdown ul li:hover > a {
  color: #e03a3c;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation Dropdown */
@media (max-width: 991px) {
  .navbar .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background: #fff;
    box-shadow: none;
    border-radius: 4px;
  }
  
  .navbar .dropdown > a:after {
    content: "\ea99";
    font-family: "boxicons";
    position: absolute;
    right: 15px;
  }
  
  .navbar .dropdown > a[aria-expanded="true"]:after {
    content: "\eaa1";
  }
  
  .navbar .dropdown ul {
    display: block;
    position: static;
    left: 0;
    top: 0;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
    transition: 0.3s;
    border-radius: 4px;
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    visibility: visible;
  }
}

/*--------------------------------------------------------------
# Service Detail Page Styles
--------------------------------------------------------------*/
.service-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/img/hero-bg.jpg') center/cover;
  min-height: 80vh;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
}

.service-hero .row {
  align-items: center;
}

.service-hero .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

.service-hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero h2 {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn-get-started {
  background: #e03a3c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-get-started:hover {
  background: #c23321;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.service-features {
  padding: 80px 0;
}

.service-features .icon-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-features .icon-box i {
  margin-bottom: 20px;
}

.service-features .icon-box h3,
.service-features .icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-features .icon-box h3 a,
.service-features .icon-box h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-features .icon-box h3 a:hover,
.service-features .icon-box h4 a:hover {
  color: #e03a3c;
}

.service-features .icon-box p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #0a2342 0%, #1d3461 70%, #e67e22 100%);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(41, 128, 185, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(230, 126, 34, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  padding: 12px 30px;
  border: 2px solid rgba(230, 126, 34, 0.5);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
  color: white;
  text-decoration: none;
  border-color: rgba(230, 126, 34, 0.8);
  box-shadow: 0 5px 15px rgba(10, 35, 66, 0.3);
  transform: translateY(-2px);
}

/* Tech Stack Styles */
.tech-stack-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.tech-stack-section .row {
  align-items: center;
}

.tech-stack-section .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}

.tech-category {
  background: #e03a3c;
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

.tech-category:hover {
  background: #c23321;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 58, 60, 0.3);
}

.tech-category.active {
  background: #2c3e50;
}

.tech-category.active:hover {
  background: #34495e;
}

.tech-items {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.tech-item-group {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.tech-item-group.active {
  display: grid;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-logo {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tech-item span {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

/* Tech Stack H3 Styling */
.tech-category h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: white;
}

.tech-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #2c3e50;
}

/* Responsive Tech Stack */
@media (max-width: 768px) {
  .tech-categories {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .tech-category {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .tech-item-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .tech-item {
    padding: 15px;
  }
  
  .tech-logo {
    font-size: 2rem;
  }
  
  .tech-item span {
    font-size: 12px;
  }
  
  .tech-category h3 {
    font-size: 14px;
  }
  
  .tech-item h3 {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .tech-item-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tech-item {
    padding: 12px;
  }
  
  .tech-logo {
    font-size: 1.8rem;
  }
  
  .tech-category h3 {
    font-size: 12px;
  }
  
  .tech-item h3 {
    font-size: 11px;
  }
}

/* FAQ Styles */
.faq-section {
  background: #1b1b1b;
  color: white;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.faq-section .section-title h2 {
  color: white;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 20px 25px;
  background: white;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question i {
  font-size: 18px;
  color: #e03a3c;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 15px 20px;
    font-size: 14px;
  }
  
  .faq-question h3 {
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  
  .faq-question i {
    font-size: 16px;
  }
}

/* Footer Styles */
#footer {
  background: #1a1a2e;
  color: white;
  padding: 0;
}

.footer-top {
  padding: 60px 0;
  border-bottom: 1px solid #333;
}

.footer-company-info {
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.footer-logo-text {
  font-size: 32px;
  font-weight: 700;
  color: white;
  font-family: "Raleway", sans-serif;
}

.footer-main-heading {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-family: "Raleway", sans-serif;
  line-height: 1.1;
}

.footer-sub-heading {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

.footer-contact-form {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 100%;
}

.footer-form-title {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.footer-contact-form .form-group {
  margin-bottom: 20px;
}

.footer-contact-form .form-control {
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.footer-contact-form .form-control:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.footer-contact-form .form-control::placeholder {
  color: #999;
  font-size: 14px;
}

.footer-contact-form textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

.footer-contact-form .captcha-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-form .captcha-question {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.footer-contact-form .captcha-input {
  width: 60px;
}

.footer-contact-form .submit-btn {
  background: #1a1a2e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn-align {
  display: flex;
  justify-content: center;
}

.footer-contact-form .submit-btn:hover {
  /* background: #c23321; */
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-get-started:hover {
  background: #c23321;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}


.footer-middle {
  padding: 50px 0;
  border-bottom: 1px solid #333;
}

.footer-column h5 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: "Raleway", sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e03a3c;
}

.footer-column ul li .flag-icon {
  margin-right: 8px;
  font-size: 16px;
}

.footer-column ul li i {
  margin-right: 8px;
  color: #e03a3c;
  width: 16px;
}

.footer-bottom {
  padding: 30px 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.follow-text {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #e03a3c;
  transform: translateY(-2px);
}

.footer-legal {
  text-align: right;
}

.copyright {
  margin-bottom: 10px;
}

.copyright span {
  color: #ccc;
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.legal-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #e03a3c;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-main-heading {
    font-size: 32px;
  }
  
  .footer-sub-heading {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0;
  }
  
  .footer-middle {
    padding: 40px 0;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h5 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .footer-contact-form {
    padding: 25px 20px;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .footer-legal {
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* Blog Post Styles */
.blog-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/img/hero-bg.jpg') center/cover;
  min-height: 60vh;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
}

.blog-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-font {
  color: white;
  font-size: 2.0rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: white;
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-meta span {
  opacity: 0.9;
}

.blog-content {
  background: #f8f9fa;
}

.blog-post-content {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.blog-featured-image {
  margin-bottom: 30px;
}

.blog-featured-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-text-content h2 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
}

.blog-text-content h3 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 25px;
}

.blog-text-content p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.blog-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tag-label {
  font-weight: 600;
  color: #2c3e50;
  margin-right: 10px;
}

.blog-tags .tag {
  display: inline-block;
  background: #e03a3c;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.blog-tags .tag:hover {
  background: #c23321;
  transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e03a3c;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form .form-control {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.search-btn {
  background: #e03a3c;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #c23321;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  color: #6c757d;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #e03a3c;
}

.category-list span {
  background: #e03a3c;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.recent-post-item img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
}

.recent-post-content h5 {
  margin: 0 0 5px 0;
  font-size: 14px;
  line-height: 1.4;
}

.recent-post-content h5 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
  color: #e03a3c;
}

.recent-post-content .date {
  color: #6c757d;
  font-size: 12px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud .tag {
  background: #f8f9fa;
  color: #6c757d;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.tag-cloud .tag:hover {
  background: #e03a3c;
  color: white;
  border-color: #e03a3c;
}

/* Responsive Blog Post */
@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 0 60px 0;
  }
  
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .blog-post-content {
    padding: 25px 20px;
  }
  
  .blog-text-content h2 {
    font-size: 24px;
  }
  
  .blog-text-content h3 {
    font-size: 20px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .recent-post-item {
    flex-direction: column;
    text-align: center;
  }
  
  .recent-post-item img {
    width: 100%;
    height: 120px;
  }
}

/* Latest Blogs Section Styles */
.latest-blogs-section {
  background: #f8f9fa;
}

.latest-blogs-section .row {
  justify-content: center;
}

.latest-blogs-section .col-lg-4,
.latest-blogs-section .col-md-6 {
  display: flex;
  justify-content: center;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 350px;
  width: 100%;
}

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

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.blog-meta-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-category {
  background: #e03a3c;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.blog-date {
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-content h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h4 a:hover {
  color: #e03a3c;
}

.blog-content p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.read-more-btn {
  color: #e03a3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-btn:hover {
  color: #c23321;
  transform: translateX(5px);
}

.read-more-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

.btn-view-all {
  background: #e03a3c;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #c23321;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 58, 60, 0.3);
  color: white;
}

.btn-view-all i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(3px);
}

/* Responsive Latest Blogs */
@media (max-width: 768px) {
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h4 {
    font-size: 16px;
  }
  
  .blog-content p {
    font-size: 13px;
  }
  
  .btn-view-all {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Contact Form Styles */

  .contact-form-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 0 auto;
  max-width: 360px;
  height: fit-content;
}

.contact-form-card h2, .contact-form-card h3 {
  color: #2c3e50 !important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  display: block;
}

.footer-contact-form h2 {
  color: #2c3e50 !important;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  display: block;
}

.form-divider {
  width: 40px;
  height: 2px;
  background: #e03a3c;
  margin: 0 auto 15px;
  border-radius: 2px;
}

.contact-form .form-group {
  margin-bottom: 12px;
}

.contact-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: #999;
  font-size: 14px;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.captcha-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.captcha-question {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 500;
  white-space: nowrap;
}

.captcha-input {
  width: 80px !important;
  text-align: center;
}

.submit-btn {
  width: 100%;
  background:#1a1a2e;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
}

.submit-btn:hover {
    background: #c23321;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
  }


.submit-btn:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 20px;
}

.form-message .loading,
.form-message .error-message,
.form-message .sent-message {
  display: none;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
}

.form-message .loading {
  background: #e3f2fd;
  color: #1976d2;
}

.form-message .error-message {
  background: #ffebee;
  color: #c62828;
}

.form-message .sent-message {
  color: #fff;
  background: #18d26e;
}

.form-message .loading.d-block,
.form-message .error-message.d-block,
.form-message .sent-message.d-block {
  display: block !important;
}

/* Responsive adjustments for service detail pages */
@media (max-width: 992px) {
  .service-hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  
  .service-hero h1 {
    font-size: 2.2rem;
  }
  
  .service-hero h2 {
    font-size: 1.1rem;
  }
  
  .contact-form-card {
    margin-top: 30px;
    max-width: 500px;
    padding: 12px;
  }
}

#hero-h2 h2{
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
}

@media (max-width: 768px) {
  .service-hero {
    padding: 80px 0 40px 0;
    min-height: auto !important;
  }
  
  .service-hero h1 {
    font-size: 2rem;
  }
  
  .service-hero h2 {
    font-size: 1rem;
  }
  
  .service-features .icon-box {
    padding: 25px 15px;
  }
  
  .service-features .icon-box h3,
  .service-features .icon-box h4 {
    font-size: 16px;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .contact-form-card {
    padding: 15px 18px;
    max-width: 100%;
  }
  
  .contact-form-card h2, .contact-form-card h3 {
    font-size: 18px;
  }
  
  .captcha-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .captcha-input {
    width: 100px !important;
  }
}

@media (max-width: 576px) {
  .service-hero h1 {
    font-size: 2rem;
  }
  
  .service-hero h2 {
    font-size: 1rem;
  }
  
  .service-features .icon-box {
    padding: 20px 15px;
  }
  
  .cta-section {
    padding: 40px 0;
  }
  
  .contact-form-card {
    padding: 12px 15px;
  }
  
  .contact-form-card h2, .contact-form-card h3 {
    font-size: 20px;
  }
  
  .contact-form .form-control {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .submit-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Additional mobile optimizations for hero section */
@media (max-width: 768px) {
  .service-hero {
    min-height: auto !important;
    padding: 80px 0 40px 0;
  }
  
  .service-hero .row {
    flex-direction: column;
  }
  
  .service-hero .col-lg-6:first-child {
    padding-top: 0;
    margin-bottom: 30px;
    order: 1;
  }
  
  .service-hero .col-lg-6:last-child {
    order: 2;
  }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 40px 0 20px 0;
    min-height: auto !important;
  }
  
  .service-hero .col-lg-6:first-child {
    padding-top: 30px;
  }
  
  .service-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .service-hero h2 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }
  
  .service-hero .btn-get-started {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 20px;
  }
  
  .contact-form-card {
    padding: 15px 8px;
    margin-top: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-form-card h2, .contact-form-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .form-divider {
    width: 40px;
    height: 2px;
    margin-bottom: 12px;
  }
  
  .contact-form .form-group {
    margin-bottom: 12px;
  }
  
  .contact-form .form-control {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .contact-form textarea.form-control {
    min-height: 70px;
  }
  
  .captcha-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .captcha-question {
    font-size: 13px;
  }
  
  .captcha-input {
    width: 70px !important;
  }
  
  .submit-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Extra small screens - ensure content is visible */
@media (max-width: 480px) {
  .service-hero {
    padding: 20px 0 15px 0;
    min-height: auto !important;
  }
  
  .service-hero .col-lg-6:first-child {
    padding-top: 25px;
  }
  
  .service-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .service-hero h2 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .service-hero .btn-get-started {
    padding: 6px 16px;
    font-size: 13px;
    margin-top: 15px;
  }
  
  .contact-form-card {
    padding: 12px 6px;
    margin-top: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-form-card h2, .contact-form-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .form-divider {
    width: 30px;
    height: 2px;
    margin-bottom: 10px;
  }
  
  .contact-form .form-group {
    margin-bottom: 10px;
  }
  
  .contact-form .form-control {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .contact-form textarea.form-control {
    min-height: 60px;
  }
  
  .captcha-group {
    gap: 4px;
  }
  
  .captcha-question {
    font-size: 12px;
  }
  
  .captcha-input {
    width: 60px !important;
  }
  
  .submit-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  /* Fix reCAPTCHA overflow on mobile - Homepage contact form */
  .contact-form-card .g-recaptcha {
    transform: scale(0.75);
    transform-origin: left center;
    margin: 8px 0;
  }
  
  .contact-form-card .form-group:has(.g-recaptcha) {
    overflow: visible;
    padding: 0;
  }
}

/* Tablet fix for reCAPTCHA - iPad Mini and similar */
@media (max-width: 768px) {
  .contact-form-card .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left center;
    margin: 10px 0;
  }
  
  .contact-form-card .form-group:has(.g-recaptcha) {
    overflow: visible;
    padding: 0;
  }
  
  /* Specific fix for homepage contact form - narrower container */
  #homepage-contact-form .g-recaptcha {
    transform: scale(0.80) !important;
    transform-origin: center center;
    margin: 8px auto;
    display: block;
    width: fit-content;
  }
  
  #homepage-contact-form .form-group:has(.g-recaptcha) {
    overflow: visible !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
  }
}

/* Additional mobile fix for reCAPTCHA at 425px */
@media (max-width: 425px) {
  .contact-form-card .g-recaptcha {
    transform: scale(0.72);
    transform-origin: left center;
    margin: 6px 0 6px -8px;
  }
  
  .contact-form-card .form-group {
    overflow: visible;
  }
  
  /* Homepage form specific fix */
  #homepage-contact-form .g-recaptcha {
    transform: scale(0.73) !important;
    transform-origin: center center;
    margin: 6px auto;
  }
}

/* Extra small screens - reCAPTCHA fix */
@media (max-width: 375px) {
  .contact-form-card .g-recaptcha {
    transform: scale(0.65);
    transform-origin: left center;
    margin: 4px 0 4px -12px;
  }
  
  /* Homepage form specific fix */
  #homepage-contact-form .g-recaptcha {
    transform: scale(0.67) !important;
    transform-origin: center center;
    margin: 4px auto;
  }
}

@media (max-width: 320px) {
  .contact-form-card .g-recaptcha {
    transform: scale(0.58);
    transform-origin: left center;
    margin: 2px 0 2px -16px;
  }
  
  /* Homepage form specific fix */
  #homepage-contact-form .g-recaptcha {
    transform: scale(0.61) !important;
    transform-origin: center center;
    margin: 2px auto;
  }
}

/*--------------------------------------------------------------
# Blog Styles
--------------------------------------------------------------*/
.blog-post {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.blog-post-img {
  overflow: hidden;
  height: 250px;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-img img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 25px;
}

.blog-post-meta {
  margin-bottom: 15px;
  font-size: 14px;
  color: #6c757d;
}

.blog-post-meta span {
  margin-right: 20px;
}

.blog-post-meta i {
  margin-right: 5px;
  color: #e03a3c;
}

.blog-post-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-post-content h3 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
  color: #e03a3c;
}

.blog-post-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #e03a3c;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #c23321;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Sidebar Styles */
.sidebar {
  padding-left: 30px;
}

.sidebar-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e03a3c;
}

/* Search Form */
.search-form form {
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #e03a3c;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-form button:hover {
  background: #c23321;
}

/* Categories */
.categories ul {
  list-style: none;
  padding: 0;
}

.categories li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.categories li:last-child {
  border-bottom: none;
}

.categories a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.categories a:hover {
  color: #e03a3c;
}

.categories span {
  float: right;
  background: #e03a3c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

/* Recent Posts */
.post-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

.post-item h4 {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.post-item h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-item h4 a:hover {
  color: #e03a3c;
}

.post-item time {
  font-size: 12px;
  color: #6c757d;
}

/* Tags */
.tags ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags li a {
  background: #f8f9fa;
  color: #6c757d;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tags li a:hover {
  background: #e03a3c;
  color: #fff;
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 50px;
}

.blog-pagination .pagination {
  border-radius: 5px;
  overflow: hidden;
}

.blog-pagination .page-link {
  color: #6c757d;
  border: 1px solid #dee2e6;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
  color: #e03a3c;
  background-color: #f8f9fa;
  border-color: #e03a3c;
}

.blog-pagination .page-item.active .page-link {
  background-color: #e03a3c;
  border-color: #e03a3c;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
  
  .blog-post-content {
    padding: 20px;
  }
  
  .blog-post-content h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e03a3c;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#hero-h2 .home-page-text{
  color: #fff;
  /* font-size: 24px; */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e03a3c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 1400;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #e03a3c;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #e03a3c;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #111111;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.9); */
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 86px;
  right: 0px;
  bottom: auto;
  /* left: 43px; */
  padding: 10px 0 50px 0;
  background-color: #272727;
  max-height: calc(100vh - 82px);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg2.jpeg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 60px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
  position: relative;
  z-index: 2;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #e03a3c;
  border: 2px solid #e03a3c;
  position: relative;
  z-index: 2;
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .row {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: auto;
  }

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

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    min-height: 120vh;
  }
}

@media (max-width: 576px) {
  #hero {
    padding-top: 80px;
    padding-bottom: 30px;
    min-height: auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 0px;
  margin-top: 6px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 16px;
  position: relative;
}

.section-title .portfolio{
  margin-top: -52px;
}

.section-title h2::after,.section-title h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03a3c;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 22px;
}

.section-bg {
  padding: 120px 0px 40px 0px;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  /* transform: skewY(-3deg); */
}

/*--------------------------------------------------------------
# Client Success Stories Section
--------------------------------------------------------------*/
.client-success-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.success-story-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.success-story-item p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.device-mockups {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-mockup {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.device-mockup:hover {
  transform: scale(1.05);
}

.device-mockup.laptop {
  width: 300px;
  height: 200px;
  background: #2c3e50;
  z-index: 3;
  transform: rotate(5deg);
}

.device-mockup.tablet {
  width: 200px;
  height: 280px;
  background: #34495e;
  z-index: 2;
  transform: rotate(-5deg) translateX(-50px);
}

.device-mockup.mobile {
  width: 120px;
  height: 200px;
  background: #2c3e50;
  z-index: 1;
  transform: rotate(3deg) translateX(-100px);
}

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

.feature-list {
  padding-left: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 40px;
  color: #e03a3c;
  margin-bottom: 20px;
}

.feature-content h3,
.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #e03a3c;
}

.feature-content h3 a,
.feature-content h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.feature-content h3 a:hover,
.feature-content h4 a:hover {
  color: #e03a3c;
}

.feature-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design for Client Success Stories */
@media (max-width: 768px) {
  .success-story-item h3 {
    font-size: 20px;
  }
  
  .success-story-item p {
    font-size: 14px;
  }
  
  .device-mockups {
    height: 300px;
    margin-bottom: 30px;
  }
  
  .device-mockup.laptop {
    width: 250px;
    height: 160px;
  }
  
  .device-mockup.tablet {
    width: 160px;
    height: 220px;
  }
  
  .device-mockup.mobile {
    width: 100px;
    height: 160px;
  }
  
  .feature-list {
    padding-left: 0;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs.product-name h2 {
  text-align: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #e03a3c;
  content: "/";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.divider {
  height: 20px;
}

.about .img-fluid {
  height: 80%;
}

.about .icon-box {
  padding: 0px 10px 0px 0px;
  border-radius: 6px;
  /* background: #f8f9fa; */
  transition: 0.3s;
  position: relative;
}

.about .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 30px;
  line-height: 0;
  padding-left: 10px;
}

.about .icon-box p {
  margin-left: 70px;
  /* line-height: 24px; */
  font-size: 15px;
  text-align: justify;
}

.about .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  padding-top: 10px;
  text-align: left !important;
}
.about .list-unstyled {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  text-align: justify;
}

.about .row {
  align-items: stretch;
}

.about .content {
  padding: 15px 30px 0px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* padding: 30px; */
}

.custom-gap {
  margin-top: -35px; /* Adjust the value as needed */
}

@media (width: 1280px) {
  .custom-gap {
    margin-top: 10px;
  }
}

/* Mobile responsive fix for About section - Vision, Mission, Commitment boxes */
@media (max-width: 768px) {
  .about .custom-gap {
    margin-top: 30px !important; /* Add space between image and icon boxes on mobile */
  }
  
  .about .icon-box {
    margin-bottom: 25px; /* Add spacing between boxes */
  }
  
  .about .icon-box i {
    font-size: 28px; /* Slightly smaller icon on mobile */
  }
  
  .about .icon-box h4 {
    font-size: 18px; /* Adjust heading size */
    margin-left: 60px; /* Adjust for smaller icon */
  }
  
  .about .icon-box p {
    margin-left: 60px; /* Adjust for smaller icon */
    font-size: 14px; /* Slightly smaller text */
  }
}

.about .content h3, .about .content h2 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 40px;
  margin-left: 10px;
  position: relative;
}

.about .content h3::after, .about .content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #e03a3c;
  border-radius: 2px;
}

.about .content p {
  margin-bottom: 10px;
  text-align: justify;
  margin-left: 10px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #e35052;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #e03a3c;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #e35052;
  background: #e03a3c;
  color: #f4ecec;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #e03a3c;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
  
  .about .content {
    padding: 25px 20px;
    height: auto;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  
  .about .content h3::after, .about .content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about .row {
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Core Technology Expertise Section
--------------------------------------------------------------*/
.core-tech-section {
  padding: 40px 0;
  background: #fff;
}

.core-tech-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.core-tech-section .section-title h2 {
  /* font-size: 32px; */
  font-weight: 700;
  text-transform: uppercase;
  color: #2c3e50;
  position: relative;
  padding-bottom: 20px;
}

.core-tech-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  /* background: #e03a3c; */
}

.tech-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.tech-card {
  background: #f8f9fa;;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6)
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* border-color: #e03a3c; */
}

.tech-card-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.tech-card-icon i {
  font-size: 48px;
  color: #e03a3c;
  display: block;
}

.tech-card-icon i.fa-brain {
  color: #4caf50;
}

.tech-card-icon i.fa-mobile-alt {
  color: #2196f3;
}

.tech-card-icon i.fa-cloud {
  color: #ff9800;
}

.tech-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tech-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1.3;
}

.tech-card-content p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .core-tech-section {
    padding: 40px 0;
  }
  
  .core-tech-section .section-title h2 {
    font-size: 28px;
  }
  
  .tech-card {
    padding: 30px 20px;
  }
  
  .tech-card-icon i {
    font-size: 42px;
  }
  
  .tech-card-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .core-tech-section {
    padding: 40px 0;
  }
  
  .core-tech-section .section-title {
    margin-bottom: 40px;
  }
  
  .core-tech-section .section-title h2 {
    font-size: 24px;
  }
  
  .tech-cards-row {
    flex-direction: column;
  }
  
  .tech-card {
    margin-bottom: 20px;
  }
  
  .tech-card-icon i {
    font-size: 40px;
    
  }
  
  .tech-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 5px
  }
  
  .tech-card-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .core-tech-section {
    padding: 40px 0;
  }
  
  .core-tech-section .section-title h2 {
    font-size: 22px;
  }
  
  .tech-card {
    padding: 25px 20px;
  }
  
  .tech-card-icon i {
    font-size: 36px;
  }
  
  .tech-card-content h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .tech-card-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #e03a3c;
}

.tabs .nav-link.active {
  background: #e03a3c;
  color: #fff;
  border-color: #e03a3c;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e03a3c;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
  position: relative;
}

.services .icon-box:hover {
  background: #2b2b2b;
}

.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h3,
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h3 a,
.services .icon-box h4 a {
  color: #e03a3c;
  transition: 0.3s;
}

.services .icon-box h3 a:hover,
.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h3 a,
.services .icon-box .icon-box:hover h4 a {
  color: #e03a3c;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  text-align: justify;
  color: white;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.isotope-container-c {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

@media (max-width: 992px) {
  .isotope-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .isotope-container {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 10px;
  /* After changes  */
  width: 100%;
  max-width: 100%;
  margin: 10px;
  flex: 1 0 20%;
}

.card-style {
  background-color: #fff;
  /* Card background */
  border-radius: 10px;
  /* Smooth corners for the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Light shadow for card effect */
  transition: transform 0.3s, box-shadow 0.3s;
  /* Smooth transitions */
  overflow: hidden;
}

.card-style:hover {
  transform: translateY(-10px);
  /* Card hover effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* Stronger shadow on hover */
}

@media (max-width: 992px) {
  .portfolio-item {
    padding: 10px;
  }

  .card-style {
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .portfolio-item {
    padding: 5px;
    width: 100%;
  }

  .card-style {
    border-radius: 6px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .portfolio-item {
    width: 50%;
  }
}

/* For large screens, show 3 items */
@media (min-width: 769px) and (max-width: 1200px) {
  .portfolio-item {
    width: 33.33%;
  }
}

/* For extra-large screens, show 4 items */
@media (min-width: 1201px) {
  .portfolio-item {
    width: 25%;
  }
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  text-align: center;
  flex: 1;
  border-radius: 15px 15px 15px 15px;
  background-color: #FAF9F6;
}

.portfolio .portfolio-content img {
  width: 100%;
  height: 300px;
  object-fit: fill;
  /* border-radius: 10px 10px 0 0; */
  /* display: block; */
  /* transition: none;  */
}

.portfolio-info {
  text-align: left;

  position: static;
  opacity: 1;
  background: none;
  word-break: break-word;
  max-width: 150px;
  /* padding: 15px 0px 7px 10px;
  transition: none;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.portfolio-info h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.portfolio-info p {
  font-size: 14px;
  color: #f9f6f6;
  text-align: center;
  margin-top: 5px;
}

.portfolio-content .portfolio-info h4,
.portfolio-content .portfolio-info p {
  margin: 0;
  padding: 0 5px;
  color: #faf9f9;
  /* Adjust text color */
}

.portfolio-content:hover img {
  transform: none;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #2b2b2b;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing .box h4 {
  font-size: 42px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #e03a3c;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing .box .btn-buy:hover {
  border-color: #fff;
}

.pricing .featured {
  background: #e03a3c;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #e03a3c;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #e03a3c;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  position: relative;
}


.team .member img {
  width: 100%;
  height: 300px;
  /* object-fit: cover; */
  border-radius: 5px;
}

@media screen and (max-width: 1023px) {
  .team .member img {
    object-fit: contain;
  }
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 1;
  bottom: 80px;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 390px) {

  .team .member img {
    padding-left: 10px;
  }

  .member-padding-top img {
    padding-left: 30px !important;
  }

  .team .member .social {
    padding-left: 25px
  }

  .member-info-content {
    padding-left: 25px
  }
}


@media screen and (min-width: 391px) and (max-width: 430px) {

  .team .member img {
    padding-left: 30px;
  }

  .member-padding-top img {
    padding-left: 50px !important;
  }

  .team .member .social {
    padding-left: 45px
  }

  .member-info-content {
    padding-left: 45px
  }
}

@media screen and (min-width: 500px) and (max-width: 560px) {

  .team .member img {
    padding-left: 85px;
  }

  .member-padding-top img {
    padding-left: 100px !important;
  }

  .team .member .social {
    padding-left: 95px
  }

  .member-info-content {
    padding-left: 95px
  }
}

.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #0a66c2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #111111;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 80px;
}

.member-info-content {
  text-align: center;
}


.member-info-content h4,
.member-info-content span {
  display: block;
  /* Ensure each element is block-level */
  margin: 0;
  /* Remove any default margin */
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-section {
  background: #f8f9fa;
}
.contact .info-box {
  color: #444444;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: center;
  /* padding: 20px; */
  padding: 12px 91px 31px 27px;
  background: #f8f9fa;
  border-radius: 8px;
  height: 146px;
  /* border-radius: 4px; */
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  margin-bottom: 20px;
  gap: 1px;
}

.info-box .bx-map{
  margin-left: 111px
}

.equal-height {
  height: 100%; /* Ensures equal height for all boxes */
}

@media (min-width: 992px) {
  .info-box {
    height: 200px; /* Set a consistent height for large screens */
  }
}

.contact .info-box i {
  font-size: 32px;
  color: #E86C2C;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #E86C2C;
  flex-shrink: 0;
  margin-top: 0px;
}

.contact .info-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.info-box .email-margin {
  margin-top: 0px;
}

/* Responsive: Fix overlap on medium screens (DevTools open, tablets) */
@media (max-width: 1199px) {
  .contact .info-box {
    height: auto;
    min-height: 120px;
    padding: 37px 20px;
  }
  .info-box .bx-map, .bx-envelope {
    margin-left: 56px;
  }
  
  .contact .info-box h3 {
    font-size: 18px;
  }

  .contact .info-box-content {
    padding: 0px 43px 0px 1px;
  }
  
  .contact .info-box p {
    font-size: 13px;
    line-height: 22px;
  }
}

/* Responsive: Stack vertically with icon on top for mobile */
@media (max-width: 576px) {
  .contact .info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
    height: auto;
    /* text-align: center; */
  }
  
  .contact .info-box i {
    margin-top: 0;
    margin-left: 0px;
    /* text-align: center; */
    margin-bottom: 10px;
    font-size: 28px;
    padding: 6px;
  }

  .contact .info-box-content {
    padding: 0px 0px 0px 0px;
  }
  
  .contact .info-box h3 {
    font-size: 16px;
    text-align: center;
  }
  
  .contact .info-box p {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
  }
}

@media (max-width: 425px) {
  .contact .info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
    height: auto;
    /* text-align: center; */
  }
  
  .contact .info-box i {
    margin-top: 0;
    margin-left: 0px;
    /* text-align: center; */
    margin-bottom: 10px;
    font-size: 28px;
    padding: 6px;
  }

  .contact .info-box-content {
    padding: 0px 0px 0px 0px;
  }
  
  .contact .info-box h3 {
    font-size: 16px;
    text-align: center;
  }
  
  .contact .info-box p {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .bx-envelope{
    margin-left: 0px;
  }
}

.contact .contact-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 5px;
}

.contact .contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-form .error-message br+br {
  margin-top: 25px;
}

.contact .contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .contact-form .form-group {
  margin-bottom: 25px;
}

.contact .contact-form input,
.contact .contact-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 20px;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: transparent;
}

.contact .contact-form input {
  padding: 10px 15px;
}

.contact .contact-form textarea {
  padding: 12px 15px;
}

.contact .contact-form button[type=submit] {
  background: #0867c8a6;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-form button[type=submit]:hover {
  background: #0578ece3;
}

/* Homepage-specific: Captcha and Submit button in one line */
/* Large Desktop only - horizontal alignment (≥1200px) */
@media (min-width: 1200px) {
  .homepage-captcha-submit-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
  }

  .homepage-captcha-submit-wrapper .g-recaptcha {
    flex: 0 0 auto;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
    min-width: 304px;
    max-width: 304px;
  }

  .homepage-captcha-submit-wrapper .g-recaptcha > div {
    width: 100% !important;
  }

  .homepage-captcha-submit-wrapper .g-recaptcha iframe {
    width: 304px !important;
    height: 78px !important;
  }

  .homepage-captcha-submit-wrapper .submit-btn {
    flex: 1;
    min-width: 150px;
    border-radius: 20px !important;
    padding: 10px 32px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tablet and Mobile - vertical stacking (below 1200px) */
@media (max-width: 1199px) {
  .homepage-captcha-submit-wrapper {
    display: block;
  }
  
  .homepage-captcha-submit-wrapper .g-recaptcha {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
  
  .homepage-captcha-submit-wrapper .submit-btn {
    width: 100%;
    border-radius: 20px !important;
    padding: 10px 32px;
    display: block;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #e03a3c;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #e03a3c;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #e35052;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #e03a3c;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #e03a3c;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: transparent;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: transparent;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #e03a3c;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 0px;
  /* margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #e34c4d;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #e03a3c;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #e03a3c;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #e03a3c;
  background: #e03a3c;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #e03a3c;
  color: #fff;
  text-decoration: none;
}

.logo_name {
  margin-left: 5px !important;
  margin-top: 10px !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto !important;
}

.portfolio-carousel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-content.card-style {
  padding: 0;
  box-shadow: none;
  background: none;
}

.swiper-wrapper {
  height: auto;
  display: flex;
  justify-content: space-between;
}

.swiper-pagination {
  position: relative;
  margin-top: 0px;
  text-align: center;
  padding-bottom: 42px;

}

swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: 5px;
}

.swiper-pagination-bullet {
  background: #b3b3b3;
  /* Light gray for normal bullets */
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #ffcc00;
  /* Bright yellow for active bullet */
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  /* White color for navigation buttons */
  opacity: 0.8;
  transition: color 0.3s, opacity 0.3s;
  top: 55%;
  transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ffcc00;
  /* Bright yellow on hover */
  opacity: 1;
}

/* Make navigation buttons responsive */

@media (min-width: 344px) and (max-width: 539px) {

  .swiper-button-next,
  .swiper-button-prev {
    top: 53%;
  }
}

@media (min-width: 768px) and (max-width: 768px) {

  .swiper-button-next,
  .swiper-button-prev {
    top: 55%;
  }
}

@media (min-width: 769px) and (max-width: 820px) {

  .swiper-button-next,
  .swiper-button-prev {
    font-size: 20px;
    top: 55%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .swiper-button-next,
  .swiper-button-prev {
    font-size: 25px;
  }
}

@media (min-width: 1024px) {

  .swiper-button-next,
  .swiper-button-prev {
    font-size: 30px;
  }
}


.portfolio-carousel .swiper-container {
  padding: 20px 0;
}

.portfolio-carousel-container {
  max-width: 100%;
  margin: 0 auto;
  /* Center the carousel */
}

.portfolio-carousel .swiper-slide {
  flex-shrink: 0;
  width: 200px !important;
}

@media (min-width: 540px) and (max-width: 540px) {

  .swiper-slide {
    width: 540px !important;
  }

  .portfolio-carousel .swiper-slide {
    width: 540px !important;

  }
}

@media (min-width: 768px) and (max-width: 820px) {

  .swiper-slide {
    width: 330px !important;
  }

  .portfolio-carousel .swiper-slide {
    width: 330px !important;

  }
}


@media (min-width: 821px) and (max-width: 912px) {

  .swiper-slide {
    width: 340px !important;
  }

  .portfolio-carousel .swiper-slide {
    width: 340px !important;

  }
}

@media (min-width: 913px) and (max-width: 1024px) {

  .swiper-slide {
    width: 300px !important;
  }

  .portfolio-carousel .swiper-slide {
    width: 300px !important;

  }
}

@media (min-width: 1025px) and (max-width: 1280px) {

  .swiper-slide {
    width: 355px !important;
  }

  .portfolio-carousel .swiper-slide {
    width: 355px !important;

  }
}

.carousel-item-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  /* align-items: flex-start; */

  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-item-left {
  flex: 1;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  /* Center align the image and text */
}

.carousel-logo {
  max-width: 150px;
  height: 150px;

  height: auto;
  width: 100px;
  max-width: 100%;
  /* margin-bottom: 10px; */
}

.carousel-description {

  font-size: 14px;

  margin-top: 10px;
  color: #fff;

  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
}

.carousel-item-right {
  flex: 1;
  text-align: left;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-details {
  /* line-height: 1.5; */
  padding: 5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}

/* Hover effect */
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #ffcc00;
  /* Bright yellow on hover */
  opacity: 1;
}

/* Make :after elements responsive */
@media (max-width: 480px) {

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 22px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 25px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 30px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 35px;
  }
}

@media (min-width: 1441px) {

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 40px;
  }
}


.member-padding-top img {
  padding-top: 20px;
}

.expertise-section.services .icon-box {
  /*
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
*/

  height: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}

.expertise-section.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-box-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
  /* Ensures uniform column width */
}

.icon-box-link:hover {
  text-decoration: none;
  color: inherit;
}

.expertise-section.services .icon-box h3,
.services .icon-box h4 {
  text-align: left;
  margin-top: 5px;
  font-weight: 700;
  font-size: 1.2rem;
}

.row.gy-4>[class*="col-"] {
  display: flex;
  /* Makes all columns in the row flex items */
  align-items: stretch;
  /* Ensures all cards have equal height */
}

.why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  object-position: center;
}


#why-choose {
  /* background-color: #f8f9fa;  Black background */
  color: #fff;
  /* White text for visibility */
  padding: 50px 0;
  /* Ensure adequate padding */
}

#why-choose h2 {
  color: #010101;
  /* White heading color */
}

#why-choose p {
  color: #0f0f0f;
  /* Light gray for paragraph text */
}

#why-choose ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#why-choose ul li {
  color: #0f0f0f;
  /* White list text */
  margin-bottom: 10px;
  display: flex;
  /* Aligns the text and icon horizontally */
  align-items: center;
  /* Vertically centers the content */
  gap: 10px;
  /* Adds space between the icon and text */
}

#why-choose ul li i {
  color: #4caf50;
  /* Green color for icons */
}

#why-choose img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.ai-sol-bg {
  background-color: #f8f9fa;
}

.process-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}


.process-step {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 15px;
}

.process-section .icon-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.process-section .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.process-number {
  font-size: 1.5rem;
  font-weight: bold;
}

.process-section .icon-box h3,
.process-section .icon-box h4 {
  font-size: 1.25rem;
  margin-top: 15px;
  color: var(--text-color);
}

.process-section .icon-box p {
  font-size: 1rem;
  color: var(--text-color);
}


.process-section .indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--primary-color);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.process-section .indicator i {
  font-size: 2rem;
  color: var(--primary-color);
}

.process-section .row {
  position: relative;
}

.icon-box {
  position: relative;
  z-index: 2;
}


.process-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.process-icon {
  font-size: 2.5rem;
  color: #4285F4;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Adjust hero section for smaller screens */
.hero-section {
  padding: 60px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .process-card {
    text-align: center;
  }

  .process-card h3 {
    font-size: 1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }
}

/* Adjust general spacing for smaller devices */
.section-title h2 {
  font-size: 1.5rem;
}

.ai-col-padding {
  padding: 7px;
}

/* Industry Services Carousel Styles */
.industry-services-section {
  background-color: #f8f9fa;
  overflow-x: hidden;
}

.industry-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.industry-carousel-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.industry-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.industry-slide {
  display: flex;
  flex: 0 0 100%;
  gap: 20px;
  padding: 0 10px;
  box-sizing: border-box;
  min-width: 100%;
}

.industry-card {
  flex: 0 0 calc(33.333% - 14px);
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: calc(33.333% - 14px); /* Ensures cards maintain their width when transformed */
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  margin-top: 30px;
  box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-card.empty-card {
  background: transparent;
  box-shadow: none;
}

.industry-card.empty-card:hover {
  transform: none;
  box-shadow: none;
}

.industry-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.industry-card:hover .industry-image img {
  transform: scale(1.05);
}

.industry-content {
  padding: 25px;
}

.industry-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.industry-content p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  z-index: 1000;
}

.carousel-btn:hover {
  background: #4285F4;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: block;
  margin: 0;
  z-index: 100;
}

.carousel-dots {
  display: none;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: #e03a3c;
}

.carousel-dots .dot:hover {
  background: #e03a3c;
  transform: scale(1.2);
}

#client-success .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #4285F4;
  transform: scale(1.2);
}

.dot:hover {
  background: #4285F4;
  opacity: 0.7;
}

/* Responsive Design for Industry Carousel */
@media (max-width: 992px) {
  .industry-carousel-container {
    padding: 0 15px;
    overflow: hidden;
  }
  
  .industry-slide {
    gap: 15px;
    padding: 0;
  }
  
  .industry-card {
    flex: 0 0 calc(50% - 7.5px);
    min-width: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  
  .carousel-btn {
    width: 40px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* Ensure mobile scrolling works */
  body, html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .industry-services-section {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
  }
  
  .industry-carousel-container {
    padding: 0 15px;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .industry-carousel-wrapper {
    margin: 0;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .industry-carousel {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    gap: 20px;
    overflow: visible !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .industry-slide {
    display: contents;
    gap: 0;
    padding: 0;
    min-width: 100%;
  }
  
  .industry-card {
    flex: 0 0 auto;
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 0 auto 15px auto;
    position: relative;
    overflow: visible !important;
    touch-action: pan-y !important;
  }
  
  .industry-content {
    padding: 20px;
  }
  
  .industry-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .industry-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .carousel-controls {
    display: none;
  }
  
  .carousel-dots {
    display: none;
  }
  
  /* Section title mobile improvements */
  .section-title {
    padding: 0 15px;
  }
  
  .section-title h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0px !important;
  }
  
  .section-title p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .industry-services-section {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  
  .industry-carousel-container {
    padding: 0 10px;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  
  .industry-carousel-wrapper {
    overflow: visible !important;
  }
  
  .industry-carousel {
    overflow: visible !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .industry-slide {
    gap: 0;
    padding: 0;
    min-width: 100%;
  }
  
  .industry-card {
    flex: 0 0 100%;
    min-width: calc(100% - 10px);
    max-width: calc(100% - 10px);
    margin: 0 auto 15px auto;
  }
  
  .industry-content {
    padding: 15px;
  }
  
  .industry-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .industry-content p {
    font-size: 0.85rem;
  }
  
  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  /* Touch-friendly improvements */
  .industry-carousel {
    touch-action: pan-x;
  }
  
  .carousel-btn {
    opacity: 0.8;
  }
  
  .carousel-dots {
    margin-top: 20px;
  }
  
  /* Section improvements for very small screens */
  .section-title {
    padding: 0 10px;
  }
  
  .section-title h2 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }
  
  .section-title p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .carousel-dots .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

@media (max-width: 380px) {
  .industry-carousel-container {
    padding: 0 5px;
  }
  
  .industry-card {
    min-width: calc(100% - 5px);
    max-width: calc(100% - 5px);
  }
  
  .industry-content {
    padding: 12px;
  }
  
  .industry-content h3 {
    font-size: 1rem;
  }
  
  .industry-content p {
    font-size: 0.8rem;
  }
  
  .section-title {
    padding: 0 5px;
  }
  
  .section-title h2 {
    font-size: 1.1rem !important;
  }
  
  .section-title p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .success-story-section-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .carousel-btn {
    display: none;
  }
}

/* Success Stories Carousel Styles */
.success-story-section-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.success-story-carousel-container {
  position: relative;
  width: 100%;
}

.success-story-carousel-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.success-story-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.success-story-card {
  flex: 0 0 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.success-story-content {
  padding: 40px;
}

.success-story-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.success-story-content > p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 30px;
}

.success-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.success-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  min-height: 280px;
  justify-content: flex-start;
  gap: 15px;
}

.success-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.success-feature-content h3,
.success-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

.success-feature-content p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Design for Success Stories Carousel */
@media (max-width: 992px) {
  .success-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .success-feature {
    min-height: 200px;
    padding: 25px 15px;
  }
  
  .success-story-content {
    padding: 30px;
  }
  
  .success-story-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .success-story-section-wrapper {
    padding: 0 20px;
  }
  
  .success-story-content {
    padding: 25px;
  }
  
  .success-story-content h3 {
    font-size: 1.2rem;
  }
  
  .success-feature {
    min-height: 180px;
    padding: 20px 15px;
  }
  
  .success-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .carousel-btn {
    display: none; /* Hide buttons on small screens */
  }
}
.margin-contact {
    margin-top: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
    padding-bottom: 20px;
    position: relative;
}

/*--------------------------------------------------------------
# Blog Scroll Fix
--------------------------------------------------------------*/
#blog {
  overflow: hidden;
}

#blog .container,
#blog-content,
#blog-content .container,
#blog-content .container > .row {
  overflow: visible !important;
  max-height: none !important;
}

#blog .sidebar {
  max-height: none;
  overflow: visible;
}

#blog .col-lg-8,
#blog-content .col-lg-8,
#blog-content .col-lg-8 > *,
.blog .col-lg-8,
.blog .col-lg-8 > * {
  max-height: none !important;
  overflow: visible !important;
}

#blog-content .row,
.blog .row {
  max-height: none !important;
  overflow: visible !important;
}

#blog .footer-contact-form {
  position: sticky;
  top: 20px;
}

@media (max-width: 991px) {
  #blog .sidebar {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/
.thank-you-section {
  min-height: 100vh;
  padding: 100px 0;
  background: black;
}

.thank-you-card {
  background: #fff;
  border-radius: 20px;
  padding: 12px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  margin-bottom: 0px;
}

.info-box .bx-envelope{
  margin-left: 111px;
}

/* @media (max-width: 1440px) {
  .info-box .bx-envelope{
    margin-left: 153px;
  }
  .contact .info-box{
    padding: 12px 142px 31px 27px;
  }
  .info-box .bx-map {
    margin-left: 153px;
}
} */


.thank-you-icon i {
  font-size: 40px;
  color: #18d26e;
  animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-card h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
  line-height: 1.3;
}

.thank-you-message {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
/* .btn-danger{
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
} */

.thank-you-actions .btn-danger,
.thank-you-actions .btn-secondary {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.thank-you-actions .btn-danger {
  background: #e03a3c;
  color: #fff;
  border: 2px solid #e03a3c;
}

.thank-you-actions .btn-danger:hover {
  background: transparent;
  color: #e03a3c;
}

.thank-you-actions .btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.thank-you-actions .btn-secondary:hover {
  background: #667eea;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 60px 0;
  }
  
  .thank-you-card {
    padding: 13px 25px;
    margin-top: 46px;
  }
  
  .thank-you-card h1 {
    font-size: 24px;
  }
  
  .thank-you-message {
    font-size: 16px;
  }
  
  .thank-you-icon i {
    font-size: 60px;
  }
  
  .thank-you-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .thank-you-actions .btn-danger,
  .thank-you-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}



.footer-text{
  margin: 0;
  font-size: 14px;
  text-align: left;
}

@media (max-width: 768px) {
  .footer-text{
    margin: 0;
    font-size: 14px;
    text-align: center;
  }
}
