* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.05));
  animation: float 20s infinite linear;
}
.floating-shape.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-shape.shape-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation-delay: -5s;
}
.floating-shape.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: -10s;
}
.floating-shape.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation-delay: -15s;
}
.floating-shape.shape-5 {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  animation-delay: -7s;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
    opacity: 0.4;
  }
  66% {
    transform: translateY(20px) rotate(240deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.7;
  }
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.header {
  padding: 2rem 0;
  text-align: center;
  animation: fadeInDown 1s ease-out;
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  text-align: center;
}
.logo .logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .logo .logo-text {
    font-size: 2.5rem;
  }
}
.logo .logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #64748b;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .logo .logo-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.content-wrapper {
  width: 100%;
  max-width: 800px;
  text-align: center;
}
.hero {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero .hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .hero .hero-icon {
    width: 100px;
    height: 100px;
  }
}
.hero .hero-icon svg {
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .hero .hero-icon svg {
    width: 40px;
    height: 40px;
  }
}
.hero .hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}
.hero .hero-description {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero .hero-description {
    font-size: 1.1rem;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  }
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}
.services-preview {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.services-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .services-inline {
    gap: 1rem;
    flex-direction: column;
  }
}
.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.service-item:hover {
  transform: translateY(-2px);
  border-color: #2563eb;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
}
.service-item:hover .service-icon {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  transform: scale(1.1);
}
.service-item .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  color: #2563eb;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.service-item .service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .service-item .service-title {
    font-size: 1rem;
  }
}
.service-divider {
  font-size: 1.5rem;
  color: #94a3b8;
  font-weight: bold;
}
@media (max-width: 768px) {
  .service-divider {
    display: none;
  }
}
.contact-info {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-4px);
}
.contact-item:hover {
  border-color: #0ea5e9;
}
.contact-item .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  color: #0ea5e9;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-item .contact-details {
  text-align: left;
}
.contact-item .contact-details h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.contact-item .contact-details p {
  color: #64748b;
  font-size: 1rem;
}
.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: white;
  border-color: #0ea5e9;
  transform: scale(1.1);
}
.career-section {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 1.05s both;
}
.career-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.career-card:hover {
  border-color: #0ea5e9;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}
@media (max-width: 768px) {
  .career-card {
    padding: 2rem;
  }
}
.career-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.career-header .career-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-radius: 50%;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}
.career-header .career-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.career-header .career-subtitle {
  color: #0ea5e9;
  font-size: 1rem;
  font-weight: 500;
}
.career-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.career-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}
.career-description p {
  margin-bottom: 0.5rem;
}
.career-description p:last-child {
  margin-bottom: 0;
}
.career-section-block .career-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 1rem;
}
.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.career-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #64748b;
  line-height: 1.6;
}
.career-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.6;
}
.career-list li:last-child {
  margin-bottom: 0;
}
.company-info {
  animation: fadeInUp 1s ease-out 1.35s both;
}
.company-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-card {
    padding: 2rem;
  }
}
.company-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.company-header .company-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.company-header .company-registration {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}
.company-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.company-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.company-detail-item .detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}
.company-detail-item .detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.company-detail-item .detail-content .detail-label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
}
.company-detail-item .detail-content .detail-value {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .company-detail-item .detail-content .detail-label,
  .company-detail-item .detail-content .detail-value {
    font-size: 0.9rem;
  }
}
.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  animation: fadeInUp 1s ease-out 1.5s both;
}
.footer .footer-content p {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.footer .footer-content p:last-child {
  margin-bottom: 0;
}
.footer .footer-content .footer-note {
  font-size: 0.9rem;
  font-style: italic;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .main-content {
    padding: 1rem 0;
  }
  .hero {
    margin-bottom: 3rem;
  }
  .services-preview,
  .contact-info {
    margin-bottom: 3rem;
  }
  .service-card,
  .contact-item,
  .status-card {
    padding: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .floating-shape {
    animation: none;
  }
  .hero-icon {
    animation: none;
  }
  .status-icon {
    animation: none;
  }
}
@media print {
  .background-animation {
    display: none;
  }
  .container {
    max-width: none;
    padding: 0;
  }
}
