        :root {
            --primary-dark: #0a1931;
            --accent-orange: #ff8c42;
            --bg-light: #f8faff;
        }
        .error{
            color:red;
        }

        .logo{
            height:40px;
            }

            .navbar-toggler{
            border:none;
            }

            .navbar-toggler:focus{
            box-shadow:none;
            }
            .dropdown-menu{
            --bs-dropdown-padding-x:0;
            --bs-dropdown-min-width:auto;
            }

            .active-menu{
                color: orange !important;
                font-size: medium;
                text-decoration:none;
            }

            .footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ff8c42;
    padding-left: 5px;
}

      
      
      .logo{
                height: 50px;
                width:160px;
                object-fit:contain;
            }
        
        body {
             font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-light);
        }

        /* Header & Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #ff8c42 0%, #ff5722 100%);
            color: white;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .navbar {
            padding: 15px 0;
            background-color: white !important;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.3rem;
            color: var(--primary-dark) !important;
        }

        .nav-link {
            color: #333 !important;
            margin: 0 8px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .btn-signin {
            border: 1px solid var(--primary-dark);
            border-radius: 20px;
            padding: 4px 15px;
            color: var(--primary-dark);
            text-decoration: none;
            display: inline-block;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .btn-signup {
            background-color: var(--primary-dark);
            color: white !important;
            border-radius: 20px;
            padding: 4px 15px;
            text-decoration: none;
            display: inline-block;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .hero-content {
            padding-top: 60px;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 35px;
        }

        .badge-pill {
            background: rgba(10, 25, 49, 0.9);
            border-radius: 25px;
            padding: 10px 25px;
            margin: 5px;
            font-size: 0.95rem;
            display: inline-block;
            color: white;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin: 70px 0 50px;
            font-weight: 700;
            color: #333;
        }

        /* Step & Feature Cards */
        .custom-card {
            background: white;
            border: none;
            border-radius: 15px;
            padding: 35px 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            transition: transform 0.3s ease;
            height: 100%;
            border-bottom: 6px solid var(--primary-dark);
        }

        .custom-card:hover {
            transform: translateY(-12px);
        }

        .icon-wrapper {
            width: 65px;
            height: 65px;
            background-color: var(--primary-dark);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .card-step-text {
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .card-main-text {
            font-weight: 700;
            color: #222;
            font-size: 1.1rem;
        }

  .carrier-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #444;
    height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.carrier-card:hover {
    border-color: var(--accent-orange);
    background-color: #fffaf7;
    box-shadow: 0 5px 15px rgba(255,140,66,0.15);
}

/* 🔥 Image bigger */
.carrier-card img {
    width: 100px;   /* 🔥 increase */
    height: 70px;
    object-fit: contain;
}

/* 🔥 Name bigger & clean */
.carrier-card h6 {
    font-size: 15px;   /* 🔥 increase */
    font-weight: 600;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* optional */
.carrier-card a {
    text-decoration: none;
    color: inherit;
}
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 50px 0;
            margin-top: 100px;
            text-align: center;
            position: relative;
        }

        .footer-logo {
            font-weight: bold;
            font-size: 1.4rem;
            margin-bottom: 12px;
            display: block;
        }

        .footer-copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .footer-star {
            position: absolute;
            right: 60px;
            bottom: 40px;
            opacity: 0.4;
        }

        /* Mobile specific adjustments to keep menu visible */
        @media (max-width: 576px) {
            .navbar-brand { font-size: 1.1rem; }
            .nav-link { margin: 0 4px; font-size: 0.8rem; }
            .btn-signin, .btn-signup { padding: 3px 10px; font-size: 0.75rem; }
            .hero-title { font-size: 2rem; }
            .hero-subtitle { font-size: 1rem; }
        }