/* footer.css me ye sab rahega
.footer
.footer-grid
.footer-brand
.footer-socials
.footer-links
.footer-address
.footer-bottom
.footer-bottom-flex
.copyright-text
.footer-legal-links
Footer ke saare @media queries */




/* ==========================================================================
   UPDATED 4-COLUMN PREMIUM FOOTER INTERFACE
   ========================================================================== */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    padding-bottom:50px;
}

.footer-brand .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #FF6633;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}


.footer-brand .logo span {
    color: #ffffff; /* Primary Accent color matching logo */
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social icons layout */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

/* Middle Columns Headings & Lists */
.footer-links h4 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* Address Column layout styles */
.footer-address p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address p i {
    color: #ff6600;
    margin-top: 4px;
}


/* Footer Headings ke niche stylish line lagane ke liye */
.footer-links h4, 
.footer-address h4 {
    position: relative;
    padding-bottom: 8px;   /* Text aur line ke beech ka gap */
    margin-bottom: 18px;   /* Line aur niche ke text ke beech ka gap */
    display: inline-block; /* Line sirf text ke size jitni hi badi rahegi */
    border-bottom: 2px solid #ff6600; /* Aapke theme ka brand orange color */
}

/* ==========================================================================
   FOOTER BOTTOM SYSTEM (LEFT TEXT | RIGHT SIDE LEGAL LINKS)
   ========================================================================== */
.footer-bottom {
    padding: 10px 10px;
    background: #060606;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between; /* Aligns left and right automatically */
    align-items: center;
    width: 100%; /* Yahan '100' ko '100%' kar diya hai */
    
    /* ---- SIRF YEH LIGHTWEIGHT CHANGES KIYE HAIN ---- */
    border-top: 1px solid #ffffff; /* Bilkul saaf dikhne wali white line text ke size me */
    padding-top: 25px;            /* Line aur niche ke text ke beech ka barabar gap */
}

.copyright-text {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
}

.copyright-text a {
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
}

/* Legal entries to right side */
.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-legal-links a:hover {
    color: #ff6600;
}



