/* ===== BASE & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #002B5B;
    --accent: #00FF88;
    --secondary: #0077B6;
    --secondary2: #FFFFFF;
    --secondary3: white;
    --nav-height: 80px;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, Arial, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: white;
    color: var(--text-dark);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* HEADINGS */
h1, h2, h3 { color: #9c27b0; }
h1 { border-bottom: 2px solid #9c27b0; padding-bottom: 10px; }
h2 { margin-top: 30px; }
h3 { margin-top: 20px; }
ul { padding-left: 20px; }
li { margin-bottom: 8px; }
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { border: 1px solid #ddd; padding: 10px; text-align: left; }
th { background-color: #f2f2f2; }
.industry-expertise { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin: 20px 0; }
.industry { background-color: #f3e5f5; padding: 15px; border-radius: 5px; }
.why-choose { background-color: #f3e5f5; padding: 15px; border-radius: 5px; margin: 20px 0; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin: 20px 0; }
.tool { background-color: #f8f9fa; padding: 15px; border-radius: 5px; text-align: center; }
.cta-box { text-align: center; background-color: #9c27b0; color: white; padding: 20px; border-radius: 5px; margin-top: 30px; }
.cta-box a { color: #ffcc00; font-weight: bold; }

/* HEADER & NAVIGATION */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary2);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: var(--nav-height);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo img {
    height: 85px;
    padding: 10px 0;
}
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

/* DROPDOWN MENU */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--primary);
    flex-direction: column;
    min-width: 200px;
    padding: 10px 0;
    top: 100%;
    left: 0;
}
.dropdown:hover .dropdown-content { display: flex; }
.dropdown-content a {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.dropdown-content a:hover {
    background-color: var(--accent);
    color: var(--text-dark);
}

/* MAIN CONTENT */
main {
    margin-top: var(--nav-height);
}
.section {
    padding: 100px 10%;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--secondary2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}
.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}
.cta-button, .cta2-button, .cta3-button {
    background-color: #FFC107;
    color: #000;
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover, .cta2-button:hover, .cta3-button:hover { background-color: #e0a800; }


/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--secondary2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 60px 20px 40px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* SERVICE SECTION */
.service-subsection {
    padding: 4rem 0;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 40px;
}
.service-subsection h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2em;
}
.service-subsection p {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* CONTACT FORM */
.contact-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}
form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
form label { font-weight: 500; color: var(--text-dark); }
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}
button[type="submit"] {
    background-color: #0057A8;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button[type="submit"]:hover { background-color: #003f73; }
.form-response {
    margin-top: 10px;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .fixed-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        height: auto;
    }
    nav ul { flex-direction: column; gap: 10px; margin-top: 10px; }
    .hero h1 { font-size: 2rem; }
    .section { padding: 60px 20px; }
}

/* FOOTER */
footer.footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.footer-column {
    flex: 1 1 300px;
    min-width: 250px;
}
.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #111;
}
.footer-column p {
    font-size: 1rem;
    line-height: 1.6;
}