/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    font-style: oblique;
    color: azure;
    text-shadow: #000000;
    margin: 0;
    padding: 0;
    background-image: url('/assets/media/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height:100%;
    width:100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

h1, h2 {
    color: #004aad;

}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6d8094, #ffffff);
    color: white;
    text-align: center;
    text-shadow: 0dvh;
    padding: 100px 20px;
    display: block;
    justify-content: space-between;
    
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(250, 248, 248, 0.5);
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
.hero .btn {
    background: white;
    color: #0056b3;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}
.himg {
    height: 120px;
    width: auto;
    position: absolute;
    left: 0;   
    top: 0; 
}

/* Section Styles */
section {
    padding: 60px 20px;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.about img {
    max-width: 100%;
    border-radius: 10px;
}

/* Tools Section */
.tools .tool-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.tool-card {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1;
}
.tool-card h3 {
    color: #004aad;
}

/* Education Section */
.education .btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.testimonial p {
    font-style: italic;
}

/* Contact Section */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact button {
    background: #0056b3;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
}
.checklist li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}