/* ===== Top Bar ===== */
.top-bar {
    background: #ffffff;
    font-size: 14px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
}
.top-bar a:hover { color: #ff6600; }

/* ===== Main Header ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

/* Logo */
.logo img {
    height: 80px;
	
}

/* Menu */
.main-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.main-menu ul li {
    position: relative;
}
.main-menu ul li a {
    color: #333;
    text-decoration: none;
    padding: 10px 5px;
    font-weight: 500;
}
.main-menu ul li a:hover {
    color: #ff6600;
}

/* Dropdown */
.main-menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}
.main-menu ul li:hover ul { display: block; }
.main-menu ul li ul li a {
    padding: 8px 20px;
    display: block;
}
.main-menu ul li ul li a:hover {
    background: #ff6600;
    color: #fff;
    border-radius: 5px;
}

/* CTA Button */
.header-btn {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.header-btn:hover {
    background: #ff8533;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
@media (max-width: 991px) {
    .main-menu ul { display: none; flex-direction: column; gap: 0; width: 100%; background: #ffffff; position: absolute; top: 100%; left: 0; }
    .main-menu ul.show { display: flex; }
    .menu-toggle { display: block; }
}
.footer-area {
    background-color: #111; /* dark background */
    color: #fff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.footer-area a {
    color: #00aaff; /* secondary color for links */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-area a:hover {
    color: #fff;
}

.footer-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00aaff; /* secondary color for headings */
}

.footer-widget p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo img {
    max-width: 120px; /* smaller logo */
    margin-bottom: 15px;
}

.social-links span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.social-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-links ul li a {
    font-size: 0.95rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    font-size: 0.95rem;
    color: #00aaff; /* secondary color for product/quick links */
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }
    .social-links ul {
        justify-content: center;
    }
.testimonial-area {
    background: #f7f9fc;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 35px 25px;
    margin-top: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.testi-img img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.testi-text {
    font-size: 15px;
    line-height: 25px;
    color: #444;
    margin-bottom: 15px;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    font-size: 20px;
    color: #ffb400;
    letter-spacing: 3px;
}

