@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');




body {
   margin: 0;
   font-family: 'Poppins', sans-serif;
   color: var(--text-dark);
}


.page-container {
   max-width: 100%;
   margin: 0 auto;
}


/* ANIMATIONS */
@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }


   to {
       opacity: 1;
       transform: translateY(0);
   }
}


@keyframes float {
   0% {
       transform: translateY(0px);
   }


   50% {
       transform: translateY(-20px);
   }


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


.animate-on-scroll {
   opacity: 0;
}


.fade-in {
   animation: fadeIn 1s ease-out forwards;
}


.fade-in-up {
   animation: fadeInUp 0.8s ease-out forwards;
}


.fade-in-up-delay-1 {
   animation: fadeInUp 0.8s ease-out 0.2s forwards;
}


.fade-in-up-delay-2 {
   animation: fadeInUp 0.8s ease-out 0.4s forwards;
}


.fade-in-up-delay-3 {
   animation: fadeInUp 0.8s ease-out 0.6s forwards;
}


/* SHARED SECTION STYLES */
.section {
   padding: 48px 5%;
}


.bg-soft {
   background-color: #f8fafc;
}


.content-wrapper {
   max-width: 87.5rem;
   margin: 0 auto;
   padding: 0 3%;
}


.section-header {
   text-align: center;
   max-width: 75rem;
   margin: 0 auto 3.5rem;
}


.section-title {
   font-size: 3rem;
   line-height: 1.2;
   margin-bottom: 15px;
   font-weight: 700;
}


.section-description {
   font-size: 1.15rem;
   line-height: 1.8;
   max-width: 50rem;
   margin: 0 auto;
   color: var(--text-gray);
}


.gradient-text {
   background: linear-gradient(90deg, #2BACE2 0%, #243377 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   display: inline-block;
}


/* HERO SECTION STYLES */
.hero-visual {
   display: flex;
   justify-content: center;
   align-items: center;
}


.hero-floating-img {
   width: 100%;
   max-width: 600px;
   height: auto;
   filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.15));
   animation: float 6s ease-in-out infinite;
   transition: transform 0.3s ease;
}


.hero-visual:hover .hero-floating-img {
   transform: scale(1.05);
}


/* WHAT WE DO SECTION (Handled by Manufacturingoptimization.css) */


/* PREMIUM OUR APPROACH SECTION */
.premium-approach-section {
   padding: 100px 5%;
   background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
   position: relative;
   overflow: hidden;
}


.premium-approach-section::before {
   content: '';
   position: absolute;
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(0, 138, 207, 0.15) 0%, transparent 70%);
   top: -100px;
   right: -50px;
}


.approach-container-premium {
   max-width: 1400px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
}


.section-subtitle-premium {
   text-align: center;
   color: rgba(255, 255, 255, 0.8);
   font-size: 1.25rem;
   margin-top: -3.5rem;
   margin-bottom: 5rem;
}


.process-flow-container {
   display: flex;
   justify-content: space-between;
   gap: 20px;
   position: relative;
}


.step-item {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
}


.step-badge {
   width: 50px;
   height: 50px;
   background: linear-gradient(90deg, #2BACE2 0%, #243377 100%);
   color: white;
   font-weight: 700;
   font-size: 1.2rem;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 25px;
   box-shadow: 0 0 20px rgba(43, 172, 226, 0.4);
   z-index: 10;
   transition: transform 0.3s ease;
}


.step-glass-card {
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 20px;
   padding: 40px 30px;
   text-align: center;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   height: 100%;
}


.step-item:hover .step-glass-card {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(0, 138, 207, 0.4);
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.step-item:hover .step-badge {
   transform: scale(1.1) rotate(5deg);
}


.step-icon-wrapper {
   width: 60px;
   height: 60px;
   background: rgba(0, 138, 207, 0.1);
   border-radius: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   color: #2BACE2;
}


.step-icon-wrapper .material-symbols-outlined {
   font-size: 32px;
}


.step-item-title {
   color: #ffffff;
   font-size: 1.4rem;
   font-weight: 600;
   margin-bottom: 15px;
}


.step-item-desc {
   color: rgba(255, 255, 255, 0.7);
   font-size: 0.95rem;
   line-height: 1.6;
}


/* FLOW CONNECTORS (DESKTOP) */
.flow-connector {
   position: absolute;
   top: 25px;
   right: -50%;
   width: 100%;
   height: 2px;
   z-index: 1;
}


.connector-line {
   background: linear-gradient(90deg, #2BACE2 0%, transparent 100%);
   width: 100%;
   height: 100%;
   opacity: 0.4;
}


.text-white {
   color: #ffffff !important;
}


/* RESPONSIVE */
@media (max-width: 1200px) {
   .flow-connector {
       display: none;
   }


   .process-flow-container {
       flex-wrap: wrap;
       gap: 40px;
       justify-content: center;
   }


   .step-item {
       flex: 0 1 calc(50% - 20px);
   }
}


/* RESPONSIVE */
@media (max-width: 1024px) {
   .hero-content {
       grid-template-columns: 1fr;
       text-align: center;
       gap: 2rem;
   }


   .hero-title {
       font-size: 2.75rem;
   }


   .hero-floating-img {
       max-width: 400px;
   }


   .benefit-card {
       width: calc(50% - 1rem);
   }


   /* Center align process flow steps */
   .process-flow-container {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       gap: 40px;
   }


   .step-item {
       flex: 0 1 calc(50% - 20px);
       max-width: 400px;
       margin: 0 auto;
   }


   .outcomes-grid,
   .benefits-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       justify-content: center;
       max-width: 900px;
       margin: 0 auto;
       gap: 20px;
   }


   /* Center align outcome and benefit grids */
   .outcomes-grid,
   .benefits-grid {
       justify-content: center;
       max-width: 900px;
       margin: 0 auto;
   }
}


@media (max-width: 768px) {
   .section-title {
       font-size: 2.25rem;
   }


   .hero-title {
       font-size: 1.85rem;
       word-break: normal;
       overflow-wrap: break-word;
   }


   .cta-banner-premium {
       flex-direction: column;
       text-align: center;
       padding: 40px 20px;
   }


   .cta-info-side {
       padding: 20px;
   }


   .cta-image-side {
       display: none;
   }


   .benefit-card {
       width: 100%;
   }


   .hero-floating-img {
       max-width: 320px;
   }
}


/* CARD INNER CONTENT TWEAKS */
.cloud-card-desc {
   /* font-size: 0.95rem !important;
   line-height: 1.6 !important;
   color: var(--text-gray);*/


   font-size: 1rem;
   color: #505050;
   line-height: 1.7;
   font-weight: 300;
   padding-top: 8px;
}


/* Tablet view adjustments for Why Choose section */
@media (max-width: 1200px) {
   .why-choose-section .benefits-grid {
       grid-template-columns: repeat(4, 1fr);
       gap: 24px;
       justify-content: center;
   }
}


@media (max-width: 768px) {
   .why-choose-section .benefits-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 24px;
       justify-content: center;


   }
}


@media (max-width: 425px) {
   .why-choose-section .benefits-grid {
       grid-template-columns: repeat(1, 1fr);
       gap: 24px;
       justify-content: center;


   }
}

