 :root {
            --primary: #0155ae;
    --primary-dark: #157bbb;
    --white: #fff;
            --secondary: #f9aa37;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #06d6a0;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #444;
            overflow-x: hidden;
        }
            .container {
        max-width: 1250px;
    }
        /* Header & Navigation */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.fixed-top {
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            width: 20%;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
        }
        
       
        
        /* Mega Menu */
        .dropdown-mega {
            position: static !important;
        }
        
        .dropdown-menu-mega {
            width: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-top: 1px solid #eee;
        }
        
        .dropdown-menu-mega h6 {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .dropdown-menu-mega ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dropdown-menu-mega ul li {
            margin-bottom: 10px;
        }
        
        .dropdown-menu-mega ul li a {
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            padding: 5px 0;
        }
        
        .dropdown-menu-mega ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        

 /* Button css */
        .blue-btn {display: inline-block;padding: 14px 30px;background-color: var(--primary);color: var(--white);border-radius: 50px;text-decoration: none;font-weight: 600;transition: var(--transition);border: none;cursor: pointer;}
        .blue-btn:hover {background-color: var(--primary-dark);transform: translateY(-3px);box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); color: var(--white);}

        .white-btn {display: inline-block;padding: 14px 30px;background-color: var(--white);color: var(--primary);border-radius: 50px;text-decoration: none;font-weight: 600;transition: var(--transition);border: none;cursor: pointer;}
        .white-btn:hover {background-color: var(--secondary);transform: translateY(-3px);box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); color: var(--white);}

/* CTA Section */
        .cta {
            /*padding: 100px 0;*/
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        /*inner page*/
        .inner-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

         /* Footer */
        footer {
            background: var(--dark);
            color: white;
            /*padding: 80px 0 30px;*/
        }
        
        .footer-links h5 {
    color: var(--secondary);
    border-bottom: 2px dashed #ffffff6e;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
        
        .footer-links ul {
            list-style: none;
            padding: 0;
                margin-bottom: 0px;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li:last-child{margin-bottom:0px;}
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s;
            font-size:14px;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .foot-ul>li{width: 50%;}
        
        .social-icons a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
.back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: var(--dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .dropdown-menu-mega {
                position: static !important;
                width: 100% !important;
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            
        }