/* 🌟 Navbar Improvements */
.custom-navbar {
    padding: 10px 50px;
}

.tarifbg {
background-color: rgba(255, 255, 255, 0.5); /* 50% opacity */
}


.spegen {
text-align: center;
width: 100%;
margin-top: 70px !important;

}
.speyell {
color: #fd7e14;
text-align: center;

}

.spebla {
color: black;
text-align: center;

}

.spewgt {
font-weight: 900;
}

.spemarbt {
margin-bottom: 50px !important;
}

 .custom-body {
            font-family: Arial, sans-serif;
            text-align: center;
            background: #fff;
            margin: 0;
            padding: 0;
        }
        .custom-tariffs h2 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .custom-highlight {
            color: #f1c40f;
            font-weight: bold;
        }
        .custom-tariff-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            padding-bottom: 100px;
            flex-wrap: wrap;
        }
        .custom-tariff-box {
            width: 320px;
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #f9f9f9;
            margin: 0 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .custom-tariff-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        .custom-tariff-box img {
            width: 280px;
            height: auto;
            padding-bottom: 10px;
        }
        .custom-tariff-box h3 {
            font-size: 20px;
            font-weight: bold;
            margin-top: 10px;
            padding-bottom: 10px;
        }
        .custom-tariff-box p {
            font-size: 14px;
            color: #666;
            margin: 10px 0;
            padding-bottom: 20px;
        }
        .custom-price {
            font-size: 18px;
            font-weight: bold;
            color: #a39f00;
            padding-top: 20px;
        }
        .custom-highlight-box {
            background: #f1c40f;
            color: #000;
        }
        .custom-order-btn {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            background: #f1c40f;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .custom-order-btn:hover {
            background: #d4ac0d;
	    color: black;
	    text-decoration: none;
        }
        @media (max-width: 1024px) {
            .custom-tariff-container {
                flex-direction: column;
                align-items: center;
            }
            .custom-tariff-box {
                width: 90%;
                margin-bottom: 20px;
            }
        }

/*web-dd*/


body.pricycharts {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            text-align: center;
            margin: 0;
            padding: 20px;
        }

        .pricycharts-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: wrap;
            width: 100%;
        }

        .pricycharts-package {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 345px; /* Increased width by 15% from 300px */
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 500px; /* Ensuring uniform height */
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricycharts-package:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .pricycharts-package h2 {
            background: #ffcc00;
            padding: 15px;
            margin: -20px -20px 20px -20px;
            border-radius: 10px 10px 0 0;
            color: #222;
        }

        .pricycharts-package ul {
            list-style: none;
            padding: 0;
            flex-grow: 1;
        }

        .pricycharts-package ul li {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .pricycharts-package ul li:last-child {
            border-bottom: none;
        }

        .pricycharts-button {
            background: #ffcc00;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            margin-top: auto;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
            align-self: center;
            color: black;
            text-decoration: none;
            display: inline-block;
        }

        .pricycharts-button:hover {
            background: #e6b800;
            color: white;
        }


/*BPO--*/

 /* Custom Styles */
        .custom-container {
            max-width: 1100px;
            margin: auto;
            text-align: center; /* Centers text inside */
            padding: 20px;
        }

        .custom-heading {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .custom-description {
            color: #666;
            font-size: 16px;
            margin-bottom: 20px;
            text-align: center;
        }

        .custom-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
            gap: 20px;
            justify-content: center;
        }

        .custom-box {
            background: #fff;
            padding: 25px; /* Increased size by 25% */
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease-in-out;
        }

        .custom-box:hover {
            transform: translateY(-5px);
        }

        .custom-box img {
            width: 75px; /* Increased size by 25% */
            height: 75px;
            margin-bottom: 10px;
        }

        .custom-box h3 {
            font-size: 20px;
            color: #333;
        }

        /* Responsive for mobile */
        @media (max-width: 768px) {
            .custom-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Mobilepage Topbg Unique classifier mobtop */
        .mobtop-container {
            font-family: Arial, sans-serif;
            padding: 20px;
            max-width: 1000px;
            margin: auto;
        }

        .mobtop-header {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            border-bottom: 3px solid #FFC107;
            display: inline-block;
        }

        .mobtop-content {
            font-size: 16px;
            line-height: 1.5;
            color: #333;
        }

        .mobtop-button {
            display: inline-block;
            padding: 12px 20px;
            background-color: #FFC107;
            color: black;
            font-size: 16px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            text-decoration: none;
            margin-top: 15px;
        }

        .mobtop-button:hover {
            background-color: black;
            color: white;
        }