@font-face {
    font-display: swap;
    font-family: 'robotolight';
    src: url("https://www.assignmentdesk.co.uk/templates/assignmentdesk/fonts/Roboto-Light-webfont.woff2") format("woff2"), url(".https://www.assignmentdesk.co.uk/templates/assignmentdesk/fonts/Roboto-Light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'robotoregular';
    src: url("https://www.assignmentdesk.co.uk/templates/assignmentdesk/fonts/Roboto-Regular-webfont.woff2") format("woff2"), url("https://www.assignmentdesk.co.uk/templates/assignmentdesk/fonts/Roboto-Regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'robotomedium';
    src: url("https://www.assignmentdesk.co.uk/templates/assignmentdesk/fonts/roboto-medium-webfont.woff2") format("woff2"), url("https://www.assignmentdesk.co.uk/templates/assignmentdesk/fonts/roboto-medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'robotoregular', sans-serif;
    color: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

h1 {
    font-family: 'robotomedium', sans-serif;
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Header */
.header {
    background: #1b3558;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.logo-fallback {
    color: white;
}

.logo-fallback strong {
    font-family: 'robotomedium', sans-serif;
    font-size: 22px;
    display: block;
    letter-spacing: 0.5px;
}

.logo-fallback strong span {
    font-size: 28px;
}

.logo-fallback small {
    font-size: 12px;
    color: #cbd5e1;
}

/* Buttons */
.btn {
    font-family: 'robotomedium', sans-serif;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.whatsapp-header-btn {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 30px;
}

.btn-white-green {
    background: #ffffff;
    color: #2cb742;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-white-green:hover {
    background: #f1f1f1;
}

.btn-red {
    background: #ff5757;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 87, 87, 0.2);
}

.btn-red:hover {
    background: #ff4242;
}

.btn-dark-blue {
    background: #153D72;
    color: #ffffff;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.btn-dark-blue:hover {
    background: #0f2d57;
}

.btn-large {
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: radial-gradient(circle at center, #3b699e 0%, #153D72 100%);
    background-color: #153D72;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.tag-pill {
    font-family: 'robotomedium', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 550px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.feature-item {
    font-family: 'robotomedium', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Form Card */
.hero-form-wrapper {
    flex: 0 0 420px;
}

.form-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: #333333;
}

.form-card h2 {
    font-family: 'robotomedium', sans-serif;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 8px;
    color: #1a202c;
    padding-right: 40px;
    /* Make room for the tag */
}

/* Offer Tag */
.offer-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #F35146;
    color: #fff;
    padding: 8px 12px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    font-family: 'robotomedium', sans-serif;
    z-index: 10;
}

.offer-tag .tag-upto {
    font-size: 10px;
    align-self: flex-start;
    margin-bottom: 2px;
}

.offer-tag .tag-percent {
    font-size: 22px;
    font-weight: bold;
}

.offer-tag .tag-off {
    font-size: 9px;
    align-self: flex-end;
    margin-top: 2px;
}

.offer-svg {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 60px;
    height: auto;
    border-top-right-radius: 16px;
    z-index: 2;
}

.form-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 24px;
    font-size: 13px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.half-width {
    flex: 1;
}

.form-control {
    font-family: 'robotoregular', sans-serif;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #f4f6f9;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    background-color: #f4f6f9;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #cbd5e1;
    box-shadow: 0 0 0 2px rgba(203, 213, 225, 0.5);
}

/* University Form Structure Styles for ads.php */
.hero-form-wrapper .form-select {
    width: 100%;
}

.hero-form-wrapper .form-div {
    display: flex;
    flex-direction: column;
}

.hero-form-wrapper .box {
    margin-bottom: 15px;
}

.hero-form-wrapper .double-boxes {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.hero-form-wrapper .double-boxes .box {
    flex: 1;
    margin-bottom: 0;
}

.hero-form-wrapper select {
    font-family: 'robotoregular', sans-serif;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #f4f6f9;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    background-color: #f4f6f9;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-form-wrapper select:focus {
    outline: none;
    border-color: #cbd5e1;
    box-shadow: 0 0 0 2px rgba(203, 213, 225, 0.5);
}

.btn-submit {
    margin-top: 1rem;
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-box {
    flex: 1;
    text-align: center;
    border-right: 1px solid #cbd5e1;
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'robotomedium', sans-serif;
    font-size: 36px;
    color: #153D72;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'robotomedium', sans-serif;
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-header h2 {
    font-family: 'robotomedium', sans-serif;
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 15px;
}

.trust-header p {
    font-size: 16px;
    color: #64748b;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.trust-row {
    display: flex;
    gap: 25px;
}

.trust-card {
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.blue-card {
    background-color: #1a365d;
    color: #ffffff;
    flex: 1.6;
}

.small-card {
    flex: 1;
}

.white-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
}

.row-card {
    flex: 1.6;
    display: flex;
    padding: 0;
    overflow: hidden;
}

.row-card-content {
    flex: 1;
    padding: 40px;
}

.row-card-image {
    flex: 1;
    max-width: 45%;
}

.row-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-family: 'robotomedium', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.blue-card h3 {
    font-family: 'robotomedium', sans-serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
}

.blue-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #1a365d;
    margin-right: -15px;
    object-fit: cover;
}

.avatar-count {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    color: #1a365d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-family: 'robotomedium', sans-serif;
    border: 2px solid #1a365d;
    z-index: 10;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.white-card h3 {
    font-family: 'robotomedium', sans-serif;
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
}

.white-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    color: #1a365d;
    text-decoration: none;
    font-family: 'robotomedium', sans-serif;
    font-size: 15px;
}

.learn-more:hover {
    text-decoration: underline;
}

.trust-cta {
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.blue-pill {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #1e3a63;
    margin-bottom: 20px;
}

.services-header h2 {
    font-family: 'robotomedium', sans-serif;
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 16px;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-info h3 {
    font-family: 'robotomedium', sans-serif;
    font-size: 17px;
    color: #1e293b;
    margin-bottom: 4px;
}

.service-info .price {
    font-family: 'robotomedium', sans-serif;
    font-size: 14px;
    color: #1a365d;
}

/* Compare Section */
.compare-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.compare-header {
    text-align: center;
    margin-bottom: 50px;
}

.compare-header h2 {
    font-family: 'robotomedium', sans-serif;
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 15px;
}

.compare-header p {
    font-size: 16px;
    color: #64748b;
}

.compare-table-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.compare-table th {
    padding: 25px;
    font-family: 'robotomedium', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.compare-table td {
    padding: 25px;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.col-features {
    text-align: left;
    width: 30%;
    padding-left: 30px !important;
}

.col-brand {
    width: 45%;
    background-color: #f1f5f9;
    color: #334155;
}

.col-included {
    width: 25%;
    color: #1a365d;
}

.compare-table thead .col-features,
.compare-table thead .col-included {
    background-color: #0f172a;
}

.compare-table thead .col-brand {
    background-color: #1a365d;
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.compare-table td.col-features {
    color: #1e293b;
    font-family: 'robotomedium', sans-serif;
}

.compare-table td.col-included {
    font-family: 'robotomedium', sans-serif;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.cta-banner {
    background: linear-gradient(90deg, #07478d 0%, #0c6ab5 100%);
    border-radius: 16px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(7, 71, 141, 0.2);
}

.cta-banner-left {
    max-width: 600px;
}

.pill-red {
    display: inline-block;
    background: #d32f2f;
    color: #ffffff;
    font-family: 'robotomedium', sans-serif;
    font-size: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-banner-left h2 {
    font-family: 'robotomedium', sans-serif;
    font-size: 32px;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-banner-left p {
    font-size: 16px;
    color: #93c5fd;
}

.cta-banner-left p strong {
    color: #ffffff;
    font-family: 'robotomedium', sans-serif;
}

.cta-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.timer {
    display: flex;
    gap: 15px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timer-num {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'robotomedium', sans-serif;
    font-size: 24px;
    color: #ffffff;
}

.timer-label {
    font-family: 'robotomedium', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e2e8f0;
}

.btn-claim {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 8px;
    text-align: center;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.hiw-header {
    text-align: center;
    margin-bottom: 50px;
}

.hiw-header h2 {
    font-family: 'robotomedium', sans-serif;
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 15px;
}

.hiw-header p {
    font-size: 16px;
    color: #64748b;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.hiw-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.hiw-card:hover,
.hiw-card.active {
    border-color: #1a365d;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #e2e8f0;
    color: #1a365d;
    font-family: 'robotomedium', sans-serif;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.hiw-card:hover .step-circle,
.hiw-card.active .step-circle {
    background: #1a365d;
    color: #ffffff;
}

.hiw-card h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 15px;
}

.hiw-card:hover h3,
.hiw-card.active h3 {
    color: #1a365d;
}

.hiw-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.hiw-cta {
    text-align: center;
}

/* Testimonial slider from home.css */
.home_testimonial {
    text-align: center;
    background: #fffafa;
    padding: 50px 0;
}

.home_testimonial .heading {
    color: #1a365d;
    font-family: 'robotomedium', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.home_testimonial .sub-heading {
    color: #475569;
    font-size: 16px;
}

.home_testimonial .slick-dots,
.services-section .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    gap: 8px;
}

.home_testimonial .slick-dots li,
.services-section .slick-dots li {
    margin: 0;
}

.home_testimonial .slick-dots li button,
.services-section .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 25px;
    height: 4px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #20b2aa;
    transition: all 0.3s ease;
}

.home_testimonial .slick-dots li.slick-active button,
.services-section .slick-dots li.slick-active button {
    background: #FE4C49;
}

.home_testimonial .testimonial_slider_home {
    margin-top: 40px;
}

.home_testimonial .testimonial_slider_home .client-says {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0705882353);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0705882353);
    border-radius: 20px;
    background: #3F6CB0;
    padding: 32px 43px;
    text-align: left;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.home_testimonial .testimonial_slider_home .client-says.slick-center {
    -webkit-transform: scale(1);
    transform: scale(1);
    position: relative;
    background: #3F6CB0;
}

.home_testimonial .testimonial_slider_home .client-says.slick-center:before {
    content: "";
    background: url(../images/sample-bg.png) no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    height: 177px;
    width: 175px;
    z-index: -1;
}

.home_testimonial .testimonial_slider_home .client-says.slick-center .msg {
    font-size: 18px;
    line-height: 28px;
}

.home_testimonial .testimonial_slider_home .client-says .msg {
    cursor: pointer;
    font-size: 16px;
    line-height: 26px;
    font-family: "robotomedium";
    color: #fff;
    text-align: left;
    height: 110px;
    overflow: auto;
    padding: 0 5px 0 0;
    margin: 0 0 23px;
}

.home_testimonial .testimonial_slider_home .client-says .msg::-webkit-scrollbar {
    width: 6px;
}

.home_testimonial .testimonial_slider_home .client-says .msg::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.home_testimonial .testimonial_slider_home .client-says .msg::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.home_testimonial .testimonial_slider_home .client-says:hover .msg::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.05);
}

.home_testimonial .testimonial_slider_home .client-says:hover .msg::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
}

.home_testimonial .testimonial_slider_home .client-says .name {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin: 0;
}

.home_testimonial .testimonial_slider_home .client-says .cityname {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    display: block;
}

.home_testimonial .testimonial_slider_home .client-says .rating {
    margin: 16px 0 0;
}

@media (max-width: 991px) {
    .home_testimonial .testimonial_slider_home .client-says {
        padding: 20px 15px;
    }
}

@media (max-width: 767px) {
    .home_testimonial .sub-heading {
        margin: 15px 0 20px;
    }

    .home_testimonial .testimonial_slider_home .client-says.slick-center .msg {
        font-size: 16px;
        line-height: 24px;
    }

    .home_testimonial .testimonial_slider_home .client-says .msg {
        font-size: 14px;
        line-height: 20px;
        height: 100px;
        margin: 0px 0 12px;
    }

    .home_testimonial .testimonial_slider_home .client-says .name {
        font-size: 16px;
        line-height: 22px;
    }

    .home_testimonial .testimonial_slider_home .client-says .cityname {
        font-size: 14px;
        line-height: 20px;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating {
        margin: 5px 0 0;
    }
}

@media (max-width: 575px) {
    .home_testimonial .testimonial_slider_home .client-says.slick-center .msg {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 479px) {
    .home_testimonial .sub-heading .more-text-mobile {
        display: none;
    }

    .home_testimonial .sub-heading.show-more .more-text-mobile {
        display: inline;
    }

    .home_testimonial .sub-heading .read-more {
        display: inline-block !important;
        cursor: pointer;
        font-family: "robotomedium";
        color: #FE4C49;
        text-decoration: underline;
    }

    .home_testimonial .testimonial_slider_home .client-says {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin: 0 10px;
    }

    .home_testimonial .testimonial_slider_home .client-says .msg {
        margin: 0px 0 8px;
    }

    .home_testimonial .testimonial_slider_home .client-says .name {
        font-size: 14px;
        line-height: 18px;
    }

    .home_testimonial .testimonial_slider_home .client-says .cityname {
        font-size: 13px;
        line-height: 16px;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating .rating-star:before {
        width: 12px;
        height: 12px;
        background-size: contain;
    }
}

.rating-star {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    line-height: 1;
}

.rating-star:before {
    content: "";
    background: url(../images/rating-star.svg) no-repeat center center;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin: 0 2px 0 0 !important;
    background-size: contain;
}

.stars {
    color: #f59e0b;
    font-size: 20px;
    margin-top: 10px;
}


/* FAQ Block Styles from another-service-detail.css */
.faq-block {
    background: #F5F5F5;
    padding: 60px 0 80px;
    overflow: hidden
}

.faq-block .container {
    position: relative
}

.faq-block h2 {
    text-align: center;
}

.faq-block .container:after,
.faq-block .container:before {
    content: "";
    background: url(../images/faq-que.png) no-repeat;
    width: 391px;
    height: 387px;
    position: absolute;
    opacity: 0.25;
    top: -50px
}

.faq-block .container:after {
    right: -17%
}

.faq-block .container:before {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -17%
}

.faq-block .faq-list {
    width: 78%;
    margin: 70px auto 0
}

.faq-block .faq-list li {
    margin: 0 0 30px;
    position: relative;
    -webkit-box-shadow: 0px 0px 12.66px 2.53px #78A7E4;
    box-shadow: 0px 0px 12.66px 2.53px #78A7E4;
    background: #fff;
    border-radius: 13px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
    overflow: hidden
}

.faq-block .faq-list li:last-of-type {
    margin: 0
}

.faq-block .faq-list li .faq-head {
    font-size: 20px;
    line-height: 24px;
    color: #343434;
    padding: 30px 60px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1
}

.faq-block .faq-list li .faq-head span {
    position: relative;
    z-index: 1
}

.faq-block .faq-list li .faq-head:before {
    content: "";
    background: url(../images/down-arrow.svg) no-repeat;
    background-size: contain;
    width: 17px;
    height: 8px;
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.faq-block .faq-list li .faq-head:after {
    content: "";
    background: url(../images/faq-li-blue.png) no-repeat;
    height: 130px;
    width: 125px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out
}

.faq-block .faq-list li .faq-head.active:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.faq-block .faq-list li .faq-head.active:after {
    opacity: 1
}

.faq-block .faq-list li .faq-detail {
    display: none;
    font-size: 18px;
    line-height: 22px;
    color: #6F6F6F;
    padding: 0px 60px 30px;
    margin: -15px 0 0;
    position: relative;
    z-index: 1
}

.faq-block .faq-list li .faq-detail ul li {
    margin: 10px 0;
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    overflow: unset;
    background: unset
}

.faq-block .faq-list li .faq-detail ul li:before {
    content: unset
}

.faq-block .faq-list li .faq-detail ul li:last-of-type {
    margin: 0
}

.faq-block.master-faq-block .container:after,
.faq-block.master-faq-block .container:before {
    width: 227px;
    height: 225px;
    background-size: cover;
    opacity: 1;
    top: -60px
}

.faq-block.master-faq-block .container:before {
    left: -15%
}

.faq-block.master-faq-block .container:after {
    right: -15%
}

.faq-block.master-faq-block .faqs-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px auto 0
}

.faq-block.master-faq-block .faqs-div .faq-list {
    width: 48%;
    margin: 0
}

.faq-block.master-faq-block .faqs-div .faq-list li {
    border-radius: 5px;
    margin: 0 0 15px;
    -webkit-box-shadow: 0px 0px 2.53px 2.53px rgba(120, 167, 228, 0.5019607843);
    box-shadow: 0px 0px 2.53px 2.53px rgba(120, 167, 228, 0.5019607843)
}

.faq-block.master-faq-block .faqs-div .faq-list li:last-of-type {
    margin: 0
}

.faq-block.master-faq-block .faqs-div .faq-list li .faq-head {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 50px 15px 15px
}

.faq-block.master-faq-block .faqs-div .faq-list li .faq-head:after {
    height: 60px;
    width: 70px
}

.faq-block.master-faq-block .faqs-div .faq-list li .faq-detail {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 50px 15px 15px
}

@media (max-width:768px) {
    .faq-block {
        padding: 30px 0 50px;
        background: #f5f5f5;
    }

    .faq-block .container:before,
    .faq-block .container:after {
        display: none;
    }

    .faq-block h2,
    .faq-block .section-title,
    .faq-block .sub-heading,
    .faq-block h3 {
        text-align: center !important;
    }

    .faq-block .faq-list {
        width: 95%;
        margin: 30px auto 0;
    }

    /* Restyle FAQ items for mobile */
    .faq-block .faq-list li {
        margin: 0 0 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
        /* Match screenshot softer shadow */
        border-radius: 8px;
        /* Slightly less rounded */
        border: none;
    }

    .faq-block .faq-list li .faq-head {
        font-size: 15px;
        line-height: 22px;
        padding: 15px 40px 15px 15px;
        /* Tighter padding, space for arrow */
        color: #334155;
    }



    .faq-block .faq-list li .faq-detail {
        font-size: 14px;
        line-height: 22px;
        padding: 0 15px 15px 15px;
        color: #64748b;
        margin: 0;
    }

    .faq-block.master-faq-block .faqs-div {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 90%;
        gap: 15px;
    }

    .faq-block.master-faq-block .faqs-div .faq-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .faq-block.master-faq-block .faqs-div .faq-list li .faq-head {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 40px 10px 25px;
        text-align: left !important;
    }

    .faq-block.master-faq-block .faqs-div .faq-list li {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 13px;
    }

    .faq-block.master-faq-block .faqs-div {
        width: 100%
    }
}

/* Footer */
.ads-footer {
    background: #0f172a;
    padding: 25px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    font-family: 'robotoregular', sans-serif;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'robotoregular', sans-serif;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .features-list {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        flex: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0 20px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tag-pill {
        margin: 0 auto 1.5rem;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .features-list {
        justify-content: center;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        display: none;
    }



    .offer-tag {
        border-top-right-radius: 12px;
        padding: 6px 10px;
    }

    .offer-tag .tag-percent {
        font-size: 18px;
    }

    .stats-section {
        padding: 15px 0;
    }

    .stats-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        padding-bottom: 0; /* Removed bottom padding */
    }
    
    .stats-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .stat-box {
        flex: 0 0 40%; /* Show about 2.5 items */
        border-right: 1px solid #cbd5e1;
        padding: 0 5px;
    }
    
    .stat-box:last-child {
        border-right: none;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 10px;
    }

    .trust-section {
        background-color: #f8fafc;
        padding: 34px 0;
    }

    .trust-row {
        flex-direction: column;
    }

    .row-card {
        flex-direction: column;
    }

    .row-card-image {
        max-width: 100%;
        height: 250px;
    }

    .compare-section {
        padding: 28px 0;
        background-color: #ffffff;
    }

    .compare-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .compare-table {
        min-width: 500px;
    }

    .compare-table th,
    .compare-table td {
        padding: 15px;
        font-size: 13px;
    }

    .compare-table thead .col-brand {
        font-size: 16px;
    }

    .col-features {
        position: sticky;
        left: 0;
        background-color: #ffffff;
        z-index: 2;
        width: 120px;
        min-width: 120px;
        box-shadow: 2px 0 5px -2px rgba(0,0,0,0.1);
        padding-left: 15px !important;
    }

    .compare-table thead .col-features {
        background-color: #0f172a;
        z-index: 3;
    }

    .services-section {
        padding: 35px 0;
        background-color: #f8fafc;
    }

    .services-header {
        text-align: center;
        margin-bottom: 28px;
    }

    .services-grid.slick-initialized .service-card {
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
        display: flex !important;
    }

    .services-section .slick-dots {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0 0 0 0;
        gap: 8px;
    }

    .cta-banner-section {
        padding: 35px 0 40px;
        background-color: #ffffff;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 30px;
    }

    .cta-banner-right {
        align-items: center;
        width: 100%;
    }

    .btn-claim {
        max-width: 300px;
    }

    .how-it-works-section {
        padding: 40px 0;
    }

    .hiw-header {
        margin-bottom: 30px;
    }

    .hiw-header h2 {
        font-size: 24px;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .hiw-card {
        padding: 25px 20px;
    }

    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hiw-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hiw-card p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .faq-block .container:before,
    .faq-block .container:after {
        display: none;
    }

    .faq-block h2 {
        text-align: center !important;
    }

    .faq-block.master-faq-block .faqs-div {
        flex-wrap: wrap;
        width: 100%;
        gap: 15px;
    }

    .faq-block.master-faq-block .faqs-div .faq-list {
        width: 100%;
    }

    .faq-block.master-faq-block .faqs-div .faq-list li .faq-head {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 40px 10px 15px;
        text-align: left !important;
    }

    .faq-block.master-faq-block .faqs-div .faq-list li {
        box-shadow: 0 4px 12px rgba(204, 224, 255, 0.4);
        border: 1.5px solid #cce0ff;
        border-radius: 8px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid, .hiw-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
    }
}
.error{
    color:red;
}