/* Base Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #ff6b00;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-width: 200px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn, .btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 20px;
}

.logo img {
    padding-top: 35px;
    height: 165px;
    width: auto;
    transition: all;
    padding-left: 35px;
   
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover:after,
.nav-list a.active:after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Modern Carousel Styles */
.modern-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 90px;
    min-height: 400px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.carousel-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 51, 102, 0.6) 100%);
}

.carousel-content {
    position: relative;
    z-index: 10;
    color: var(--white-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 200px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.carousel-slide.active .carousel-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.slide-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 20;
    transform: translateY(-50%);
}

.carousel-prev, .carousel-next {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.indicator.active {
    background: transparent;
}

.indicator.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-color);
    opacity: 0;
    transition: var(--transition);
}

.indicator.active::after {
    opacity: 1;
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s linear;
}

/* Industries Section Styles */
/* Industries Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.industries-section {
  padding: 100px 5%;
  background: white;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.industries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(0, 120, 255, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 10% 80%),
    radial-gradient(circle at 10% 80%, rgba(30, 144, 255, 0.06) 0%, transparent 25%);
  z-index: 1;
}

/* Header with blue gradients */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.title-main {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.1;
  background: linear-gradient(90deg, #1b6cf2, #2f9bff, #6bc1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(30, 110, 255, 0.15));
}

.title-sub {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #0d47a1, #2196f3, #64b5f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header h2::after {
  content: '';
  margin-top: 10px;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2196f3, #64b5f6);
  border-radius: 10px;
}

/* Grid */
.industries-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Card */
.industry-card {
  position: relative;
  height: 320px;
  perspective: 1200px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.industry-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; /* Safari */
}

/* Front */
.card-front {
  color: #fff;
  background-size: cover;
  background-position: center;
  transform: translateZ(1px);
}

.card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  transition: background 0.3s ease;
  border-radius: inherit;
}

.industry-card:hover .card-front::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  text-align: left;
}

.text-container {
  width: 100%;
}

.card-front h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  position: relative;
  display: inline-block;
}

.card-front h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #fff;
  transition: width 0.3s ease;
}

.industry-card:hover .card-front h3::after {
  width: 70px;
}

/* Back */
.card-back {
  background: #ffffff;
  color: #263238;
  transform: rotateY(180deg) translateZ(1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-back-content {
  width: 100%;
}

.card-back h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a365d;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.card-back h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2196f3, #64b5f6);
  border-radius: 3px;
}

.card-back p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
}

.learn-more {
  color: #1976d2;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
}

.learn-more::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1976d2;
  transition: width 0.3s ease;
}

.learn-more:hover {
  color: #0d47a1;
}

.learn-more:hover::after {
  width: 100%;
}

.learn-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (min-width: 4000px) {
  .industries-section {
    padding: 150px 5%;
  }
  
  .industries-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 3800px;
  }
  
  .industry-card {
    height: 500px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 2.5rem;
  }
  
  .card-back p {
    font-size: 1.8rem;
  }
  
  .learn-more {
    font-size: 1.8rem;
  }
  
  .title-main {
    font-size: 3.5rem;
  }
  
  .title-sub {
    font-size: 2rem;
  }
}

@media (max-width: 3000px) {
  .industries-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    max-width: 2800px;
  }
  
  .industry-card {
    height: 450px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 2.2rem;
  }
  
  .card-back p {
    font-size: 1.5rem;
  }
  
  .learn-more {
    font-size: 1.5rem;
  }
  
  .title-main {
    font-size: 3rem;
  }
  
  .title-sub {
    font-size: 1.8rem;
  }
}

@media (max-width: 2000px) {
  .industries-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1800px;
  }
  
  .industry-card {
    height: 400px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 2rem;
  }
  
  .card-back p {
    font-size: 1.3rem;
  }
  
  .learn-more {
    font-size: 1.3rem;
  }
  
  .title-main {
    font-size: 2.8rem;
  }
  
  .title-sub {
    font-size: 1.6rem;
  }
}

@media (max-width: 1600px) {
  .industries-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
  }
  
  .industry-card {
    height: 350px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.8rem;
  }
  
  .card-back p {
    font-size: 1.1rem;
  }
  
  .learn-more {
    font-size: 1.1rem;
  }
  
  .title-main {
    font-size: 2.5rem;
  }
  
  .title-sub {
    font-size: 1.4rem;
  }
}

@media (max-width: 1200px) {
  .industries-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
  }
  
  .industry-card {
    height: 320px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.6rem;
  }
  
  .card-back p {
    font-size: 1rem;
  }
  
  .learn-more {
    font-size: 1rem;
  }
  
  .title-main {
    font-size: 2.2rem;
  }
  
  .title-sub {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .industries-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .industry-card {
    height: 300px;
  }
  
  .title-main {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 80px 5%;
  }
  
  .industries-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .industry-card {
    height: 280px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-back {
    padding: 25px;
  }
  
  .title-main {
    font-size: 1.8rem;
  }
  
  .title-sub {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 60px 5%;
  }
  
  .industry-card {
    height: 250px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.4rem;
  }
  
  .card-back p {
    font-size: 0.9rem;
  }
  
  .learn-more {
    font-size: 0.9rem;
  }
  
  .title-main {
    font-size: 1.6rem;
  }
  
  .title-sub {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .industry-card {
    height: 220px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-back {
    padding: 20px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.2rem;
  }
  
  .title-main {
    font-size: 1.4rem;
  }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-logo {
    height: 140px;
    margin-bottom: 20px;
    max-height: 100px;
    width: auto;
}

.footer-col p {
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (min-width: 5000px) {
    .container {
        max-width: 4800px;
    }
    
    .slide-title {
        font-size: 6rem;
    }
    
    .slide-description {
        font-size: 2.5rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 25px 50px;
        font-size: 1.8rem;
    }
    
    .industries-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 40px;
    }
    
    .industry-card {
        height: 500px;
    }
    
    .card-front h3, 
    .card-back h3 {
        font-size: 2.5rem;
    }
    
    .card-back p {
        font-size: 1.8rem;
    }
    
    .learn-more {
        font-size: 1.8rem;
        padding: 20px 30px;
    }
}

@media (max-width: 4000px) {
    .container {
        max-width: 3800px;
    }
    
    .slide-title {
        font-size: 5rem;
    }
    
    .slide-description {
        font-size: 2rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 22px 45px;
        font-size: 1.5rem;
    }
    
    .industries-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 35px;
    }
    
    .industry-card {
        height: 450px;
    }
    
    .card-front h3, 
    .card-back h3 {
        font-size: 2.2rem;
    }
    
    .card-back p {
        font-size: 1.5rem;
    }
    
    .learn-more {
        font-size: 1.5rem;
        padding: 18px 28px;
    }
}

@media (max-width: 3000px) {
    .container {
        max-width: 2800px;
    }
    
    .slide-title {
        font-size: 4rem;
    }
    
    .slide-description {
        font-size: 1.6rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 20px 40px;
        font-size: 1.3rem;
    }
    
    .industries-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .industry-card {
        height: 400px;
    }
    
    .card-front h3, 
    .card-back h3 {
        font-size: 2rem;
    }
    
    .card-back p {
        font-size: 1.3rem;
    }
    
    .learn-more {
        font-size: 1.3rem;
        padding: 16px 26px;
    }
}

@media (max-width: 2000px) {
    .container {
        max-width: 1800px;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-description {
        font-size: 1.4rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .industries-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .industry-card {
        height: 350px;
    }
    
    .card-front h3, 
    .card-back h3 {
        font-size: 1.8rem;
    }
    
    .card-back p {
        font-size: 1.1rem;
    }
    
    .learn-more {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
}

@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
        padding-top: 70px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .industries-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .industry-card {
        height: 320px;
    }
    
    .card-front h3, 
    .card-back h3 {
        font-size: 1.6rem;
    }
    
    .card-back p {
        font-size: 1rem;
    }
    
    .learn-more {
        font-size: 1rem;
        padding: 12px 22px;
    }
}

@media (max-width: 1200px) {
    .industries-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .carousel-nav {
        padding: 0 15px;
    }
    
    .carousel-prev, .carousel-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .modern-carousel {
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.4rem;
    }
    
    .industries-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }

    .title-main {
        font-size: 1.8rem;
    }

    .title-sub {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 80px;
    }
    
    .logo img {
        height: 165px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .modern-carousel {
        height: 70vh;
        margin-top: 80px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-indicators {
        bottom: 30px;
    }
    
    .industries-container {
        grid-template-columns: 1fr;
    }

    .industry-card {
        height: 250px;
    }

    .card-front h3,
    .card-back h3 {
        font-size: 20px;
    }

    .card-content {
        padding: 10px;
    }

    .learn-more {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .modern-carousel {
        height: 60vh;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .carousel-content {
        padding: 0 15px;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .industries-section {
        padding: 70px 5%;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }

    .industry-card {
        height: 220px;
    }

    .card-front h3,
    .card-back h3 {
        font-size: 18px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .logo img {
        height: 120px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }

    .industry-card {
        height: 200px;
    }

    .card-front h3,
    .card-back h3 {
        font-size: 16px;
    }
    
    .card-back p {
        font-size: 0.9rem;
    }
    
    .learn-more {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 300px) {
    .logo img {
        height: 100px;
    }
    
    .slide-title {
        font-size: 1.4rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
    }
    
    .btn, .btn-primary, .btn-outline {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1rem;
    }
    
    .title-main {
        font-size: 1.2rem;
    }
    
    .title-sub {
        font-size: 0.9rem;
    }
    
    .industry-card {
        height: 180px;
    }
    
    .card-front h3,
    .card-back h3 {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .card-back p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .learn-more {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Mobile menu animation */
.nav-list.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-list.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-list.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/*Business section*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.area-business-section {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: #e6f1ff;
  padding: 5rem 1rem;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  isolation: isolate;
  width: 100%;
  box-sizing: border-box;
}

.area-business-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #64ffda;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #64ffda;
}

/* Navigation */
.business-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.nav-item {
  background: transparent;
  color: #8892b0;
  border: 1px solid #64ffda;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-item:hover {
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
}

.nav-item.active {
  background: #64ffda;
  color: #0a192f;
}

/* Content Panels */
.business-content {
  position: relative;
  min-height: 400px;
}

.business-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.business-panel.active {
  display: block;
}

.panel-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.text-content {
  flex: 2;
  min-width: 300px;
}

.text-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #64ffda;
}

.icon-content {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-icon {
  width: 120px;
  height: 120px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #64ffda;
  font-size: 3rem;
  border: 2px solid #64ffda;
}

/* Features */
.features-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature-column {
  flex: 1;
  min-width: 250px;
}

.feature-column h4 {
  color: #64ffda;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(100, 255, 218, 0.3);
  padding-bottom: 0.5rem;
}

.features-full {
  width: 100%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(100, 255, 218, 0.05);
  padding-left: 10px;
}

.feature-list li i {
  margin-right: 1rem;
  color: #64ffda;
  width: 20px;
}

.centered-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-list li {
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

/* Navigation Controls */
.navigation-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.nav-btn {
  background: #64ffda;
  color: #0a192f;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: #4fd1c5;
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #64ffda;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .text-content h3 {
    font-size: 1.8rem;
  }
  
  .business-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .area-business-section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .business-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-item {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .panel-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .features-columns {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-column {
    width: 100%;
  }
  
  .business-icon {
    margin-bottom: 1.5rem;
  }
  
  .centered-list li {
    justify-content: flex-start;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .text-content h3 {
    font-size: 1.6rem;
  }
  
  .feature-column h4 {
    font-size: 1.2rem;
  }
  
  .business-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Extra large screens */
@media (min-width: 2000px) {
  .area-business-section .container {
    max-width: 1800px;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .nav-item {
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
  }
  
  .text-content h3 {
    font-size: 2.5rem;
  }
  
  .feature-column h4 {
    font-size: 1.8rem;
  }
  
  .feature-list li {
    font-size: 1.2rem;
    padding: 1.2rem 0;
  }
  
  .business-icon {
    width: 180px;
    height: 180px;
    font-size: 4rem;
  }
  
  .nav-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .dot {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 3000px) {
  .area-business-section .container {
    max-width: 2400px;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .text-content h3 {
    font-size: 3rem;
  }
  
  .feature-column h4 {
    font-size: 2.2rem;
  }
  
  .feature-list li {
    font-size: 1.5rem;
  }
  
  .business-icon {
    width: 220px;
    height: 220px;
    font-size: 5rem;
  }
}

@media (min-width: 4000px) {
  .area-business-section .container {
    max-width: 3200px;
  }
  
  .section-title {
    font-size: 5rem;
  }
  
  .text-content h3 {
    font-size: 3.5rem;
  }
  
  .feature-column h4 {
    font-size: 2.5rem;
  }
  
  .feature-list li {
    font-size: 1.8rem;
  }
  
  .business-icon {
    width: 280px;
    height: 280px;
    font-size: 6rem;
  }
  
  .nav-btn {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }
  
  .dot {
    width: 20px;
    height: 20px;
  }
}
/* Purpose section */
/* Geometric Purpose Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

.geometric-purpose-section {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-family: 'Urbanist', sans-serif;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
/* Mobile-specific fixes for card flips */
@media (max-width: 767px) {
  .industry-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .card-inner {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.geometric-purpose-section .gps-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.geometric-purpose-section .gps-geometric-shape {
    position: absolute;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    opacity: 0.1;
    z-index: 1;
    transition: all 0.8s ease;
}

.geometric-purpose-section .gps-shape-1 {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 15%;
    left: 10%;
    animation: gps-float1 20s ease-in-out infinite;
}

.geometric-purpose-section .gps-shape-2 {
    width: 180px;
    height: 180px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    bottom: 20%;
    right: 10%;
    animation: gps-float2 25s ease-in-out infinite;
}

.geometric-purpose-section .gps-shape-3 {
    width: 100px;
    height: 100px;
    clip-path: circle(50% at 50% 50%);
    top: 65%;
    left: 65%;
    animation: gps-float3 15s ease-in-out infinite;
}

.geometric-purpose-section .gps-shape-4 {
    width: 150px;
    height: 150px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    top: 20%;
    right: 20%;
    animation: gps-float4 30s ease-in-out infinite;
}

.geometric-purpose-section .gps-shape-5 {
    width: 130px;
    height: 130px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    bottom: 10%;
    left: 20%;
    animation: gps-float5 22s ease-in-out infinite;
}

@keyframes gps-float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 25px) rotate(240deg); }
}

@keyframes gps-float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 15px) rotate(120deg); }
    66% { transform: translate(25px, -30px) rotate(240deg); }
}

@keyframes gps-float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -15px) scale(1.1); }
}

@keyframes gps-float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 25px) rotate(180deg); }
}

@keyframes gps-float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 15px) rotate(180deg); }
}

.geometric-purpose-section .gps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.geometric-purpose-section .gps-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.geometric-purpose-section .gps-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.geometric-purpose-section .gps-title-wrapper {
    display: inline-block;
    position: relative;
}

.geometric-purpose-section .gps-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: #f8fafc;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.geometric-purpose-section .gps-title-underline {
    height: 4px;
    width: 120px;
    background: rgba(99, 102, 241, 0.3);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.geometric-purpose-section .gps-underline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    border-radius: 2px;
    animation: gps-progress 3s ease-in-out infinite;
}

@keyframes gps-progress {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

.geometric-purpose-section .gps-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}

.geometric-purpose-section .gps-text-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease 0.2s;
}

.geometric-purpose-section .gps-text-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.geometric-purpose-section .gps-text-card {
    background: rgba(30, 41, 59, 0.5);
    border-left: 4px solid #4361ee;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
}

.geometric-purpose-section .gps-text-card:hover {
    transform: translateX(10px);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.geometric-purpose-section .gps-text-icon {
    font-size: 1.5rem;
    color: #4361ee;
    margin-right: 15px;
    flex-shrink: 0;
}

.geometric-purpose-section .gps-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.geometric-purpose-section .gps-highlight {
    background: linear-gradient(120deg, rgba(67, 97, 238, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
    padding: 0 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #818cf8;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.geometric-purpose-section .gps-highlight::before {
    content: attr(data-text);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #818cf8;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.geometric-purpose-section .gps-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.geometric-purpose-section .gps-highlight:hover {
    background: linear-gradient(120deg, rgba(67, 97, 238, 0.3) 0%, rgba(114, 9, 183, 0.3) 100%);
    color: #e0e7ff;
}

.geometric-purpose-section .gps-highlight:hover::before {
    opacity: 1;
    visibility: visible;
    top: -45px;
}

.geometric-purpose-section .gps-highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.geometric-purpose-section .gps-visual-element {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.4s;
}

.geometric-purpose-section .gps-visual-element.visible {
    opacity: 1;
    transform: translateX(0);
}

.geometric-purpose-section .gps-geometric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.geometric-purpose-section .gps-grid-item {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.geometric-purpose-section .gps-grid-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 97, 238, 0.3);
}

.geometric-purpose-section .gps-grid-icon {
    margin-bottom: 15px;
}

.geometric-purpose-section .gps-icon-shape {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.geometric-purpose-section .gps-grid-item:hover .gps-icon-shape {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.geometric-purpose-section .gps-grid-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: #f8fafc;
    margin-bottom: 8px;
    font-weight: 600;
}

.geometric-purpose-section .gps-grid-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

.geometric-purpose-section .gps-quote-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.6s;
}

.geometric-purpose-section .gps-quote-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.geometric-purpose-section .gps-quote-card {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.geometric-purpose-section .gps-quote-mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    color: #4361ee;
    line-height: 1;
    margin-bottom: 15px;
}

.geometric-purpose-section .gps-quote-text {
    font-size: 1.4rem;
    font-style: italic;
    font-family: 'Space Grotesk', sans-serif;
    color: #e2e8f0;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.geometric-purpose-section .gps-quote-line {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    margin: 0 auto;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .geometric-purpose-section .gps-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .geometric-purpose-section .gps-geometric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geometric-purpose-section {
        padding: 60px 20px;
    }
    
    .geometric-purpose-section .gps-title {
        font-size: 2.2rem;
    }
    
    .geometric-purpose-section .gps-text {
        font-size: 1rem;
    }
    
    .geometric-purpose-section .gps-geometric-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .geometric-purpose-section .gps-quote-card {
        padding: 30px;
    }
    
    .geometric-purpose-section .gps-quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 500px) {
    .geometric-purpose-section {
        padding: 50px 15px;
    }
    
    .geometric-purpose-section .gps-title {
        font-size: 1.9rem;
    }
    
    .geometric-purpose-section .gps-header {
        margin-bottom: 50px;
    }
    
    .geometric-purpose-section .gps-text-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .geometric-purpose-section .gps-text-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .geometric-purpose-section .gps-grid-item {
        padding: 20px 15px;
    }
    
    .geometric-purpose-section .gps-icon-shape {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .geometric-purpose-section .gps-quote-card {
        padding: 25px;
    }
    
    .geometric-purpose-section .gps-quote-text {
        font-size: 1.1rem;
    }
    
    .geometric-purpose-section .gps-geometric-shape {
        display: none;
    }
}

@media (max-width: 300px) {
    .geometric-purpose-section .gps-title {
        font-size: 1.7rem;
    }
    
    .geometric-purpose-section .gps-text {
        font-size: 0.95rem;
    }
    
    .geometric-purpose-section .gps-grid-item h3 {
        font-size: 1.1rem;
    }
    
    .geometric-purpose-section .gps-grid-item p {
        font-size: 0.85rem;
    }
}

/* Extra large screens */
@media (min-width: 2000px) {
    .geometric-purpose-section {
        max-width: 1600px;
        margin: 0 auto;
        padding: 100px 40px;
    }
    
    .geometric-purpose-section .gps-container {
        max-width: 1400px;
    }
    
    .geometric-purpose-section .gps-title {
        font-size: 4rem;
    }
    
    .geometric-purpose-section .gps-text {
        font-size: 1.4rem;
    }
    
    .geometric-purpose-section .gps-icon-shape {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .geometric-purpose-section .gps-grid-item h3 {
        font-size: 1.6rem;
    }
    
    .geometric-purpose-section .gps-grid-item p {
        font-size: 1.1rem;
    }
    
    .geometric-purpose-section .gps-quote-text {
        font-size: 2rem;
    }
}

@media (min-width: 3000px) {
    .geometric-purpose-section {
        max-width: 2200px;
        padding: 120px 60px;
    }
    
    .geometric-purpose-section .gps-container {
        max-width: 2000px;
    }
    
    .geometric-purpose-section .gps-title {
        font-size: 5rem;
    }
    
    .geometric-purpose-section .gps-text {
        font-size: 1.8rem;
    }
    
    .geometric-purpose-section .gps-icon-shape {
        width: 130px;
        height: 130px;
        font-size: 3rem;
    }
    
    .geometric-purpose-section .gps-grid-item h3 {
        font-size: 2rem;
    }
    
    .geometric-purpose-section .gps-grid-item p {
        font-size: 1.4rem;
    }
    
    .geometric-purpose-section .gps-quote-text {
        font-size: 2.5rem;
    }
}

@media (min-width: 4000px) {
    .geometric-purpose-section {
        max-width: 3200px;
        padding: 150px 80px;
    }
    
    .geometric-purpose-section .gps-container {
        max-width: 3000px;
    }
    
    .geometric-purpose-section .gps-title {
        font-size: 6.5rem;
    }
    
    .geometric-purpose-section .gps-text {
        font-size: 2.2rem;
    }
    
    .geometric-purpose-section .gps-icon-shape {
        width: 180px;
        height: 180px;
        font-size: 4rem;
    }
    
    .geometric-purpose-section .gps-grid-item h3 {
        font-size: 2.5rem;
    }
    
    .geometric-purpose-section .gps-grid-item p {
        font-size: 1.8rem;
    }
    
    .geometric-purpose-section .gps-quote-card {
        padding: 60px;
    }
    
    .geometric-purpose-section .gps-quote-text {
        font-size: 3rem;
    }
}
/* Purpose section end */

/* OUR CLIENTS */
/* Client Slider Styles - Self-contained */
.client-slider-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 0.5rem;
  margin: 1rem 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  isolation: isolate;
}

.slider-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.slider-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  position: relative;
  padding: 0 0.5rem;
}

.slider-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.client-slider {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}

.client-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin: 0.25rem;
  box-sizing: border-box;
  width: calc(50% - 0.5rem);
  height: 70px;
}

.client-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-item img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(30%);
}

.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.slider-prev, .slider-next {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.slider-prev:hover, .slider-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #667eea;
  transform: scale(1.2);
}

/* Responsive Design */
/* Extra small devices (phones, 200px and up) */
@media (min-width: 200px) {
  .client-item {
    width: calc(100% - 0.5rem);
    height: 60px;
    margin: 0.25rem;
  }
  
  .slider-controls {
    gap: 0.75rem;
  }
  
  .slider-prev, .slider-next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Small devices (phones, 400px and up) */
@media (min-width: 400px) {
  .client-item {
    width: calc(50% - 0.5rem);
    height: 70px;
  }
}

/* Medium devices (tablets, 600px and up) */
@media (min-width: 600px) {
  .client-item {
    width: calc(33.333% - 0.5rem);
    height: 80px;
  }
  
  .slider-title {
    font-size: 1.75rem;
  }
}

/* Large devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .client-item {
    width: calc(25% - 0.5rem);
    height: 90px;
  }
  
  .client-slider-section {
    padding: 2.5rem 1rem;
  }
  
  .slider-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Desktop devices (992px and up) */
@media (min-width: 992px) {
  .client-item {
    width: calc(20% - 0.5rem);
    height: 100px;
  }
  
  .slider-container {
    max-width: 960px;
  }
}

/* Large desktop devices (1200px and up) */
@media (min-width: 1200px) {
  .client-item {
    width: calc(16.666% - 0.5rem);
    height: 110px;
  }
  
  .slider-container {
    max-width: 1140px;
  }
}

/* Extra large devices (1500px and up) */
@media (min-width: 1500px) {
  .client-item {
    width: calc(14.285% - 0.5rem);
    height: 120px;
  }
  
  .slider-container {
    max-width: 1400px;
  }
}

/* Massive screens (2500px and up) */
@media (min-width: 2500px) {
  .client-item {
    width: calc(12.5% - 0.5rem);
    height: 130px;
  }
  
  .slider-container {
    max-width: 2400px;
  }
  
  .slider-title {
    font-size: 2.5rem;
  }
}

/* Ultra massive screens (5000px and up) */
@media (min-width: 5000px) {
  .client-item {
    width: calc(10% - 0.5rem);
    height: 150px;
  }
  
  .slider-container {
    max-width: 4800px;
  }
  
  .slider-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
  
  .slider-prev, .slider-next {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .slider-dot {
    width: 14px;
    height: 14px;
  }
}