/* Custom CSS Variables */
:root {
  --primary-color: #F45927;
  --secondary-color: #45187E;
  --accent-color: #FFDCB0;
  --text-color: #333333;
  --background-color: #ffffff;
  --muted-background: #F5F5F5;
  --border-color: rgba(0, 0, 0, 0.1);
  --font-family: 'Lato', sans-serif;
  --border-radius: 32px;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.1);
  --hover-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced responsive container */
@media (min-width: 1400px) {
  .container-custom {
    max-width: 1320px;
    padding: 0 30px;
  }
}

@media (max-width: 1199.98px) {
  .container-custom {
    max-width: 960px;
    padding: 0 20px;
  }
}

@media (max-width: 991.98px) {
  .container-custom {
    max-width: 720px;
    padding: 0 20px;
  }
}

@media (max-width: 767.98px) {
  .container-custom {
    max-width: 540px;
    padding: 0 16px;
  }
}

@media (max-width: 575.98px) {
  .container-custom {
    padding: 0 12px;
  }
}

/* Typography */
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
  margin-bottom: 24px;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Responsive typography */
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 32px;
  }
  .section-description {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .section-title {
    font-size: 28px;
  }
  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .section-description {
    font-size: 15px;
  }
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 500;
  padding: 12px 32px;
  font-size: 18px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

/* Responsive button sizing */
@media (max-width: 991.98px) {
  .btn {
    padding: 11px 28px;
    font-size: 17px;
  }
}

@media (max-width: 767.98px) {
  .btn {
    padding: 10px 24px;
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .btn {
    padding: 10px 20px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: rgba(244, 89, 39, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 89, 39, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 24, 126, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFECD5 0%, #FFF8F0 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
    padding-bottom: 60px;
}

/* Enhanced Hero Responsive Design */
@media (max-width: 1199.98px) {
  .hero-section {
        padding-top: 140px!important;
        padding-bottom: 60px!important;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
      padding-top: 100px!important;
        padding-bottom: 40px!important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
     padding-top: 80px!important;
        padding-bottom: 40px!important;
  }
  
  /* Stack hero content vertically on mobile */
  .hero-section .row {
    flex-direction: column-reverse;
  }
  
  .hero-section .col-lg-7,
  .hero-section .col-lg-5 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .hero-image-container {
    margin-bottom: 32px;
  }
  
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 48px 0 32px 0;
  }
  
  .hero-image-container {
    display: none;
  }
  
  .awards-section {
    margin-bottom: 32px;
  }
  
  .award-badge {
    width: 48px;
    height: 48px;
  }
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 32px;
}

.hero-description {
  margin-bottom: 48px;
}

.hero-description p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 24px;
}

/* Enhanced responsive hero section */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 44px;
    margin-bottom: 28px;
  }
  .hero-description p {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .hero-description {
    margin-bottom: 36px;
  }
  .hero-description p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .hero-description {
    margin-bottom: 32px;
  }
  .hero-description p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .hero-description {
    margin-bottom: 24px;
  }
  .hero-description p {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

.hero-btn {
  height: 48px;
  font-size: 18px;
}

.awards-section {
  margin-bottom: 48px;
}

.award-badge {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 6px 12px rgba(68, 24, 126, 0.1),
    0 3px 6px rgba(244, 89, 39, 0.08);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius);
  background: 
    linear-gradient(135deg, rgba(68, 24, 126, 0.15) 0%, transparent 30%),
    linear-gradient(225deg, rgba(244, 89, 39, 0.15) 0%, transparent 30%),
    linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  box-shadow: 
    inset 0 0 60px rgba(0, 0, 0, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 32px rgba(68, 24, 126, 0.15),
    0 4px 16px rgba(244, 89, 39, 0.1);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  animation: float 25s ease-in-out infinite;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: radial-gradient(circle, var(--accent-color), var(--primary-color));
  animation: floatCircle 20s ease-in-out infinite;
}

.floating-large {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  opacity: 0.1;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  animation: rotateLarge 40s linear infinite;
}

.floating-organic {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: floatOrganic 35s ease-in-out infinite;
}

.floating-tech-element {
  position: absolute;
  border-radius: 50%;
}

.tech-element-1 {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  /* animation: floatTech1 6s ease-in-out infinite; */
}

.tech-element-2 {
  bottom: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  background-color: var(--secondary-color);
  /* animation: floatTech2 4s ease-in-out infinite; */
}

.tech-dot {
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
}

/* Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(-20px) translateX(-10px) rotate(0deg);
  }
  50% { 
    transform: translateY(20px) translateX(10px) rotate(180deg);
  }
}

@keyframes floatCircle {
  0%, 100% { 
    transform: scale(1) translateY(-15px);
  }
  50% { 
    transform: scale(1.2) translateY(15px);
  }
}

@keyframes rotateLarge {
  from { 
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  to { 
    transform: rotate(360deg) scale(1);
  }
}

@keyframes floatOrganic {
  0%, 100% { 
    transform: rotate(0deg) translateY(-10px);
  }
  50% { 
    transform: rotate(-180deg) translateY(10px);
  }
}

@keyframes floatTech1 {
  0%, 100% { 
    transform: translateY(-5px) rotate(0deg);
  }
  50% { 
    transform: translateY(5px) rotate(180deg);
  }
}

@keyframes floatTech2 {
  0%, 100% { 
    transform: scale(1) opacity(0.7);
  }
  50% { 
.stats-grid .stat-item {
  text-align: center;
  padding: 20px;
}}}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0;
}
  
  
/* Enhanced Stats Responsive Design */
@media (max-width: 991.98px) {
  .stats-grid .stat-item {
    padding: 16px;
  }
  .stat-number {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .stat-label {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .stats-grid .stat-item {
    padding: 12px;
  }
  .stat-number {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .stats-grid .stat-item {
    padding: 0;
  }
  .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 13px;
  }
} 
/* Clients Section */
.clients-section {
  padding: 96px 0;
  background-color: #f6f6f6;
}

.clients-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.clients-carousel {
  display: flex;
  gap: 40px;
  animation: clientsScroll 20s linear infinite;
  width: fit-content;
}

.client-logo {
  width: 224px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--card-shadow);
  flex-shrink: 0;
}

/* Enhanced Clients Section Responsive */
@media (max-width: 991.98px) {
  .clients-section {
    padding: 64px 0;
  }
  .clients-carousel {
    gap: 32px;
  }
  .client-logo {
    width: 180px;
    height: 60px;
    padding: 12px;
  }
}

@media (max-width: 767.98px) {
  .clients-section {
    padding: 48px 0;
  }
  .clients-carousel {
    gap: 24px;
  }
  .client-logo {
    width: 160px;
    height: 56px;
    padding: 10px;
  }
}

@media (max-width: 575.98px) {
  .clients-carousel {
    gap: 20px;
  }
  .client-logo {
    width: 140px;
    height: 48px;
    padding: 8px;
  }
} 
  50% { 
    transform: translateX(20px) translateY(10px);
  }
}

.stats-grid .stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Clients Section */
.clients-section {
  padding: 96px 0;
  background-color: #f6f6f6;
}

.clients-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.clients-carousel {
  display: flex;
  gap: 40px;
  animation: clientsScroll 20s linear infinite;
  width: fit-content;
}

.client-logo {
  width: 224px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--card-shadow);
  flex-shrink: 0;
}

.client-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo:hover .client-img {
  transform: scale(1.05);
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Services Section */
.services-section {
  padding: 96px 0;
  background: white;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Enhanced responsive service cards */
@media (max-width: 991.98px) {
  .services-section {
    padding: 80px 0;
  }
  .service-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .service-title {
    font-size: 18px;
  }
  .service-description {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    padding: 16px;
    margin-bottom: 12px;
  }
  .service-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .service-description {
    font-size: 14px;
  }
  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.service-icon {
  background-color: var(--primary-color);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
  margin: 0;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

/* CTA Section Responsive Design */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-description {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 64px 0;
  }
  .cta-title {
    font-size: 28px;
  }
  .cta-description {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 48px 0;
  }
  .cta-title {
    font-size: 24px;
    line-height: 1.4;
  }
  .cta-description {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 40px 0;
  }
  .cta-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .cta-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cta-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

.cta-section .container-custom {
  position: relative;
  z-index: 10;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FFDCB0e6 0%, #FFDCB0cc 100%);
  z-index: 2;
}

.cta-secondary .cta-overlay {
  background: linear-gradient(135deg, #F5F5F5e6 0%, #F5F5F5cc 100%);
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #2c2c2c;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-description {
  font-size: 18px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-btn {
  height: 48px;
  position: relative;
  z-index: 10;
  width:auto;
}

.cta-btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.cta-btn-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Azure Industries Section */
.azure-industries-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.azure-industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(128, 0, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.industry-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.industry-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-image {
    transform: scale(1.1);
}

.industry-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(128, 0, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover .industry-image-container::after {
    opacity: 1;
}

.industry-content {
    padding: 30px;
}

.industry-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.industry-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .azure-industries-section {
        padding: 80px 0;
    }
    
    .industry-image-container {
        height: 200px;
    }
    
    .industry-content {
        padding: 20px;
    }
    
    .industry-title {
        font-size: 20px;
    }
    
    .industry-description {
        font-size: 14px;
    }
}

/* Case Study Section */
.case-study-section {
  padding: 96px 0;
  background: white;
}

.case-study-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Solutions Navigation Responsive */
.solutions-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #E5E7EB;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--card-shadow);
}

.solutions-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--hover-shadow);
}

.solutions-prev {
  left: -24px;
}

.solutions-next {
  right: -24px;
}

/* Responsive navigation adjustments */
@media (max-width: 1199.98px) {
  .solutions-prev {
    left: -16px;
  }
  .solutions-next {
    right: -16px;
  }
}

@media (max-width: 991.98px) {
  .solutions-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .solutions-prev {
    left: -12px;
  }
  .solutions-next {
    right: -12px;
  }
}

@media (max-width: 767.98px) {
  .solutions-nav,
  .azure-services-nav {
    display: none;
  }
  
  /* Add touch-friendly indicators for mobile */
  .solutions-indicators,
  .azure-services-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  
  .indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
  }
}tech-stack-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--card-shadow);
}

.tech-category {
  text-align: center;
}

.tech-category-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 24px;
}

.tech-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-badge {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

/* Solutions Section */
.solutions-section {
  padding: 96px 0;
  background: white;
}

.solutions-carousel-container {
  position: relative;
}

.solutions-carousel {
  overflow: hidden;
}

.solutions-slide {
  display: none;
}

.solutions-slide.active {
  display: block;
}

.solution-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.solution-icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.solution-icon {
  background: var(--accent-color);
  color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  font-size: 20px;
}

.solution-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
  margin: 0;
}

.solution-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.solutions-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #E5E7EB;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--card-shadow);
}

.solutions-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--hover-shadow);
}

.solutions-prev {
  left: -24px;
}

.solutions-next {
  right: -24px;
}

.solutions-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #E5E7EB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.indicator:hover {
  transform: scale(1.1);
}

/* Challenges Section */
.challenges-section {
  padding: 96px 0;
  background: var(--muted-background);
}

.challenges-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.challenge-item:hover {
  box-shadow: var(--hover-shadow);
}

.challenge-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
}

.challenge-header:hover {
  background-color: #f8f9fa;
}

.challenge-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.challenge-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.challenge-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
  margin: 0;
}

.challenge-toggle {
  width: 32px;
  height: 32px;
  background: #E5E7EB;
  color: #666666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.challenge-header[aria-expanded="true"] {
  background: var(--primary-color);
  color: white;
}

.challenge-header[aria-expanded="true"] .challenge-title {
  color: white;
}

.challenge-header[aria-expanded="true"] .challenge-icon {
  background: white;
  color: var(--primary-color);
}

.challenge-header[aria-expanded="true"] .challenge-toggle {
  background: white;
  color: var(--primary-color);
  transform: rotate(180deg);
}

.challenge-content {
  transition: all 0.3s ease;
}

.challenge-description {
  padding: 0 24px 24px 88px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.challenges-image-container {
  position: sticky;
  top: 32px;
}

.challenges-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.challenges-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  border-radius: var(--border-radius);
}

/* Industry Section */
.azure-industries-section {
  padding: 96px 0;
  background: white;
}

.industry-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Enhanced responsive industry cards */
@media (max-width: 1199.98px) {
  .azure-industries-section {
    padding: 80px 0;
  }
  .industry-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .azure-industries-section {
    padding: 60px 0;
  }
  .industry-card {
    margin-bottom: 16px;
  }
  .industry-title {
    font-size: 18px;
  }
  .industry-description {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .azure-industries-section {
    padding: 48px 0;
  }
  .industry-image-container {
    height: 200px;
  }
  .industry-content {
    padding: 20px;
  }
  .industry-title {
    font-size: 18px;
  }
  .industry-description {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .industry-content {
    padding: 16px;
  }
  .industry-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .industry-description {
    font-size: 14px;
  }
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--primary-color);
}

.industry-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.industry-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 96px 0;
  background: var(--muted-background);
}

.process-cards-section{
    justify-content: center;
}

.process-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  /* Ensure cards are visible by default */
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Enhanced responsive process cards */
@media (max-width: 1199.98px) {
  .process-section {
    padding: 80px 0;
  }
  .process-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .process-section {
    padding: 60px 0;
  }
  .process-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .process-title {
    font-size: 15px;
  }
  .process-description {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .process-card {
    padding: 16px;
    margin-bottom: 12px;
  }
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .process-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .process-description {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  /* Stack process cards vertically on very small screens */
  .process-cards-section .col-lg-2,
  .process-cards-section .col-md-4,
  .process-cards-section .col-6 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 16px auto;
  }
  .process-card {
    padding: 20px;
  }
  .process-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .process-title {
    font-size: 16px;
  }
  .process-description {
    font-size: 14px;
  }
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 18px;
  font-weight: 700;
}

.process-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.process-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 96px 0;
  background: white;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Enhanced responsive feature cards */
@media (max-width: 1199.98px) {
  .features-section {
    padding: 80px 0;
  }
  .feature-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .features-section {
    padding: 60px 0;
  }
  .feature-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .feature-title {
    font-size: 18px;
  }
  .feature-description {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .feature-card {
    padding: 16px;
    margin-bottom: 12px;
  }
  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .feature-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .feature-card {
    padding: 20px;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .feature-title {
    font-size: 16px;
  }
  .feature-description {
    font-size: 14px;
  }
}

.feature-icon-wrapper {
  margin-bottom: 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

/* USPs Section */
.usps-section {
  padding: 96px 0;
  background: var(--muted-background);
}

.usps-section .row {
  max-width: 1400px;
  margin: 0 auto;
}

.usp-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Ensure cards are visible by default */
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Enhanced responsive USP cards */
@media (max-width: 1399.98px) {
  .usps-section .col-xl-2 {
    flex: 0 0 auto;
    width: 20%;
  }
}

@media (max-width: 1199.98px) {
  .usps-section {
    padding: 80px 0;
  }
  .usps-section .col-xl-2,
  .usps-section .col-lg-3 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .usp-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .usps-section {
    padding: 60px 0;
  }
  .usps-section .col-xl-2,
  .usps-section .col-lg-3,
  .usps-section .col-md-4 {
    flex: 0 0 auto;
    width: 50%;
  }
  .usp-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .usp-title {
    font-size: 16px;
  }
  .usp-description {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .usps-section .col-xl-2,
  .usps-section .col-lg-3,
  .usps-section .col-md-4,
  .usps-section .col-sm-6 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .usps-section .row {
    justify-content: center;
  }
  .usp-card {
    margin-bottom: 16px;
  }
  .usp-number {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .usp-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .usp-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .usp-title {
    font-size: 16px;
  }
  .usp-description {
    font-size: 14px;
  }
}

.usp-number-wrapper {
  margin-bottom: 24px;
  text-align: center;
}

.usp-number {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}

.usp-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: center;
}

.usp-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

@media (max-width: 991.98px) {
  .usp-card {
    padding: 20px;
  }
  
  .usp-title {
    font-size: 16px;
  }
  
  .usp-description {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  /* USP cards take full width on mobile for better readability */
  .usps-section .col-xl-2,
  .usps-section .col-lg-3,
  .usps-section .col-md-4,
  .usps-section .col-sm-6 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .usps-section .row {
    justify-content: center;
  }
  
  .usp-number {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 96px 0;
  background: white;
}

.review-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Enhanced responsive review cards */
@media (max-width: 1199.98px) {
  .reviews-section {
    padding: 80px 0;
  }
  .review-card {
    padding: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .reviews-section {
    padding: 60px 0;
  }
  .reviews-section .col-lg-3 {
    flex: 0 0 auto;
    width: 50%;
  }
  .review-card {
    padding: 24px;
    margin-bottom: 16px;
  }
  .review-text {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .reviews-section .col-lg-3 {
    flex: 0 0 auto;
    width: 100%;
  }
  .review-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .review-text {
    font-size: 14px;
  }
  .author-name {
    font-size: 16px;
  }
  .author-title {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .review-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  .review-stars i {
    font-size: 14px;
  }
}

.review-stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 24px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* FAQs Section */
.faqs-section {
  padding: 96px 0;
  background: var(--muted-background);
}

.faqs-section .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.accordion-button {
  background: white;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  padding: 24px;
  border-radius: var(--border-radius);
}

.accordion-button:not(.collapsed) {
  background: white;
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faqs-section .accordion-body {
  background: white;
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Responsive sections padding */
@media (max-width: 1199.98px) {
   
  .overview-section,
  .services-section,
  .cta-section,
  .case-study-section,
  .tech-stack-section,
  .solutions-section,
  .challenges-section,
  .industry-section,
  .process-section,
  .features-section,
  .usps-section,
  .reviews-section,
  .faqs-section,
  .clients-section,
  .real-results-section,
  .azure-stack-section,
  .build-deploy-scale-section,
  .business-growth-section,
  .azure-industries-section {
    padding: 80px 0!important;
  }
}

@media (max-width: 991.98px) {
 
  .overview-section,
  .services-section,
  .cta-section,
  .case-study-section,
  .tech-stack-section,
  .solutions-section,
  .challenges-section,
  .industry-section,
  .process-section,
  .features-section,
  .usps-section,
  .reviews-section,
  .faqs-section,
  .clients-section,
  .real-results-section,
  .azure-stack-section,
  .build-deploy-scale-section,
  .business-growth-section,
  .azure-industries-section {
    padding: 64px 0!important;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .case-study-number {
    font-size: 56px;
  }
}

@media (max-width: 767.98px) {
   
  .overview-section,
  .services-section,
  .cta-section,
  .case-study-section,
  .tech-stack-section,
  .solutions-section,
  .challenges-section,
  .industry-section,
  .process-section,
  .features-section,
  .usps-section,
  .reviews-section,
  .faqs-section,
  .clients-section,
  .real-results-section,
  .azure-stack-section,
  .build-deploy-scale-section,
  .business-growth-section,
  .azure-industries-section {
    padding: 48px 0!important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 28px;
    color: #2c2c2c;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }
  
  .cta-description {
    font-size: 16px;
    color: #444444;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }
}
  
  .container-custom {
    padding: 0 16px;
  }
  
  .clients-carousel {
    gap: 20px;
  }
  
  .tech-stack-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .case-study-number {
    font-size: 48px;
  }


/* Enhanced Mobile and Touch Device Styles */
@media (max-width: 575.98px) {
  .hero-section,
  .overview-section,
  .services-section,
  .cta-section,
  .case-study-section,
  .tech-stack-section,
  .solutions-section,
  .challenges-section,
  .industry-section,
  .process-section,
  .features-section,
  .usps-section,
  .reviews-section,
  .faqs-section,
  .clients-section,
  .real-results-section,
  .azure-stack-section,
  .build-deploy-scale-section,
  .business-growth-section,
  .azure-industries-section {
    padding: 40px 0!important;
  }
  
  .hero-section {
    padding: 48px 0;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .case-study-number {
    font-size: 48px;
  }
  
  .hero-btn,
  .cta-btn {
    height: 44px;
  }
  
  .awards-section .d-flex {
    justify-content: center !important;
  }
  
  .service-card,
  .feature-card,
  .challenge-card,
  .industry-card,
  .solution-card,
  .case-study-card,
  .usp-card,
  .review-card {
    padding: 20px;
  }
  
  .solutions-nav,
  .azure-services-nav {
    display: none;
  }
  
  .challenges-accordion .challenge-item {
    margin-bottom: 12px;
  }
  
  .challenge-description {
    padding: 0 20px 20px 68px;
    font-size: 14px;
  }
  
  .tech-stack-card {
    padding: 20px;
  }
  
  .tech-category-title {
    font-size: 18px;
  }
  
  .tech-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  /* Stack all grid items to single column on mobile */
  .row.g-4 > [class*="col-"] {
    margin-bottom: 16px;
  }
  
  /* Ensure proper spacing for text elements */
  .text-center.mb-5 {
    margin-bottom: 2rem !important;
  }
  
  /* Improve FAQ accordion spacing */
  .accordion-item {
    margin-bottom: 8px;
  }
  
  .accordion-button {
    padding: 16px;
    font-size: 16px;
  }
  
  .accordion-body {
    padding: 0 16px 16px;
    font-size: 14px;
  }
  
  /* Touch-friendly interactive elements */
  .btn, .accordion-button, .indicator {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }
  
  /* Improve touch target sizes */
  .review-stars i,
  .solutions-indicators .indicator,
  .azure-services-indicators .indicator {
    padding: 8px;
    min-width: 32px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Touch device specific styles */
.touch-device .service-card:hover,
.touch-device .feature-card:hover,
.touch-device .industry-card:hover,
.touch-device .usp-card:hover,
.touch-device .review-card:hover {
  transform: none;
  box-shadow: var(--card-shadow);
}

/* Mobile-specific utility classes */
.mobile-stack {
  flex-direction: column;
}

.mobile-stack > [class*="col-"] {
  flex: 0 0 auto;
  width: 100%;
  margin-bottom: 1rem;
}

/* Smooth scrolling for mobile */
@media (max-width: 767.98px) {
  html {
    scroll-behavior: smooth;
  }
  
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Ensure proper touch scrolling */
  .carousel, .solutions-carousel, .azure-services-carousel {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .carousel-item, .solutions-slide, .azure-services-slide {
    scroll-snap-align: start;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Override loading states for all cards - keep them visible */
.loading .service-card,
.loading .feature-card,
.loading .challenge-card,
.loading .industry-card,
.loading .solution-card,
.loading .case-study-card,
.loading .result-card,
.loading .usp-card,
.loading .review-card,
.loading .process-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Focus States */
.btn:focus,
.accordion-button:focus,
.indicator:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Animation Classes */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Remove all card animation delays - make cards immediately visible */
.service-card,
.feature-card,
.challenge-card,
.industry-card,
.solution-card,
.case-study-card,
.result-card,
.usp-card,
.review-card,
.process-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Remove all heading animation delays - make headings immediately visible */
.hero-title,
.section-title,
.stat-item,
.award-badge,
h1, h2, h3, h4, h5, h6 {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Real Results Section */
.real-results-section {
  padding: 96px 0;
  background: #f8f9fa;
}

.result-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.result-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.result-card:hover .result-image {
  transform: scale(1.05);
}

.result-content {
  padding: 24px;
}

.result-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.result-client,
.result-challenge,
.result-solution {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.client-label,
.challenge-label,
.solution-label {
  font-weight: 600;
  color: var(--primary-color);
}

.result-outcomes {
  margin: 16px 0;
}

.result-outcomes h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.result-outcomes ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.result-outcomes li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--text-color);
}

.result-outcomes li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.result-testimonial {
  background: var(--accent-color);
  padding: 16px;
  border-radius: 8px;
  font-style: italic;
  font-size: 14px;
  color: var(--text-color);
  margin-top: 16px;
  position: relative;
}

.result-testimonial:before {
  content: '"';
  font-size: 32px;
  color: var(--primary-color);
  position: absolute;
  top: -5px;
  left: 8px;
  line-height: 1;
}

.result-testimonial:after {
  content: '"';
  font-size: 32px;
  color: var(--primary-color);
  position: absolute;
  bottom: -15px;
  right: 8px;
  line-height: 1;
}

.view-case-study-btn {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: none;
}

.view-case-study-btn:hover {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 24, 126, 0.3);
}

/* Azure Development Stack Section */
.azure-stack-section {
  padding: 96px 0;
  background: white;
}

.azure-services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.azure-service-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  opacity: 1;
  transform: none;
  cursor: pointer;
}

.azure-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.azure-service-card.featured {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.azure-service-card.featured .service-name,
.azure-service-card.featured .service-description {
  color: white;
}

/* Alternating selected colors for Azure service cards */
.azure-service-card.selected-orange {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transition: all 0.15s ease;
}

.azure-service-card.selected-purple {
  background: #6B46C1;
  color: white;
  border-color: #6B46C1;
  transition: all 0.15s ease;
}

.azure-service-card.selected-orange .service-name,
.azure-service-card.selected-orange .service-description,
.azure-service-card.selected-purple .service-name,
.azure-service-card.selected-purple .service-description {
  color: white;
}

.azure-service-card.selected-orange .service-icon-container,
.azure-service-card.selected-purple .service-icon-container {
  background: rgba(255, 255, 255, 0.2);
}

.azure-service-card.selected-orange .service-icon-container i,
.azure-service-card.selected-purple .service-icon-container i {
  color: white;
}

.service-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.azure-service-card.featured .service-icon-container {
  background: rgba(255, 255, 255, 0.2);
}

.service-icon-container i {
  font-size: 20px;
  color: var(--primary-color);
}

.azure-service-card.featured .service-icon-container i {
  color: white;
}

.service-content {
  flex: 1;
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 4px;
}

.service-description {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

.azure-tech-section {
  height: 100%;
  flex-direction: column;
  gap: 24px;
}

.azure-tech-section {
  display: none;
}

.azure-tech-section.active {
  display: flex; /* restore your original layout */
}

.tech-highlight-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon i {
  font-size: 20px;
  color: white;
}

.tech-content {
  flex: 1;
}

.tech-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 4px;
}

.tech-description {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

/* New Tech Service Card Styling */
.tech-service-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.15s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.azure-tech-section {
  height: 100%;
}

.tech-service-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.tech-service-icon {
  width: 48px;
  height: 48px;
  background: #FF6B35;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-service-icon i {
  font-size: 20px;
  color: white;
}

.tech-service-info {
  flex: 1;
}

.tech-service-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.tech-service-description {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

/* Technologies & Services section inside the card */
.tech-service-card .tech-services-section {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
  margin-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tech-service-card .tech-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
}

.tech-service-card .tech-badges-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.tech-services-section {
  flex: 1;
}

.tech-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
}

.tech-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tech-service-badge {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.tech-service-badge:before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 8px;
}

.tech-service-badge:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .tech-badges-grid {
    grid-template-columns: 1fr;
  }
  
  .azure-services-grid {
    margin-bottom: 32px;
  }
}

/* Build, Deploy, Scale Section */
.build-deploy-scale-section {
  padding: 96px 0;
  background: var(--muted-background);
}

.azure-services-carousel-container {
  position: relative;
  margin-top: 48px;
}

.azure-services-carousel {
  overflow: hidden;
}

.azure-services-slide {
  display: none;
}

.azure-services-slide.active {
  display: block;
}

.azure-solution-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: none;
}

.azure-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.azure-solution-icon-wrapper {
  margin-bottom: 24px;
  text-align: center;
}

.azure-solution-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  color: var(--primary-color);
}

.azure-solution-content {
  text-align: center;
}

.azure-solution-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.azure-solution-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.azure-services-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #E5E7EB;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--card-shadow);
}

.azure-services-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--hover-shadow);
  background: var(--primary-color);
  color: white;
}

.azure-services-prev {
  left: -24px;
}

.azure-services-next {
  right: -24px;
}

.azure-services-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.azure-services-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #E5E7EB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.azure-services-indicators .indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.azure-services-indicators .indicator:hover {
  transform: scale(1.1);
}

/* Business Growth Section */
.business-growth-section {
  padding: 96px 0;
  background: white;
}

.business-growth-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.business-growth-item {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.business-growth-item:hover {
  box-shadow: var(--hover-shadow);
}

.business-growth-header {
  width: 100%;
  padding: 24px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.business-growth-header:hover {
  background-color: #f8f9fa;
}

.business-growth-header:not(.collapsed) {
  background: #fbf9fa;
  color: white;
}


.business-growth-header:not(.collapsed) .business-growth-icon {
  background: white;
  color: var(--primary-color);
}

.business-growth-header:not(.collapsed) .business-growth-toggle {
  color: white;
  transform: rotate(180deg);
}

.business-growth-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.business-growth-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.business-growth-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.business-growth-toggle {
  width: 32px;
  height: 32px;
  background: #E5E7EB;
  color: #666666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.business-growth-content {
  padding: 0 24px 24px 88px;
  transition: all 0.3s ease;
}

.business-growth-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.business-growth-image-container {
  position: sticky;
  top: 32px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.business-growth-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.business-growth-image-container:hover .business-growth-image {
  transform: scale(1.02);
}

@media (min-width: 992px) {
.business-growth-item
 {
        display: block;
        overflow: visible;
    }
  }

/* Responsive adjustments for Business Growth section */
@media (max-width: 991px) {
  .business-growth-content {
    padding: 0 24px 24px 24px;
  }
  
  .business-growth-image-container {
    position: static;
    margin-top: 32px;
  }
}
