/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}




/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .hero-section {
    background-image: url("/static/images/Rectangle\ 116\ \(9\).png");
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.301);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 48px;
    font-family: "Poppins";
    font-weight: 600;
  }
  
  .hero-subtitle {
    font-family: "Lato";
    font-size: 18px;
    opacity: 0.9;
  }

  
.connect-dot-container{
  position: relative;
}

.connect-dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 30px;
  min-width: 200px;
  max-width: 500px;
  height: 1px;
  background-color: black;
  transform: translateY(-50%);
}

.connect-text {
  color: rgb(0, 0, 0);
  font-family: 'Roboto Mono';
  font-size: 1.1rem;

}

.connect-dot-empty {
  width: 20px;
  height: 20px;
  border:1.5px solid rgb(0, 0, 0);
  border-radius: 50%;
  position: relative;
}
.connect-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* margin-bottom: 2rem; */
}

.dark-connect-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* margin-bottom: 2rem; */
}
.dark-connect-dot-filled{
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.connect-dot-filled{
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.dark-connect-dot-container{
  position: relative;
}

.dark-connect-dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}

.dark-timeline-line {
  position: absolute;
  top: 50%;
  left: 30px;
  min-width: 200px;
  max-width: 500px;
  height: 1px;
  background-color: rgb(255, 255, 255);
  transform: translateY(-50%);
}

.dark-connect-text {
  color: rgb(255, 255, 255);
  font-family: 'Roboto Mono';
  font-size: 1.1rem;

}

.dark-connect-dot-empty {
  width: 20px;
  height: 20px;
  border:1.5px solid rgb(255, 255, 255);
  border-radius: 50%;
  position: relative;
}
.dark-connect-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* margin-bottom: 2rem; */
}
.dark-connect-dot-filled{
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
  
  .about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-container {
    position: relative;
  }
  
  .about-label {
    display: inline-block;
    color: #000;
    padding: 8px 16px;
    border: 2px solid #0066cc;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    background: transparent;
  }
  
  .about-heading {
    font-size: 32px;
    color: #333;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: bold;
  }
  
  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-image-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
  }
  
  .about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .about-text-content {
    max-width: 800px;
    text-align: center;
  }
  
  .about-paragraph {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
  }
  
  .about-paragraph:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    .hero-title {
      font-size: 40px;
    }
  
    .hero-subtitle {
      font-size: 16px;
    }
  
    .about-heading {
      font-size: 28px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .hero-section {
      height: 400px;
    }
  
    .hero-title {
      font-size: 32px;
    }
  
    .hero-subtitle {
      font-size: 14px;
    }
  
    .about-heading {
      font-size: 24px;
    }
  
    .about-label {
      font-size: 12px;
      padding: 6px 12px;
    }
  
    .about-paragraph {
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero-section {
      height: 300px;
    }
  
    .hero-title {
      font-size: 28px;
    }
  
    .hero-subtitle {
      font-size: 12px;
    }
  
    .about-heading {
      font-size: 20px;
    }
  
    .about-label {
      font-size: 10px;
      padding: 4px 10px;
    }
  
    .about-paragraph {
      font-size: 12px;
    }
  }

  /* hero section start */

  .blog-container-light {
    padding: 40px;
    margin: 20px;
  }
  
  .blog-container-dark {
    padding: 40px;
    /* margin: 20px; */
    background-color: #0E0F10;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .gradient-elipse{
    position: absolute;
    width: 95%;
    height: 310px;
    border-radius: 50%;
    top: -14%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.406);
    filter: blur(100px);
    background: linear-gradient(to right,#046ed24d,#00ccff5e);
}
  
  .blog-header {
    margin-bottom: 40px;
  }
  
  .header-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .line {
    width: 48px;
    height: 1px;
    background-color: #000;
  }
  
  .blog-container-dark .line {
    background-color: #fff;
  }
  
  .ellipse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    margin-left: -4px;
  }
  
  .blog-container-dark .ellipse {
    background-color: #fff;
  }
  
  .blog-subtitle {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .blog-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .blog-title {
    font-size: 28px;
    font-weight: 600;
    font-family: "Poppins";
    margin-top: 20px;
  }
  
  .view-all-btn {
    padding: 8px 20px;
    border: 1px solid #007bff;
    border-radius: 4px;
    background: transparent;
    color: #007bff;
    cursor: pointer;
  }
  
  .blog-container-dark .view-all-btn {
    border-color: #fff;
    color: #fff;
  }
  
  .blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .blog-card {
    display: flex;
    flex-direction: column;
    font-family: "Inter";
  }
  
  .blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
   
    margin-bottom: 20px;
  }
  
  .card-title {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
  
  .card-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  
  .read-more {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    display: flex;
    font-weight: 700;
    align-items: center;
    justify-items: center;
    gap: 5px;
  }
  
  .arrow {
    font-size: x-large;
    color: #007bff;
  }
  
  @media (max-width: 1024px) {
    .blog-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .blog-cards {
      grid-template-columns: 1fr;
    }
  
    .blog-title-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  
    .blog-container-light,
    .blog-container-dark {
      padding: 20px;
      margin: 10px;
    }
  }
  
  /* seocnd part start */
  .innovation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  100px 90px;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .innovation-content {
    flex: 1;
    max-width: 600px;
  }
  
  .innovation-heading {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    font-family: "Poppins";
  }
  
  .innovation-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: "Lato";
  }
  
  .innovation-read-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
  }
  
  .arrow-icon {
    color: #007bff;
    font-size: 20px;
  }
  
  .innovation-image-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
  }

  .innovation-image-overlay{
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(#7e42ed31,#e57e3544);
    width: 100%;
    height: 98%;
  }
  
  .innovation-image {
    width: 100%;
    height: auto;
 
    object-fit: cover;
  }
  
  @media (max-width: 1024px) {
    .innovation-container {
      padding: 40px;
    }
  
    .innovation-heading {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .innovation-container {
      flex-direction: column;
      padding: 30px;
    }
  
    .innovation-content {
      max-width: 100%;
    }
  
    .innovation-image-wrapper {
      max-width: 100%;

    }
  
    .innovation-heading {
      font-size: 32px;
    }
  }
  
  @media (max-width: 480px) {
    .innovation-container {
      padding: 20px;
    }
  
    .innovation-heading {
      font-size: 28px;
    }
  }

  @media screen and (max-width: 1024px) {
    .footer-links-section > *:nth-child(-n+3) {
      display: none; /* Hides first three columns */
    }
    }
  
  /*second part end  */




  /* form section start */
.contact-container {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-content {
    width: 100%;
  }
  
  .contact-heading {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    
    font-family: 'Poppins';
  }
  
  .contact-description {
    font-size: 16px;
    line-height: 1.3;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-family: 'Lato';
  }
  
  .contact-form {
    width: 100%;
   
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }
  
  .form-left,
  .form-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
    font-size: 16px;
    color: #333;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #232A3F;
    font-family: 'Poppins';
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .form-submit {
    margin-top: 20px;
  }
  
  .submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1.5px solid #0470D2;
    border-radius: 4px;
    color: #0470D2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: rgba(0, 123, 255, 0.1);
  }
  
  .alert-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .alert-content {
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      padding: 40px 20px;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .contact-heading {
      font-size: 28px;
    }
  
    .contact-description br {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container {
      padding: 30px 15px;
    }
  
    .contact-heading {
      font-size: 24px;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 10px 14px;
      font-size: 14px;
    }
  }
  
  

/* form section end */