
        

        .why-choose-us-section {
            background-image: url('../images/whybg.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .why-choose-us-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 169, 34, 0.92) 0%, rgba(255, 185, 66, 0.95) 10%, rgba(248, 169, 34, 0.92) 10%);
            opacity: 0.8;
            pointer-events: none;
        }

        .why-choose-us-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-choose-us-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 1s ease-out;
        }

        .why-choose-us-title {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            animation: glowPulse 3s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(156, 20, 20, 0.5);
        }

        .why-choose-us-subtitle {
            font-size: 18px;
            color: #ffffff;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
            opacity: 0.95;
        }

        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .why-choose-us-card {
            background: linear-gradient(135deg, #9C1414 0%, #c41e1e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
            cursor: pointer;
        }

        .why-choose-us-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .why-choose-us-card:hover::before {
            left: 100%;
        }

        .why-choose-us-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 45px rgba(156, 20, 20, 0.6);
        }

        .why-choose-us-card:nth-child(1) { animation-delay: 0.1s; }
        .why-choose-us-card:nth-child(2) { animation-delay: 0.2s; }
        .why-choose-us-card:nth-child(3) { animation-delay: 0.3s; }
        .why-choose-us-card:nth-child(4) { animation-delay: 0.4s; }
        .why-choose-us-card:nth-child(5) { animation-delay: 0.5s; }
        .why-choose-us-card:nth-child(6) { animation-delay: 0.6s; }

        .why-choose-us-icon-wrapper {
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .why-choose-us-card:hover .why-choose-us-icon-wrapper {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .why-choose-us-icon-wrapper::before,
        .why-choose-us-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #ffffff;
            animation: rippleEffect 2s ease-out infinite;
        }

        .why-choose-us-icon-wrapper::after {
            animation-delay: 1s;
        }

        .why-choose-us-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-choose-us-icon svg {
            width: 50px;
            height: 50px;
            fill: #F8A922;
            transition: all 0.3s ease;
        }

        .why-choose-us-card:hover .why-choose-us-icon svg {
            fill: #9C1414;
            filter: drop-shadow(0 0 10px rgba(248, 169, 34, 0.5));
        }

        .why-choose-us-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.4;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .why-choose-us-footer {
            text-align: center;
            margin-top: 40px;
            animation: fadeInUp 1.5s ease-out;
        }

        .why-choose-us-footer-text {
            font-size: 18px;
            color: #ffffff;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.8;
            padding: 30px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 2px solid rgba(156, 20, 20, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glowPulse {
            0%, 100% { text-shadow: 0 0 10px rgba(156, 20, 20, 0.5); }
            50% { text-shadow: 0 0 25px rgba(156, 20, 20, 0.8), 0 0 35px rgba(156, 20, 20, 0.6); }
        }

        @keyframes rippleEffect {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @media (max-width: 1024px) {
            .why-choose-us-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
            }

            .why-choose-us-title {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-us-section {
                padding: 60px 15px;
            }

            .why-choose-us-title {
                font-size: 32px;
            }

            .why-choose-us-subtitle {
                font-size: 16px;
            }

            .why-choose-us-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .why-choose-us-card {
                padding: 35px 25px;
            }

            .why-choose-us-card-title {
                font-size: 20px;
            }

            .why-choose-us-footer-text {
                font-size: 16px;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-us-title {
                font-size: 28px;
            }

            .why-choose-us-subtitle {
                font-size: 15px;
            }

            .why-choose-us-card-title {
                font-size: 18px;
            }

            .why-choose-us-icon-wrapper {
                width: 80px;
                height: 80px;
            }

            .why-choose-us-icon svg {
                width: 40px;
                height: 40px;
            }
        }
   