:root {
            --primary-blue: #275474;
            --accent-orange: #FE8001;
        }

        body { font-family: 'Segoe UI', sans-serif; }

        /* Navbar & Logo Styling */
        .navbar { 
            background-color: white !important; 
            border-bottom: 4px solid var(--accent-orange);
            padding: 10px 0;
        }
        .navbar-brand img {
            max-height: 70px; /* Adjust this based on your preference */
            width: auto;
        }
        .nav-link { 
            color: var(--primary-blue) !important; 
            font-weight: 600; 
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .nav-link:hover { color: var(--accent-orange) !important; }
        
        /* Dropdown Styling */
        .dropdown-menu { border: none; shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .dropdown-item:hover { background-color: var(--accent-orange); color: white; }

        /* Carousel Styling */
        .carousel-item { height: 500px; }
        .carousel-item img { object-fit: cover; height: 100%; filter: brightness(40%); }
        .carousel-caption { 
            background: rgba(39, 84, 116, 0.85); 
            padding: 30px; 
            border-radius: 5px; 
            border-bottom: 5px solid var(--accent-orange);
            max-width: 600px;
        }
		
		/* USP Card Custom Styles */
.usp-card {
    transition: transform 0.3s ease, border-top 0.3s ease;
    border-top: 5px solid transparent !important;
}

.fw-bold {
	color: var(--primary-blue);
}

.usp-card:hover {
    transform: translateY(-10px);
    border-top: 5px solid var(--accent-orange) !important;
}

.usp-card:hover .fw-bold {
	color: var(--accent-orange);
}


.active-usp {
    border-top: 5px solid var(--primary-blue) !important;
}

.icon-box {
    background: #f0f4f7;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

        /* Sections */
        .section-title { color: var(--primary-blue); font-weight: bold; margin-bottom: 30px; }
        .btn-primary { background-color: var(--accent-orange); border: none; padding: 10px 25px; }
        .btn-primary:hover { background-color: #d66d01; }

        /* Footer Styling */
    .footer-main {
        background-color: var(--primary-blue);
        color: #ffffff;
        padding: 60px 0 20px;
        border-top: 6px solid var(--accent-orange);
    }
    
    .footer-header {
        color: var(--accent-orange);
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        text-transform: uppercase;
        font-size: 1.2rem;
    }

    .footer-about p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #e0e0e0;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        color: #e0e0e0;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.95rem;
    }

    .footer-links ul li a:hover {
        color: var(--accent-orange);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .contact-item svg {
        margin-right: 15px;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .footer-bottom {
        background-color: rgba(0,0,0,0.2);
        padding: 20px 0;
        margin-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }