 /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f4f4f9;
            color: #333;
        }
        /* Three image containers (use 25% for four, and 50% for two, etc) */
    .column {
    float: left;
    width: 25%;
    padding-top:5%;
    }

        /* Clear floats after image containers */
    .row::after {
    content: "";
    clear: both;
    display: table;
    }
        /* Navigation Styles */
        nav {
            background: #0e6199;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li {
            display: inline;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #f4f4f9;
            text-decoration: underline;
        }
        nav .curr{
	        color:#e92f2e;
}
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            background: white;
            height: 3px;
            width: 25px;
            margin: 4px 0;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .tri-buckets li{
	        float:left;
	        width:28%;
	        margin:10px 1.5%;
            }

            nav ul {
                display: none;
                flex-direction: column;
                background: #007bff;
                position: absolute;
                top: 60px;
                right: 10px;
                width: 200px;
                padding: 10px 0;
                border-radius: 8px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }

            nav ul.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }
        }
                /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f4f9;
            overflow-x: hidden;
        }
a {
    text-decoration: none;
    color: inherit;
    }

        ul {
            list-style: none;
        }

        /* Header Section */
        header {
           
            color: #0e6199;
            text-align: center;
            padding: 20px 10px;
        }

        header h1 {
            font-size: 2.5rem;
        }

        header p {
            font-size: 1.2rem;
            margin-top: 10px;
        }
        header img{
            width: 100px;
        }
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: #fff;
        }

        .hero h2 {
		margin:auto;
	    text-align: center;
            font-size: 2rem;
            color: #0e6199;
        }

        .hero p {
            max-width: 800px;
            margin: 20px auto;
            font-size: 1.1rem;
            color: #555;
        }
        .hero img{
            width: 50%;
        }

        /* Benefits Section */
        .benefits {
            padding: 40px 20px;
            background: #f9f9f9;
        }

        .benefits h2 {
            text-align: center;
            color: #0e6199;
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit {
            background: white;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .benefit h3 {
            color: #0e6199;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .benefit p {
            font-size: 1rem;
            color: #555;
        }

        /* Footer */
        footer {
            background: #0e6199;
            color: white;
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
        }

        footer p {
            font-size: 0.9rem;
        }
        
        footer img{
            width: 50px;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }
        }
              /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            background: white;
            height: 3px;
            width: 25px;
            margin: 4px 0;
        }

/* Responsive Styles */
    @media (max-width: 768px) {
        nav ul {
            display: none;
            flex-direction: column;
            background: #007bff;
            position: absolute;
            top: 60px;
            right: 10px;
            width: 200px;
            padding: 10px 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }
        nav ul.active {
            display: flex;
            }
    .menu-toggle {
                display: flex;
            }
        }
