 :root {
            --primary-color: #4a6bff;
            --secondary-color: #6c757d;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --accent-color: #17a2b8;
        }
        
        body {
            font-family: "Quicksand", sans-serif;
        }
        
        .top-bar {
            background: linear-gradient(135deg, var(--dark-color) 0%, #495057 100%);
            color: white;
            font-size: 0.9rem;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 0px 0px;
        }
        
        .navbar-brand img {
            width: auto;
            transition: all 0.3s ease;
        }
        
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem;
            color: #000;
            transition: all 0.3s ease;
            position: relative;font-size:17px;
        }
        
        .nav-link:hover {
            color: #1746A2;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #1746A2;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }
        
        .dropdown-item {
            padding: 0.5rem 1.5rem;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: #1746A2;
            color: white;
        }
        
        .btn-primary {
            background-color: #1746A2;
            border-color: #1746A2;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #3a56d4;
            border-color: #3a56d4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
        }
        
        .social-icons a {
            color: white;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .phone-link {
            transition: all 0.3s ease;
        }
        
        .phone-link:hover {
            color: var(--accent-color) !important;
            text-decoration: none;
        }
        
        .badge-announcement {
            background-color: var(--accent-color);
            font-weight: 500;
        }
        
        .search-btn {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .search-btn:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
      
       :root {
            --primary-color: #1746a2;
            --secondary-color: #00b894;
            --accent-color: #845ec2;
            --light-color: #f8f9fa;
        }

        .hero-section {
            background: #1746a2;
            padding: 4rem 0;
        }

        .feature-card {
            border: 2px solid var(--secondary-color);
            transition: all 0.3s ease;
                margin-bottom: 20px;
                padding: 20px 15px;
           
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,201,167,0.2);
        }

        .stats-section {
            background: #1746a2;
            padding: 1rem 0;
        }

        .btn-custom {
            background: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem 0;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;background: #1746a2 !important;
        }

        /* Spacing adjustments */
        .section-spacing {
            padding: 4rem 0;
        }

        .content-spacing {
            margin-bottom: 2rem;
        }
        
         .footer-main {
            background: #1746a2;
            color: #fff;
            position: relative;
            overflow: hidden;padding: 30px 0px 0px;
        }

        .newsletter-section {
            background: #1f68f7;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .footer-links h5 {
            color: var(--secondary-color);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;font-weight: 600;font-size: 25px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            font-family: "Quicksand", sans-serif;line-height: 29px;
        }

        .footer-links a:hover {
            color: var(--secondary-color) !important;
            transform: translateX(5px);
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .back-to-top {
            background: var(--secondary-color);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: none;
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            transform: scale(1.1);
        }

        .contact-info i {
            color: #1746a2;font-size: 26px;
        }

        .form-control {
            border-radius: 8px;
            border: none;
            padding: 0.75rem 1.25rem;
        }

        .btn-newsletter {
            background: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-newsletter:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,201,167,0.3);
        }
         .legal-links {
            font-size: 0.85rem;
        }
        
        .legal-links a {
            color: var(--light-color);
            text-decoration: none;
            margin-right: 15px;
        }
        
        .legal-links a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        

        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            
            .feature-card {
                margin-bottom: 1rem;
                padding: 1.5rem;
            }
            
            .stats-section .h1 {
                font-size: 2rem;
            }
        }  
        
        