        /* Header Section */
.about-header {
    position: relative;
    height: 70vh;
    /* background-image: url("<?php echo base_url('images/aboutbg.jpg') ?> "); change image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* Dark overlay */
.about-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Glass Popup */
.glass-popup {
    position: relative;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: popupFade 1.2s ease forwards;
}




/* Heading */
.glass-popup h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}


/* CTA Button */
.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 183, 3, 0.5);
}



/* glass pop-up animation effect  */

/* Smooth rotating border colors */
@keyframes glowing-border {
    0% {
        border-color: #32f583af #f57032af #f5a032af #ff3b3b;
        box-shadow:
            0 0 6px rgba(50, 245, 131, 0.4),
            0 0 14px rgba(50, 245, 131, 0.2);
    }
    25% {
        border-color: #f5a032af #32f583af #f57032af #ff3b3b;
        box-shadow:
            0 0 6px rgba(245, 160, 50, 0.4),
            0 0 14px rgba(245, 160, 50, 0.2);
    }
    50% {
        border-color: #f57032af #f5a032af #32f583af #ff3b3b;
        box-shadow:
            0 0 6px rgba(245, 112, 50, 0.4),
            0 0 14px rgba(245, 112, 50, 0.2);
    }
    75% {
        border-color: #ff3b3b #f57032af #f5a032af #32f583af;
        box-shadow:
            0 0 6px rgba(255, 59, 59, 0.4),
            0 0 14px rgba(255, 59, 59, 0.2);
    }
    100% {
        border-color: #32f583af #f57032af #f5a032af #ff3b3b;
        box-shadow:
            0 0 6px rgba(50, 245, 131, 0.4),
            0 0 14px rgba(50, 245, 131, 0.2);
    }
}

    /* Glass popup styling */
    
    .glass-popup {
        position: relative;
        border: 2px solid transparent;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        animation: glowing-border 2.5s linear infinite;

        transition: transform 0.3s ease;
    }

/* Optional hover lift */
.glass-popup:hover {
    transform: translateY(-4px);
}



/* This is footer style start */

    /* Main Footer*/ /* 
    .main-footer-sec {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        position: relative;
        overflow: hidden;
        padding-top: 80px;
        margin-top: 100px;
    }
    */

    
    .main-footer-sec {
        background: linear-gradient(135deg, #2e251a 0%, #16213e 100%, #3e3816 0%);
        /* position: relative; */
        /* overflow: hidden; */
        padding-top: 80px;
        margin-top: 100px;
    }

    .main-footer-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        z-index: 1;
    }
    
    /* Animated Background Elements */
    .footer-bg-element {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 179, 0, 0.05);
        animation: float 6s infinite ease-in-out;
    }
    
    .footer-bg-element:nth-child(1) {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
        animation-delay: 0s;
    }
    
    .footer-bg-element:nth-child(2) {
        width: 200px;
        height: 200px;
        bottom: 100px;
        left: -50px;
        animation-delay: 2s;
        background: rgba(214, 79, 0, 0.05);
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-20px) scale(1.05); }
    }
    
    /* Footer Sections */
    .footer-logo {
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .footer-logo img {
        height: 60px;
        width: auto;
        animation: pulse 3s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .company-desc {
        color: #b0b7d0;
        line-height: 1.8;
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    /* Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: all 0.3s ease;
        padding: 8px 8px 2px 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
    }
    
    .contact-item:hover {
        background: rgba(255, 179, 0, 0.1);
        transform: translateX(5px);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        color: white;
        font-size: 1.2rem;
    }
    
    .contact-details h5 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: #fff;
    }
    
    .contact-details p {
        margin: 0;
        color: #b0b7d0;
        font-size: 0.9rem;
    }
    
    .contact-details a {
        color: #b0b7d0;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .contact-details a:hover {
        color: var(--primary-color);
    }
    
    /* Footer Links */
    .footer-links h4 {
        font-size: 1.3rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        color: white;
    }
    
    .footer-links h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        border-radius: 2px;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: #b0b7d0;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        padding: 8px 0;
        position: relative;
        overflow: hidden;
    }
    
    .footer-links a i {
        font-size: 0.8rem;
        color: var(--primary-color);
        transition: transform 0.3s;
    }
    
    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 10px;
    }
    
    .footer-links a:hover i {
        transform: rotate(90deg);
    }
    
    /* Social Links */
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b0b7d0;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .social-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1;
    }
    
    .social-icon i {
        position: relative;
        z-index: 2;
        font-size: 1.2rem;
    }
    
    .social-icon:hover::before {
        opacity: 1;
    }
    
    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        color: white;
        box-shadow: 0 10px 20px rgba(255, 179, 0, 0.2);
    }
    
    /* WhatsApp Specific */
    .whatsapp-icon {
        animation: whatsappPulse 2s infinite;
    }
    
    @keyframes whatsappPulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
        70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    
    /* Newsletter */
    .newsletter-form {
        margin-top: 25px;
    }
    
    .form-control {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        padding: 12px 20px;
        border-radius: 50px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.1);
        color: white;
    }
    
    .btn-subscribe {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
        margin-top: 15px;
    }
    
    .btn-subscribe:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 179, 0, 0.3);
    }
    
    /* Copyright Section - FIXED for Full Width */
    .copyright {
        background: rgba(0, 0, 0, 0.2);
        padding: 25px 0;
        margin-top: 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }
    
    .copyright .container {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
        color: #fff;
    }
    
    
    /* .footer-payment {
        display: flex;
        gap: 15px;
    }
    
    .payment-icon {
        color: #8a94b3;
        font-size: 1.5rem;
        transition: color 0.3s;
    }
    
    .payment-icon:hover {
        color: var(--primary-color);
    } */
    
    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
    }
    
    .back-to-top.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 179, 0, 0.4);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .main-footer-sec {
            padding-top: 60px;
        }
        
        .footer-logo {
            justify-content: center;
            text-align: center;
        }
        
        .company-desc {
            text-align: center;
        }
        
        .footer-links {
            margin-top: 40px;
        }
        
        .footer-links h4 {
            text-align: center;
        }
        
        .footer-links h4::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .social-links {
            justify-content: center;
        }
        
        .newsletter-form {
            text-align: center;
        }
    }
    
    @media (max-width: 768px) {
        .copyright-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }
    }
    
    @media (max-width: 576px) {
        .contact-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
        
        .contact-icon {
            margin-bottom: 10px;
        }
        
        .footer-payment {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
/* This is footer style end */

/* whatsapp float button  */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37,211,102,.4);
    rotate: calc(90deg);
}
.whatsapp-float i {
    font-size: 22px;
}
.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.05);
}