

.main-pad {
    margin-top: 80px;
}

:root { 
    --background-color: #ffffff; 
    --default-color: #1a1f24; 
    --heading-color: #485664;
    /* --accent-color: #219ebc;  */
    --accent-color: #219ebc; 
    --surface-color: #ffffff; 
    --contrast-color: #ffffff; 
}
/* background: var(--bs-dark); */

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

    .services {
        background-color: aqua;
    }

    .section-title {
        text-align: center;
        padding-bottom: 60px;
        position: relative;
    }
    
    .section-title h2 {
        font-size: 48px;
        font-weight: 300;
        margin-bottom: 15px;
        color: #219ebc;
    }
    
    .section-title p {
        margin-bottom: 0;
    }
    .services .img {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .services .img img {
        transition: 0.6s;
    }
    
    .services .details {
        background: color-mix(in srgb, var(--surface-color), transparent 5%);
        padding: 50px 30px;
        margin: -100px 30px 0 30px;
        transition: all ease-in-out 0.3s;
        position: relative;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .services .details .icon {
        margin: 0;
        width: 72px;
        height: 72px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border: 6px solid var(--contrast-color);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 28px;
        transition: ease-in-out 0.3s;
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
    }
    
    .services .details h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }
    
    .services .details p {
        color: color-mix(in srgb, var(--default-color), transparent 10%);
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .services .service-item:hover .details h3 {
        color: var(--accent-color);
    }
    
    .services .service-item:hover .details .icon {
        background: var(--surface-color);
        border: 2px solid var(--accent-color);
    }
    
    .services .service-item:hover .details .icon i {
        color: var(--accent-color);
    }
    
    .services .service-item:hover .img img {
        transform: scale(1.2);
    }
    

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    .contact .info-item {
        background-color: var(--surface-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        padding: 24px 0 30px 0;
    }

    .contact {
        padding-top: 0px !important;
    }

    @media (min-width: 992px) {
        .contact .info-item {
            height: 210px !important;
        }
    }

    .contact .info-item i {
        color: var(--accent-color);
        width: 56px;
        height: 56px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        border-radius: 50%;
        border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
    }
    
    .contact .info-item h3 {
        font-size: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 18px;
        font-weight: 700;
        margin: 10px 0;
    }
    
    .contact .info-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
    }
    
    .contact .php-email-form {
        background-color: var(--surface-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        height: 100%;
        padding: 30px;
    }
    
    @media (max-width: 575px) {
        .contact .php-email-form {
        padding: 20px;
        }
    }
    
    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: 0;
        color: var(--default-color);
        background-color: var(--surface-color);
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }
    
    .contact .php-email-form input[type=text]:focus,
    .contact .php-email-form input[type=email]:focus,
    .contact .php-email-form textarea:focus {
        border-color: var(--accent-color);
    }
    
    .contact .php-email-form input[type=text]::placeholder,
    .contact .php-email-form input[type=email]::placeholder,
    .contact .php-email-form textarea::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }
    
    .contact .php-email-form button[type=submit] {
        color: var(--contrast-color);
        background: var(--accent-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 4px;
    }
    
    .contact .php-email-form button[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }


    /* PHP Email Form Messages
------------------------------*/
    .php-email-form .error-message {
        display: none;
        background: #df1529;
        color: #ffffff;
        text-align: left;
        padding: 15px;
        margin-bottom: 24px;
        font-weight: 600;
    }
    
    .php-email-form .sent-message {
        display: none;
        color: #ffffff;
        background: #059652;
        text-align: center;
        padding: 15px;
        margin-bottom: 24px;
        font-weight: 600;
    }
    
    .php-email-form .loading {
        display: none;
        background: var(--surface-color);
        text-align: center;
        padding: 15px;
        margin-bottom: 24px;
    }
    
    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }
    
    @keyframes php-email-form-loading {
        0% {
        transform: rotate(0deg);
        }
    
        100% {
        transform: rotate(360deg);
        }
    }
  

/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/

    .section-heading {
        margin-bottom: 70px;
    }
    
    .section-heading h2 {
        font-size: 40px;
        font-weight: 700;
        text-transform: capitalize;
        margin-top: 20px;
        line-height: 56px;
    }
    
    .section-heading h2 em {
        font-style: normal;
        color: #0071f8;
    }
    
    .section-heading h6 {
        color: #ee626b;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .service-detail {
        background-color: #fafafa;
        padding: 100px 0px 50px 0px;
        display: block;
    }

    .service-detail h5 {
        font-family: Arial, Helvetica, sans-serif;
        text-align: justify;
    }

    .service-detail .tab-content img {
        padding: 0px 45px;
    }

    .service-detail .tabs-content .nav-link {
        font-size: 16px;
        font-weight: 500;
        background-color: #1e1e1e !important;
        border-radius: 5px;
        height: 50px;
        line-height: 50px;
        display: inline-block;
        padding: 0px 25px;
        color: #fff;
    }

    .service-detail .tabs-content .nav-tabs .nav-link.active {
        background-color: #f35525 !important;
        color: #fff;
    }

    .service-detail .tabs-content ul.nav-tabs {
        border-bottom: none !important;
        margin-bottom: 80px;
        align-items: end;
        justify-content: end !important;
        margin-top: -130px !important;
    }

    .service-detail .tabs-content ul.nav-tabs li {
        padding-right: 0px;
        border-right: none;
        margin-left: 20px;
    }

    .service-detail .info-table {
        border-radius: 10px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        padding: 35px 30px;
    }

    .service-detail .info-table ul li {
        display: block;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #eee;
        text-align: left;
        font-size: 15px;
        color: #aaa;
        font-weight: 400;
    }

    .service-detail .info-table ul li:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .service-detail .info-table ul li span {
        font-size: 20px;
        color: #1e1e1e;
        font-weight: 700;
        float: right;
        display: inline-block;
    }

    .service-detail .tabs-content {
        padding: 0px;
        background-color: transparent;
    }

    .service-detail .tabs-content h4 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .service-detail .icon-button {
        margin-top: 30px;
    }

    .service-detail .get_price{
        color: var(--contrast-color);
        background: var(--accent-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 4px;
    }

    .icon-button a {
        display: inline-block;
        background-color: #1e1e1e;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        height: 50px;
        line-height: 50px;
        padding: 0px 30px 0px 0px;
        border-radius: 25px;
        transition: all .3s;
    }

    .icon-button a i {
        background-color: #f35525;
        height: 50px;
        width: 50px;
        text-align: center;
        border-radius: 50%;
        line-height: 50px;
        display: inline-block;
        margin-right: 15px;
        margin-left: -1px;
    }

    .icon-button a:hover {
        color: #f35525;
    }

    .icon-button a:hover i {
        color: #fff;
    }

    @media (max-width: 992px) {
        .service-detail .section-heading {
            text-align: center;
        }
        .service-detail .tabs-content ul.nav-tabs {
            margin-top: 0px !important;
            justify-content: center !important;
        }
        .service-detail .info-table {
            margin-bottom: 45px;
        }
        .service-detail .tab-content img {
            padding: 0px;
        }
        .service-detail .tabs-content h4 {
            margin-top: 45px;
        }
        .service-detail .info-table ul li span {
            float: right !important;
            width: auto !important;
        }
    }

    @media (max-width: 1200px) {
        .service-detail .info-table ul li span {
          float: none;
          width: 100%;
        }
    }

    @media (max-width: 767px) {
        .header-area .main-nav .logo h1 {
          line-height: 80px !important;
        }
        .service-detail .tabs-content .nav-link {
          font-size: 14px;
          padding: 0px 15px;
          height: 44px;
          line-height: 44px;
        }
        .service-detail .tabs-content ul.nav-tabs li {
          margin: 5px 5px;
        }
    }

    .info-table {
        position: relative;
    }
    
    .share-btn {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 10;
    }

    .service-detail .info-table .dropdown-menu {
        box-shadow: rgb(153, 153, 153) 0px 2px 9px 0px !important;
        border-radius: 10px !important;
    }
    
    .service-detail .info-table .dropdown-menu .dropdown-item {
        padding: 5px 5px 5px 5px !important;
        margin-bottom: 2px !important;
    }

    .position-relative .position-relative {
        padding-left: 0px !important;
    }

    .image-zoom-container {
        position: relative;
        display: inline-block;
    }
    
    #main-image {
        width: 100%;
        cursor: crosshair;
    }

    /* #zoomed-view {
        right: auto !important;
        left: -310px !important;  
    } */
    
    /* #zoomed-view {
        position: absolute;
        top: 0;
        left: 0; 
        width: 100%; 
        height: 100%; 
        overflow: hidden;
        border: 1px solid #ccc;
        background-color: #fff;
        display: none;
        z-index: 10;
    } */

    #zoomed-view {
        position: absolute;
        top: 0 !important;
        left: 0 !important;
        width: 100%; /* Cover the full image */
        height: 100%; /* Cover the full image */
        overflow: hidden;
        border: none;
        background-color: transparent; /* Ensures no white box */
        display: none;
        z-index: 10;
    }

    #zoomed-view img {
        position: absolute;
        width: auto;
        height: auto;
        min-width: 200%; /* Zoom effect */
        min-height: 200%;
        pointer-events: none !important; /* Prevents interference */
    }
    
    @media (min-width: 991px) {
        #zoomed-view {
            position: absolute;
            top: 0;
            left: 110%; /* Position to the right of the image */
            width: 420px; /* Adjust as needed */
            height: 380px; /* Adjust as needed */
            overflow: hidden;
            border: 1px solid #ccc;
            background-color: #fff;
            display: none; /* Initially hidden */
            z-index: 10;
        }
    }

    .btn.btn-outline-primary {
        /* transform: skew(18deg); */
        transition: 0.5s;
    }
    
    .service-card {
        position: relative;
        overflow: hidden;
        text-align: center;
        transition: 0.3s;
        border: 1px solid #ddd;
        padding: 0px 10px; /* Space around content */
        background-color: #fefdfd;
    }

    .service-card img {
        width: 100%;
        height: auto;
        background-color: #f8f9fa; /* Gray background for padding area */
        padding: 60px 0; /* Top & bottom padding */
        transition: transform 0.3s ease-in-out;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }


    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(27, 24, 24, 0.9);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .service-card:hover .service-overlay {
        opacity: 1;
    }

    .overlay-box {
        position: relative;
        padding: 15px;
        width: 80%;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .overlay-box h5 {
        color: aliceblue;
        font-family:Arial, Helvetica, sans-serif;
        padding: 5px 0px;
    }

    .overlay-box strong, p {
        font-family:Arial, Helvetica, sans-serif;
        font-size: small;
    }

    .service-card:hover .overlay-box {
        opacity: 1;
    }

    /* Animated Border */
    .overlay-box::before,
    .overlay-box::after,
    .overlay-box span::before,
    .overlay-box span::after {
        content: "";
        position: absolute;
        background-color: white;
        transition: 0.4s ease-in-out;
    }

    /* Top border */
    .overlay-box::before {
        top: 0;
        left: 0;
        width: 0;
        height: 2px;
    }

    /* Bottom border */
    .overlay-box::after {
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
    }

    /* Left border */
    .overlay-box span::before {
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
    }

    /* Right border */
    .overlay-box span::after {
        bottom: 0;
        right: 0;
        width: 2px;
        height: 0;
    }

    /* Border animation on hover */
    .service-card:hover .overlay-box::before,
    .service-card:hover .overlay-box::after {
        width: 100%;
    }

    .service-card:hover .overlay-box span::before,
    .service-card:hover .overlay-box span::after {
        height: 100%;
    }

    .service-title {
        margin-top: 10px;
        padding: 10px;
        font-weight: bold;
        background-color: #f8f9fa;
    }


    .cms li {
        font-size: 1.6em;
    }
    .cms-strong {
        padding-bottom: 30px;
    }
    
    .cms-para {
        font-size: 1.3em;
        margin-top: 0.2em;
    }

    .cms-privacy {
        font-size: 1.3em;
    }

    .cms h3, h5, h4 {
        font-family: sans-serif;
    }

    .cms ul li {
        font-size: 1.2em !important;
    }

    .about-us p {
        text-align: justify;
        font-size: 1.2em;
    }

    .about-us strong {
        font-size: 1.1em;
    }

    .about-us li {
        text-align: justify;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        transition: ease-in-out 0.3s;
    }

    .dotted-line {
        border: none; /* Remove default border */
        border-top: 2px dotted #000; /* Dotted line with black color */
        margin: 10px 0; /* Add some spacing */
    }

    .modal-header {
        background-color: #219ebc;
    }
    .modal-header h5 {
        color: aliceblue;
    }

    .toast-success {
        background-color: #4CAF50;
        color: white;
    }
    
    .toast-error {
        background-color: #f44336; 
        color: white;
    }

    #toast-message {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 10px;
        border-radius: 5px;
        z-index: 1000;
    }

    .register_form {
        background-color: #94cce6;
    }

    .register_form .tag-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .register_form .tag {
        display: inline-flex;
        align-items: center;
        background: #f0f0f0;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 14px;
    }

    .register_form .tag .remove-tag {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
    }

    .register_form .custom-select {
        appearance: none;
        background: #fffefe;
        border: none;
        padding: 10px;
        border-radius: 10px;
    }

    .register_form .file-preview-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .register_form .file-tag {
        display: inline-flex;
        align-items: center;
        background: #f0f0f0;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 14px;
    }

    .register_form .file-tag .remove-tag {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
    }

    .register_form .file-preview {
        max-width: 100px;
        max-height: 100px;
        border-radius: 8px;
        margin-right: 5px;
    }
      
    .register_form .register-phone {
        --bs-gutter-x: 0rem !important;
        /* padding-right:  !important; */
        padding-left: 0.7em !important;
        padding-right: 0.7em !important;
        
    }
  