body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header Section */
#header {
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    padding: 100px 0;
    color: white;
    text-align: center;
}

#header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

#header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

#header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #6e48aa;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #444;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, #6e48aa, #9d50bb);
    bottom: -10px;
    left: 25%;
}

/* About Section */
#about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* Skills Section */
#skills .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#skills .col-md-3 {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1 1 200px;
    max-width: 200px;
    transition: transform 0.3s ease;
}

#skills .col-md-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Projects Section */
#projects .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

#projects .col-md-4 {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1 1 300px;
    transition: transform 0.3s ease;
}

#projects .col-md-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

#projects h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #555;
}

#projects p {
    color: #666;
    margin-bottom: 20px;
}

.btn-secondary {
    padding: 0.5rem 1.2rem;
  background-color: #c234db;
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #5d3d99;
    color: white;
}

/* Education Section */
#education ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

#education li {
    background-color: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #666;
}

/* Contact Section */
#contact p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

#contact a {
    color: #6e48aa;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #9d50bb;
}

textarea.form-control {
    min-height: 150px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #header h1 {
        font-size: 2rem;
    }
    
    #header h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Previous CSS remains unchanged until Education section */

/* Education Section Styles */
#education {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #444;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2 i {
    margin-right: 15px;
    color: #6e48aa;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6e48aa, #9d50bb);
    margin: 0 auto;
    border-radius: 2px;
}

.education-container {
    max-width: 1000px;
    margin: 0 auto;
}

.education-item {
    display: flex;
    margin-bottom: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.education-icon {
    width: 80px;
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.education-content {
    flex: 1;
    padding: 30px;
}

.education-content h3 {
    color: #444;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.institution, .duration {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.duration {
    color: #6e48aa;
    font-weight: 500;
}

.education-details {
    color: #666;
    line-height: 1.6;
}

.diploma-list {
    list-style-type: none;
    padding: 0;
}

.diploma-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.diploma-list li:before {
    content: "•";
    color: #6e48aa;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 2px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.certificate-item {
    background: #f1f1f1;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background: #6e48aa;
    color: white;
    transform: translateY(-3px);
}

/* Experience Section Styles */
#experience {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #6e48aa, #9d50bb);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-date {
    position: absolute;
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(110, 72, 170, 0.3);
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -100px;
    top: 20px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -100px;
    top: 20px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-content:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    top: 30px;
    box-shadow: 5px -5px 10px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(odd) .timeline-content:after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content:after {
    left: -10px;
}

.timeline-content h3 {
    color: #444;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.company {
    color: #6e48aa;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.responsibilities {
    list-style-type: none;
    padding: 0;
}

.responsibilities li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.responsibilities li:before {
    content: "▹";
    color: #6e48aa;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 20px;
        right: auto;
        top: -15px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:after,
    .timeline-item:nth-child(even) .timeline-content:after {
        left: 20px;
        right: auto;
        top: -10px;
    }
    
    .education-item {
        flex-direction: column;
    }
    
    .education-icon {
        width: 100%;
        height: 60px;
    }
}

/* QA Reports Section Styles */
#qa-reports {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 300;
}

.pdf-viewer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pdf-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pdf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pdf-thumbnail {
    position: relative;
    height: 250px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-thumbnail i {
    position: absolute;
    font-size: 4rem;
    color: rgba(110, 72, 170, 0.2);
    z-index: 1;
}

.pdf-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.pdf-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pdf-info h3 {
    color: #444;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pdf-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.pdf-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #6e48aa;
    font-weight: 500;
}

.pdf-meta i {
    margin-right: 5px;
}

.btn-pdf {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.btn-pdf-download {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #6e48aa;
    border: 2px solid #6e48aa;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-align: center;
}

.btn-pdf:hover {
    background: linear-gradient(135deg, #5d3d99, #8c45a8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 72, 170, 0.3);
}

.btn-pdf-download:hover {
    background: #6e48aa;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 72, 170, 0.2);
}

/* qa-reports-style.css */

/* qa-reports-style.css */

.qa-section {
  padding: 2rem;
  background-color: #f4f6f9;
  font-family: 'Segoe UI', sans-serif;
}

.qa-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.qa-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.qa-card:hover {
  transform: translateY(-5px);
}

.qa-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.qa-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-align: center;
  color: #34495e;
}

.qa-card p {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  margin-bottom: 1rem;
}

.qa-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.qa-buttons1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0.6rem;
}


.qa-btn {
  padding: 0.5rem 1.2rem;
  background-color: #c234db;
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.qa-btn:hover {
  background: linear-gradient(135deg, #5d3d99, #8c45a8);
}

.qa-btn.qa-github {
  background-color: #24292e;
}

.qa-btn.qa-github:hover {
  background-color: #1b1f23;
}





/* Responsive Design */
@media (max-width: 768px) {
    .pdf-viewer-container {
        grid-template-columns: 1fr;
    }
    
    .pdf-thumbnail {
        height: 200px;
    }
    
    .btn-pdf, .btn-pdf-download {
        width: 100%;
        margin-right: 0;
    }

    .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.card-body .btn i {
    margin-right: 5px;
}
}
