
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #f5f7ff;
            overflow-x: hidden;
        }

        .navbar {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: 700;
            color: #2AB2E5 !important;
        }

        .nav-link {
            font-weight: 500;
            color: #333 !important;
            margin-left: 15px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            bottom: -80px;
            left: -80px;
        }

        .hero h1 {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            margin-top: 20px;
            color: #eaeaea;
        }

        .hero-btn {
            margin-top: 30px;
        }

        .hero-btn .btn {
            padding: 14px 35px;
            font-size: 18px;
            border-radius: 50px;
            font-weight: 600;
        }

        .hero-img img {
            width: 100%;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .stats {
            margin-top: -70px;
            position: relative;
            z-index: 10;
        }

        .stat-box {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-10px);
        }

        .stat-box h2 {
            color: #2AB2E5;
            font-weight: 700;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 700;
            color: #111;
        }

        .section-title p {
            color: #666;
        }

        .feature-card {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            transition: 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card i {
            font-size: 45px;
            color: #2AB2E5;
            margin-bottom: 20px;
        }

        .feature-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .course-box {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            height: 100%;
        }

        .course-box:hover {
            transform: translateY(-10px);
        }

        .course-box img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .course-content {
            padding: 25px;
        }

        .course-content h4 {
            font-weight: 600;
        }

        .testimonial {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            text-align: center;
        }

        .testimonial img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .cta {
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            padding: 80px 20px;
            border-radius: 30px;
            text-align: center;
        }

        .cta h2 {
            font-size: 48px;
            font-weight: 700;
        }

        footer {
            background: #111827;
            color: #fff;
            padding: 25px 0;
            text-align: center;
            margin-top: 80px;
        }

        @media(max-width:991px) {

            .hero {
                text-align: center;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero-img {
                margin-top: 50px;
            }

            .cta h2 {
                font-size: 35px;
            }
        }

        /* Hiring Partners */

        .partner-box {
            background: #fff;
            height: 130px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .partner-box:hover {
            transform: translateY(-10px);
        }

        .partner-box img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: 0.3s;
        }

        .partner-box:hover img {
            filter: grayscale(0%);
        }

        /* More Courses Section */

        .more-course-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            height: 100%;
        }

        .more-course-card:hover {
            transform: translateY(-10px);
        }

        .more-course-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .more-course-content {
            padding: 25px;
        }

        .more-course-content span {
            background: #2AB2E5;
            color: #fff;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 13px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .more-course-content h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .more-course-content p {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
        }

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

        .course-bottom h5 {
            color: #2AB2E5;
            font-weight: 700;
            margin: 0;
        }

        .course-bottom .btn {
            border-radius: 30px;
            padding: 8px 20px;
        }

        /* Fixed Right Side Contact Icons */

        .fixed-contact-icons {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .fixed-contact-icons a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #fff;
            font-size: 28px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
            animation: pulse 2s infinite;
        }

        .fixed-contact-icons a:hover {
            transform: scale(1.1);
        }

        .whatsapp-icon {
            background: #25D366;
        }

        .call-icon {
            background: #2AB2E5;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                transform: scale(1);
            }
        }

        @media(max-width:576px) {

            .fixed-contact-icons {
                right: 15px;
                bottom: 20px;
            }

            .fixed-contact-icons a {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }
        }

        /* =========================
   Why Choose Us Section
========================= */

        .why-choose-section {
            background: #f7f9ff;
            position: relative;
            overflow: hidden;
        }

        .choose-tag {
            display: inline-block;
            background: #e8edff;
            color: #2AB2E5;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .why-choose-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .why-choose-section h2 span {
            color: #2AB2E5;
        }

        .why-choose-section p {
            color: #6b7280;
            font-size: 16px;
        }

        .choose-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 25px;
            text-align: center;
            height: 100%;
            transition: 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }

        .choose-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            left: 0;
            bottom: 0;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            transition: 0.4s;
            z-index: 0;
        }

        .choose-card:hover::before {
            height: 100%;
        }

        .choose-card:hover {
            transform: translateY(-12px);
        }

        .choose-card * {
            position: relative;
            z-index: 2;
        }

        .choose-icon {
            width: 90px;
            height: 90px;
            margin: auto;
            margin-bottom: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            font-size: 38px;
            transition: 0.4s;
        }

        .choose-card h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
            transition: 0.4s;
        }

        .choose-card p {
            margin: 0;
            transition: 0.4s;
        }

        .choose-card:hover h4,
        .choose-card:hover p {
            color: #fff;
        }

        .choose-card:hover .choose-icon {
            background: #fff;
            color: #2AB2E5;
        }

        @media(max-width:991px) {

            .why-choose-section h2 {
                font-size: 38px;
            }
        }

        @media(max-width:576px) {

            .why-choose-section h2 {
                font-size: 30px;
            }

            .choose-card {
                padding: 30px 20px;
            }
        }


        /* =========================
   Advantages Section
========================= */

        .advantages-section {
            background: #ffffff;
            position: relative;
        }

        .advantage-badge {
            display: inline-block;
            padding: 8px 22px;
            background: #edf4ff;
            color: #2AB2E5;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .advantages-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .advantages-section p {
            color: #6b7280;
        }

        .advantage-card {
            background: #fff;
            border-radius: 25px;
            padding: 35px 30px;
            text-align: center;
            height: 100%;
            transition: 0.4s;
            border: 1px solid #eef2ff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
        }

        .advantage-icon {
            width: 90px;
            height: 90px;
            margin: auto;
            margin-bottom: 25px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            color: #fff;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
        }

        .advantage-card h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
        }

        .advantage-card p {
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
        }

        @media(max-width:991px) {

            .advantages-section h2 {
                font-size: 38px;
            }
        }

        @media(max-width:576px) {

            .advantages-section h2 {
                font-size: 30px;
            }

            .advantage-card {
                padding: 30px 20px;
            }
        }

        /* =========================
   Curriculum Section
========================= */

        .curriculum-section {
            background: #f8fbff;
            position: relative;
            overflow: hidden;
        }

        .curriculum-badge {
            display: inline-block;
            padding: 8px 22px;
            background: #e9f1ff;
            color: #2AB2E5;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .curriculum-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .curriculum-section p {
            color: #6b7280;
        }

        .curriculum-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .curriculum-item {
            display: flex;
            gap: 20px;
            background: #fff;
            padding: 25px;
            border-radius: 20px;
            align-items: flex-start;
            transition: 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .curriculum-item:hover {
            transform: translateX(10px);
        }

        .curriculum-icon {
            min-width: 75px;
            height: 75px;
            border-radius: 18px;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .curriculum-item h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111827;
        }

        .curriculum-item p {
            margin: 0;
            line-height: 1.7;
        }

        .curriculum-image {
            position: relative;
        }

        .curriculum-image img {
            width: 100%;
            border-radius: 30px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .floating-card {
            position: absolute;
            bottom: 30px;
            left: -20px;
            background: #fff;
            padding: 25px 35px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            text-align: center;
        }

        .floating-card h3 {
            font-size: 42px;
            font-weight: 700;
            color: #2AB2E5;
            margin: 0;
        }

        .floating-card p {
            margin: 0;
            color: #111827;
            font-weight: 500;
        }

        @media(max-width:991px) {

            .curriculum-section h2 {
                font-size: 38px;
            }

            .curriculum-image {
                margin-top: 40px;
            }
        }

        @media(max-width:576px) {

            .curriculum-section h2 {
                font-size: 30px;
            }

            .curriculum-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .floating-card {
                left: 50%;
                transform: translateX(-50%);
                bottom: -20px;
                width: 85%;
            }
        }

        /* =========================
   Instructor Section
========================= */

        .instructor-section {
            background: #ffffff;
            position: relative;
        }

        .instructor-badge {
            display: inline-block;
            padding: 8px 22px;
            background: #edf4ff;
            color: #2AB2E5;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .instructor-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .instructor-section p {
            color: #6b7280;
        }

        .instructor-card {
            background: #fff;
            border-radius: 25px;
            overflow: hidden;
            transition: 0.4s;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .instructor-card:hover {
            transform: translateY(-12px);
        }

        .instructor-img {
            overflow: hidden;
        }

        .instructor-img img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: 0.4s;
        }

        .instructor-card:hover .instructor-img img {
            transform: scale(1.08);
        }

        .instructor-content {
            padding: 25px;
            text-align: center;
        }

        .instructor-content h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #111827;
        }

        .instructor-content span {
            color: #2AB2E5;
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }

        .instructor-content p {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .instructor-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .instructor-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #f1f5ff;
            color: #2AB2E5;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
        }

        .instructor-social a:hover {
            background: #2AB2E5;
            color: #fff;
            transform: translateY(-5px);
        }

        @media(max-width:991px) {

            .instructor-section h2 {
                font-size: 38px;
            }
        }

        @media(max-width:576px) {

            .instructor-section h2 {
                font-size: 30px;
            }

            .instructor-img img {
                height: 280px;
            }
        }

        /* =========================
   Enquiry Popup
========================= */

        .custom-modal {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
            padding: 20px;
        }

        .custom-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .custom-modal-box {
            width: 100%;
            max-width: 950px;
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            animation: popupAnim 0.5s ease;
        }

        @keyframes popupAnim {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-left {
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            padding: 50px;
        }

        .popup-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .popup-left h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .popup-left p {
            color: #f1f1f1;
            margin-bottom: 25px;
        }

        .popup-left ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .popup-left ul li {
            margin-bottom: 15px;
            font-size: 17px;
        }

        .popup-left ul li i {
            margin-right: 10px;
        }

        .popup-right {
            padding: 50px;
        }

        .popup-right h3 {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #111827;
        }

        .form-control,
        .form-select {
            height: 55px;
            border-radius: 14px;
            border: 1px solid #dbe4ff;
            box-shadow: none !important;
        }

        .submit-btn {
            height: 55px;
            border: none;
            border-radius: 14px;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            font-size: 18px;
            font-weight: 600;
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 45px;
            height: 45px;
            border: none;
            border-radius: 50%;
            background: #fff;
            font-size: 28px;
            cursor: pointer;
            z-index: 5;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .enquiry-btn {
            border-radius: 30px;
            padding: 12px 28px;
            font-weight: 600;
            position: fixed;
            left: 50px;
            bottom: 100px;
            z-index: 99;
        }

        @media(max-width:991px) {

            .custom-modal-box {
                grid-template-columns: 1fr;
                max-height: 90vh;
                overflow-y: auto;
            }

            .popup-left,
            .popup-right {
                padding: 35px;
            }

            .popup-left h2 {
                font-size: 32px;
            }
        }

        @media(max-width:576px) {

            .popup-left,
            .popup-right {
                padding: 25px;
            }

            .popup-left h2 {
                font-size: 28px;
            }

            .popup-right h3 {
                font-size: 28px;
            }
        }

        /* =========================
   Course Content Section
========================= */

        .course-content-section {
            background: #f8fbff;
        }

        .course-badge {
            display: inline-block;
            background: #e9f1ff;
            color: #2AB2E5;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .course-content-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .course-content-section p {
            color: #6b7280;
            line-height: 1.8;
        }

        .content-box {
            background: #fff;
            padding: 35px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .content-box h3 {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 20px;
        }

        .module-card {
            display: flex;
            gap: 18px;
            background: #f9fbff;
            padding: 22px;
            border-radius: 20px;
            transition: 0.4s;
            height: 100%;
        }

        .module-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.12);
        }

        .module-icon {
            min-width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 30px;
        }

        .module-card h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111827;
        }

        .module-card p {
            margin: 0;
            font-size: 15px;
        }

        .career-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .career-tags span {
            background: #edf4ff;
            color: #2AB2E5;
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: 600;
        }

        .sticky-form-card {
            background: #fff;
            padding: 35px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }

        .sticky-form-card h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .sticky-form-card .form-control {
            height: 55px;
            border-radius: 14px;
            border: 1px solid #dbe4ff;
            box-shadow: none !important;
        }

        .sticky-form-card .btn {
            height: 55px;
            border: none;
            border-radius: 14px;
            font-size: 18px;
            font-weight: 600;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
        }

        @media(max-width:991px) {

            .course-content-section h2 {
                font-size: 38px;
            }

            .sticky-form-card {
                margin-top: 30px;
                position: relative;
                top: 0;
            }
        }

        @media(max-width:576px) {

            .course-content-section h2 {
                font-size: 30px;
            }

            .content-box {
                padding: 25px;
            }

            .content-box h3 {
                font-size: 26px;
            }

            .module-card {
                flex-direction: column;
            }
        }

        /* =========================
   FAQ Module Section
========================= */

        .faq-module-section {
            background: #f8fbff;
        }

        .faq-badge {
            display: inline-block;
            background: #e9f1ff;
            color: #2AB2E5;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .faq-module-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .custom-faq .accordion-item {
            border: none;
            margin-bottom: 25px;
            border-radius: 25px !important;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .custom-faq .accordion-button {
            background: #fff;
            padding: 30px;
            box-shadow: none !important;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .custom-faq .accordion-button::after {
            filter: brightness(0);
        }

        .custom-faq .accordion-button:not(.collapsed) {
            background: #fff;
        }

        .faq-icon {
            min-width: 75px;
            height: 75px;
            border-radius: 20px;
            background: linear-gradient(135deg, #2AB2E5, #6610f2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .custom-faq h4 {
            font-size: 26px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
        }

        .custom-faq .accordion-button p {
            margin: 0;
            color: #6b7280;
        }

        .custom-faq .accordion-body {
            padding: 35px;
            background: #fff;
        }

        .custom-faq .accordion-body p {
            color: #4b5563;
            line-height: 1.9;
            margin-bottom: 20px;
            font-size: 16px;
        }

        @media(max-width:991px) {

            .faq-module-section h2 {
                font-size: 38px;
            }
        }

        @media(max-width:576px) {

            .faq-module-section h2 {
                font-size: 30px;
            }

            .custom-faq .accordion-button {
                padding: 20px;
                align-items: flex-start;
            }

            .custom-faq h4 {
                font-size: 22px;
            }

            .faq-icon {
                min-width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .custom-faq .accordion-body {
                padding: 25px;
            }
        }
        
        .top-header{
    background:#1e3351;
    color:#fff;
    padding:10px 15px;
    font-size:14px;
}

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

/* Desktop */
.desktop-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.call-btn{
    background:#0d6efd;
    color:white !important;
    text-decoration:none;
    padding:10px 20px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
    box-shadow:0 4px 10px rgb(13 110 253 / 45%);
}

/*.call-btn:hover{*/
/*    background:#fff;*/
/*    transform:translateY(-2px);*/
/*}*/

/* Mobile */
.mobile-top{
    display:none;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.mobile-location{
    font-size:13px;
}

.mobile-call-btn{
    background:#0d6efd;
    color:white !important;
    text-decoration:none;
    padding:8px 14px;
    border-radius:50px;
    font-weight:700;
    font-size:13px;
    white-space:nowrap;
     box-shadow:0 4px 10px rgb(13 110 253 / 45%);
}

/* Responsive */
@media(max-width:768px){

    .desktop-top{
        display:none;
    }

    .mobile-top{
        display:flex;
    }

    .top-header{
        font-size:13px;
        padding:10px;
    }
}
    