@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@400&display=swap);
/* resources/css/app.css */

/* Google Fonts (Manrope + Montserrat subset) - optional, you can keep or remove */

/* Your custom @font-face + classes here (as you already have) */

/* Custom Montserrat fonts (local files) */
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url("/assets-new/Font-Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  src: url("/assets-new/Font-Montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  src: url("/assets-new/Font-Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url("/assets-new/Font-Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-ExtraBold";
  font-weight: 800;
  font-style: normal;
  src: url("/assets-new/Font-Montserrat/static/Montserrat-ExtraBold.ttf") format("truetype");
  font-display: swap;
}



#root {
  min-height: 100vh;
}

.hero-bg {

  background:
    /* bottom white fade */
    linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%),
    /* your original gradient */
    linear-gradient(105deg,
      rgba(33, 113, 177, 0.30) -0.05%,
      rgba(255, 255, 255, 0.00) 50.24%,
      rgba(39, 206, 106, 0.30) 100.53%);
}


.hero-bg-1 {
  background: linear-gradient(105deg,
      rgb(180, 215, 235) 0%,
      /* lighter blue */
      rgb(255, 255, 255) 50%,
      rgb(185, 235, 205) 100%
      /* lighter green */
    );
}

/* .services-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(33, 113, 177, 0.12) 25%, rgba(39, 206, 106, 0.15) 40%, rgba(39, 206, 106, 0.18) 60%, rgba(39, 206, 106, 0.12) 80%, rgba(255, 255, 255, 0.00) 100%);
}
 */

.services-gradient {
  background: linear-gradient(to bottom,
      #ffffff 0%,
      /* pure white from top */
      #ffffff 80%,
      /* white stays until 80% of the height */
      #2171b1 90%, blue starts appearing and reaches full at 90% #27ce6a 100% green takes over the final 10%);
}


/* Your utility classes (same as before) */
.font-montserrat-regular {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 400;
}

.font-montserrat-medium {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 500;
}

.font-montserrat-semibold {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 600;
}

.font-montserrat-bold {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
}

.font-montserrat-extra-bold {
  font-family: "Montserrat-ExtraBold", "Segoe UI", sans-serif;
}

/* Optional: your hero gradient (if used somewhere) */
.hero-gradient-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(111.51deg, rgba(33, 113, 177, 0.3) 0%, rgba(255, 255, 255, 0) 50.24%, rgba(39, 206, 106, 0.3) 100.53%);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 96%);
  z-index: -1;
}


/* Standardized page container class for consistent spacing */
.page-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 1.25rem; /* 20px = px-5 */
  padding-right: 1.25rem; /* 20px = px-5 */
}

@media (min-width: 768px) {
  .page-container {
    padding-left: 2rem; /* 32px = md:px-8 */
    padding-right: 2rem; /* 32px = md:px-8 */
  }
}

/* Global resets (same as before) */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


@keyframes float-around {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(3px, -4px);
  }

  50% {
    transform: translate(-2px, 2px);
  }

  75% {
    transform: translate(-4px, -2px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.animate-float {
  animation: float-around 6s ease-in-out infinite;
}


.custom-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D1D5DB;
  opacity: 1;
  border-radius: 9999px;
  transition: all 0.3s ease;
  margin: 0 4px !important;
  display: inline-block;
  cursor: pointer;
}

.custom-pagination .swiper-pagination-bullet-active {
  width: 32px;
  background-color: #18BB8E;
}

@keyframes float-ios {
  0% {
    transform: translateY(0px) scale(1.25);
  }

  50% {
    transform: translateY(-40px) scale(1.25);
  }

  100% {
    transform: translateY(0px) scale(1.25);
  }
}



@media (min-width: 768px) {
  .animate-float-ios {
    animation: float-ios 5s ease-in-out infinite;
  }
}

@media (max-width: 767px) {
  @keyframes float-ios-mobile {
    0% {
      transform: translateY(0px) scale(1.1);
    }

    50% {
      transform: translateY(-10px) scale(1.1);
    }

    100% {
      transform: translateY(0px) scale(1.1);
    }
  }

  .animate-float-ios {
    animation: float-ios-mobile 4s ease-in-out infinite;
  }
}

.bottom-gradient-br {
  background: linear-gradient(180deg, #ffffff 0%, #f2fcfb 100%);
  padding: 80px 40px;
  text-align: center;
  font-family: 'Inter', -apple-system, sans-serif;
}

.top-gradient-br {
  background: linear-gradient(360deg, #ffffff 0%, #f2fcfb 100%);
  padding: 80px 40px;
  text-align: center;
  font-family: 'Inter', -apple-system, sans-serif;
}



/* Header Styling */
.header {
  margin-bottom: 50px;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 12px;
}

.sub-title {
  font-size: 1.1rem;
  color: #64748b;
}

/* Grid Layout */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Base Card Styling */
.capability-card {
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  /* Overriding the center align from container */
  transition: transform 0.3s ease;
}

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

.capability-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2b3c;
  margin: 20px 0 12px 0;
}

.capability-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #556677;
}

/* Icon Box Styling */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Specific Card & Icon Colors from Image */
.bg-blue {
  background-color: #f0f7ff;
}

.icon-blue {
  background-color: #007aff;
}

.bg-orange {
  background-color: #fff7ed;
}

.icon-orange {
  background-color: #f38020;
}

.bg-purple {
  background-color: #f9f3ff;
}

.icon-purple {
  background-color: #af52de;
}

.bg-green {
  background-color: #effaf3;
}

.icon-green {
  background-color: #34c759;
}

.bg-red {
  background-color: #fff1f1;
}

.icon-red {
  background-color: #ff3b30;
}

.bg-indigo {
  background-color: #f0f3ff;
}

.icon-indigo {
  background-color: #2b59ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bottom-gradient-br {
    padding: 40px 20px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}




/* Expert Section Root Styles */
.ios-exp-section {
  background-color: #F1F1F1;
  padding: 100px 20px;
  position: relative;

  font-family: 'Inter', -apple-system, sans-serif;
  text-align: center;


  overflow: visible;
}

/* The Green Bar */
.ios-exp-top-accent {
  position: absolute;
  top: 0;

  right: 0;

  width: 250px;
  height: 30px;
  background-color: #10b981;


  transform: translateY(-50%);

  border-radius: 0;
  z-index: 10;
}

/* Scoped Container */
.ios-exp-container {
  max-width: 1100px;
  margin: 0 auto;
}



/* Scoped Header & Text */
.ios-exp-header {
  margin-bottom: 60px;
}

.ios-exp-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 20px;
}

.ios-exp-description {
  font-size: 1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Scoped Grid */
.ios-exp-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Scoped Individual Card */
.ios-exp-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.ios-exp-img-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ios-exp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ios-exp-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 5px;
}

.ios-exp-role {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  display: block;
}

/* Scoped Bottom Stripe */
.ios-exp-bottom-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #0d1b2a;
}

/* --- RESPONSIVENESS (Scoped) --- */

@media (max-width: 992px) {
  .ios-exp-card {
    flex: 0 0 calc(50% - 40px);
    /* 2 items per row */
  }
}

@media (max-width: 600px) {
  .ios-exp-section {
    padding: 60px 20px;
  }

  .ios-exp-main-title {
    font-size: 1.8rem;
  }

  .ios-exp-grid {
    flex-direction: column;
    align-items: center;
  }

  .ios-exp-card {
    max-width: 100%;
  }

  .ios-exp-top-accent {
    width: 100px;
    height: 15px;
  }
}