html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
 html {
        visibility: hidden;
    }
    html.loaded {
        visibility: visible;
    }

*, *::before, *::after {
  box-sizing: border-box;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
}

.text-gradient {
  background: linear-gradient(to right, #2563eb, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-red {
  background: linear-gradient(to right, #ef4444, #ec4899, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-gray {
  background: linear-gradient(to right, #ffffff, #F5F5F5, #CCCCCC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.3); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes blob {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
  30% { transform: translateY(-15px) translateX(15px) scale(1.05); }
  60% { transform: translateY(15px) translateX(-15px) scale(0.95); }
  90% { transform: translateY(-5px) translateX(5px) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes border-draw {
  0% {
    background-size: 0% 4px, 4px 0%, 0% 4px, 4px 0%;
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
  }
  100% {
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
  }
}

@keyframes ribbon-grow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

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

.animate-slide-up {
  animation: slide-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-progress {
  animation: progress 1.5s ease-out forwards;
}

.animate-pulse-ring:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.2);
  animation: pulse-ring 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.animate-spin-slow {
  animation: spin-slow 12s linear infinite;
}

.animate-gentle-bounce {
  animation: gentle-bounce 3s ease-in-out infinite;
}

.animate-blob {
  animation: blob 8s infinite cubic-bezier(0.6, 0.01, 0.4, 1);
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.glow-text {
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }
.delay-900 { animation-delay: 900ms; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fixed-nav.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.relative.z-10 {
  position: relative;
  z-index: 10;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-hover-effect {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  min-height: 300px;
}

.vision-card-border {
  border-top: 5px solid;
  border-image: linear-gradient(to right, #3b82f6, #6366f1, #8b5cf6) 1;
}

.animated-card-border-wrapper {
  position: relative;
  padding: 4px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
}

.animated-card-border-wrapper.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.animated-card-border-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background:
    linear-gradient(to right, #3b82f6, #06b6d4),
    linear-gradient(to bottom, #3b82f6, #6366f1),
    linear-gradient(to left, #06b6d4, #3b82f6),
    linear-gradient(to top, #6366f1, #06b6d4);
  background-repeat: no-repeat;
  background-size: 0% 4px, 4px 0%, 0% 4px, 4px 0%;
  background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
  background-origin: border-box;
  background-clip: border-box;
  transition: animation 0s linear;
}

.animated-card-border-wrapper.aos-animate::before {
  animation: border-draw 2s ease-out forwards;
}

.animated-card-border-wrapper:not(.aos-animate)::before {
  animation: none;
}

.animated-card-border-wrapper > div {
  position: relative;
  z-index: 1;
}

.animated-ribbon, .animated-ribbon-red {
  transform: scaleX(0);
  transform-origin: center;
  animation: ribbon-grow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.8s;
  position: relative;
  overflow: visible;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.animated-ribbon {
  background: linear-gradient(to right, #2563eb, #3b82f6, #6366f1, #8b5cf6);
}

.animated-ribbon-red {
  background: linear-gradient(to right, #ef4444, #ec4899, #f97316);
}

.animated-ribbon::before,
.animated-ribbon::after,
.animated-ribbon-red::before,
.animated-ribbon-red::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1rem;
  height: 100%;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.animated-ribbon::before,
.animated-ribbon-red::before {
  left: -0.5rem;
  transform: skewX(-20deg);
  transform-origin: bottom right;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
 .footer-link {
        transition: color 0.3s, transform 0.3s;
    }
    .footer-link:hover {
        transform: translateX(3px);
    }
    .social-icon i {
        transition: transform 0.3s;
    }

    
.animated-ribbon::after,
.animated-ribbon-red::after {
  right: -0.5rem;
  transform: skewX(20deg);
  transform-origin: bottom left;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.animated-ribbon::before {
  background: linear-gradient(to right, #2563eb, #3b82f6);
}

.animated-ribbon::after {
  background: linear-gradient(to left, #8b5cf6, #6366f1);
}

.animated-ribbon-red::before {
  background: linear-gradient(to right, #b91c1c, #ef4444);
}

.animated-ribbon-red::after {
  background: linear-gradient(to left, #c2410c, #f97316);
}

.bg-promotors-pattern {
  background-image: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
  background-color: #F8FAFC;
}

.bg-venture-pattern {
  background-image: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
  background-color: #0F172A;
}

.bg-future-pattern {
  background-image: url('https://www.transparenttextures.com/patterns/criss-cross-dots.png');
  background-color: #F8FAFC;
}

.bg-vision-section {
  background: linear-gradient(to bottom right, #f0f9ff, #e0f2fe);
  position: relative;
  overflow: hidden;
}

.bg-vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/map.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.dark .bg-vision-section {
  background: linear-gradient(to bottom right, #0f172a, #1e293b);
}

.dark .bg-vision-section::before {
  opacity: 0.1;
}

.dark .bg-venture-pattern {
  background-color: #1e293b;
}

.dark .bg-future-pattern {
  background-color: #0f172a;
}

input:focus, textarea:focus, button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.image-style-side {
  float: right;
  margin: 0 0 1em 0;
  max-width: 46% !important;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.hero-video-section {
  height: calc(100vh - var(--nav-height));
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.video-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

.video-slide:not(.active) {
  opacity: 0;
  z-index: 0;
}

.venture-card-img {
  object-fit: contain;
  padding: 0.5rem;
}

.img-glow-effect:hover {
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.7);
}

.specialty-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.testimonial-carousel {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  line-height: 1.8;
}

.about h2 {
  font-size: 2.2rem !important;
  font-weight: 800;
  color: #111827;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.about h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #4f46e5;
  margin-top: 0.5rem;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.about h2:hover::after {
  width: 100px;
}

.about h3,
.about h4 {
  display: inline-block;
  position: relative;
  padding: 0.1rem 1rem;
  font-weight: 700;
  font-size: 1.1rem !important;
  color: #ffffff;
  background: linear-gradient(135deg, #10868a, #666666);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  z-index: 1;
}

.about h3::before,
.about h4::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 15px solid #10868a;
  z-index: 0;
}

.about h3::after,
.about h4::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 15px solid #666666;
  z-index: 0;
}

.about h3,
.about h4 {
  line-height: 2.5rem;
  border-radius: 4px;
}

.about h3:hover,
.about h4:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.about p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #374151;
  line-height: 1.8;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.about a {
  color: #4f46e5;
  text-decoration: underline;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about a:hover {
  color: #4338ca;
  transform: translateY(-2px);
}

.about ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about li:hover::before {
  transform: scale(1.3);
  color: #2563eb;
}

.about li:hover {
  transform: translateX(2px);
  color: #111827;
}

.about li ul,
.about li ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.about blockquote {
  border-left: 4px solid #4f46e5;
  padding-left: 1rem;
  color: #6b7280;
  font-style: italic;
  margin: 1.5rem 0;
  background-color: #f9fafb;
  border-radius: 4px;
}

.about img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.about img:hover {
  transform: scale(1.03);
}

.about [data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: transform, opacity;
}

.about [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos] {
  transition-property: opacity, transform;
  opacity: 0;
}

[data-aos="fade-up"] {
  transform: translateY(20px);
}

[data-aos="fade-down"] {
  transform: translateY(-20px);
}

[data-aos="fade-left"] {
  transform: translateX(20px);
}

[data-aos="fade-right"] {
  transform: translateX(-20px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  transform: translate(0) scale(1);
  opacity: 1;
}

.h-128 {
  height: 50rem;
}

.about-banner {
  height: 550px;
}

.border-gradient-left {
  border-left: 5px solid;
  border-image: linear-gradient(to bottom, #3b82f6, #06b6d4) 1;
}

.border-gradient-right {
  border-right: 5px solid;
  border-image: linear-gradient(to bottom, #3b82f6, #06b6d4) 1;
}

.section-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.slide-indicator.active {
  background-color: white;
  transform: scale(1.2);
}

.sub_title h2 {
  margin-top: 1rem !important;
  margin-bottom: 0.5rem !important;
}

.sub_title p {
  margin-bottom: 0rem !important;
  margin-top: 0rem !important;
  font-size: 1rem !important;
}

.page-content h2, .page-content h3 {
  margin-bottom: 0.5rem !important;
}

.details p {
  font-weight: 500;
  font-size: 1.1rem;
}

.chairman-text p {
  padding: 10px;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: block;
  }
}

@media (min-width: 768px) {
  .about h2 {
    font-size: 2.75rem;
  }

  .about h3 {
    font-size: 1.8rem;
  }

  .about h4 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 1.25rem;
  }

  .about li {
    font-size: 1.2rem;
  }

  .about li::before {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .about h2 {
    font-size: 3rem;
  }

  .about h3 {
    font-size: 2rem;
  }

  .about h4 {
    font-size: 1.75rem;
  }

  .about p {
    font-size: 1.35rem;
  }

  .about li {
    font-size: 1.25rem;
  }

  .about li::before {
    font-size: 1.9rem;
  }
}