main{
    margin: 105px 0;
    line-height: 1.4;
    box-sizing: border-box;
}


/* ------------------------------ *\
                HERO
\* ------------------------------ */


section.hero {
    padding: 20px 10%; /* Added top and bottom padding for better spacing */
}

.hero .container {
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: space-between; /* Space out the content and the image */
    flex-wrap: wrap; /* Allow the content to wrap on smaller screens */
    gap: 10px;
}

.hero .content {
    max-width: 45%; /* Limit the width of the content for better readability */
}

.hero .content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Larger heading */
    margin-bottom: 10px; /* Space between heading and paragraph */
    color: #333; /* Darker color for better contrast */
}

.hero .content p {
    font-size: 1.1em; /* Slightly larger font for the paragraph */
    line-height: 1.6; /* Improved line height for readability */
    color: #555; /* Slightly lighter color for the paragraph */
}

.hero .side-img {
    max-width: 50%; /* Limit the width of the image container */
}

.hero .side-img img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain the aspect ratio of the image */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
}

/* Responsive adjustments */
@media (max-width: 1068px) {
    main{
        margin: 50px 0;
    } 

    section.hero {
        padding: 20px 10px;
      }

    .hero .container {
        flex-direction: column-reverse; /* Stack content vertically on smaller screens */
        align-items: center; /* Center align items */
    }

    .hero .content p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        text-align: left;
      }

      .hero .content h1 {
        font-size: clamp(1.2rem, 4vw, 2.5rem);
        text-align: left;
      }

    .hero .content {
        margin-top: 40px;
        max-width: 100%; /* Allow content to take full width */
        text-align: center; /* Center align text */
    }

    .hero .side-img {
        max-width: 80%; /* Allow image to take more width */
    }
}

@media (max-width: 510px){
    .hero .side-img {
        max-width: 100%; /* Allow image to take more width */
        margin-top: 20px; /* Add space above the image */
    }
} 


/* ------------------------------ *\
          Who are we
\* ------------------------------ */


.we-are {
    margin:  80px 20%;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    border-radius:20px;
    box-shadow: 4px 4px 4px 0px rgba(34, 34, 34, 0.3);
    border: 1px solid #33333333;
}
.we-are .side-img{
    width: 40%;
}
.we-are .side-img img{
    width: 100%;
}

.we-are .content {
    width: 60%;
}

.we-are .content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.we-are .content li {
    font-size: 1em;
    list-style: circle;
    line-height: 1.6;
    color: #333;
    margin-bottom: 5px;
}

@media (max-width: 1468px) {
    .we-are {
        margin: 80px 10%;
    }
}


@media (max-width: 868px) {
    .we-are {
        flex-direction: column;
        text-align: left;
        margin: 30px 10px;
    }
    .we-are .side-img{
        width: 100%;
    }

    .we-are .content{
        width: 100%;
    }

    .we-are .content h2 {
        font-size: 1.5em;
    }

    .we-are .content p {
        font-size: 1em;
    }
}


/* ------------------------------ *\
          about-container
\* ------------------------------ */

section.about-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100vw;
    box-sizing: border-box;
  }
  
  .about {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1280px;
    width: 100%;
    align-items: center;
  }
  
  .about .content {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
  }
  
  .about .content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .about .content b {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .about .content li {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
    box-sizing: border-box;
    list-style:disc;
  }
  
  .about .side-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 166, 255, 0.02);
    border-radius: 16px;
  }
  
  .about .side-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: auto;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .about {
      flex-wrap: wrap-reverse;
    }
  
    .about .content,
    .about .side-img {
      flex: 100%;
      padding: 10px;
    }
  
    .about .side-img img {
      width: 100%;
      height: auto;
    }
  }
/* ------------------------------ *\
           Techniques
\* ------------------------------ */

section.Techniques {
    padding: 60px 10%;
    background-color: #f5f5f5;
}

.Techniques .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.Techniques .card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.Techniques .card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.Techniques .card h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.Techniques .card ul {
    padding-left: 20px;
    text-align: left;
}

.Techniques .card ul li {
    margin-bottom: 10px;
    list-style-type: circle;
    font-size: 1em;
    color: #555;
}



/* ------------------------------ *\
           Process
\* ------------------------------ */


.process {
    margin-top: 60px;
    padding: 60px 6%;
    background-color: #F9F9F7;
}

.process h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
}

#tab_section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    font-size: 1.4rem;
    padding-bottom: 20px;
    gap: 10px;
}

.tab_btn {
    cursor: pointer;
    padding: 10px 20px;
    color: #333;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    background-color: #ececec;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    animation: fadeIn 1s ease-in-out;
}

.tab_btn:hover {
    background-color: #ddd;
}

.tab_btn.active {
    background-color: #fff;
    color: #007ACC;
    margin-top: 0;
    border-bottom: 2px #007ACC solid;
    box-shadow: rgba(51, 51, 51, 0.349) 0 -2px 4px 0px;
}

.tabsection {
    background-color: #fff;
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #4d4c4c5e;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-in-out;
}

.tabsection li{
    list-style:circle ;
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .process {
        padding: 50px 4%;
    }

    .process h2 {
        font-size: 2rem;
    }

    #tab_section {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .tab_btn {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .section-container {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 30px 2%;
    }

    .process h2 {
        font-size: 1.8rem;
    }

    .tab_btn {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .section-container {
        font-size: 0.9rem;
    }
}


/* ------------------------------ *\
           get-started
\* ------------------------------ */

section.get-started {
    margin-top: 60px;
    padding: 60px 10%; /* Padding for spacing */
    background-color: #007ACC; /* Background color */
    text-align: center; /* Center align text */
    border-top: 2px solid #e0e0e0; /* Top border for separation */
}

.get-started h2 {
    font-size: 2.2em; /* Larger font size for heading */
    margin-bottom: 20px; /* Space below the heading */
    color: #e2e2e2; /* Heading color */
}

.get-started p {
    font-size: 1.1em; /* Font size for paragraph */
    line-height: 1.6; /* Line height for readability */
    color: #ffffff; /* Paragraph color */
    max-width: 800px; /* Max width for better readability */
    margin: 0 auto; /* Center the paragraph */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section.get-started {
        padding: 40px 5%; /* Reduce padding for smaller screens */
    }

    .get-started h2 {
        font-size: 1.8em; /* Smaller font size for heading on small screens */
    }

    .get-started p {
        font-size: 1em; /* Slightly smaller font size for paragraph on small screens */
    }
}


/* ------------------------------ *\
    Frequently Asked Questions
\* ------------------------------ */


.FAQ {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.FAQ .title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.FAQ .question {
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
}

.FAQ .question:last-child {
    border-bottom: none;
}

.FAQ .question h2 {
    font-size: 1.4rem;
    padding: 10px 0;
    font-weight: 300;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}


.FAQ .question h2 .fa-angle-down {
    transition: transform 0.3s;
}

.FAQ .answer {
    display: none;
    padding: 15px 0;
    background-color: #fff;
    color: #555;
    border-left: 4px solid #007ACC;
    margin-top: 10px;
    animation: fadeIn 0.3s ease-in-out;
    font-size: 1.2rem;
    line-height: 1.6;
    padding-left: 10px;
}

.FAQ .question.open .answer {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .FAQ .title {
        font-size: 1.8rem;
    }

    .FAQ .question h2 {
        font-size: 1.4rem;
        padding: 10px;
    }

    .FAQ .answer {
        font-size: 1.1rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .FAQ .title {
        font-size: 1.6rem;
    }

    .FAQ .question h2 {
        font-size: 1.2rem;
        padding: 8px;
    }

    .FAQ .answer {
        font-size: 1rem;
        padding: 8px;
    }
}
