        /* Maintain modal styles from original for functionality */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(3, 28, 54, 0.5);
            backdrop-filter: blur(8px);
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 86, 179, 0.06);
            border: 1px solid rgba(0, 86, 179, 0.05);
            position: relative;
            animation: modalIn 0.4s ease;
            max-width: 500px;
            width: 90%;
            margin: auto;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            /* Hide overflow on the main container */
        }

        .modal-header {
            padding: 30px 40px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f1f5f9;
            background: #fff;
            flex-shrink: 0;
            z-index: 10;
        }

        .modal-body {
            padding: 30px 40px 40px;
            overflow-y: auto;
            flex-grow: 1;
            scrollbar-width: thin;
            scrollbar-color: #0056b3 #f1f5f9;
        }

        .modal-body::-webkit-scrollbar {
            width: 6px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #e2e8f0;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }

        @keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* --- Custom Alert/Confirm Modals --- */
        .custom-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 11000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .custom-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .custom-modal-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-align: center;
        }

        .custom-modal-overlay.active .custom-modal-card {
            transform: translateY(0);
        }

        .custom-modal-icon {
            width: 70px;
            height: 70px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: #00ADEF;
        }

        .custom-modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
            letter-spacing: -0.025em;
        }

        .custom-modal-message {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .custom-modal-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-modal {
            padding: 12px 30px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-size: 0.95rem;
        }

        .btn-modal-primary {
            background: linear-gradient(135deg, #0056b3 0%, #00ADEF 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 173, 239, 0.3);
        }

        .btn-modal-secondary {
            background: #f1f5f9;
            color: #475569;
        }

        .btn-modal:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 700;
            color: #031c36;
            font-size: 0.9rem;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            background: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .password-wrapper {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            z-index: 10;
        }

        .btn-weba1 {
            background: #0056b3;
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 86, 179, 0.2);
            text-align: center;
        }

        .btn-weba1:hover {
            background: #00ADEF;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
            color: white;
        }

        .shimmer-text {
            background: linear-gradient(90deg, #031c36 0%, #0056b3 50%, #031c36 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            animation: shimmerEffect 4s linear infinite;
        }

        @keyframes shimmerEffect {
            to {
                background-position: 200% center;
            }
        }

        /* Pricing visibility fix */
        #plans-container .flip-card {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .email-validation-message {
            margin-top: 5px;
            font-size: 1.0rem;
            display: none;
        }

        /* Modal specific typography improvements */
        .modal-content h3 {
            font-size: 2.25rem !important;
            margin: 0;
            text-align: center;
        }

        .modal-content label {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: #475569;
        }

        .modal-content .form-input-wrapper {
            position: relative;
        }

        .modal-content .form-input-wrapper i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 1.6rem;
            transition: color 0.3s;
        }

        .modal-content input:focus+i {
            color: #0056b3;
        }

        .modal-content input,
        .modal-content select {
            font-size: 1.5rem;
            padding: 20px 25px 20px 65px !important;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            border-radius: 16px;
        }

        .modal-content input:focus {
            border-color: #0056b3;
            background: #fff;
            outline: none;
            box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
        }

        .modal-header {
            padding: 40px 40px 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom: 1px solid #f1f5f9;
            background: #fff;
            flex-shrink: 0;
            z-index: 10;
            position: relative;
        }

        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            cursor: pointer;
            font-size: 2.2rem;
            color: #94a3b8;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f8fafc;
        }

        .modal-close:hover {
            color: #dc2626;
            background: rgba(220, 38, 38, 0.1);
            transform: rotate(90deg);
        }

        .modal-content .btn-weba1 {
            font-size: 1.625rem;
            padding: 20px 40px;
            margin-top: 20px;
            border-radius: 60px;
        }

        .modal-body {
            padding: 30px 40px 40px;
            overflow-y: auto;
            flex-grow: 1;
            scrollbar-width: thin;
            scrollbar-color: #0056b3 #f1f5f9;
        }

        .modal-body::-webkit-scrollbar {
            width: 6px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #e2e8f0;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }

        .header.fixed-nav .navbar-brand {
            margin-top: 0 !important;
            height: 56px !important;
            display: flex;
            align-items: center;
        }

        .header.fixed-nav .navbar-brand .logo {
            height: 44px !important;
            transition: all 0.3s ease;
        }

        .navbar-brand .logo {
            height: 65px;
            transition: height 0.3s;
        }

        #home-slider .banner-title-text span {
            color: #00ADEF;
        }

        /* Prevent Horizontal Scrollbar globally */
        html,
        body {
            overflow-x: hidden;
            width: 100%;
        }

        /* Stat Flip Cards for Mission Section */
        .stat-flip-card {
            background-color: transparent;
            perspective: 1000px;
            flex: 1;
            min-width: 140px;
            height: 180px;
        }

        .stat-flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
            transform-style: preserve-3d;
        }

        .stat-flip-card:hover .stat-flip-card-inner {
            transform: rotateY(180deg);
        }

        .stat-flip-card-front,
        .stat-flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
        }

        .stat-flip-card-back {
            transform: rotateY(180deg);
            background: #fff;
            border: 2px solid #0056b3;
        }

        @keyframes shimmerBox {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .stat-shimmer {
            background: linear-gradient(90deg, #002d5e 0%, #0056b3 25%, #00ADEF 50%, #0056b3 75%, #002d5e 100%);
            background-size: 200% auto;
            animation: shimmerBox 4s infinite linear;
        }

        /* Global Layout Spacing Constraints */
        .section-padding {
            padding-top: 0px !important;
            padding-bottom: 60px !important;
        }

        .title-wrap {
            margin-bottom: 35px !important;
        }

        /* Testimonial slider layout fixes */
        .global-success-carousel .item>div {
            padding: 25px !important;
            min-height: auto !important;
        }

        .global-success-carousel .item p {
            font-size: 1.6rem !important;
            margin-bottom: 20px !important;
        }

        /* Testimonial client info sizing overrides */
        .global-success-carousel .item>div>div:last-child>div:nth-child(2)>div:first-child {
            font-size: 1.7rem !important;
            margin-bottom: 3px !important;
        }

        .global-success-carousel .item>div>div:last-child>div:nth-child(2)>div:last-child {
            font-size: 1.3rem !important;
        }

        /* Alternate background for specific slider boxes */
        .global-success-carousel .alt-bg {
            background: #002d5e !important;
            border: 2px solid #00ADEF !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
        }

        /* Pricing Flip Cards */
        .pricing-flip-card {
            background-color: transparent;
            perspective: 1000px;
            width: 100%;
            max-width: 320px;
            margin: 0 auto 30px;
            height: 400px;
        }

        .pricing-flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
            transform-style: preserve-3d;
        }

        .pricing-flip-card:hover .pricing-flip-card-inner {
            transform: rotateY(180deg);
        }

        .pricing-flip-card-front,
        .pricing-flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
        }

        .pricing-flip-card-back {
            transform: rotateY(180deg);
            background: #fff;
            border: 2px solid #0056b3;
        }

        /* Professional Owl Carousel Navigation Styles */
        .global-success-carousel {
            position: relative;
        }

        .global-success-carousel .owl-nav {
            margin: 0;
        }

        .global-success-carousel .owl-nav [class*='owl-'] {
            position: absolute !important;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1) !important;
            color: #fff !important;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px !important;
            font-size: 1.2rem !important;
            transition: all 0.3s;
            border: none;
            padding: 0;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            opacity: 0.8;
            cursor: pointer;
        }

        .global-success-carousel .owl-nav [class*='owl-']:hover {
            background: #00ADEF !important;
            box-shadow: 0 4px 15px rgba(0, 173, 239, 0.4);
            opacity: 1;
        }

        .global-success-carousel .owl-prev {
            left: -60px;
        }

        .global-success-carousel .owl-next {
            right: -60px;
        }

        @media (max-width: 992px) {
            .global-success-carousel .owl-prev {
                left: 10px;
            }

            .global-success-carousel .owl-next {
                right: 10px;
            }
        }

        /* Deletion Success Message - Enhanced */
        .deletion-notice {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10000;
            background: rgba(255, 255, 255, 0.98);
            padding: 50px;
            border-radius: 32px;
            box-shadow: 0 30px 100px rgba(3, 28, 54, 0.3);
            border: 1px solid rgba(0, 173, 239, 0.3);
            animation: modalPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-align: center;
            max-width: 700px;
            width: 90%;
            backdrop-filter: blur(10px);
        }

        @keyframes modalPopIn {
            0% {
                opacity: 0;
                transform: translate(-50%, -40%) scale(0.9);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .deletion-notice i {
            color: #00ADEF;
            display: block;
            margin-bottom: 25px;
            font-size: 4rem;
            filter: drop-shadow(0 5px 15px rgba(0, 173, 239, 0.3));
        }

        .deletion-notice h2 {
            color: #031c36;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .deletion-notice p {
            color: #64748b;
            font-size: 1.35rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .deletion-notice .btn-close-notice {
            background: #031c36;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.4rem;
        }

        .deletion-notice .btn-close-notice:hover {
            background: #00ADEF;
            transform: translateY(-2px);
        }
