/* Container for the floating buttons */
.floating-contact-container {
    position: fixed;
    right: 20px;
    /* Default fallback spacing from bottom */
    bottom: 115px; 
    z-index: 1040; /* Must be higher than the sticky bottom bar */
    display: flex;
    flex-direction: column;
    gap: 12px; /* Spacing between the two icons */
    transition: bottom 0.3s ease;
}

/* Base styles for the round buttons */
.btn-floating {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover & Active Effects */
.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Brand Colors */
.btn-whatsapp {
    background-color: #25D366; /* Official WhatsApp Green */
}

.btn-call {
    background-color: #007bff; /* Clean Phone Blue */
    
}
.setptag{
    font-size: 20px;
}
.seth4size{
        font-size: 20px;
        margin-top: 10px;
}

/* Responsive adjustments for smaller mobile screens */
@media (max-width: 767px) {
    .floating-contact-container {
        right: 15px;
    }
   
    .btn-floating {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}









/*// another add css*/
.newwritetext {
    border-right: 3px solid #34a853; /* The typing cursor */
    white-space: normal; /* Keeps it completely responsive on mobile */
    animation: blink-caret 0.75s step-end infinite;
    display: inline-block;
        -webkit-text-stroke: #34a853 !important;
        font-weight: bold;
  }
  .setbolddata{
        font-weight: bold;
    font-size: 20px;
  }

  /* Blinking cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #34a853; } /* Match your highlight color */
  }
        /* Base Styles & Theme Variables */
        :root {
            --cer-primary-green: #34a853;
            --cer-dark-navy: #182238;
            --cer-text-muted: #000;
            --cer-bg-light: #ffffff;
        }


        /* Hero Section Wrapper */
        .cer-hero-section {
            padding: 80px 0;
            position: relative;
        }

        /* --- Left Column Elements --- */
        .cer-badge-header {
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: var(--cer-text-muted);
            margin-bottom: 24px;
        }

        .cer-html5-icon {
            color: #E34F26;
            font-size: 1.4rem;
        }

        .cer-main-title {
            font-weight: 600;
            font-size: 30px;
            line-height: 1.15;
            color: var(--cer-dark-navy);
            margin-bottom: 30px;
        }

        .cer-text-green {
            color: var(--cer-primary-green);
        }

        .cer-description {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--cer-text-muted);
            margin-bottom: 20px;
            max-width: 540px;
        }

        /* Features Grid */
        .cer-features-container {
            margin-top: 35px;
            margin-bottom: 35px;
        }

        .cer-feature-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .cer-feature-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--cer-primary-green);
        }

        .cer-feature-sub {
            font-size: 0.85rem;
            color: var(--cer-text-muted);
            padding-left: 24px;
        }

        /* CTA Button */
        .cer-btn-cta {
            background-color: var(--cer-primary-green);
            color: #ffffff;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cer-btn-cta:hover {
            background-color: #038f5b;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(4, 170, 109, 0.3);
        }

        /* Social Proof / Rating */
        .cer-rating-box {
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--cer-text-muted);
        }

        .cer-stars {
            color: #04AA6D;
            display: flex;
            gap: 2px;
        }

        /* --- Right Column / Certificate Image Preview --- */
        .cer-preview-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        /* Decorative Background Circles */
        .cer-bg-circle-1 {
            position: absolute;
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, rgba(4, 170, 109, 0.12) 0%, rgba(4, 170, 109, 0.03) 100%);
            border-radius: 50%;
            top: 10%;
            right: -5%;
            z-index: 1;
            pointer-events: none;
        }

        .cer-bg-circle-2 {
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(4, 170, 109, 0.08) 0%, rgba(4, 170, 109, 0.01) 100%);
            border-radius: 50%;
            bottom: 5%;
            left: 5%;
            z-index: 1;
            pointer-events: none;
        }

        /* Certificate Image Styling */
        .cer-cert-img {
            width: 100%;
            /*max-width: 580px;*/
            height: auto;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(24, 34, 56, 0.12);
            position: relative;
            z-index: 2;
        }
         .cer-bg-circle-1 ,.cer-bg-circle-2{
               display: block;
            }

        /* --- Responsive Breaks --- */
       @media (max-width: 767px) {
            .cer-hero-section {
                padding: 40px 0 60px 0;
                text-align: center;
            }
            .cer-badge-header {
                justify-content: center;
            }
            .cer-main-title {
                font-size: 26px;
            }
            .cer-description {
                margin-left: auto;
                margin-right: auto;
            }
            .cer-feature-item {
                align-items: center;
                text-align: center;
                margin-bottom: 15px;
            }
            .cer-feature-sub {
                padding-left: 0;
            }
            .cer-rating-box {
                justify-content: center;
                flex-wrap: wrap;
            }
            .cer-preview-wrapper {
                margin-top: 40px;
            }
            .cer-bg-circle-1 ,.cer-bg-circle-2{
               display: none;
            }
            .cer-btn-cta{
              padding: 16px 29px !important;
            }
            .cer-main-title {
                font-size: 26px;;
            }
            .setformobiliereverse{
                      flex-direction: column-reverse;
            }
        }

       .setullisize{
        font-weight: 600;
    margin-bottom: 30px;
    align-items: center;
    line-height: 2;
    gap: 10px;
       }








          /* Custom properties for consistency */
:root {
    --landmdl-bg-light: #f4f8fb;
    --landmdl-text-teal: #34a853;
    --landmdl-text-dark: #333333;
    --landmdl-icon-teal: #34a853;
    --landmdl-btn-green: ##34a853;
    --landmdl-border-color: #ced4da;
}

/* Section Main Container */
.landmdl-main-section {
    background-color: var(--landmdl-bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Left Section Typography */
.landmdl-title {
    color: var(--landmdl-text-teal);
    font-weight: 700;
    font-size: calc(1.8rem + 1.2vw);
}

.landmdl-subtitle {
    color: var(--landmdl-text-dark);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Custom Check Icons Styling */
.landmdl-icon-wrapper {
    background-color: var(--landmdl-icon-teal);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landmdl-check-icon {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.landmdl-list-text {
    font-size: 1.1rem;
    color: var(--landmdl-text-dark);
    padding-top: 2px;
}

/* Right Section: Form Card Design */
.landmdl-form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /*max-width: 520px;*/
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Optional Close Cross button */
.landmdl-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
}

.landmdl-form-heading {
    font-weight: 700;
    font-size: 1.6rem;
    color: #111111;
}

.landmdl-form-subheading {
    font-size: 0.9rem;
    color: #666666;
}

/* Input Fields Adjustments */
.landmdl-input-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111111;
    margin-bottom: 6px;
}

.landmdl-input-field {
    border-radius: 8px;
    border: 1px solid var(--landmdl-border-color);
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #444444;
}

.landmdl-input-field:focus {
    border-color: var(--landmdl-icon-teal);
    box-shadow: 0 0 0 0.2rem rgba(15, 180, 157, 0.15);
}

/* Form Action Button */
.landmdl-submit-btn {
    background-color: var(--landmdl-btn-green);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease-in-out;
}

.landmdl-submit-btn:hover, 
.landmdl-submit-btn:focus {
    background-color: #238b47;
    color: #ffffff;
}
.landmdl-info-col{
    padding: 20px;
}
.showtextcenterarea{
     color: #ffffff;
    text-align: center;
}






/* Base cursor styling */
.cursor {
  font-weight: 300;
  margin-left: 3px;
  /* ease-in-out makes the blinking look incredibly smooth */
  animation: smooth-blink 0.9s ease-in-out infinite; 
}

/* Choice 1: Green Cursor */
.cursor.green {
  color: #2ecc71; /* Vibrant, modern green */
}

/* Choice 2: Black Cursor */
.cursor.black {
  color: #000000; /* Solid black */
}

/* Smooth blinking keyframe */
@keyframes smooth-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.1; } /* Fading to 0.1 instead of 0 prevents jerky transitions */
}






/* Modal wrapper with mdl prefix */
.mdl-modal-box {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.mdl-text-dark {
    color: var(--brand-dark);
}

.mdl-label {
    color: var(--brand-dark);
    font-size: 0.9rem;
}

/* Custom Input styles with mdl prefix (Works on inputs and selects) */
.mdl-input {
    border: 1px solid #cbd5e1;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
}

/* Green Highlight focus effect */
.mdl-input:focus {
    border-color: var(--brand-green) !important;
    box-shadow: 0 0 0 4px rgba(0, 135, 81, 0.15) !important;
    color: var(--brand-dark);
}

/* Validation overrides */
.mdl-input.is-valid {
    border-color: #198754 !important;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.15) !important;
    background-color: #f8fffb;
}

.mdl-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15) !important;
    background-color: #fffdfd;
}

/* Custom Submit Button with mdl prefix */
.mdl-submit-btn {
    background-color: var(--brand-green) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.mdl-submit-btn:hover {
    background-color: #006e41 !important;
    box-shadow: 0 4px 12px rgba(0, 135, 81, 0.2);
}

/* Make Select2 container match your custom input aesthetics */
.mdl-modal-box .select2-container--default .select2-selection--single {
    border: 1px solid #cbd5e1 !important;
    height: calc(2.4rem + 2px) !important;
    border-radius: 8px !important;
    padding: 0.4rem 0.5rem !important;
    transition: all 0.2s ease-in-out;
}

/* Style the text placement inside the selection container */
.mdl-modal-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--brand-dark) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* Align the dropdown arrow */
.mdl-modal-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}

/* Validation overrides for Select2 elements */
.mdl-modal-box .select2-selection.is-valid {
    border-color: #198754 !important;
    background-color: #f8fffb !important;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.15) !important;
}

.mdl-modal-box .select2-selection.is-invalid {
    border-color: #dc3545 !important;
    background-color: #fffdfd !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15) !important;
}

/* Highlight search focus block */
.select2-container--open .select2-dropdown {
    border-color: var(--brand-green) !important;
    border-radius: 8px;
    z-index: 9999999; /* Keeps select dropdown stacked over modal window layers */
}

/* Success Modal Custom Circle Check */
.success-icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}






  /* Mobile View (Default): Both buttons are visible */
.floating-contact-container .btn-call,
.floating-contact-container .btn-whatsapp {
    display: inline-flex; /* Or 'block' / 'inline-block' depending on your layout */
}

/* Desktop View: Hide the call button on screens 768px and wider */
@media (min-width: 768px) {
    .btn-call {
        display: none !important;
    }
}




