footer {
    background: #000;
    padding: 65px 30px;
    padding-bottom: 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    padding-right: 0;
}

.footer-top {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    padding-bottom: 40px;
}

/* Typography & Headers */
.footer-widget-title {
    color: #ffffff;
    font-size: 28px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    margin-bottom: 20px;
}

.subscribe-section .footer-widget-title::after {
    display: none;
}

.footer-bottom {
    padding: 30px;
    background: #000;
    /* border: 1px solid; */
    border-top: 1px solid rgb(76 76 76);
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer-bottom p a {
    color: #fff;
}

.footer-widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url(../images/footer-heading-border.png);
    background-repeat: no-repeat;
}

.subscribe-section .footer-widget-title {
    color: #ffffff;
    font-size: 26px !important;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    text-align: left;
}

.brand-tagline {
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
    text-align: left;
    font-weight: 400;
}

/* Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

/* Subscribe Form */
.subscribe-section {
    text-align: left;
}

.subscribe-form {
    display: flex;
    background: #ffffff;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    max-width: 290px;
    height: 42px;
}

.subscribe-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    outline: none;
    color: #333;
}

.subscribe-btn {
    background: linear-gradient(90deg, #60A5FA 0%, #818CF8 100%);

    color: white;
    border: none;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.subscribe-btn:hover {
    background: #0056b3;
}

/* Contact Section */
.contact-info {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #d1d1d1;
    font-size: 14px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.contact-item i {
    color: rgba(111, 167, 251, 1);
    font-size: 18px;
}

.contact-item p {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    line-height: 24px;
}

.contact-item a:hover {
    color: #007bff;
}

.consult-btn {
    display: inline-block;
    background: linear-gradient(90deg, #60A5FA 0%, #818CF8 100%);

    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    margin: 20px 0;
    width: max-content;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    margin-top: 10px;
    width: 184px;
}

.consult-btn:hover {
    background: #0069d9;
    /* transform: translateY(-3px); */
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
    text-align: left;
}

/* Review Section */
.review-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-item {
    flex: 1;
    /* display: flex; */
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: left;
}

.review-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 50px;
    margin-left: 10px;
}

.google-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.clutch-img {
    height: 20px;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #ffb400;
}

.stars span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-right: 5px;
}

.review-caption {
    font-size: 12px !important;
    color: #ffffff;
    text-align: left !important;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}



/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.footer-brand {
    text-align: left;
}

.footer-brand img {
    width: 155px;
}

.dmca-badge {
    text-align: left;
}

.footer-flexx {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-col-5 {
    width: 271px;
}

.clutch-widget .small_widget_logo_text {
    color: #fff !important;
}

.clutch-widget .small_widget_text .reviews-count a {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-widget-title {
        font-size: 18px !important;
        margin-top: 30px !important;
    }

    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 50px 0 20px;
    }

    .footer-widget-title {
        margin-bottom: 15px !important;
    }

    .consult-btn {
        width: auto;
        padding: 10px 20px;
    }

    .footer-flexx {
        display: block;
    }

    .footer-col-5 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .footer-brand {
        text-align: center;
    }

    .brand-tagline {
        text-align: center;
    }

    .subscribe-section {
        text-align: center;
    }

    .subscribe-section .footer-widget-title {
        text-align: center;
    }

    .subscribe-form {
        margin: auto;
    }

    .footer-widget-title {
        text-align: center;
    }

    .footer-links li {
        text-align: center;
    }

    .dmca-badge {
        text-align: center;
    }

    .footer-widget-title::after {
        width: max-content;
        left: 155px;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .footer-divider {
        text-align: center;
    }

    .review-caption {
        text-align: center !important
    }

    .review-badges {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .clutch-rating {
        text-align: center !important;
    }

    .clutch-rating img {
        margin: auto;
    }

    .dmca-badge img {
        margin: auto;
    }

    .footer-divider img {
        margin: auto;
    }

    .footer-brand img {
        margin: auto;
    }
}

/* Floating Button Start */
.floating-callback-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #ffffff;
  color: #1b2530;
  border-radius: 0 12px 12px 0;
  border-left: none;
  width: 42px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.floating-callback-btn .btn-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 0;
  white-space: nowrap;
  color: #000;
}

.floating-callback-btn .icon-box {
  background-color: #12436d; 
  color: #ffffff;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-bottom-right-radius: 11px;
  transition: background-color 0.3s ease;
}

/* Floating Button End */
.floating-callback-btn .icon-box{
    background: #0070ee;
}

/* Callback Form Modal - Fixed on Left Side */
.callback-modal-card {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    width: 360px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px 25px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333333;
}

.callback-modal-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Close button */
.callback-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #666666;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.callback-modal-close:hover {
    background: #f5f5f5;
    color: #111111;
    border-color: #cccccc;
}

/* Header */
.callback-modal-header {
    text-align: left;
    margin-bottom: 25px;
}

.callback-modal-header .subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.callback-modal-header .title {
    font-size: 32px;
    font-weight: 800;
    color: #0070ee;
    margin: 4px 0 0 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Form inputs */
.callback-form-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group-line {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
    transition: border-color 0.2s ease;
}

.form-group-line:focus-within {
    border-bottom-color: #d32f2f;
}

.form-group-line .form-icon {
    font-size: 16px;
    color: #888888;
    margin-right: 12px;
    width: 18px;
    text-align: center;
}

.form-control-line {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333333;
    padding: 4px 0;
    font-family: inherit;
}

.form-control-line::placeholder {
    color: #9e9e9e;
    font-size: 14px;
}

/* Phone code group */
.phone-group {
    display: flex;
    align-items: center;
}

.country-code-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
}

.country-code-select .flag-icon {
    display: flex;
    align-items: center;
}

.country-code-select .code-text {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

/* Submit button */
.callback-submit-btn {
    margin-top: 10px;
    width: 100%;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.callback-submit-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.45);
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .callback-modal-card {
        left: 0;
        right: 15px;
        width: auto;
        padding: 25px 20px 20px 20px;top: 50%;bottom: auto;
    }
    .callback-modal-header .subtitle {
        font-size: 18px;
    }
    .callback-modal-header .title {
        font-size: 26px;
    }
}