        * {
            padding: 0;
            margin: 0;
        }

        :root {
            --dark-bg: #1a1a1a;
            --light-bg: #f8f8f8;
            --text-dark: #333;
            --text-light: #fff;
            --accent-blue: #4f46e5;
            --accent-pink: #ff0066;
            --input-bg: #f0f0f0;
            --border-color: #e0e0e0;
        }





        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            background-color: rgba(255, 255, 255, 0.192);
            padding: 20px 0;
            border-bottom: 2px solid var(--border-color);

            width: 100%;
        }

        .PN-Logo {
            width: 120px;
            height: 60px;

        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-text h1 {
            color: #dc8e34;
            font-size: 40px;
            padding: 40px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            font-weight: 600;
        }


        .nav-links a:hover {
            color: #dc8e34;
            transform: translateY(-4px);



            /* background-color: #daed4a;
            border-radius: 10px; */

        }

        img {
            width: 60px;
            height: 60px;
        }


        .btn-get-started {
            background-color: #dc8e34;
            color: var(--text-light);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.6s ease;
        }

        .btn-get-started:hover {
            background-color: #dcdc34;
            transform: translateY(-4px);

        }

        /* Hero Section */
        .hero-section {
            position: relative;
            color: var(--text-light);
            padding: 80px 0 80px;
            width: 100%;
            background-image: url('/img/1.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            height: 60vh;
            /* display: flex;
             align-items: center;
            justify-content: center; */
        }


        .hero-section::before {
            content: "";
            /* position: absolute; */
            inset: 0;
            background: linear-gradient(to right,
                    rgba(90, 86, 86, 0.568),
                    /* strong dark color */
                    rgba(59, 59, 59, 0.427),
                    /* medium */
                    rgba(128, 127, 127, 0.135)
                    /* low */
                );
            z-index: 1;
        }

        Text should stay above the overlay .hero-text {
            position: relative;
            z-index: 2;
            text-align: left;
            max-width: 500px;
        }

        .hero-text h1 {
            font-size: 60px;
            line-height: 1.2;
            font-weight: bold;



        }


        .hero-text p {
            flex: 1;
            max-width: 50%;
            justify-content: center;
            margin-top: 10px;
            position: absolute;
            color: white;

        }

        /* cateen */
        .main {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;

        }

        .features-section {
            padding: 60px 0;
            background-color: white;
            text-align: center;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .features-section .section-title {
            font-size: 36px;
            font-weight: 700;

            color: #dc8e34;
            margin-bottom: 20px;
        }

        .features-section .section-description {
            font-size: 17px;
            /* background-color: #1e1e9b; */
            color: var(--text-light-gray);
            max-width: 700px;
            margin: 0 auto 50px auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            padding: 20px;
        }

        .feature-card {
            background: #ffffff;
            /* clean background */
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Hover effect */
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
            border-color: #d1d5db;
            background: #fafafa;
        }

        /* Title */
        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            /* modern & clean */
            font-size: 1.3rem;
            font-weight: 600;
            color: #111827;
            margin: 12px 0;
        }


        /* Text */
        .feature-card p {
            font-family: 'Inter', sans-serif;
            /* highly readable */
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.7;
        }


        .feature-card img {
            width: 100%;

            height: 200px;
            border-radius: 16px;
            /* match or slightly less than card radius */
            object-fit: cover;
            margin-bottom: 16px;
            /* spacing below image */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            /* subtle shadow */
            transition: transform 0.3s ease;
        }

        /* Hover zoom effect */
        .feature-card:hover img {
            transform: scale(1.05);
        }


        .bot {
            display: flex;
            align-items: end;
            justify-content: space-between;

            gap: 60px;
            padding-top: 30px;

        }


        .button {
            background-color: #2e3ad9;
            color: rgba(255, 255, 255, 0.909);
            width: 80px;
            height: 30px;
            border-radius: 8px;
            border: none;






        }

        .button2 {
            background-color: #47cc3b;
            color: rgba(255, 255, 255, 0.842);
            width: 80px;
            height: 30px;
            border-radius: 8px;
            border: none;




        }

        .button:hover {
            transform: translateY(-4px);
            background-color: #b1a917;


        }

        .button2:hover {
            transform: translateY(-4px);
            background-color: #b1a917;


        }




        .card img {
            width: 300px;
            height: 350px;
            border: solid 1px rgb(214, 161, 16);
            border-radius: 10px;
            box-shadow: 1px 1px 1px;
            object-fit: cover;
        }

        .section h3 {
            font-size: 30px;
            margin-top: 80px;
            padding: 20px;
            color: #dc8e34;
            margin-top: w 5px;
            align-items: center;
            text-align: center;



        }

        table {
            width: 80%;
            border-collapse: collapse;
            margin-top: 100px;
            margin-left: 100px;
            margin-bottom: 50px;
        }

        th {
            background-color: #dc8e34;
        }

        th,
        td {
            border: 1px solid #111212;
            padding: 20px;
            text-align: center;
        }




        .feature-card:hover {
            color: var(--accent-blue);
            background-color: #dfdfdf;
        }

        .feature-card h3 {
            font-size: 20px;
            align-self: center;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: rgba(240, 237, 237, 0.788);
            padding: 80px 0;
            text-align: center;
        }

        .testimonials-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: #dc8e34;
            margin-bottom: 50px;
            margin-top: 50px;
        }



        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: left;

        }

        .features-services-section {
            padding: 80px 0;
            background-color: rgb(252, 250, 250);
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .card-icon {
            font-size: 80px;
            color: #1a25c0;
            margin-bottom: 15px;
            align-items: center;
            text-align: center;
        }




        /* .testimonial-car */


        .testimonial-card {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card p {
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }



        /* sport */
        .name-sport {
            font-size: 32px;
            margin-top: 50px;
            color: #dc8e34;
            padding: 20px;
            text-align: center;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .text-sport {
            text-align: center;
            font-size: 18px;
            color: #444;
            line-height: 1.6;
            max-width: 800px;
            margin: 10px auto 40px;
        }

        .meaning-dessert h3 {
            color: #dc8e34;
            padding: 15px 0;
            font-size: 24px;
            font-weight: 600;
        }

        .meaning-dessert p {
            padding: 0 10px 12px;
            color: #555;
            transition: color 0.3s ease;
        }

        .meaning-dessert p:hover {
            color: #4f46e5;
        }

        .but {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            padding-bottom: 40px;
            flex-wrap: wrap;
        }

        .dessert {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 0 auto;
            padding: 20px;
        }

        .ball {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Always 3 columns */
            gap: 25px;
            justify-items: center;
            /* Center cards in each column */
            margin: 0 auto;
            padding: 20px;
        }

        .card-dessert {
            width: 100%;
            max-width: 320px;
            min-height: 420px;
            border-radius: 20px;
            background-color: #f9f9f9;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            overflow: hidden;
        }


        .card-dessert:hover {
            background-color: #fff;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
            transform: translateY(-8px) scale(1.02);
        }

        .card-dessert img {
            width: 100%;
            height: 200px;
            border-radius: 20px 20px 0 0;
            /* Rounded top edges, matches card */
            object-fit: cover;
            border: none;
            margin: 0;
            padding: 0;
        }


        .card-dessert img:hover {
            transform: scale(1.08);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }


        /* section */

        section h4 {
            font-size: 20px;
            margin-top: 60px;
            padding: 20px;
            color: #dc8e34;
            margin-top: 5px;
            align-items: center;
            text-align: center;



        }

        section p {
            margin-bottom: 40px;
        }




        /* Headings inside section */
        section h4 {
            font-size: 22px;
            margin: 15px 0;
            padding: 10px;
            color: #dc8e34;
            text-align: center;
            font-weight: 600;
            letter-spacing: 1px;
            /* adds space between letters */
            text-transform: capitalize;
            /* makes first letters neat */
        }

        /* Paragraphs inside section */
        section p {
            margin: 0 auto 25px;
            max-width: 700px;
            /* keeps text readable */
            line-height: 1.6;
            /* better spacing between lines */
            font-size: 16px;
            color: #444;
            text-align: center;
            padding: 0 15px;
            transition: color 0.3s ease;
        }

        section p:hover {
            color: #171e76;
        }

        /* Testimonial Card */
        .testimonial-but {
            width: 100%;
            max-width: 320px;
            min-height: 420px;
            border-radius: 20px;
            background-color: #f9f9f9;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            overflow: hidden;
            margin-left: 10px;
            padding: 20px;
            /* gives space for text inside */
        }

        .testimonial-but:hover {
            background-color: #fff;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
            transform: translateY(-8px) scale(1.02);
        }

        /* Image inside card */
        .card1 img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            margin: 0;
            padding: 0;
            display: block;
        }

        /* Title inside card */
        .testimonial-but h4 {
            font-size: 20px;
            margin-top: 15px;
            font-weight: 600;
            color: #333;
            letter-spacing: 0.5px;
        }

        /* Description inside card */
        .testimonial-but p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            padding: 10px;
        }

        .Long {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 100px;
        }

        .tex {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: rgb(34, 146, 198);
            color: white;
            font-size: 15px;
            font-weight: 600;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            /* remove underline if it's a link */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .More {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: linear-gradient(135deg, #dc8e34, #e4b146);
            color: white;
            font-size: 15px;
            font-weight: 600;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            /* remove underline if it's a link */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .tex:hover {
            background: linear-gradient(135deg, #2232bc, #1fc7d3);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
        }

        .More:hover {
            background: linear-gradient(135deg, #246fa8, #2cc8c8);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
        }














        /* contact */


        .text {
            align-items: center;
            text-align: center;
            padding: 50px;
            color: #dc8e34;

        }

        .text p {
            color: #111212;
        }

        .text h1 {
            color: black;
            padding-top: 1px;
            padding-bottom: 1px;

        }

        .contact-form {
            max-width: 600px;
            /* display: flex; */
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-form h2 {
            align-items: center;
            text-align: center;
            color: #cab01a;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e1e9b;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e2e8f0;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 100px;
            resize: vertical;
        }


        .submit-btn {
            background: #1e3a8a;
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #b5be12;
        }







        /* footder */
        .main-content-placeholder {
            flex-grow: 1;
            background-color: #f9f9f9;
            padding: 60px;
            text-align: center;
            color: #888;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
        }

        /* Footer Base */
        .footer {
            background-color: var(--footer-bg);
            padding: 70px 20px 40px;
            color: var(--link-color);
            font-size: 15px;
            border-top: 1px solid var(--border-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Grid Layout */
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        /* Footer Column */
        .footer-column h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            text-decoration: none;
            color: var(--link-color);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            color: var(--link-hover-color);
            transform: translateX(4px);
        }

        /* NEW tag */
        .new-tag {
            background-color: #222;
            color: #f5f5f5;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 6px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        /* Divider */
        .footer-divider {
            border-top: 1px solid var(--border-color);
            margin: 40px 0;
        }

        /* Languages */
        .footer-languages {
            text-align: center;
            margin-bottom: 25px;
        }

        .footer-languages a {
            color: var(--link-color);
            margin: 0 10px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-languages a:hover {
            color: var(--link-hover-color);
        }

        .footer-languages a.active {
            text-decoration: underline;
            font-weight: 600;
            color: var(--text-dark);
        }
    

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            padding-top: 15px;
        }
        .footer-legal-links a {
            text-decoration: none;
            color: var(--link-color);
            margin-right: 18px;
            transition: color 0.3s ease;
            font-size: 13px;
        }

        .footer-legal-links a:hover {
            color: var(--link-hover-color);
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-light-gray);
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--link-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--link-hover-color);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 42px;
            }


            .feature-card h3 {
                font-size: 17px;
            }

            .testimonial-but h4 {
                font-size: 17px;
            }

            .card-dessert img {
                height: 160px;
                display: grid;

            }

            .card-dessert {
                width: 100%;
                grid-template-columns: repeat(2, 1fr);

            }
        }


        @media (max-width: 400px) {
            .PN-Logo {
                width: 80px;
                height: 40px;

            }

            .hero-section {
                width: 100%;

                height: 100%;

            }


            section p {
                margin-bottom: 40px;
            }

            section p {
                font-size: 10px;
            }

            /* Testimonial Card */
            .testimonial-but {
                width: 84%;
            }

            .card1 img {
                width: 100%;
            }

            .bot {
                display: flex;
                gap: 100px;
                width: 100%;
            }

            .features-grid {
                display: flex;
                flex-direction: column;
            }


            .ball {

                display: flex;
                flex-direction: column;
            }

            .hero-text h1 {
                font-size: 25px;
                line-height: 1.2;
                text-align: center;
            }


            .hero-text p {
                font-size: 16px;
                max-width: 95%;
                margin: 10px auto 0;
                text-align: center;
            }


            .features-grid1 {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 15px;
                padding: 10px;
            }

            .ball {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 20px;
                width: 100px;
            }

            .Long {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 80px;
                justify-content: center;
            }

            table {
                display: block;

                white-space: nowrap;
                margin: 10px 0;
            }

            th,
            td {
                padding: 8px;
                font-size: 13px;
            }
        }

        /* iPad portrait (768px width) / small tablets */
        @media (max-width: 834px) {
            .hero-text h1 {
                font-size: 36px;
            }

            .nav-links {
                width: 100%;
                font-size: 16px;
                gap: 20pxpx;
                padding-left: 10px;

            }
            .features-grid{
                display: flex;
                flex-wrap: wrap;
            }

            .btn-get-started {
                width: 10%;
                font-size: 12px;



            }

            .hero-section {
                width: 100%;
                height: 20%;
            }
            .hero-text{
                align-items: start;
                margin: 10px;
                
        
            }

            .hero-text h1 {
                font-size: 10px;
            


            }

            .hero-text p {
                max-width: 100%;
                font-size: 14px;
                color: #f3f3f3;
              
            }
            .testimonial-but{
                width: 80%;

            }

 
            .feature-card{
                width: 40%;
            }
            .bot{
                width: 100%; 
                display: flex;
                gap: 30px;

            }

            .ball {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
             .but {
                width: 100%; 
                display: flex;
                gap: 30px;
                /* background-color: #1a25c0; */
            }




           
            .card-dessert {
                max-width: 100%;
              

            }

            table {
                display: block;
                white-space: nowrap;
                margin: 10px 0;
            }
            .footer-links-grid {
                width: 100%;
                font-size: 14px;
                grid-template-columns: repeat(5, 1fr);
                /* gap: 80px; */
            }

            .footer-copyright {
                width: 100%;
                /* display: flex; */
                justify-content: space-between;
                align-items: end;
                text-align: end;
                /* background-color: #171e76; */
             
            }
            

        }

        /* Tablets / landscape mode (1024px width) */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 48px;
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .ball {
                grid-template-columns: repeat(3, 1fr);
            }

            table {
                width: 90%;
            }
        }