:root {
    --primary: #0c5adb; /* Infotech Theme Blue */
    --secondary: #0e1133; /* Dark Navy */
    --text: #666;
    --light-bg: #f4f7fa;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Jost', sans-serif; }
body { color: var(--text); line-height: 1.6; background-color: #fff; overflow-x: hidden; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Header & Navbar */
.main-header { background: #fff; padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 26px; font-weight: 700; color: var(--secondary); letter-spacing: 1px; }
.logo span { color: var(--primary); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: #fff !important; padding: 10px 25px; border-radius: 5px; }

/* Hero Section */
.hero { padding: 100px 0; background: var(--light-bg); }
.hero-flex { display: flex; align-items: center; gap: 50px; }
.sub-title { color: var(--primary); font-weight: 700; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 52px; color: var(--secondary); line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 18px; margin-bottom: 30px; }
.btn-main { background: var(--primary); color: #fff; text-decoration: none; padding: 15px 35px; border-radius: 5px; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(12,90,219,0.3); }

.hero-image { flex: 1; position: relative; }
.img-wrapper img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--primary); }
.experience-badge { position: absolute; bottom: -20px; left: -20px; background: var(--secondary); color: #fff; padding: 20px; border-radius: 10px; text-align: center; }

/* Services Section */
.services { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 38px; color: var(--secondary); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.05); transition: 0.4s; position: relative; text-align: center; padding-bottom: 30px; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.card-img { width: 100%; height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .card-img img { transform: scale(1.1); }

.card-icon { width: 70px; height: 70px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: -35px auto 20px; position: relative; border: 5px solid #fff; }
.service-card h3 { margin: 10px 0; color: var(--secondary); }
.service-card p { padding: 0 20px; font-size: 15px; }
.btn-link { text-decoration: none; color: var(--primary); font-weight: 700; display: block; margin-top: 15px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 36px; }
    .nav-links { display: none; }
}
/* Footer Styles */
.main-footer {
    background: var(--secondary); /* Dark Navy color from Infotech */
    color: #fff;
    padding: 80px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.about-col p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--primary);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 5px;
}

.contact-item p {
    color: #b0b0b0;
    font-size: 15px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #0a0d26;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-left: 20px;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}