        /* Top Bar Styles */
        .techbrain-topbar {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 8px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .techbrain-topbar-contact {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .techbrain-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .techbrain-franchise {
            background-color: var(--secondary-blue);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .techbrain-topbar-links {
            display: flex;
            gap: 20px;
        }

        .techbrain-topbar-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: opacity 0.3s;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }

        .techbrain-topbar-links a:hover {
            opacity: 0.8;
        }

        /* Main Navbar Styles */
        .techbrain-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            box-shadow: 0 5px 15px var(--shadow);
            background-color: var(--white);
            position: relative;
            z-index: 1000;
        }

        .techbrain-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .techbrain-logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-blue);
            text-shadow: 1px 1px 2px var(--shadow);
        }

        .techbrain-nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
        }

        .techbrain-nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
            position: relative;
            /* padding: 0px 0; */
            transition: color 0.3s;
        }

        .techbrain-nav-links a:hover {
            color: var(--primary-blue);
        }

        .techbrain-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-blue);
            transition: width 0.3s;
        }

        .techbrain-nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown Styles */
        .techbrain-dropdown {
            position: relative;
        }

        .techbrain-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .techbrain-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 12px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .techbrain-dropdown:hover .techbrain-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .techbrain-dropdown-menu li {
            padding: 0;
        }

        .techbrain-dropdown-menu a {
            display: block;
            padding: 10px 20px;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .techbrain-dropdown-menu a:hover {
            background-color: var(--light-blue);
            color: var(--primary-blue);
            padding-left: 25px;
        }

        /* Fees Payment Section */
        .techbrain-payment {
            background-color: var(--light-blue);
            padding: 8px 15px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 14px;
            border: 1px solid #c2d5ff;
        }

        .techbrain-razorpay {
            font-weight: 800;
            color: var(--secondary-blue);
        }

        /* Mobile Hamburger Menu */
        .techbrain-hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
        }

        .techbrain-hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-blue);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Mobile Navbar Styles */
        .techbrain-mobile-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background-color: var(--white);
            box-shadow: 5px 0 15px var(--shadow);
            z-index: 1002;
            padding: 20px;
            overflow-y: auto;
            transition: left 0.4s ease;
        }

        .techbrain-mobile-nav.active {
            left: 0;
        }

        .techbrain-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .techbrain-mobile-logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary-blue);
        }

        .techbrain-mobile-close {
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }

        .techbrain-mobile-links {
            list-style: none;
        }

        .techbrain-mobile-links li {
            margin-bottom: 15px;
        }

        .techbrain-mobile-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 17px;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .techbrain-mobile-dropdown-menu {
            list-style: none;
            padding-left: 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .techbrain-mobile-dropdown-menu.active {
            max-height: 500px;
        }

        .techbrain-mobile-dropdown-menu li {
            margin-bottom: 10px;
        }

        .techbrain-mobile-dropdown-menu a {
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            border-bottom: none;
        }

        .techbrain-mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .techbrain-mobile-dropdown-toggle i {
            transition: transform 0.3s;
        }

        .techbrain-mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .techbrain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .techbrain-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .techbrain-nav-links {
                gap: 15px;
            }
        }

        @media (max-width: 992px) {
            .techbrain-topbar-links {
                display: none;
            }

            .techbrain-payment {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .techbrain-topbar {
                justify-content: center;
            }

            .techbrain-topbar-contact {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .techbrain-nav-links {
                display: none;
            }

            .techbrain-hamburger {
                display: flex;
            }

            .techbrain-navbar {
                padding: 15px 20px;
            }
        }


        /* Simple page content to show navbar is fixed */
        .page-content {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-content h1 {
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .page-content p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #555;
        }

        /* =================  */

        .techbran-marquee {
            flex: 1;
            /* background-color: #ff6b6b; */
            color: white;
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 15px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            margin: 0 15px;
            /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
        }

        .marquee-text {
            display: inline-block;
            animation: marquee 15s linear infinite;
            padding-left: 100%;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .marquee-text span {
            color: #ffeb3b;
            font-weight: 700;
        }

        /* Optional hover pause effect */
        .techbran-marquee:hover .marquee-text {
            animation-play-state: paused;
        }

        /* ===================== banner  */
        .banner_wrapper {
            padding: 80px 0;
            position: relative;
            overflow: hidden;

            /* Premium Gradient Background */
            background: radial-gradient(circle at top left, #1d4ed8, transparent 55%), radial-gradient(circle at bottom right, #0d6efd, transparent 55%), linear-gradient(135deg, #050b24, #071031, #000);

            background-size: cover;
            background-position: center;
        }

        /* Floating Glow Shapes */
        .banner_wrapper::before,
        .banner_wrapper::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.55;
            z-index: 0;
        }

        .banner_wrapper::before {
            background: #ff3d00;
            top: -80px;
            left: -80px;
        }

        .banner_wrapper::after {
            background: #2563eb;
            bottom: -80px;
            right: -80px;
        }

        /* Content Above Background */
        .banner_wrapper .row {
            position: relative;
            z-index: 2;
        }

        /* Badge Style */
        .banner_left .badge {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 30px;
            color: #fff;
            letter-spacing: 0.6px;
            backdrop-filter: blur(8px);
        }

        /* Heading */
        .banner_left h1 {
            font-size: 45px;
            line-height: 1.25;
            margin-top: 18px;
            color: #fff;
            font-weight: 800;
        }

        .banner_left h1 span {
            background: linear-gradient(90deg, #ff3d00, #ffb703);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Paragraph */
        .banner_left p {
            font-size: 18px;
            line-height: 1.8;
            margin-top: 18px;
            /*max-width: 520px;*/
            color: rgba(255, 255, 255, 0.8);
            text-align: justify;
        }

        /* Points */
        .banner_points {
            margin-top: 2.2rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .banner_points h6 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 17px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .banner_points h6 i {
            color: #ff3d00;
            font-size: 22px;
            background: #ff3d00;
            padding: 6px;
            border-radius: 50%;
        }

        /* Button */
        .banner_left .myBtn button {
            margin-top: 25px;
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;

            background: linear-gradient(90deg, #ff3d00, #ff7b00);
            color: #fff;

            box-shadow: 0 12px 30px rgba(255, 61, 0, 0.35);
            transition: all 0.35s ease;
        }

        .banner_left .myBtn button:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(255, 61, 0, 0.55);
        }

        /* Form Box */
        .banner_form {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 38px;
            border-radius: 22px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(18px);
            position: relative;
        }

        /* Form Title */
        .banner_form h6 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 22px;
        }

        .banner_form h6 span {
            background: linear-gradient(90deg, #ff3d00, #ffb703);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        /* Inputs */
        .form_input input,
        .form_input textarea {
            width: 100%;
            padding: 15px 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: 0.3s;
            margin-bottom: 10px;
        }

        .form_input input:focus,
        .form_input textarea:focus {
            border-color: #ff3d00;
            box-shadow: 0 0 12px rgba(255, 61, 0, 0.55);
        }

        /* Submit Button */
        .form_input button {
            padding: 14px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;

            background: linear-gradient(90deg, #2563eb, #00c6ff);
            color: #fff;
            transition: 0.35s;
        }

        .form_input button:hover {
            transform: scale(1.05);
            box-shadow: 0 18px 45px rgba(0, 198, 255, 0.4);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .banner_left h1 {
                font-size: 42px;
            }

            .banner_points {
                grid-template-columns: 1fr;
            }

            .banner_form {
                margin-top: 40px;
            }
        }

        @media (max-width: 576px) {
            .banner_left h1 {
                font-size: 34px;
            }

            .banner_wrapper {
                padding: 80px 0;
            }
        }


        /* ============================================ about us  */
        .explore-btn {
            cursor: pointer;
            position: relative;
            height: 45px;
            width: 35%;
            background-color: #003AA7;
            text-transform: uppercase;
            display: inline-block;
            color: #fff;
            font-family: Arial;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 1px;
            padding: 0 20px 0 50px;
            white-space: nowrap;
            margin-top: 1.5rem;
        }

        .explore-btn:before {
            transition: all 0.5s cubic-bezier(0.785, 0.15, 0.15, 0.86);
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 100%;
            background-color: #D6D4D3;
        }

        .explore-btn__text {
            position: relative;
            top: -1px;
            transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            height: 100%;
            display: flex;
            align-items: center;
        }

        .explore-btn__text div {
            position: relative;
            color: #fff;
        }

        .explore-btn__text span {
            transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            overflow: hidden;
            position: absolute;
            white-space: nowrap;
            top: 0;
            left: 0;
            color: #fff;
            width: 0;
        }

        .explore-btn:after {
            transition: all 0.5s cubic-bezier(0.785, 0.15, 0.15, 0.86);
            content: '→';
            font-size: 14px;
            line-height: 1;
            color: #000;
            position: absolute;
            left: 20px;
            top: 50%;
            width: 22px;
            height: 22px;
            margin-top: -11px;
            background: #e9ecef;
            z-index: 2;
            border-radius: 50%;
            border: 1px solid #D6D4D3;
        }


        .about-wapper {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .about-img img {
            border-radius: 15px;
        }

        .about-content h3 {
            font-size: 35px;
            padding-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content h3 span {
            text-transform: uppercase;
            color: #003AA7;
        }

        .about-content p {
            color: #000;
        }

        .about-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* =================================== usp  */
        .usp-wapper {
            padding-top: 80px;
        }

        .heading-title {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .heading-title h3 {
            font-size: 35px;
            padding-bottom: 0.8rem;
            font-weight: 700;
        }

        .heading-title h3 span {
            text-transform: uppercase;
            color: #003AA7;
        }

        .heading-title p {
            color: #000;
            padding-bottom: 2rem;
        }

        .usp-box {
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 1rem;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
                height: 96% !important;

        }

        .usp-box h3 {
            font-size: 20px;
            color: #003AA7;
            padding-bottom: 0.5rem;
            font-weight: 700;
        }


        /* Icon Box */
        .usp-icon {
            width: 45px;
            height: 45px;
            margin-bottom: 18px;
        }

        .usp-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: #ff3d00;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;

            /* Animation Stroke */
            stroke-dasharray: 250;
            stroke-dashoffset: 250;
            animation: drawIcon 2.5s infinite alternate;
        }

        /* Draw Animation */
        @keyframes drawIcon {
            from {
                stroke-dashoffset: 250;
            }

            to {
                stroke-dashoffset: 0;
            }
        }


        /* ======================== tab bar course strat=====================  */
        .tabbar-section {
            padding-bottom: 80px;
        }

        /* TAB BAR */
        .tabmanu-bar {
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
            max-width: 1000px;
            margin: 11px auto;
            display: flex;
            justify-content: center;
        }

        .tabmanu-btn {
            border: 1px solid #d1d5db;
            background: #fff;
            padding: 8px 16px;
            border-radius: 999px;
            cursor: pointer;
        }

        .tabmanu-btn.active {
            background: #2563eb;
            color: #fff;
            border-color: #2563eb;
        }

        /* CARD */
        .tabmanu-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: center;
            border: 1px solid rgba(0, 0, 0, 0.125);
        }

        .tabmanu-image-box {
            text-align: center;
        }

        .tabmanu-image-box img {
            width: 100%;
            /* max-width: 100; */
            border-radius: 12px;
        }

        .tabmanu-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #1f2937;
        }

        .tabmanu-desc {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .tabmanu-badge-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .tabmanu-badge {
            background: #e0edff;
            color: #2563eb;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 13px;
        }

        .bg-bg {
            background-color: #25D366;
            color: #fff;
        }

        .tabmanu-course-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .tabmanu-list {
            color: #2563eb;
        }

        .tabmanu-footer {
            margin-top: 16px;
            font-size: 14px;
            color: #374151;
        }

        .tabmanu-note {
            color: red;
            font-size: 12px;
            margin-top: 6px;
        }

        .tabmanu-hidden {
            display: none;
        }

        /* TABLET */
        @media (max-width: 992px) {
            .tabmanu-card {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .tabmanu-card {
                grid-template-columns: 1fr;
            }

            .tabmanu-course-grid {
                grid-template-columns: 1fr;
            }
        }

        /* -------------------------- animation btn  */
        /* .tabmanu-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        } */

        /* Button Base */
        .tabmanu-btn {
            position: relative;
            padding: 8px 18px;
            border: 1px solid #ccc;
            background: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 20px;
            overflow: hidden;
            z-index: 1;
            color: #091847;
        }

        /* Animated Border Layer */
        .tabmanu-btn::before {
            content: "";
            position: absolute;
            inset: -3px;
            border-radius: 50px;
            background: conic-gradient(#FF7003,
                    #091847,
                    #FF7003);
            animation: rotateBorder 2s linear infinite;
            z-index: -2;
        }

        /* Inner Background Layer */
        .tabmanu-btn::after {
            content: "";
            position: absolute;
            inset: 3px;
            border-radius: 50px;
            background: white;
            z-index: -1;
        }

        /* Active Button Text Color */
        .tabmanu-btn.active {
            color: #FF7003;
        }

        /* Rotation Animation */
        @keyframes rotateBorder {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* ======================== tab bar course end=====================  */
        /* protfolio =================================  */
        .projects-section {
            padding-bottom: 80px;
        }

        .project-slider {
            perspective: 1200px;
        }

        .project-card {
            border-radius: 16px;
            overflow: hidden;
            background: white;
            transition: .5s;
            transform: scale(.85) rotateY(18deg);
            opacity: .6;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
        }

        /* CENTER ACTIVE CARD */
        .owl-item.center .project-card {
            transform: scale(1) rotateY(0deg);
            opacity: 1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
        }

        /* LEFT SIDE */
        .owl-item:not(.center):nth-child(odd) .project-card {
            transform: scale(.85) rotateY(-18deg);
        }

        /* RIGHT SIDE */
        .owl-item:not(.center):nth-child(even) .project-card {
            transform: scale(.85) rotateY(18deg);
        }

        .project-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }

        .caption {
            /* background: linear-gradient(90deg, #c9b07a, #a88c4a); */
            background: #112161;
            color: white;
            padding: 14px;
            letter-spacing: 2px;
        }

        .caption a {
            color: #fff;
        }

        /* protfolio =================================  */

        /* ======================services start =========================  */
        .services-section {
            background: linear-gradient(270deg, #fff 0, #fffefe 16.2%, #e9ecef 100%);
            padding-top: 50px;
            padding-bottom: 50px;
            margin-bottom: 80px;
        }

        .heading-2 span {
            color: #003AA7;
            text-transform: uppercase;
        }

        .subheading-text {
            color: #0c77bd;
        }

        .ot-heading .heading-1,
        .ot-heading h1 span,
        .ot-heading h2 span,
        .ot-heading h3 span,
        .ot-heading p span,
        .ot-heading>span,
        .subheading,
        .subheading-text {
            color: var(--sub-heading-color);
            font-size: 15px;
            margin-bottom: 14px;
            text-transform: uppercase;

        }

        .heading-2,
        .industry-banner-wrapper .banner-wrapper h3,
        .inner-wrapper .banner-section h2,
        .inner-wrapper .banner-section h3,
        .ot-heading h1 {
            color: #000;
            font-size: 35px;
            font-weight: 700;
        }

        .heading-2 span {
            color: #003AA7;
            text-transform: uppercase;
        }

        .text-muted {
            --bs-text-opacity: 1;
            color: #212529bf !important;
        }

        .cta-box {
            padding: 1rem;
            height: 198px;
            border-radius: 20px;
            background: linear-gradient(90deg, rgba(255, 183, 86, .15) 0, rgba(223, 128, 0, .15) 100%);
        }

        .cta-box h2 {
            font-size: 26px;
            font-weight: 600;
        }

        #consultation-modal .btn-submit,
        .btn-outline-theme,
        .theme-btn {
            border-radius: 7.126px;
            border: .891px solid var(--btn-outline-theme);
            font-size: 16px;
            padding: .7rem 1.5rem;
            font-weight: 600;
        }

        .theme-btn {
            background: #000;
            color: #fff;
            border: none;
        }

        @media (min-width: 992px) {
            .service-card.position-relative {
                position: sticky !important;
                top: 110px;
            }
        }

        .service-card:nth-child(odd) {
            /* background: linear-gradient(112deg, #202020 .43%, #000 99.57%); */
            background: #fff;
            border: 1px solid #ccc;
        }

        .service-card {
            border-radius: 10px;
            background: #003aa7;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .bbbbbb {
            color: #fff !important;
        }

        .text-change li {
            color: #FF7300 !important;
        }

        .text-change li a {
            color: #FF7300 !important;
        }

        .text-black {
            --bs-text-opacity: 1;
            color: #fff !important;
        }

        .service-card h3 {
            color: #fff;
            font-size: 1.25rem;
        }

        .light-text {
            color: #fff;
        }

        .list-unstyled {
            padding-left: 0;
            list-style: none;
        }

        .service-card li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: .6rem;
            color: #000;
            padding: 0;
        }

        /* .service-card li::before {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(../self-educ/assets/img/stars.webp) no-repeat;
            top: 5px;
        } */

        .arrow-btn {
            border-radius: 50%;
            padding: 0.3rem 0.7rem;
        }

        .fw-bold a {
            color: #112161 !important;
        }

        /* .service-card:nth-child(2n)::after,
        .service-card:nth-child(odd)::after {
            content: "";
            position: absolute;
            bottom: -51px;
            right: -93px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 153, 0, .3) 0, transparent 70%);
            filter: blur(40px);
        } */

        .cta-box {
            padding: 1rem;
            height: 198px;
            border-radius: 20px;
            background: linear-gradient(90deg, rgba(255, 183, 86, .15) 0, rgba(223, 128, 0, .15) 100%);
        }

        .posted-on a,
        .primary-color,
        .topbar-section .contact-item a:hover,
        .topbar-section .social-icons a:hover {
            color: #000;
        }

        #consultation-modal .btn-submit,
        .btn-outline-theme,
        .theme-btn {
            border-radius: 7.126px;
            border: .891px solid #f79b1f;
            font-size: 16px;
            padding: .7rem 1.5rem;
            font-weight: 600;
        }



        .blue-card {
            background: #123ea2;
            color: #fff;
        }

        .blue-card h3 a,
        .blue-card p {
            color: #fff !important;
        }

        .blue-card ul li {
            color: #ff7a00;
        }

        /* ======================services end =========================  */


        /* ========================= footer start  */

        .footer-container {
            background: linear-gradient(135deg, #1a2a57 0%, #2c3e6e 100%);
            color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            padding: 40px 30px;
            text-align: center;
        }

        .newsletter-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .newsletter-desc {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            max-width: 500px;
            margin: 0 auto;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .subscribe-btn {
            background-color: #1a2a57;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .subscribe-btn:hover {
            background-color: #0f1c40;
            transform: translateY(-2px);
        }

        /* Main Footer Content */
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 50px 30px;
        }

        .footer-section {
            padding: 0 10px;
        }

        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 50px;
            height: 2px;
            background-color: #ff7e5f;
        }

        /* Profile Section */
        .profile-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .developer-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #fff;
        }

        .developer-title {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #a0b3e8;
        }

        .developer-bio {
            line-height: 1.6;
            margin-bottom: 20px;
            color: #d0d8f0;
        }

        .follow-me {
            display: flex;
            align-items: center;
            margin-top: 15px;
            padding: 10px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            width: 100%;
        }

        .follow-text {
            font-weight: 600;
            margin-right: 15px;
            color: #ffcc5f;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #ff7e5f;
            transform: translateY(-3px);
        }

        /* Links Sections */
        .links-list {
            list-style: none;
        }

        .links-list li {
            margin-bottom: 12px;
        }

        .links-list a {
            color: #d0d8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .links-list a:hover {
            color: #ffcc5f;
            padding-left: 8px;
        }

        .links-list i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        /* Services Section */
        .service-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .service-icon {
            background-color: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: #ffcc5f;
        }

        /* Contact Section */
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-icon {
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: #ffcc5f;
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #a0b3e8;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright {
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }

            .newsletter-input,
            .subscribe-btn {
                width: 100%;
                border-radius: 8px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-section {
                padding: 0;
            }
        }

        @media (max-width: 480px) {
            .newsletter-section {
                padding: 30px 20px;
            }

            .newsletter-title {
                font-size: 1.8rem;
            }

            .footer-content {
                padding: 40px 20px;
            }
        }

        /* ========================= footer    end */

        .blog-section {
            margin-bottom: 80px;
        }

        .blog-inner {
            background-color: #fff;
            box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
            padding: 0.5rem;
            border-radius: 10px;
        }

        .blog-img {
            overflow: hidden;
            border-radius: 10px;
        }


        .blog-img img {
            width: 100%;
            border-radius: 10px;
            transition: transform 0.8s ease;
        }

        .blog-img:hover img {
            transform: scale(1.1);
            border-radius: 10px;
        }

        .blog-con h3 {
            font-size: 22px;
            color: #003AA7;
            padding-top: 0.8rem;
            padding-bottom: 0.4rem;
        }

        .blog-con span {
            font-style: italic;
        }

        .blog-con p {
            color: #000;
            padding-bottom: 0.4rem;
        }

        .technology-section {
            padding-bottom: 80px;
        }


        .technlogy-box img {
            width: 80px !important;
            height: 80px;
            margin: auto;
        }

        .technlogy-box h3 {
            font-size: 16px;
            background-color: rgba(0, 0, 0, 0.1);
            padding: 0.3rem 1.2rem;
            margin-top: 1rem;
            text-align: center;
            text-transform: capitalize;
        }

        /* =============================== interview  */

        .career-section {
            padding: 80px 0;
            background: #fff;
            margin-bottom: 80px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }


        /* Tabs */
        .career-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 35px 0;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 5px 22px;
            border-radius: 50px;
            border: 2px solid #ddd;
            background: white;
            cursor: pointer;
            font-size: 15px;
            transition: 0.3s;
        }

        .tab-btn.active {
            background: #0033cc;
            color: white;
            border-color: #0033cc;
        }

        /* Content Area */
        .career-content-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        /* Image Box */
        .career-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
        }

        .career-image img {
            width: 100%;
            display: block;
        }

        /* Right Content */
        .career-content {
            flex: 1;
            text-align: left;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .tab-content p {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
        }

        /* Tags */
        .career-tags {
            display: flex;
            gap: 12px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .career-tags span {
            padding: 6px 16px;
            border-radius: 30px;
            background: rgb(0 0 0 / 7%);
            color: #0033cc;
            font-size: 14px;
            font-weight: 500;
        }

        /* Button */
        .career-btn {
            display: inline-block;
            padding: 6px 25px;
            border-radius: 5px;
            background: #2563eb;
            color: white;
            font-size: 15px;
            font-weight: 400 !important;
            text-decoration: none;
            transition: 0.3s;
        }

        .career-btn:hover {
            background: black;
        }

        @media (max-width:776px) {
            .career-content-area {
                display: flex;
                flex-direction: column;
            }
        }

        .product-1 {
            font-size: 16px;
            text-transform: uppercase;
            padding-bottom: 3px;
        }


        /* ============================== breadcrumb section start ==================  */
        .breadcrumb-section {
            background: #cccccc5c;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: auto;
            padding: 60px 20px;
        }

        /* BREADCRUMB */

        .breadcrumb {
            font-size: 14px;
            margin-bottom: 30px;
            color: #555;
        }

        .breadcrumb span {
            color: #003aa7;
            font-weight: 600;
        }

        /* GRID */

        .course-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* LEFT CONTENT */

        .course-left h1 {
            font-size: 35px !important;
            color: #003aa7;
            margin-bottom: 10px;
            line-height: 1.2;
            font-weight: 700;
        }

        .rating {
            font-size: 16px;
            margin-bottom: 8px;
            color: #222;
        }

        .available {
            color: #444;
            margin-bottom: 20px;
        }

        .course-left p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 35px;
            font-size: 16px;
        }

        /* BUTTON */

        .demo-btn {
            display: inline-block;
            background: linear-gradient(135deg, #003aa7, #ff3d00);
            color: #fff;
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: .5px;
            transition: .3s;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* FORM CARD */

        .form-box {
            background: #fff;
            padding: 35px;
            border-radius: 10px;
            border: 1px solid #eee;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .form-box h2 {
            font-size: 26px;
            color: #003aa7;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .form-box h2 span {
            color: #ff3d00;
            font-weight: 700;
        }

        /* INPUT */

        .form-box input,
        .form-box textarea {
            width: 100%;
            padding: 14px 15px;
            margin-bottom: 18px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            transition: .3s;
        }

        .form-box input:focus,
        .form-box textarea:focus {
            border-color: #003aa7;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 58, 167, 0.1);
        }

        .form-box textarea {
            height: 90px;
            resize: none;
        }

        /* SUBMIT BUTTON */

        .submit-btn {
            display: block;
            margin: auto;
            background: linear-gradient(135deg, #ff3d00, #003aa7);
            border: none;
            color: #fff;
            padding: 14px 35px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* RESPONSIVE */

        @media(max-width:992px) {

            .course-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .course-left h1 {
                font-size: 34px;
            }

            .form-box {
                padding: 28px;
            }

        }

        /* ============================== breadcrumb section end ==================  */

        /* ============================== course-desc start ================== */
.course-description {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.course-description-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 45px;
    align-items: start;
}

.course-description-content {
    background: #ffffff;
    padding: 38px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 58, 167, 0.08);
    border: 1px solid rgba(0, 58, 167, 0.08);
}

.course-description-tag {
    display: inline-block;
    background: rgba(0, 58, 167, 0.08);
    color: #003aa7;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.course-description-title {
    font-size: 34px;
    color: #111827;
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.course-description-text {
    color: #555;
    font-size: 16px;
    line-height: 1.85;
}

.course-description-text p {
    margin-bottom: 18px;
}

.course-description-text h1,
.course-description-text h2,
.course-description-text h3,
.course-description-text h4 {
    color: #003aa7;
    margin: 26px 0 12px;
    font-weight: 700;
    font-size: 22px !important;
}

.course-description-text ul,
.course-description-text ol {
    padding-left: 22px;
    margin: 15px 0;
}

.course-description-text li {
    margin-bottom: 10px;
}

.course-description-img {
    position: sticky;
    top: 100px;
    background: #ffffff;
    padding: 14px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 58, 167, 0.08);
}

.course-description-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.course-description-download-btn{
     background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .course-description {
        padding: 60px 15px;
    }

    .course-description-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-description-img {
        position: static;
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .course-description-content {
        padding: 30px;
    }

    .course-description-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .course-description {
        padding: 45px 12px;
    }

    .course-description-content {
        padding: 22px;
        border-radius: 16px;
    }

    .course-description-title {
        font-size: 24px;
    }

    .course-description-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .course-description-img {
        padding: 10px;
        border-radius: 16px;
    }

    .course-description-img img {
        border-radius: 12px;
    }
}
        /* ============================== course-desc end ================== */

        /* ================= breadcrumb start ==================  */
        /* Banner Section */
        .about-banner {
            position: relative;
            height: 320px;
            display: flex;
            align-items: center;
            color: #fff;
        }

        /* Overlay */
        .about-banner::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgb(0 58 165 / 32%);
            top: 0;
            left: 0;
        }

        /* Container */
        .container-brd {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* Content */
        .about-content {
            position: relative;
            z-index: 2;
        }

        .about-content h1 {
            font-size: 50px;
            margin: 0;
            font-weight: 700;
        }

        /* Breadcrumb */
        .breadcrumb {
            margin-top: 10px;
            font-size: 18px;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
        }

        .breadcrumb span {
            color: #ffc107 !important;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-banner {
                height: 220px;
                text-align: center;
                justify-content: center;
            }

            .about-content h1 {
                font-size: 32px;
            }

            .breadcrumb {
                font-size: 15px;
            }
        }

        /* ================= breadcrumb end ==================  */

        /* =================== about page  */
        .about-page-section {
            /* padding: 80px 0; */
            padding-bottom: 80px;
            padding-top: 80px;
        }

        .about-content h3 {
            font-size: 35px;
            color: #000;
            /* margin-bottom: px; */
        }

        .about-content span {
            color: #003aa7;
            font-weight: 700;
            text-transform: uppercase;
        }

        .about-content p {
            text-align: justify;
        }

        .technical-p h3 {
            font-size: 28px;
            color: #000;
            margin-bottom: 10px;
        }

        .technical-p span {
            color: #003aa7;
            font-weight: 700;
        }

        .technical-section {
            padding-bottom: 80px;
        }

        .technical-details {
            padding-top: 40px;
        }

        .technical-img {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .technical-img img {
            border-radius: 10px;
        }

        .technical-inner h3 {
            text-transform: capitalize;
        }

        /* =========================== blog page  */

        /* Section */
        .blog-page {
            padding: 60px 20px;
        }

        /* Grid */
        .blog-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Card */
        .blog-card {
            background: #f5f5f5;
            border-radius: 20px;
            padding: 20px;
            transition: 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-8px);
        }

        /* Image Box */
        .blog-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            display: block;
            border-radius: 20px;
        }

        /* Tag */
        .blog-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #1c2b5a;
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
        }

        /* Content */
        .blog-content {
            margin-top: 20px;
        }

        .blog-content h3 {
            font-size: 20px;
            margin: 0 0 15px;
            color: #222;
            line-height: 1.4;
        }

        /* Link */
        .blog-link {
            text-decoration: none;
            color: #6c757d;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .blog-link:hover {
            color: #000;
        }

        .blog-link span {
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .blog-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .blog-container {
                grid-template-columns: 1fr;
            }
        }



        /* Image Card */

        .it-gallery-area {
            padding: 80px 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: 0.4s ease;
        }

        /* Hover Effect */
        .gallery-item:hover img {
            transform: scale(1.1);
            filter: brightness(70%);
        }

        /* Icon */
        .gallery-item::after {
            content: "🔍";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            color: #fff;
            font-size: 28px;
            transition: 0.3s;
        }

        .gallery-item:hover::after {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            top: 0;
            left: 0;
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 80%;
            border-radius: 10px;
            animation: zoomIn 0.4s ease;
        }

        .lightbox span {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 35px;
            color: #fff;
            cursor: pointer;
        }

        /* Animation */
        @keyframes zoomIn {
            from {
                transform: scale(0.7);
            }

            to {
                transform: scale(1);
            }
        }

        /* ================= contact us  */

        /* Section */
        .contact-section {
            padding: 80px 0px;
        }

        /* Grid Layout */
        .contact-section-wrapper {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* Left Form */
        .contact-section-form {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #eee;
        }

        .contact-section-form small {
            color: #0d2b5c;
            font-weight: 600;
        }

        .contact-section-form small::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background: #f4b400;
            margin-top: 6px;
        }

        .contact-section-form h2 {
            font-size: 42px;
            margin: 10px 0 30px;
        }

        /* Inputs */
        .contact-section-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-section-row input,
        .contact-section-row textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            outline: none;
            font-size: 14px;
        }

        .contact-section-row textarea {
            height: 120px;
            resize: none;
        }

        /* Button */
        .contact-section-form button {
            background: #f4b400;
            color: #000;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
        }

        /* Right Info */
        .contact-section-info {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #eee;
        }

        .contact-section-info h3 {
            margin-bottom: 10px;
        }

        .contact-section-info p {
            color: #555;
            font-size: 14px;
        }

        /* Info Items */
        .contact-section-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-top: 20px;
        }

        /* Icon Circle */
        .contact-section-icon {
            width: 45px;
            height: 45px;
            border: 1px solid #0d2b5c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-section-icon i {
            font-style: normal;
            font-size: 18px;
        }

        /* Text */
        .contact-section-text strong {
            display: block;
            margin-bottom: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-section-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-section-row {
                flex-direction: column;
            }

            .contact-section-form h2 {
                font-size: 30px;
            }
        }

        .map-section {
            margin-bottom: 80px;
        }


        /* ================ services page  */

        .new-services {
            padding: 80px 0;
        }

        .services-deatils p {
            padding-top: 20px;
            text-align: justify;
        }

        .services-deatils img {
            border-radius: 10px;
            border: 1px solid #ccc;
        }


        /* card */
        .services-control-from-box {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }

        .services-control-from-box:hover {
            transform: translateY(-5px);
        }

        /* title */
        .services-control-from-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .services-control-from-title h2 {
            font-size: 30px;
            font-weight: 700;
            background: linear-gradient(90deg, #003aa7, #ff4d4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* labels */
        .services-control-from label {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        /* inputs */
        .services-control-from-input,
        .services-control-from-select {
            border-radius: 12px;
            padding: 12px;
            border: 1px solid #ddd;
            transition: 0.3s;
            width: 100%;
        }

        .services-control-from-input:focus,
        .services-control-from-select:focus {
            border-color: #6a11cb;
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
            outline: none;
        }

        textarea.services-control-from-input {
            resize: none;
        }

        /* button */
        .services-control-from-btn {
            background: linear-gradient(90deg, #ff4d4d, #ffcc00);
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            color: #000;
            width: 100%;
            transition: 0.3s;
        }

        .services-control-from-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* bottom text */
        .services-control-from-bottom {
            text-align: center;
            margin-top: 15px;
            font-size: 12px;
            color: #555;
        }

        /* responsive */
        @media(max-width:768px) {
            .services-control-from-box {
                padding: 25px;
            }

            .services-control-from-title h2 {
                font-size: 24px;
            }
        }

        .map-box iframe {
            width: 100%;
            height: 450px;
            border-radius: 20px;
        }

        .blog-img img {
            height: 220px;
        }

        .custom_contact {
            width: 60px;
        }
        
        /*========================================== certificate */
        
        .certificate-section {
  padding: 70px 15px;
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

.certificate-container {
  max-width: 1000px;
  margin: auto;
}

.certificate-heading {
  text-align: center;
  margin-bottom: 45px;
}

.certificate-heading span {
  color: #fb5200;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
}

.certificate-heading h2 {
  font-size: 42px;
  color: #111827;
  margin: 14px 0;
  line-height: 1.2;
}

.certificate-heading p {
  max-width: 700px;
  margin: auto;
  color: #5b6475;
  font-size: 17px;
  line-height: 1.7;
}

.certificate-card {
  position: relative;
  max-width: 720px;
  margin: auto;
  background: #fff;
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fb5200, #1e63ff);
  z-index: -1;
  opacity: 0.18;
}

.certificate-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.certificate-badge {
  position: absolute;
  top: -22px;
  right: 30px;
  background: #fb5200;
  color: #fff;
  padding: 6px 24px;
  border-radius: 30px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(251,82,0,0.35);
}

@media (max-width: 768px) {
  .certificate-heading h2 {
    font-size: 30px;
  }

  .certificate-card {
    padding: 10px;
  }
}



.techbrain-mobile-dropdown-menu {
    display: none;
}

.techbrain-mobile-dropdown-menu.active {
    display: block;
}
