/* ===================================
   INDEX/HOMEPAGE - ALL STYLES IN ONE FILE
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  background: url('../assets/image/mimsan.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-top: 20px;
}

.container {
  height: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 92, 154, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 123, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.hero-text {
  color: var(--white);
  text-align: left;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text h1 .highlight {
  color: var(--white);
}

.hero-text h2 {
  color: var(--white);
  opacity: 0.95;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Hero Section for Homepage */
.home-hero .hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.home-hero .hero-text p {
  text-align: justify;
  font-size: 16px;
  color: #dadada;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 16px;
  background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
  color: white;
  transition: all 0.3s ease;
}

/* Hero section buttons - keep original white background */
.hero-section .btn-primary,
.hero-buttons .btn-primary {
  background: var(--white);
  color: var(--primary-navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section .btn-primary::before,
.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.hero-section .btn-primary:hover::before,
.hero-buttons .btn-primary:hover::before {
  left: 100%;
}

.hero-section .btn-primary:hover,
.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

.btn-secondary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-secondary:hover {
  color: var(--primary-navy);
}

/* ===================================
   ANIMATED SHAPES & ANIMATIONS
   =================================== */
.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.08;
}

.shape-1 {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: float-bubble-1 25s infinite ease-in-out;
}

.shape-2 {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  border-radius: 10px;
  top: 60%;
  left: 15%;
  animation: float-bubble-2 30s infinite ease-in-out;
  transform: rotate(45deg);
}

.shape-3 {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  top: 40%;
  left: 80%;
  animation: float-bubble-3 20s infinite ease-in-out;
}

.shape-4 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
  border-radius: 50%;
  top: 10%;
  left: 70%;
  animation: float-bubble-4 28s infinite ease-in-out;
}

.shape-5 {
  width: 35px;
  height: 35px;
  background: var(--light-blue);
  border-radius: 8px;
  top: 75%;
  left: 85%;
  animation: float-bubble-5 22s infinite ease-in-out;
}

.shape-6 {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  top: 30%;
  left: 45%;
  animation: float-bubble-6 26s infinite ease-in-out;
}

.shape-7 {
  width: 35px;
  height: 35px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 15%;
  left: 30%;
  animation: float-bubble-1 22s infinite ease-in-out;
}

.shape-8 {
  width: 42px;
  height: 42px;
  background: var(--accent-blue);
  border-radius: 8px;
  top: 55%;
  left: 50%;
  animation: float-bubble-2 27s infinite ease-in-out;
}

.shape-9 {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  top: 70%;
  left: 25%;
  animation: float-bubble-3 24s infinite ease-in-out;
}

.shape-10 {
  width: 38px;
  height: 38px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 25%;
  left: 65%;
  animation: float-bubble-4 29s infinite ease-in-out;
}

.shape-11 {
  width: 32px;
  height: 32px;
  background: var(--accent-blue);
  border-radius: 6px;
  top: 50%;
  left: 90%;
  animation: float-bubble-5 21s infinite ease-in-out;
  transform: rotate(30deg);
}

.shape-12 {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  top: 85%;
  left: 60%;
  animation: float-bubble-6 23s infinite ease-in-out;
}

/* Floating Animations */
@keyframes float-bubble-1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.08;
  }

  25% {
    transform: translate(30px, -50px) rotate(90deg);
    opacity: 0.15;
  }

  50% {
    transform: translate(-20px, -80px) rotate(180deg);
    opacity: 0.08;
  }

  75% {
    transform: translate(50px, -40px) rotate(270deg);
    opacity: 0.12;
  }
}

@keyframes float-bubble-2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(45deg) scale(1);
    opacity: 0.08;
  }

  33% {
    transform: translate(-40px, 60px) rotate(135deg) scale(1.1);
    opacity: 0.12;
  }

  66% {
    transform: translate(60px, 30px) rotate(225deg) scale(0.9);
    opacity: 0.15;
  }
}

@keyframes float-bubble-3 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.08;
  }

  25% {
    transform: translate(-60px, 40px);
    opacity: 0.15;
  }

  50% {
    transform: translate(-30px, 90px);
    opacity: 0.1;
  }

  75% {
    transform: translate(-80px, 50px);
    opacity: 0.12;
  }
}

@keyframes float-bubble-4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.08;
  }

  30% {
    transform: translate(40px, 70px) scale(1.15);
    opacity: 0.14;
  }

  60% {
    transform: translate(-30px, 100px) scale(0.85);
    opacity: 0.1;
  }
}

@keyframes float-bubble-5 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.08;
  }

  40% {
    transform: translate(-50px, -60px) rotate(180deg);
    opacity: 0.15;
  }

  80% {
    transform: translate(-25px, -30px) rotate(360deg);
    opacity: 0.1;
  }
}

@keyframes float-bubble-6 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.08;
  }

  20% {
    transform: translate(70px, -40px);
    opacity: 0.12;
  }

  40% {
    transform: translate(40px, -80px);
    opacity: 0.15;
  }

  60% {
    transform: translate(90px, -50px);
    opacity: 0.1;
  }

  80% {
    transform: translate(60px, -70px);
    opacity: 0.13;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated,
.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   ABOUT US SECTION
   =================================== */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 31, 68, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 92, 154, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite 4s;
}

.about-section .hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.about-section .hero-text {
  color: var(--text-dark);
}

.about-section .hero-text h2 {
  color: var(--primary-navy);
  text-shadow: none;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-section .hero-text p {
  color: var(--text-gray);
  opacity: 1;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 15px;
  text-align: justify;
}

.about-section .hero-image {
  animation: none;
}

.about-section .hero-image img {
  border-radius: 100px 100px 0 0;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 15px 50px rgba(10, 31, 68, 0.15);
  border: 6px solid var(--white);
  transition: all 0.4s ease;
  background: var(--white);
}

.about-section .hero-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.25);
  border-color: var(--accent-blue);
}

/* About Shapes */
.about-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  opacity: 0.08;
  filter: blur(0.5px);
}

.about-shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: float-bubble-1 25s infinite ease-in-out;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.about-shape-2 {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  top: 55%;
  left: 8%;
  animation: float-bubble-2 30s infinite ease-in-out;
  transform: rotate(45deg);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.about-shape-3 {
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  top: 30%;
  right: 5%;
  animation: float-bubble-3 22s infinite ease-in-out;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
}

.about-shape-4 {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  top: 5%;
  right: 15%;
  animation: float-bubble-4 28s infinite ease-in-out;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.about-shape-5 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  bottom: 10%;
  right: 8%;
  animation: float-bubble-5 24s infinite ease-in-out;
  transform: rotate(-30deg);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.about-shape-6 {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  top: 40%;
  left: 45%;
  animation: float-bubble-6 26s infinite ease-in-out;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
  padding: var(--section-padding);
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary-navy);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: var(--accent-blue);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.service-card:hover .service-icon::before {
  width: 100px;
  height: 100px;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 20px rgba(10, 31, 68, 0.3);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
}

/* ===================================
   VISION SECTION
   =================================== */
.vision-section {
  position: relative;
  padding: 90px 0;
  background: var(--light-gray);
  overflow: hidden;
}

.vision-accent {
  position: absolute;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  top: 110px;
  left: 0;
  z-index: 1;
}

.vision-section .hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: 1;
}

.section-label {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vision-section h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 520px;
}

.vision-section .hero-text h3 {
  color: #1a1a1a;
}

.vision-section .hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 560px;
  margin-bottom: 18px;
  text-align: justify;
}

.vision-section .hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 36px 0 36px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease;
}

.vision-section .hero-image img:hover {
  transform: translateY(-6px);
}

/* Vision Shapes */
.vision-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.vision-shape {
  position: absolute;
  opacity: 0.04;
  filter: blur(0.5px);
  animation-duration: 22s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.vision-shape-1 {
  width: 140px;
  height: 140px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 8%;
  left: 6%;
  animation-name: float-1;
}

.vision-shape-2 {
  width: 100px;
  height: 100px;
  background: var(--light-blue);
  border-radius: 20px;
  top: 55%;
  left: 4%;
  transform: rotate(45deg);
  animation-name: float-2;
}

.vision-shape-3 {
  width: 120px;
  height: 120px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 15%;
  right: 10%;
  animation-name: float-3;
}

.vision-shape-4 {
  width: 90px;
  height: 90px;
  background: var(--light-blue);
  border-radius: 18px;
  bottom: 22%;
  right: 8%;
  transform: rotate(-30deg);
  animation-name: float-4;
}

.vision-shape-5 {
  width: 110px;
  height: 110px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 42%;
  left: 48%;
  animation-name: float-5;
}

.vision-shape-6 {
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  bottom: 15%;
  left: 12%;
  animation-name: float-6;
}

.vision-shape-7 {
  width: 95px;
  height: 95px;
  background: var(--accent-blue);
  border-radius: 15px;
  top: 70%;
  right: 25%;
  transform: rotate(20deg);
  animation-name: float-7;
}

.vision-shape-8 {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 25%;
  left: 25%;
  animation-name: float-8;
}

.vision-shape-9 {
  width: 105px;
  height: 105px;
  background: var(--accent-blue);
  border-radius: 20px;
  bottom: 8%;
  right: 40%;
  transform: rotate(-15deg);
  animation-name: float-9;
}

.vision-shape-10 {
  width: 85px;
  height: 85px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 60%;
  right: 5%;
  animation-name: float-10;
}

/* Vision Animations */
@keyframes float-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}

@keyframes float-2 {

  0%,
  100% {
    transform: translateX(0) rotate(45deg);
  }

  50% {
    transform: translateX(30px) rotate(45deg);
  }
}

@keyframes float-3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

@keyframes float-4 {

  0%,
  100% {
    transform: translateX(0) rotate(-30deg);
  }

  50% {
    transform: translateX(-30px) rotate(-30deg);
  }
}

@keyframes float-5 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

@keyframes float-6 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(15px);
  }
}

@keyframes float-7 {

  0%,
  100% {
    transform: translateY(0) rotate(20deg);
  }

  50% {
    transform: translateY(25px) rotate(20deg);
  }
}

@keyframes float-8 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

@keyframes float-9 {

  0%,
  100% {
    transform: translateX(0) rotate(-15deg);
  }

  50% {
    transform: translateX(-25px) rotate(-15deg);
  }
}

@keyframes float-10 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/* ===================================
   SOLUTIONS SECTION
   =================================== */
.solutions-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.solution-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-card:hover img {
  transform: scale(1.05);
}

.solution-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-card h3 {
  color: var(--primary-navy);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.solution-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  flex: 1;
}

.solution-card .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  margin-top: auto;
  align-self: flex-start;
}

/* ===================================
   EXPLORE SOLUTIONS SECTION
   =================================== */
.explore-solutions-section {
  padding: 80px 0;
  background: var(--white);
}

/* ===================================
   EXPLORE SOLUTIONS SECTION
   =================================== */
.explore-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.explore-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.explore-description {
  max-width: 100%;
}

.explore-description p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.explore-button {
  display: flex;
  align-items: center;
}

.btn-view-all {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  background: #ef4444;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  white-space: nowrap;
}

.btn-view-all:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Services Grid for Explore Solutions */
.explore-solutions-section .services-grid {
  margin-top: 40px;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 32px;
  }

  .explore-header {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .explore-heading h2 {
    font-size: 36px;
  }

  .explore-description {
    text-align: center;
  }

  .explore-button {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 140px 0 60px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .home-hero .hero-text h1 {
    font-size: 28px;
  }

  .home-hero .hero-text p {
    font-size: 13px;
  }

  .hero-text h2 {
    font-size: 24px !important;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .about-section .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section .hero-image img {
    max-width: 100%;
  }

  .about-section .hero-image {
    order: -1;
  }

  .vision-section .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-section .hero-image {
    order: 1;
  }

  .vision-section .hero-text {
    order: 2;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .explore-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .explore-heading h2 {
    font-size: 32px;
  }

  .explore-description p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .home-hero .hero-text h1 {
    font-size: 24px;
  }

  .hero-text h2 {
    font-size: 20px !important;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-section h2 {
    font-size: 28px !important;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .solution-card-content {
    padding: 20px;
  }

  .explore-heading h2 {
    font-size: 28px;
  }

  .explore-description p {
    font-size: 13px;
  }

  .btn-view-all {
    padding: 12px 25px;
    font-size: 12px;
  }

  .explore-card-title {
    padding: 20px 15px;
  }

  .explore-card-title h3 {
    font-size: 18px;
  }
}