:root{
    --primary:#8b5cf6;
    --secondary:#5a6bff;
    --bg-dark:#020617;
    --bg-card:#0c1024;
    --border:#1b1f3b;
    --text:#e5e7eb;
    --muted:#9ca3af;
}

/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:radial-gradient(circle at top,#0d1033,#020617);
    color:var(--text);
}

/* ================= NAVBAR ================= */
.hero{position:relative}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
}

.logo-img{
    width:90px;
}

.brand-main{
    color:#8b8dff;
    font-size:18px;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li a{
    margin:0 15px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.nav-links li a:hover,
.nav-links li a.active{
    color:#8b8dff;
}

.cta-btn{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    padding:10px 22px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
}

/* ================= SECTION ================= */
.services-section{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

.services-header{
    text-align:center;
    margin-bottom:50px;
}

.services-header h2{
    font-size:36px;
    color:var(--primary);
}

.services-header p{
    margin-top:10px;
    color:var(--muted);
}

/* ================= BRAND ROW ================= */
.brand-row{
    background:linear-gradient(180deg,#0c1024,#050816);
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    margin-bottom:35px;
    transition:.4s;
}

.brand-row:hover{
    box-shadow:0 20px 40px rgba(139,92,246,.2);
}

/* ================= BRAND TITLE ================= */
.brand-title{
    font-size:22px;
    margin-bottom:20px;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.brand-title i{
    color:var(--primary);
    font-size:22px;
}

.brand-title .tamil{
    font-size:14px;
    color:#c4b5fd;
}

/* ================= BRAND LIST ================= */
/* ================= BRAND LIST ================= */
.brand-list{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

/* ================= BRAND BOX ================= */
.brand-box{
    width:190px;                 /* Bigger box */
    min-height:140px;
    background:#020617;
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
    text-align:center;
    transition:.35s ease;
    cursor:pointer;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* LOGO FIX */
.brand-box img{
    width:100%;                  /* Full width */
    max-width:140px;             /* Prevent overflow */
    height:100px;                 /* Bigger height */
    object-fit:contain;

    /* IMPORTANT FIX */
    filter:none !important;      /* Remove grayscale */
}

/* Brand Name */
.brand-box span{
    margin-top:12px;
    font-size:14px;
    font-weight:500;
    color:#e5e7eb;
}

/* Hover (NO color change) */
.brand-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(139,92,246,.25);
}

/* REMOVE image hover filter completely */
.brand-box:hover img{
    filter:none;
}

.brand-box:hover span{
    color:#fff;
}

/* ================= FOOTER ================= */
.footer-top{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:40px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.footer-logo img{
    width:50px;
}

.footer-logo h3{
    color:#8b8dff;
    line-height:1.1;
}

.footer-logo span{
    font-size:12px;
    color:var(--muted);
}

.footer-col p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:15px;
}

.phone{
    color:#d1d5ff;
    margin-bottom:15px;
}
.phone.landline {
  color: #9ca3af;
  font-size: 14px;
}


.footer-whatsapp{
    display:flex;
    justify-content:center;
    margin-top:30px;
}

.footer-whatsapp a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    box-shadow:0 0 25px rgba(37,211,102,0.4);
    animation:pulse 2s infinite;
    transition:transform .3s ease;
}

.footer-whatsapp a:hover{
    transform:scale(1.05);
}

.footer-whatsapp i{
    font-size:20px;
}
.socials a{
    display:inline-flex;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    background:#0c1a33;
    border-radius:50%;
    margin-right:8px;
    color:#8b8dff;
    transition:.3s;
}

.socials a:hover{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    transform:translateY(-3px);
}

.footer-col h4{
    color:#fff;
    margin-bottom:15px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:var(--muted);
    text-decoration:none;
    font-size:14px;
}

.footer-col ul li a:hover{
    color:#8b8dff;
}

.footer-cta{
    background:rgba(255,255,255,0.04);
    border:1px solid var(--border);
    padding:25px;
    border-radius:16px;
}

.footer-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 26px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.footer-btn:hover{
    transform:scale(1.05);
}

/* ================= ANIMATION ================= */
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .navbar{padding:20px}
    .footer-top{grid-template-columns:1fr;text-align:center}
    .footer-logo{justify-content:center}
    .brand-list{justify-content:center}
}

@media(max-width:600px){
    .services-header h2{font-size:28px}
    .brand-title{align-items:center;text-align:center}
}
