*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #121212;
    font-family: 'Segoe UI',  sans-serif;
    color: #fff;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}
nav {
    background-color:#0a0a0a;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    font-size: 24px;
    font-weight: bold;
}

.logo p{
    margin-top: 20px;
    color:#00b894;
    font-size: 24px;
}

.logo img{
   padding-left: 10px;
   width: 80px;
   height: 90px;
}

nav ul {
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 2px;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color:#00b894;
}

h1{
    font-size: 2.5rem;
    color: #00b894;
}

 main{
    text-align: center;
    font-family: sans-serif;
    font-size: 2rem;
 }
 .p{
    color: #b0bec5;
    padding: 20px;
    font-size: 1.5rem;
 }
.section-title{
    color: #00b894;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 3rem;
}
.experience-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: black;
    border-radius: 12px;
    color: white;
    padding: 2rem;
    justify-content: space-between;
}
.experience-box{
    flex: 1;
    min-width: 250px;
}
.vertical-divider{
    width: 4px;
    background-color: #cccc;
    margin: 0 1rem;
    border-radius: 10px;
}
.experience-box h2{
    color: #00b894;
    margin-bottom: 1rem;
}

.experience-list{
    color: white;
    padding-left: 0.5rem;
    font-size: 2rem;
    line-height: 1.2;
}
.section-title{
    background-color: #fff;
    padding: 2rem;
    font-size: 2rem;
    margin-top: 2rem;
}
.tools-section{
    padding: 50px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
    height: auto;
}

.tool-item {
    text-align: center;
    background-color:  #2d3436;;
    padding: 30px 0;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.tool-icon{
    font-size: 40px;
    margin-bottom: 15px;
}
.tool-icon img{
    width: 80px;
}

.ft{
    color: #00b894;
   }
.testimonials-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
}
.testimonials-card{
    background-color: #fff;
    color: #121212;
    border-radius: 16px;
    width: 300px;
    padding: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.testimonial-card img{
    width: 400px;
    height: 400px;
    border-radius: 25px;
    object-fit: cover;
    margin-bottom: 1rem;
    
}
.testimonial-text{
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.testimonial-name{
    font-weight: bold;
    font-size: 2rem;
    color: #00b894;
}
/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #0a0a0a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #00b894;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #2d3436;
    border-radius: 5px;
    background-color: #121212;
    color: #f5f5f5;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00b894;
}

.error-message {
    color: #ff7675;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.btn {
    display: inline-block;
    background-color: #00b894;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #00997a;
    transform: translateY(-2px);
}
p a{
    color: #00b894;
}
footer{
    padding: 0;
    margin: 0;
    height: 40vh;
    background-color: #2d3436;
}
footer .container{
    display: flex;
    justify-content: center;
    justify-content: space-between;
    margin-top: 20%;
    padding: 60px 10%;
}
footer h3{
    font-size: 18px;
    color:#00b894;
    margin-bottom: 15px;
}
footer .h1{
    text-align: center;
    color: white;
    background-color: #2d3436;
}
.footer-content p{
    color: white;
}
.footer-content1 ul a{
    color: white;
    list-style: none;
    text-decoration: none;
}
.footer-content2 li a{
    color: white;
    list-style: none;
}
a{
    text-decoration: none;
}
 li{
    list-style-type: none;
}
