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

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

/* Navigation style END */



/* Hero section styles Start*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .hero-section {
    background-image: url("/static/images/who-we-are-bg.jpg");
    background-size: cover;
    font-family: 'Poppins';
    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-weight: 600;
  }
  
  .hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
  }

.hero__contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.hero__contact-btn:hover {
    background-color: white;
    color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav__menu-toggle {
        display: flex;
    }

    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .nav__menu-item {
        width: 100%;
    }

    .nav__dropdown-btn {
        width: 100%;
        text-align: left;
    }

    .hero__title {
        font-size: 2rem;
    }
}

.header-section {
    margin-bottom: 3rem;
}

/* Hero section styles Start*/

/* Reset and Base Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
} */

/* Header Styles */
/* Header Styles */



/* PriyaQubit news Started */
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;

    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */

}
.header-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.news-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-family: 'Roboto Mono';
    /* background-color: #E5F3FF; */
    border: 1px solid #1D4ED8;
    border-radius: 9999px;
    color: black;
    margin-bottom: 1rem;
}

.main-heading {
    font-size: 2rem;
    font-weight: bold;
    
    font-family: 'Poppins';
    color: #000;
    line-height: 1.2;
}

.date {
    color: #000000;
    font-family: 'Poppins';
    margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.timeline-header {
   
    align-items: center;
}

.timeline-dot-container {
    position: relative;
    margin-right: 1rem;
    margin-bottom: 10px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: black;
    border-radius: 50%;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 280px;
    height: 1px;
    background-color: black;
    transform: translateY(-50%);
   
}

.section-heading {
    font-size: 1.5rem;
    font-weight: bold;
    /* margin-left: 216px; */
    font-family: 'Poppins';
    font-weight: 400;
}

.view-all-btn {
    /* padding: 0.5rem 1.5rem;
    border: 1px solid #0066CC;
    border-radius: 9999px;
    background: transparent;
    color: #0066CC;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-right: 1rem; */

    padding: 0.5rem 1.5rem;
    border: 1px solid #0066CC;
    border-radius: 9999px;
    color: #0066CC;
    text-decoration: none;
    margin-left: auto;

}

.view-all-btn:hover {
    background-color: #E5F3FF;
}

/* Press Releases Grid */
.press-releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Press Release Card */
.press-release-card {
    flex: 1;
}

.card-image-wrapper{
    background:linear-gradient(#7e42ed69,#e57e3572);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;

    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Poppins';
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.card-date {
    font-family: 'Poppins';
    color: #000000;
    margin-bottom: 0.6rem;
}

/* Read More Link Styles */
.read-more {
    display: inline-flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 600;
    gap: 0.5rem;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more svg {
    width: 22px;
    height: 22px;
    color: #0470D2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-releases-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .timeline-line {
        width: 100px;
    }

    /* .section-heading {
        margin-left: 116px;
    } */
}
/* priyaQubit style ended */


/* Media Section start */
.media-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    width: 100%
}



.timeline-header, .blog-header {
   
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.dot-container {
    position: relative;
    margin-right: 1rem;
}


.connect-dot-empty {
    width: 20px;
    height: 20px;
    border:1.5px solid rgb(255, 255, 255);
    border-radius: 50%;
    position: relative;
}

.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%);
}

.timeline-dot-empty {
    width: 20px;
    height: 20px;
    border:1.5px solid black;
    border-radius: 50%;
    position: relative;
}

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

.timeline-line {
    position: absolute;
    top: 50%;
    left: 25px;
    width: 500px;
    height: 0.5px;
    background-color: black;
    transform: translateY(-50%);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 216px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.media-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.media-image{
    width: 120px;
    height: 120px;
    padding: 15px;
    border-radius: 10px;
    background-color: #F4F4F4;
    display: grid;
    place-content: center;
    box-shadow:  0px 5px 0px #2E2F3026;
}

.media-image img{
    width: 80px;
    
}

.media-image-circle{
    width: 95px;
    border-radius: 50%;
    height: 95px;
    background-color: white;
    display: grid;
    place-content: center;
}

.media-content {
    font-family: 'Poppins';
    display: flex;
    gap: 3.5rem;
}

.media-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

/* .media-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.media-info {
    flex: 1;
}

.media-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.media-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.know-more-link, .read-more-link {
    display: inline-flex;
    align-items: center;
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.know-more-link svg{
    color:#0066CC;
}

.know-more-link:hover, .read-more-link:hover {
    text-decoration: underline;
}

/* .blog-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    width: 100%;
}

.blog-header {
    justify-content: space-between;
}

.view-all-link {
    padding: 0.5rem 1.5rem;
    border: 1px solid #0066CC;
    border-radius: 9999px;
    color: #0066CC;
    text-decoration: none;
    margin-left: auto;
}

.view-all-link:hover {
    background-color: #E5F3FF;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
} */

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

    /* .blog-grid {
        grid-template-columns: 1fr;
    } */

    .timeline-line {
        width: 100px;
    }

    .section-title {
        margin-left: 116px;
    }
}
/* media section end */


/* contact us form started */
.page-wrapper {
    display: flex;
    min-height: 70vh;
    background-color: #0E0F10;
    padding: 4rem;
    gap: 4rem;
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%; */
    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);
}

.content-section {
    flex: 1;
    position: relative;
  
}

.vector-line {
    width: 400px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 0.5rem; 
}

.connect-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.connect-text {
    color: white;
    font-family: 'Roboto Mono';
    font-size: 1.1rem;
}

.main-heading1 {
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-family: "Poppins";
}

.description-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 80%;
    margin-bottom: 2rem;
    font-family: "Lato";
}

.form-section {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.contact-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Roboto Mono";
    z-index : 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    width: 100%;
}

.contact-form label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 300px;
    flex-grow: 1;
}

.submit-button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    font-family: "Poppins";
    background: #1D4ED8;
    color: white;
    text-align: center;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.submit-button:hover {
    opacity: 0.9;
}

.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .page-wrapper{
        min-height: 55vh;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
        padding: 2rem;
        min-height: 55vh;
    }

    .vector-line {
        width: 200px;
    }

    .main-heading1 {
        font-size: 2rem;
    }

    .description-text {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}
/* contact us form ended */

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











/* 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 */    