
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root{
    --primary:#001f5b;
    --secondary:#d40000;
    --accent:#ffb400;
    --white:#ffffff;
    --light:#f8f9fa;
}

body{
    font-family:'Roboto',sans-serif;
    margin:0;
    padding:0;
    color:#333;
    background:#fff;
}

.topbar{
    background:var(--primary);
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.navbar-brand img{
    height:112px;
}

.company-title{
    font-size:24px;
    font-weight:700;
    color:var(--primary);
    margin:0;
}

.tagline{
    font-size:14px;
    color:var(--secondary);
    margin:0;
}

.navbar-nav .nav-link{
    color:var(--primary);
    font-weight:500;
    margin:0 8px;
}

.navbar-nav .nav-link:hover{
    color:var(--secondary);
}

.quote-btn{
    background:var(--accent);
    color:#000;
    padding:12px 20px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
}

.hero{
    background:linear-gradient(rgba(0,31,91,.7),rgba(0,31,91,.7)),url('../images/logo.png') center/contain no-repeat;
    min-height:500px;
    display:flex;
    align-items:center;
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:52px;
    font-weight:700;
}

.section-padding{
    padding:45px 0;
}

.service-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.footer{
    background:var(--primary);
    color:#fff;
    padding:60px 0 20px;
}

.footer h5{
    color:var(--accent);
    margin-bottom:20px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
    display:block;
    margin-bottom:10px;
}

.footer a:hover{
    color:var(--accent);
}

.social-icons a{
    display:inline-block;
    margin-right:10px;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background:rgba(255,255,255,.1);
    border-radius:50%;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:30px;
    padding-top:15px;
    text-align:center;
}

.active-dot{
    width:10px;
    height:10px;
    background:#00d26a;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

@media(max-width:991px){
    .company-title{
        font-size:18px;
    }
    .hero h1{
        font-size:36px;
    }
}


/* Task Manager (To-Do List) */
.todo-container {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.todo-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#task-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

#add-btn {
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

#add-btn:hover {
    background-color: #27ae60;
}

#task-list {
    list-style: none;
}

#task-list li {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #3498db;
    cursor: pointer;
    transition: 0.2s;
}

#task-list li.completed {
    text-decoration: line-through;
    opacity: 0.6;
    border-left-color: #7f8c8d;
}

.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.delete-btn:hover {
    background: #c0392b;
}
