@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}
:root {
    --primary-blue: #0d6efd;
    --dark-blue: #043873;
    --darker-blue: #0a58ca;
    --light-gray: #f8f9fa;
    --dark-gray: #212529;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background-color: #043873;
    padding-bottom: 80px;
    background-image: url("../img/Element.png");
    background-repeat: no-repeat;
    background-position: center 50%; /* Centers the image vertically and horizontally */
    background-size: auto 60%; /* Makes the image height 70% of container height */
    height: 700px; /* Or whatever height you want for the section */
}

.navbar {
    padding: 20px 0;
}

.navbar-nav .nav-link {
    color: var(--light-gray);
    font-weight: 500;
    margin: 0 10px;
}

.hero-content {
    padding-top: 60px;
}
.wh{
    color: #fff;
}
.hero-heading {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -2%;
    margin-bottom: 30px;
    color: #fff;
}

.hero-image {
    max-width: 130%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #4F9CF9;
    border-color: #4F9CF9;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    font-weight: 500;
}

/* Features Section */
:root {
    --primary-blue: #0d6efd;
    --dark-blue: #0b5ed7;
    --darker-blue: #0a58ca;
    --light-gray: #f8f9fa;
    --dark-gray: #212529;
    --orange: #fd7e14;
    --purple: #6f42c1;
}

/* Previous styles remain the same until .animation-section */
.orbitSection{
    margin-top: 50px;
}
.mt{
    position: relative;
    top: 40px;
}
.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
  }
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px dashed rgb(184, 184, 235);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .ring-inner {
    width: 300px;
    height: 300px;
  }

  .ring-outer {
    width: 100%;
    height: 100%;
  }

  .orbit-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    animation: spin 60s linear infinite;
  }

  .orbit-image {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
  }

  .orbit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Inner planets */
  .inner-wrapper {
    animation-duration: 40s;
  }

  .inner-planet-1 {
    transform: rotate(0deg) translateX(150px);
    left: -21px;
  }

  .inner-planet-2 {
    transform: rotate(90deg) translateX(150px);
    top: -21px;
  }

  .inner-planet-3 {
    transform: rotate(180deg) translateX(150px);
    left: -21px;
  }

  .inner-planet-4 {
    transform: rotate(270deg) translateX(150px);
    top: -21px;
  }

  /* Outer planets */
  .outer-planet-1 {
    transform: rotate(45deg) translateX(250px);
    left: -47px;
  }

  .outer-planet-2 {
    transform: rotate(135deg) translateX(250px);
    top: -7px;
  }

  .outer-planet-3 {
    transform: rotate(225deg) translateX(250px);
    left: -47px;
  }

  .outer-planet-4 {
    transform: rotate(315deg) translateX(250px);
    top: -7px;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
  }

  .center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* Upload Portal Section Update */
.upload-portal-box {
    position: relative;
    top: 30px;
}

.upload-portal-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.demo-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.demo-link:hover {
    text-decoration: underline;
}

.demo-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.demo-link:hover i {
    transform: translateX(5px);
}

/* Dark Blue Section */
.dark-blue-section {
    background-color: #043873;
    color: white;
    padding: 80px 0;
}
.horizontal-line3{
    bottom: 20px;
    width: 191px;
    position: relative;
    left: 144px;
}
.dark-blue-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Who We Serve Section */
.serve-section {
    padding: 80px 0;
}

.serve-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.serve-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.serve-checkbox {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

/* Key Features Section */
.key-features-section {
    padding: 40px 0;
    background-color: #DCE0E6;
}
.str{
    font-size: 35px;
    text-align: center;
}
.key-features-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}
.cardStr{
    font-size: 35px;
}
.feature-card {
    padding: 20px;
    margin-bottom: 30px;
    height: 100%;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

/* Footer */
.footer {
    background-color: #043873;
    color: white;
    padding: 60px 0 30px;
}

.footertitle{
    text-align: center;
}
.imgfo{
    position: relative;
    left: 50%;
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.me-2{
    background-color: #FFE492;
    color: #000;
    outline: none;
    border: none;
}
.me-2:hover{
    background-color: #FFE492;
    color: #000;
    outline: none;
    border: none;
}
.navbar-toggler{
    background-color: white;
}
.features-section{
    background-image: url("../img/detailBg.png");
    background-repeat: no-repeat;
    background-size: 300px auto;
    padding-top: 200px;
    padding-bottom: 100px;
}
.feature-title{
    font-size: 50px;
    font-weight: 700;
}
.horizontal-line{
    position: relative;
    bottom: 20px;
    width: 100%;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .feature-title, .dark-blue-title, .serve-title, .key-features-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .feature-box, .feature-card {
        padding: 25px;
    }
    
    .animation-container {
        margin-bottom: 40px;
    }
    .mobCenter{
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .navbar-brand img {
        max-height: 30px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .orbit-container{
        width: 300px;
        height: 300px;
    }
    .ring-outer, .outImagNo{
        display: none;
    }
    .mt{
        top: 0;
    }
    .horizontal-line3{
        left: 67px;
    }
}