
        .about-section {
            background: linear-gradient(180deg, #002b36, #004d4d);
            /* Dark teal gradient */
            padding: 80px 0;
            font-family: "Poppins", sans-serif;
        }


        /* Heading */
        .about-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-title h1 {
            font-size: 48px;
            font-weight: 700;
            color: #ff7b00;
            letter-spacing: 1px;
        }

        .about-title .underline {
            width: 120px;
            height: 4px;
            background: #ff7b00;
            margin: 10px auto 0;
            border-radius: 5px;
        }

        .about-block {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            width: 90%;
            margin: 50px auto;
            padding: 30px;
            background: #000;
            border-radius: 20px;
            border-left: 5px solid #ff7b00;
            box-shadow: 0 0 25px rgba(255, 123, 0, 0.2);
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 1s ease forwards;
        }

        .about-block.reverse {
            flex-direction: row-reverse;
            border-left: none;
            border-right: 5px solid #ff7b00;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            color: #ff7b00;
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .about-text p,
        .about-text ul li {
            color: #ddd;
            font-size: 17px;
            line-height: 1.7;
        }

        .about-text ul {
            padding-left: 20px;
        }

        .about-img {
            flex: 1;
            text-align: center;
        }

        .about-img img {
            width: 90%;
            border-radius: 12px;
            border: 3px solid #ff7b00;
            transition: 0.3s ease;
        }

        .about-img img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(255, 123, 0, 0.4);
        }

        @media (max-width: 900px) {

            .about-block,
            .about-block.reverse {
                flex-direction: column;
                text-align: center;
                border-left: none;
                border-right: none;
                border-top: 5px solid #ff7b00;
            }

            .about-img img {
                width: 100%;
            }
        }

        body {
            font-family: var(--body-font);
            font-size: 18px;
            font-weight: 600;
            color: darkorange;
            line-height: 26px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .header-layout3 .menu-area:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 31.6%;
            height: 99px;
            background-color: white;
            z-index: -1;
        }
  