        :root {
            --red: #b31942;
            --red-light: #d84d6f;
            --red-dark: #8d1033;
            --red-bg: rgba(179, 25, 66, 0.08);
            --navy: #0a3161;
            --navy-light: #174b7a;
            --white: #ffffff;
            --off-white: #fefefe;
            --text-dark: #111827;
            --text-muted: #6B7280;
            --border: #E5E7EB;
            --card-shadow: 0 2px 16px rgba(10, 49, 97, 0.06);
            --card-hover-shadow: 0 8px 32px rgba(10, 49, 97, 0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 78px;
            overflow-x: hidden;
        }

        body {
            font-family: 'Cairo', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.8;
            padding-top: 78px;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 800;
            line-height: 1.3;
        }

        .top-bar {
            background: #ffffff;
            padding: 7px 0;
            font-size: 12.5px;
            color: var(--navy);
            border-bottom: 1px solid var(--border);
        }

        .top-bar a {
            color: var(--navy);
            text-decoration: none;
            transition: var(--transition);
        }

        .top-bar a:hover {
            color: var(--red);
        }

        .top-bar .social-icons a {
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(10, 49, 97, 0.06);
            margin-right: 5px;
            font-size: 11px;
            color: var(--navy);
        }

        .top-bar .social-icons a:hover {
            background: var(--red);
            color: #fff;
        }

        .navbar-main {
            background: rgba(255, 255, 255, 0.98);
            padding: 10px 0;
            border-bottom: 1px solid rgba(10, 49, 97, 0.08);
            box-shadow: 0 6px 24px rgba(10, 49, 97, 0.07);
            transition: var(--transition);
            z-index: 1050;
        }

        .navbar-main.scrolled {
            box-shadow: 0 10px 30px rgba(10, 49, 97, 0.12);
        }

        .navbar-main .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
        }

        .navbar-main .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .navbar-main .nav-link {
            font-weight: 700;
            font-size: 14.5px;
            color: var(--navy);
            padding: 12px 16px !important;
            position: relative;
            transition: var(--transition);
            border-radius: 8px;
        }

        .navbar-main .nav-link::after {
            content: '';
            position: absolute;
            bottom: 6px;
            right: 16px;
            left: 16px;
            height: 2.5px;
            background: var(--red);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .navbar-main .nav-link:hover {
            color: var(--red);
            background: rgba(179, 25, 66, 0.06);
        }

        .navbar-main .nav-link:hover::after {
            transform: scaleX(1);
        }

        .btn-apply-nav {
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: var(--white) !important;
            font-weight: 800;
            font-size: 13.5px;
            padding: 11px 24px !important;
            border-radius: 10px;
            border: none;
            transition: var(--transition);
            box-shadow: 0 8px 22px rgba(179, 25, 66, 0.24);
        }

        .btn-apply-nav:hover {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(179, 25, 66, 0.32);
        }

        .navbar-toggler {
            border: 2.5px solid var(--navy);
            padding: 6px 10px;
            border-radius: 8px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(10, 49, 97, 0.05);
            transition: var(--transition);
        }

        .navbar-toggler:hover {
            background: rgba(10, 49, 97, 0.08);
            border-color: var(--red);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(10, 49, 97, 0.08);
            outline: none;
        }

        .navbar-toggler .navbar-toggler-icon {
            width: 1.5em;
            height: 1.5em;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a3161' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-collapse {
            transition: var(--transition);
        }

        .navbar-collapse.show {
            background: rgba(255, 255, 255, 0.98);
            margin-top: 8px;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(10, 49, 97, 0.1);
        }

        .hero-section {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
            overflow: hidden;
            padding: 70px 0;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(179, 25, 66, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(10, 49, 97, 0.08) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-dots {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(10, 49, 97, 0.05) 1px, transparent 1px);
            background-size: 32px 32px;
            z-index: 1;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            animation: hFloat 7s ease-in-out infinite alternate;
        }

        .hero-shape.s1 {
            width: 350px;
            height: 350px;
            background: rgba(179, 25, 66, 0.1);
            top: -80px;
            right: -60px;
        }

        .hero-shape.s2 {
            width: 280px;
            height: 280px;
            background: rgba(10, 49, 97, 0.16);
            bottom: -40px;
            left: -40px;
            animation-delay: -3.5s;
        }

        @keyframes hFloat {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(20px, -15px) scale(1.08);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(179, 25, 66, 0.08);
            border: 1px solid rgba(179, 25, 66, 0.16);
            color: var(--red);
            padding: 7px 16px;
            border-radius: 50px;
            font-size: 12.5px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .hero-badge i {
            font-size: 10px;
        }

        .hero-title {
            font-size: clamp(28px, 4.8vw, 52px);
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.15;
        }

        .hero-title .accent {
            color: var(--red);
        }

        .hero-sub {
            font-size: clamp(15px, 1.6vw, 18px);
            color: var(--text-muted);
            max-width: 520px;
            margin-bottom: 36px;
            font-weight: 400;
            line-height: 1.9;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .btn-red {
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: #fff;
            font-weight: 800;
            font-size: 15px;
            padding: 15px 34px;
            border-radius: 12px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            transition: var(--transition);
            box-shadow: 0 10px 26px rgba(179, 25, 66, 0.25);
            text-decoration: none;
        }

        .btn-red:hover {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(179, 25, 66, 0.34);
            color: #fff;
        }

        .btn-outline-w {
            background: #ffffff;
            color: var(--navy);
            font-weight: 700;
            font-size: 15px;
            padding: 15px 34px;
            border-radius: 12px;
            border: 2px solid rgba(10, 49, 97, 0.16);
            display: inline-flex;
            align-items: center;
            gap: 9px;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(10, 49, 97, 0.06);
        }

        .btn-outline-w:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(10, 49, 97, 0.16);
        }

        .hero-stats {
            display: flex;
            gap: 36px;
            flex-wrap: wrap;
            padding-top: 36px;
            border-top: 1px solid rgba(10, 49, 97, 0.12);
        }

        .hero-stat h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--red);
            line-height: 1;
            margin-bottom: 3px;
        }

        .hero-stat p {
            font-size: 12.5px;
            color: rgba(10, 49, 97, 0.72);
            margin: 0;
        }

        .hero-img-col {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-img-wrap {
            position: relative;
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
        }

        .hero-img-wrap img {
            width: 100%;
            height: auto;
            max-height: 420px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
            border: 2px solid rgba(255, 255, 255, 0.08);
        }

        .hero-float {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            padding: 14px 18px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 11px;
            animation: hCard 4s ease-in-out infinite alternate;
        }

        .hero-float.f1 {
            bottom: 36px;
            right: -36px;
            animation-delay: -1s;
        }

        .hero-float.f2 {
            top: 36px;
            left: -24px;
            animation-delay: -3s;
        }

        @keyframes hCard {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-8px);
            }
        }

        .hf-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .hf-icon.red-i {
            background: var(--red);
            color: #fff;
        }

        .hf-icon.navy-i {
            background: var(--navy);
            color: #fff;
        }

        .hf-text strong {
            display: block;
            font-size: 13px;
            color: var(--text-dark);
        }

        .hf-text span {
            font-size: 11px;
            color: var(--text-muted);
        }

        .accred-strip {
            background: var(--off-white);
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .accred-strip .lbl {
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            writing-mode: vertical-lr;
            margin-left: 20px;
            z-index: 2;
            position: relative;
        }

        .marquee-wrapper {
            display: flex;
            flex-direction: row-reverse;
            gap: 44px;
            overflow: hidden;
            flex: 1;
        }

        .marquee-t {
            display: flex;
            flex-direction: row-reverse;
            gap: 44px;
            align-items: center;
            flex-shrink: 0;
            animation: mScroll 35s linear infinite;
        }

        .marquee-wrapper:hover .marquee-t {
            animation-play-state: paused;
        }

        @keyframes mScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-100% - 44px));
            }
        }

        .accred-i {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            opacity: 0.6;
            transition: var(--transition);
        }

        .accred-i:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .accred-i .ic {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: #fff;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--navy);
            flex-shrink: 0;
        }

        .accred-i span {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .sec-pad {
            padding: 90px 0;
        }

        .sec-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--red-bg);
            color: var(--red);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.8px;
            margin-bottom: 14px;
        }

        .sec-badge i {
            font-size: 9px;
        }

        .sec-title {
            font-size: clamp(24px, 3vw, 38px);
            color: var(--navy);
            margin-bottom: 14px;
        }

        .sec-desc {
            font-size: 15.5px;
            color: var(--text-muted);
            max-width: 560px;
            line-height: 1.9;
        }

        .sec-center {
            text-align: center;
        }

        .sec-center .sec-desc {
            margin: 0 auto;
        }

        .red-line {
            width: 45px;
            height: 3px;
            background: var(--red);
            border-radius: 2px;
            margin: 18px auto 0;
        }

        .why-section {
            background: var(--white);
            padding: 60px 0;
        }

        .pain-card {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 22px 18px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .pain-card:hover {
            border-color: rgba(198, 40, 40, 0.2);
            box-shadow: var(--card-shadow);
        }

        .pain-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(198, 40, 40, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 20px;
            color: var(--red);
        }

        .pain-card h5 {
            font-size: 15px;
            color: var(--text-dark);
            margin-bottom: 6px;
            font-weight: 700;
        }

        .pain-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        .solution-card {
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 14px;
            padding: 22px 18px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: var(--red);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: right;
        }

        .solution-card:hover {
            border-color: var(--red);
            box-shadow: var(--card-hover-shadow);
            transform: translateY(-4px);
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .sol-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 18px;
            color: #fff;
        }

        .solution-card h5 {
            font-size: 14.5px;
            color: var(--text-dark);
            margin-bottom: 4px;
            font-weight: 700;
        }

        .solution-card p {
            font-size: 12.5px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }


        .steps-section {
            background: var(--off-white);
            padding: 14px 0 18px;
            position: relative;
            overflow: hidden;
        }

        .steps-section .sec-title {
            font-size: clamp(20px, 2.5vw, 30px);
            margin-bottom: 4px;
        }

        .steps-section .sec-desc {
            font-size: 13px !important;
            margin-bottom: 0;
        }

        .steps-section .red-line {
            margin: 8px auto 0;
        }

        .steps-section .hero-dots {
            z-index: 0;
            opacity: 0.5;
        }

        .step-item {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 8px;
        }

        .step-num {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            box-shadow: 0 4px 16px rgba(179, 25, 66, 0.28);
            transition: var(--transition);
        }

        .step-item:hover .step-num {
            transform: scale(1.08);
            box-shadow: 0 6px 22px rgba(179, 25, 66, 0.38);
        }

        .step-item h5 {
            font-size: 15px;
            color: var(--navy);
            margin-bottom: 6px;
            font-weight: 800;
        }

        .step-item p {
            font-size: 12.5px;
            color: var(--text-muted);
            max-width: 200px;
            margin: 0 auto;
            line-height: 1.65;
        }

        .step-connector {
            position: absolute;
            top: 26px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(179, 25, 66, 0.15), rgba(179, 25, 66, 0.15), transparent);
            z-index: 0;
        }

        .grads-section {
            background: var(--off-white);
            padding: 52px 0 60px;
        }

        /* Grad Swiper Wrapper */
        .grads-swiper-wrap {
            position: relative;
            padding: 0 50px;
        }

        @media(max-width: 576px) {
            .grads-swiper-wrap {
                padding: 0 12px;
            }
        }

        /* Arrow Buttons */
        .grad-btn-prev,
        .grad-btn-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            border: 1.5px solid var(--border);
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            box-shadow: 0 2px 12px rgba(10, 49, 97, 0.12);
            transition: var(--transition);
        }

        .grad-btn-prev:hover,
        .grad-btn-next:hover {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
            box-shadow: 0 4px 18px rgba(179, 25, 66, 0.28);
        }

        .grad-btn-prev {
            right: 4px;
        }

        .grad-btn-next {
            left: 4px;
        }

        @media(max-width: 576px) {

            .grad-btn-prev,
            .grad-btn-next {
                display: none;
            }
        }

        /* Grad Swiper Card */
        .grad-swiper-card {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            aspect-ratio: 3/4;
            cursor: pointer;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
        }

        .grad-swiper-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
        }

        .grad-swiper-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .grad-swiper-card:hover img {
            transform: scale(1.06);
        }

        .grad-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top,
                    rgba(5, 20, 50, 0.98) 0%,
                    rgba(5, 20, 50, 0.85) 40%,
                    rgba(5, 20, 50, 0.3) 75%,
                    transparent 100%);
            padding: 36px 16px 18px;
            text-align: right;
        }

        .grad-card-overlay h6 {
            font-size: 17px;
            font-weight: 900;
            color: #ffffff;
            margin: 0 0 5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            letter-spacing: 0.01em;
        }

        .grad-card-overlay .grad-dept {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.92);
            margin: 0;
            font-weight: 500;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        }

        .grad-card-overlay .grad-uni {
            display: inline-block;
            font-size: 11px;
            color: #fff;
            font-weight: 700;
            margin: 0 0 7px;
            background: var(--red);
            padding: 2px 10px;
            border-radius: 20px;
            letter-spacing: 0.02em;
        }

        .grads-swiper {
            padding-bottom: 36px !important;
        }

        .grads-swiper .swiper-pagination-bullet {
            background: var(--navy);
            opacity: 0.25;
        }

        .grads-swiper .swiper-pagination-bullet-active {
            background: var(--red);
            opacity: 1;
        }



        .comp-table {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
        }

        .comp-table table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        .comp-table thead th {
            padding: 16px 20px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-align: center;
            border-bottom: 2px solid var(--border);
        }

        .comp-table thead th:first-child {
            text-align: right;
            color: var(--text-muted);
            background: rgba(13, 27, 74, 0.03);
        }

        .comp-table thead th.col-us {
            background: var(--navy);
            color: #fff;
            font-size: 12.5px;
        }

        .comp-table thead th.col-us i {
            margin-left: 5px;
            color: var(--red-light);
        }

        .comp-table thead th.col-others {
            background: rgba(13, 27, 74, 0.04);
            color: var(--text-muted);
        }

        .comp-table tbody td {
            padding: 14px 20px;
            font-size: 14px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
        }

        .comp-table tbody td:first-child {
            text-align: right;
            font-weight: 600;
            color: var(--text-dark);
        }

        .comp-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comp-table tbody tr:hover {
            background: rgba(198, 40, 40, 0.02);
        }

        .ck-y {
            color: #16a34a;
            font-size: 17px;
        }

        .ck-n {
            color: #dc2626;
            font-size: 17px;
        }

        .ck-l {
            color: #f59e0b;
            font-size: 12px;
            font-weight: 600;
        }

        .testi-section {
            background: var(--off-white);
        }

        .swiper {
            padding-bottom: 48px !important;
        }

        .swiper-pagination-bullet {
            width: 9px;
            height: 9px;
            background: var(--border);
            opacity: 1;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background: var(--red) !important;
            width: 26px;
            border-radius: 5px;
        }

        .testi-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 30px;
            margin: 8px;
            transition: var(--transition);
            height: 100%;
        }

        .testi-card:hover {
            box-shadow: var(--card-hover-shadow);
            border-color: rgba(198, 40, 40, 0.2);
        }

        .testi-stars {
            color: var(--red);
            font-size: 13px;
            margin-bottom: 14px;
            display: flex;
            gap: 2px;
        }

        .testi-card blockquote {
            font-size: 14.5px;
            color: var(--text-dark);
            line-height: 1.9;
            margin-bottom: 20px;
            border: none;
            padding: 0;
            font-style: normal;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testi-author img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border);
        }

        .testi-author strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .testi-author span {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .q-icon {
            font-size: 28px;
            color: var(--red);
            opacity: 0.15;
            margin-bottom: 12px;
        }

        .faq-section {
            background: var(--white);
        }

        .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: 11px !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--white);
        }

        .accordion-button {
            font-family: 'Cairo', sans-serif;
            font-size: 14.5px;
            font-weight: 700;
            color: var(--text-dark);
            padding: 18px 22px;
            background: var(--white);
            box-shadow: none !important;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(198, 40, 40, 0.04);
            color: var(--navy);
        }

        .accordion-button::after {
            background-image: none;
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 11px;
            color: var(--red);
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(198, 40, 40, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            background: var(--red);
            color: #fff;
        }

        .accordion-body {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.9;
            padding: 0 22px 18px;
        }

        .cta-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
            position: relative;
            overflow: hidden;
            padding: 90px 0;
        }

        .cta-section .hero-dots {
            z-index: 0;
        }

        .cta-section .hero-shape.s1 {
            width: 400px;
            height: 400px;
            top: -180px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(198, 40, 40, 0.06);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-content h2 {
            font-size: clamp(24px, 3.2vw, 40px);
            color: var(--navy);
            margin-bottom: 18px;
        }

        .cta-content p {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 36px;
        }

        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer {
            background: #ffffff;
            padding: 80px 0 30px;
            color: var(--text-muted);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red) 0%, var(--navy) 100%);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .footer-logo img {
            height: 55px;
            width: auto;
        }

        .footer-desc {
            font-size: 14.5px;
            line-height: 1.8;
            margin-bottom: 28px;
            color: var(--text-muted);
            max-width: 90%;
        }

        .footer h6 {
            font-size: 16px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer h6::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 3px;
            background: var(--red);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .footer-links a::before {
            content: '\f104';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 8px;
            font-size: 12px;
            color: var(--red);
            opacity: 0;
            transform: translateX(10px);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--red);
            transform: translateX(-5px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .footer-contact-icon {
            width: 36px;
            height: 36px;
            background: rgba(179, 25, 66, 0.08);
            color: var(--red);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-contact-item:hover .footer-contact-icon {
            background: var(--red);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(179, 25, 66, 0.2);
        }

        .footer-contact-text strong {
            display: block;
            color: var(--navy);
            font-size: 14.5px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(10, 49, 97, 0.05);
            color: var(--navy);
            font-size: 16px;
            transition: var(--transition);
        }

        .footer-socials a:hover {
            background: var(--navy);
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(10, 49, 97, 0.2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 24px;
            margin-top: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright {
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .footer-copyright span {
            color: var(--red);
            font-weight: 700;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13.5px;
            font-weight: 500;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--red);
        }

        .wa-float {
            position: fixed;
            bottom: 26px;
            left: 26px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 26px;
            box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
            text-decoration: none;
            animation: waPulse 2s ease-in-out infinite;
        }

        .wa-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
            color: #fff;
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 4px 28px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.08);
            }
        }

        .btt {
            position: fixed;
            bottom: 32px;
            right: 26px;
            z-index: 9998;
            width: 44px;
            height: 44px;
            background: var(--navy);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            box-shadow: 0 6px 20px rgba(10, 49, 97, 0.2);
            transition: var(--transition);
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(16px);
        }

        .btt.vis {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .btt:hover {
            background: var(--red);
            color: #fff;
            transform: translateY(-3px);
        }

        .modal-content {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
        }

        .modal-header {
            background: #ffffff;
            color: var(--navy);
            border: none;
            border-bottom: 1px solid var(--border);
            padding: 28px 28px 24px;
            position: relative;
        }

        .modal-header .btn-close {
            filter: none;
            opacity: 0.5;
            transition: var(--transition);
        }

        .modal-header .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }

        .modal-brand-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .modal-brand-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: #000000;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #ffffff;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .modal-brand-text strong {
            display: block;
            font-size: 17px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.3;
        }

        .modal-brand-text span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .modal-body {
            padding: 26px 28px 28px;
            background: var(--off-white);
        }

        .form-group-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
            display: block;
            letter-spacing: 0.03em;
        }

        .modal-form-input {
            width: 100%;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            padding: 11px 14px;
            font-family: 'Cairo', sans-serif;
            background: #fff;
            color: var(--text-dark);
            transition: var(--transition);
            outline: none;
            direction: rtl;
        }

        .modal-form-input:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(179, 25, 66, 0.1);
        }

        .modal-form-input::placeholder {
            color: var(--text-muted);
        }

        .form-row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        @media(max-width: 480px) {
            .form-row-2 {
                grid-template-columns: 1fr;
            }
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            color: #fff;
            font-weight: 800;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: 10px;
            border: none;
            width: 100%;
            transition: var(--transition);
            cursor: pointer;
            letter-spacing: 0.02em;
            box-shadow: 0 4px 18px rgba(179, 25, 66, 0.28);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(179, 25, 66, 0.4);
        }

        .form-floating>.form-control,
        .form-floating>.form-select {
            border: 1px solid var(--border);
            border-radius: 9px;
            font-size: 14px;
        }

        .form-floating>label {
            font-size: 13.5px;
            color: var(--text-muted);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
        }

        .c-toast {
            position: fixed;
            top: 95px;
            left: 28px;
            z-index: 10000;
            background: #fff;
            border-radius: 11px;
            padding: 14px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            border-right: 4px solid #16a34a;
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateX(-120%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 360px;
        }

        .c-toast.show {
            transform: translateX(0);
        }

        .c-toast i {
            font-size: 18px;
            color: #16a34a;
        }

        .c-toast .tt strong {
            display: block;
            font-size: 13.5px;
        }

        .c-toast .tt span {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .pg-loader {
            position: fixed;
            inset: 0;
            background: #ffffff;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 28px;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
        }

        .pg-loader.hide {
            opacity: 0;
            visibility: hidden;
        }

        .ld-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ld-logo {
            width: 70px;
            height: 70px;
            position: relative;
            z-index: 2;
            animation: ldFloat 2.5s ease-in-out infinite;
        }

        .ld-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .ld-ring {
            position: absolute;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--red);
            border-bottom-color: var(--navy);
            animation: ldSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
            z-index: 1;
        }

        .ld-ring::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 6px;
            right: 6px;
            bottom: 6px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-left-color: rgba(179, 25, 66, 0.3);
            border-right-color: rgba(10, 49, 97, 0.2);
            animation: ldSpin reverse 2s linear infinite;
        }

        @keyframes ldSpin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes ldFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .ld-text {
            font-size: 15px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: 1.5px;
            animation: ldPulse 1.8s ease-in-out infinite;
            text-transform: uppercase;
        }

        @keyframes ldPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(0.96);
            }
        }

        @media(max-width:991px) {
            .hero-section {
                padding: 24px 0 60px;
                min-height: auto;
            }

            .hero-img-wrap {
                max-width: 320px;
            }

            .hero-img-wrap img {
                max-height: 300px;
                border-radius: 14px;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat h3 {
                font-size: 26px;
            }

            .hero-float {
                display: none;
            }

            .navbar-main {
                padding: 8px 0;
            }

            .navbar-brand img {
                height: 44px;
            }

            #navMenu.offcanvas {
                width: 90vw !important;
                max-width: 380px !important;
                height: auto !important;
                max-height: 85vh !important;
                top: 50% !important;
                left: 50% !important;
                right: auto !important;
                bottom: auto !important;
                transform: translate(-50%, -50%) scale(0.9) !important;
                border-radius: 24px !important;
                opacity: 0 !important;
                transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease !important;
                box-shadow: 0 24px 70px rgba(10, 49, 97, 0.25) !important;
                border: 1px solid rgba(10, 49, 97, 0.08) !important;
                margin: 0 !important;
            }

            #navMenu.offcanvas.show,
            #navMenu.offcanvas.showing {
                transform: translate(-50%, -50%) scale(1) !important;
                opacity: 1 !important;
                visibility: visible !important;
            }

            #navMenu.offcanvas.hiding {
                transform: translate(-50%, -50%) scale(0.9) !important;
                opacity: 0 !important;
                visibility: visible !important;
            }

            #navMenu .offcanvas-header {
                border-bottom: 1px solid rgba(10, 49, 97, 0.05);
                padding: 20px 24px;
            }

            #navMenu .offcanvas-body {
                padding: 24px;
                display: flex;
                flex-direction: column;
            }

            #navMenu .navbar-nav {
                width: 100%;
                text-align: center;
                gap: 0;
            }

            #navMenu .nav-item {
                border-bottom: 1px solid rgba(10, 49, 97, 0.04);
                margin-bottom: 4px;
            }

            #navMenu .nav-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }

            #navMenu .nav-link {
                font-size: 16px !important;
                padding: 14px 10px !important;
                color: var(--navy);
                font-weight: 700;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            #navMenu .nav-link:hover {
                background: rgba(179, 25, 66, 0.05);
                color: var(--red);
                transform: translateY(-2px);
            }

            #navMenu .nav-link::after {
                display: none;
            }

            #navMenu .btn-apply-nav {
                width: 100%;
                text-align: center;
                padding: 14px 20px !important;
                font-size: 15px;
                margin-top: 20px;
                border-radius: 12px;
            }
        }

        @media(max-width:767px) {
            .hero-title {
                font-size: 23px !important;
                margin-bottom: 10px !important;
            }

            .hero-sub {
                font-size: 13.5px !important;
                line-height: 1.7 !important;
                margin-bottom: 18px !important;
            }

            .hero-btns {
                margin-bottom: 24px !important;
            }

            .btn-red,
            .btn-outline-w {
                padding: 12px 20px !important;
                font-size: 14px !important;
            }

            .top-bar .d-none-m {
                display: none !important;
            }

            .hero-content {
                text-align: center;
            }

            .hero-sub {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }

            .btn-red,
            .btn-outline-w {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: row;
                justify-content: center;
                text-align: center;
                gap: 15px;
            }

            .hero-stat {
                display: block;
                text-align: center;
                flex: 1;
            }

            .hero-stat h3 {
                font-size: 22px;
                margin-bottom: 4px;
            }

            .comp-table {
                overflow-x: auto;
            }

            .comp-table table {
                min-width: 500px;
            }

            .accred-strip .lbl {
                display: none;
            }



            .col-lg-5 {
                text-align: center;
            }

            .col-lg-5 .sec-badge {
                margin: 0 auto 14px;
                display: inline-flex;
            }

            .col-lg-5 .red-line {
                margin: 18px auto 0 !important;
            }
        }

        @media(prefers-reduced-motion:reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* React form validation error state */
        .input-error {
            border-color: #dc2626 !important;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
        }

        /* pg-loader fix for React (unmount via display) */
        .pg-loader {
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
        }

        /* Success Page Styles */
        .success-page-wrapper {
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
            overflow: hidden;
        }
        .success-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 50px 40px;
            box-shadow: 0 20px 40px rgba(10, 49, 97, 0.08);
            border: 1px solid rgba(229, 231, 235, 0.5);
            max-width: 650px;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        .success-icon-wrap {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.1);
            position: relative;
        }
        .success-icon-wrap::before {
            content: '';
            position: absolute;
            inset: -15px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.05);
            animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }
        .success-icon {
            font-size: 40px;
            color: #16a34a;
        }
        @keyframes pulse-ring {
            0% { transform: scale(0.8); opacity: 0.5; }
            100% { transform: scale(1.3); opacity: 0; }
        }
        .btn-outline-navy {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-outline-navy:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-2px);
        }