/* =========================================
   GLOBAL RESET - Fixes all overflow errors
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Variables */
body.site {
    --primary: #059EFF;
    --secondary: #DEF3FF;
    --text-main: #059EFF;
    --text-dark: #1a1a1a;
    --gray-light: #f9f9f9;
}

/* Global Home Utility Classes */
.section-padding {
    padding: 20px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 24px;
}

.section-title {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Container */
.container-1200 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Base Buttons */
.btn-primary {
    display: inline-block;
    background-color: #206C86;
    color: #fff;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0482d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-read-more .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: #0482d6;
}

.btn-read-more:hover .arrow {
    transform: translateX(5px);
}

/* Nav Slider Buttons */
.posts-nav-buttons {
    display: flex;
    gap: 8px;
}

.post-nav-btn {
    background: #fff;
    border: 1px solid #dcdcdc;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.post-nav-btn:hover {
    background: #70CBFF;
    color: #fff;
    border-color: var(--primary);
}


/* =========================================
   1. HERO SLIDER
   ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block;
    color: #fff;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: inherit !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.slide-content h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: inherit !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.slide-content .btn-primary {
    display: inline-block;
    background-color: #206C86;
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.slide-content .btn-primary:hover {
    background-color: #2AB0DD;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(5, 158, 255, 0.3);
}

.slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.slider__nav:hover {
    background: #206C86;
}

.slider__prev {
    left: 18px;
}

.slider__next {
    right: 18px;
}

.slider__dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #206C86;
    transform: scale(1.1);
}


/* =========================================
   2. SERVICES SLIDER
   ========================================= */
.sp-services-section {
    background-color: #ffffff;
}

.sp-header {
    margin-bottom: 30px;
}

.sp-desc {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.sp-card-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* FIXED: Removed negative margins that caused overflow */
.sp-slider-window {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.sp-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.sp-card-wrapper {
    flex: 0 0 calc(100% / 4);
    padding: 10px 10px;
    box-sizing: border-box;
}

.sp-service-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.sp-service-card {
    background: #D2EEFF;
    border: 1px solid #eef2f5;
    border-radius: 4px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.sp-service-card:hover {
    box-shadow: 0 10px 20px rgba(5, 158, 255, 0.1);
    transform: translateY(-5px);
}

.sp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sp-card-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.sp-card-number {
    font-size: 55px;
    font-weight: 800;
    color: #07669C;
    line-height: 0.8;
}

.sp-card-content h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.sp-read-more {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.sp-read-more .arrow {
    color: var(--primary);
    margin-right: 6px;
    font-size: 16px;
    transition: transform 0.3s;
}

.sp-service-card:hover .sp-read-more {
    color: var(--primary);
}

.sp-service-card:hover .sp-read-more .arrow {
    transform: translate(2px, 2px);
}

.sp-slider-controls {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.sp-control-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sp-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-dot {
    width: 6px;
    height: 6px;
    background: #dcdcdc;
    border-radius: 50%;
    display: block;
}

.sp-dot.active {
    background: var(--primary);
    width: 18px;
    border-radius: 10px;
}

.sp-slider-line {
    flex-grow: 1;
    height: 2px;
    background: #eeeeee;
    margin: 0 20px;
}

.sp-control-right {
    display: flex;
    gap: 8px;
}

.sp-nav-btn {
    width: 32px;
    height: 32px;
    background: #70CBFF;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.3s;
}

.sp-nav-btn:hover {
    background: #0482d6;
}


/* =========================================
   3. ABOUT US
   ========================================= */
.about-section {
    background: linear-gradient(135deg, #D2EEFF 0%, #B6E0FF 100%);
    color: #022036;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--secondary);
}

.about-image-wrapper {
    flex: 0.8;
}

.about-main-img {
    border-radius: 8px;
    width: 100%;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
}

.feature-box .icon {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-box .text h4 {
    margin: 0 0 8px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.feature-box .text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}


/* =========================================
   4. SPLIT SECTION
   ========================================= */
.split-testimonials-section {
    background-color: #ffffff;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-choose-column {
    padding-right: 20px;
    margin-left: 123px;
}

.testimonials-column {
    padding-left: 20px;
    position: relative;
    padding-bottom: 10px;
}

.testimonial-container-right {
    padding: 10px 0;
}

.vertical-slider-window {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.vertical-slider-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide-split {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px 20px 15px 0px;
    position: relative;
}

.test-content .review-text {
    font-size: 15px;
    font-style: italic;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 15px;
}

.test-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.test-bottom .reviewer-name {
    font-weight: 700;
    color: #07669C;
    font-size: 13px;
    margin: 0;
}

.test-bottom .stars {
    color: #f39c12;
    font-size: 14px;
    letter-spacing: 2px;
}


/* =========================================
   5. STATS BANNER
   ========================================= */
.stats-banner-section {
    background: linear-gradient(135deg, #D2EEFF 0%, #FFFFFF 100%);
    color: #000000;
    border-top: 4px solid var(--secondary);
    border-bottom: 4px solid var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}

.stat-info-box .stat-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 800;
}

.stat-info-box .stat-title span {
    color: var(--secondary);
}

.stat-info-box p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stat-buttons .btn-primary {
    background-color: #70CBFF;
    color: var(--primary);
}

.stat-buttons .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.stat-numbers-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}


/* =========================================
   6. RECENT POSTS SLIDER
   ========================================= */
.recent-posts-section {
    background-color: #ffffff;
    overflow: hidden;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 15px;
}

.posts-header .section-title {
    margin-bottom: 0;
}

/* FIXED: Removed negative margins that caused overflow */
.posts-slider-window {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
}

.posts-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.post-card-wrapper {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.post-card {
    background: var(--gray-light);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    border-radius: 4px;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.post-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-img {
    transform: scale(1.08);
}

.post-content {
    padding: 20px;
}

.post-content h4 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
}

.post-content h4 a {
    color: var(--text-dark);
    transition: color 0.3s;
    text-decoration: none;
}

.post-card:hover .post-content h4 a {
    color: var(--primary);
}


/* =========================================
   7. TESTIMONIALS GRID SECTION
   ========================================= */
.testimonials-grid-section {
    background-color: #F4F8FA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-new {
    background: #DBF6FF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.test-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.test-quote-icon {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.2;
}

.test-stars {
    color: #FFC107;
    font-size: 14px;
}

.test-text {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 2px solid #206C86;
    padding-top: 20px;
    margin-top: auto;
}

.test-author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.test-author-info h4 {
    margin: 0 0 2px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.test-author-info span {
    font-size: 13px;
    color: #888;
    display: block;
}

/* Testimonials Slider (Grid Replacement) */
/* FIXED: Removed negative margins that caused overflow */
.testimonials-slider-window {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card-wrapper {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.t-dot {
    width: 12px;
    height: 12px;
    background-color: #dcdcdc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    background-color: #206C86;
    transform: scale(1.2);
}


/* =========================================
   8. SERVICES GRID (Clean Card Layout)
   ========================================= */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.sp-clean-card {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.sp-clean-card:hover {
    transform: translateY(-5px);
}

.card-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid #206C86; /* ← moved here */
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .card-image-box::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid #206C86;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.8;
} */

.card-content-overlay {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.card-branding {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-service-title {
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    text-transform: uppercase;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.expand-toggle-btn {
    background: transparent;
    border: none;
    color: #07669C;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.expand-toggle-btn:hover {
    color: #2AB0DD;
}

.btn-icon {
    display: inline-block;
    transition: transform 0.4s ease;
    background: #F0F7FC;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
}

.expand-toggle-btn.is-active .btn-icon {
    transform: rotate(180deg);
}

.view-all-text-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.arrow-icon {
    transition: transform 0.2s;
}


/* =========================================
   9. WELL / WELCOME SECTION
   ========================================= */
.well.well2 {
    background: #DBF6FF;
    padding: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.txt-pr {
    color: #000000;
    font-size: 48px;
    font-weight: 750;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.well2 p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.btn-link.fa-angle-right {
    display: inline-block;
    color: #33ccff;
    font-size: 30px;
    text-decoration: none;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-link.fa-angle-right:hover {
    transform: translateX(5px);
    color: #0099cc;
}


/* =========================================
   10. HERO BANNER SECTION
   ========================================= */
.hero-section {
    background: #00334e url('/img/parallax1.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 70px;
    font-weight: 300;
    margin-top: -10px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-details {
    font-size: 14px;
    max-width: 800px;
    margin: 30px auto 20px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-contact {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-contact span {
    margin-left: 10px;
}


/* =========================================
   11. FACTS SECTION
   ========================================= */
.section-facts {
    background-color: #D2EEFF;
    padding: 30px 20px;
    color: #000000;
    margin-top: 35px;
    box-sizing: border-box;
    width: 100%;
}

.facts-flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.facts-text-side {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.facts-text-side1 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.facts-icons-side {
    display: flex;
    gap: 40px;
}

.fact-hex-item {
    text-align: center;
    width: 130px;
}

.hex-icon {
    width: 90px;
    height: 100px;
    margin: 0 auto 15px;
    background-color: transparent;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.hex-title {
    color: #07669C;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.hex-subtitle {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.9;
}

.facts-img-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.facts-banner-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 800px;
}


/* =========================================
   12. SERVICES GRID (Circular)
   ========================================= */
.services-grid {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ddd;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover img {
    transform: scale(1.15);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

.read-more-btn {
    display: inline-block;
    background-color: #33ccff;
    color: #fff !important;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #00334e;
    text-decoration: none;
}


/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .slider {
        height: 350px;
    }

    .service-card-wrapper {
        flex: 0 0 calc(100% / 3);
    }

    .about-image-wrapper {
        display: none;
    }

    .about-flex {
        padding: 30px;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-column {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--primary);
        padding-top: 30px;
    }

    .testimonials-column::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat-buttons {
        justify-content: center;
    }

    .stat-numbers-box {
        flex-direction: row;
        justify-content: space-around;
        padding: 30px 0;
    }

    .post-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .sp-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .sp-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .sp-info-text .section-title {
        text-align: center;
    }

    .sp-info-image-container {
        display: flex;
        justify-content: center;
    }

    .sp-contact-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .sp-info-col {
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .contact-title,
    .contact-detail-group {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card-wrapper {
        flex: 0 0 50%;
    }

    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-text-side {
        text-align: center;
        width: 100%;
    }

    .facts-flex-container {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .slide-content .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .service-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .about-flex {
        padding: 20px;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stat-numbers-box {
        flex-direction: column;
        gap: 30px;
    }

    .post-card-wrapper {
        flex: 0 0 100%;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .service-page-hero {
        height: 250px;
    }

    .service-page-hero .hero-title {
        font-size: 36px;
    }

    .sp-card-wrapper {
        flex: 0 0 100%;
    }

    .sp-slider-controls {
        flex-direction: column;
        gap: 20px;
    }

    .sp-slider-line {
        display: none;
    }

    .sp-form .input-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sp-contact-box {
        padding: 30px 20px;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card-wrapper {
        flex: 0 0 100%;
    }

    .services-grid-container {
        grid-template-columns: 1fr;
    }

    .facts-icons-side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .hero-details {
        font-size: 12px;
        padding: 0 20px;
    }

    .txt-pr {
        font-size: 22px;
    }

    .container-1200,
    .hero-section .container,
    .well .container-1200 {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .facts-icons-side {
        flex-direction: column;
        align-items: center;
    }

    .facts-text-side {
        font-size: 1.3rem;
    }
}

/* =========================================
   OVERFLOW FIX - Mobile Content Bleed
   ========================================= */

/* Fix: Why Choose section two-column layout */
.well.well2 .row {
    margin-left: 0;
    margin-right: 0;
}

.well.well2 .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Fix: Hero banner section */
.hero-section {
    max-width: 100%;
    overflow: hidden;
}

.hero-section .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Fix: Hero subtitle wide text */
.hero-subtitle {
    font-size: clamp(28px, 7vw, 70px);
    word-break: break-word;
}

.hero-title {
    font-size: clamp(24px, 5vw, 50px);
    word-break: break-word;
}

/* Fix: Services grid cards */
.services-grid-container {
    overflow: hidden;
}

/* Fix: Bootstrap row negative margins bleed */
.well.well2 .container-1200>.row {
    width: 100%;
    margin: 0;
}