:root {
    /* --primary: #4361ee; */
    /* --primary: #1b3356; */
    --primary: #37476f;
    --secondary: #140ca3;
    --accent: #db7528;
    /* --accent: #a23204; */
    /* --accent: #f72585; */
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4cc9f0;
    --gray: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h4 {
    margin-top: 15px;
    margin-bottom: 8px;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    /* padding: 2rem 0; */
    text-align: center;
}

.hero {
    padding: 1rem 0;
}

.hero h1 {
    font-size: 2.1rem;
    /* margin-bottom: 1rem; */
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

section {
    padding: 1.5rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 1.3rem;
    color: var(--primary);
    font-size: 2rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.experience-list {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-list h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.experience-list ul {
    list-style-type: none;
}

.experience-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.experience-list li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    margin-right: 10px;
}

.education-list {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.education-list h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.education-list ul {
    list-style-type: none;
}

.education-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.education-list li:before {
    content: "-";
    color: var(--accent);
    font-weight: bold;
    margin-right: 10px;
}

.packages {
    background-color: #f1f5f9;
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.package {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
}

.package-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.package-price {
    font-size: 2rem;
    margin: 1rem 0;
}

.package-features {
    padding: 1.5rem;
}

.package-features ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.package-features li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
}

.contact {
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-method {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.contact-method h3 {
    /* margin-bottom: 1rem; */
    color: var(--primary);
}


/* contact form start*/

.contact-form {
max-width: 600px;
margin: 0 auto;
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
margin-bottom: 1rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
color: #555;
text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 2px solid #ddd;
border-radius: 5px;
font-size: 1rem;
transition: border-color 0.3s ease;
}

.checkbox-container {
    display: flex;
    vertical-align: top;
    margin-bottom: 1.7rem;
    gap: .5rem;
}
  
  .checkbox-container label {
    cursor: pointer;
  }


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #667eea;
}

button {
/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 5px;
font-size: 1.1rem;
cursor: pointer;
transition: transform 0.2s ease;
}

/* contact form end */

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .packages-container {
        flex-direction: column;
        align-items: center;
    }
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}


/* qr code */

.qr-image {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.qr-image img {
    /* border-radius: 50%; */
    width: 100px;
    height: 100px;
    object-fit: cover;
}




.problems {
    background: white;
}

.problems-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    background: var(--light);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.problem-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-icon {
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.solutions {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}