.hero-section.hero-1 {
    position: relative;
    overflow: visible;
    padding-top: 140px;
    padding-left: 90px;
    padding-right: 90px;
}

.hero-section.hero-1 .carousel {
    width: 100%;
    max-width: 1280px;
    min-height: 400px;
    margin: 0 auto;
}

.hero-section.hero-1 .carousel-inner,
.hero-section.hero-1 .carousel-item {
    width: 100%;
}

.hero-section.hero-1 .carousel-item img {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    filter: none;
    border-radius: 24px;
}

.hero-overlay {
    display: none !important;
}

@media (max-width: 1199px) {
    .hero-section.hero-1 {
        padding-top: 120px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-section.hero-1 .carousel {
        max-width: 100%;
        padding: 0;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 620px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.hero-stat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stat {
    min-width: 140px;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    color: #fff;
}

.hero-stat strong {
    display: block;
    font-size: 1.2rem;
    color: #fff;
}

.service-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.icon-box-items {
    height: 100%;
}

.cta-subscribe-image img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial-card-items {
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.author-image {
    background-size: cover;
    background-position: center;
}

.feature-image-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.feature-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Accent overrides derived from provided design (orange) */
:root {
    --accent: #ff6a00;
}

/* Use accent for themed text and icons on the new about page */
.text-theme {
    color: var(--accent) !important;
}

/* Make icon color follow accent (applies to icon wrappers and inline <i>) */
.icon, .icon i, .icon-box-items .icon i, .network-solution-items .icon i {
    color: var(--accent) !important;
}

/* Reduce core services icon size but keep text/content width intact */
.network-solution-items .icon i {
    font-size: 1.6rem !important;
}

/* Ensure service item content stays readable */
.network-solution-items .content {
    max-width: none;
}

/* Accent background helper */
.bg-theme {
    background: var(--accent) !important;
}

/* Add top-right diagonal overlay/shape on about image (similar to provided design) */
.about-image-items .about-image {
    position: relative;
    overflow: visible;
}
.about-image-items .about-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 100%);
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    box-shadow: -6px 6px 0 2px rgba(255,106,0,0.95) inset;
    border-radius: 0 24px 24px 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .about-image-items .about-image::after { display: none; }
}

/* Outline button that matches design: white background with accent border */
.btn-outline-theme {
    display: inline-block;
    background: #ffffff;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}
.btn-outline-theme:hover {
    background: var(--accent);
    color: #fff;
}

.btn-group-inline > a + a { margin-left: 0.75rem; }

/* Ensure breadcrumb sits below the fixed header */
.breadcrumb-wrapper {
    padding-top: 140px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper { padding-top: 120px; }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper { padding-top: 100px; }
}

/* Partner buttons: equal width and arrow spacing (scoped to white icon-box on About page) */
.section-padding .icon-box-items.text-white a.theme-btn,
.section-padding .icon-box-items.text-white a.btn-outline-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 240px;
    padding: 0.7rem 1rem;
    text-decoration: none;
}

.section-padding .icon-box-items.text-white a.btn-outline-theme {
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.section-padding .icon-box-items.text-white a .btn-arrow {
    margin-left: 0.35rem;
    font-size: 0.95rem;
}

@media (max-width: 575px) {
    .section-padding .icon-box-items.text-white a.theme-btn,
    .section-padding .icon-box-items.text-white a.btn-outline-theme {
        width: 100%;
    }
}

/* Fix: show full CTA subscribe image without cropping */
.cta-subscribe-section .cta-subscribe-image img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
    border-radius: 20px;
}

/* Modal should appear above fixed header */
.modal-backdrop {
    z-index: 10005 !important;
}
.modal {
    z-index: 10010 !important;
}

/* Improve contact form input UI and icon positioning */
.contact-main-wrapper .contact-form-items .form-clt {
    position: relative;
}
.contact-main-wrapper .contact-form-items .form-clt .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.contact-main-wrapper .contact-form-items .form-clt input,
.contact-main-wrapper .contact-form-items .form-clt textarea {
    padding: 18px 30px 18px 48px !important;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    box-shadow: none;
}
.contact-main-wrapper .contact-form-items .form-clt textarea { padding-bottom: 90px !important; }

/* Hide icon on very small screens to preserve space */
@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items .form-clt .icon { display: none; }
    .contact-main-wrapper .contact-form-items .form-clt input,
    .contact-main-wrapper .contact-form-items .form-clt textarea { padding-left: 20px !important; }
}

/* Apply same improved UI for modal form (modal markup uses .form-clt too) */
.modal .form-clt { position: relative; }
.modal .form-clt .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--header); }
.modal .form-clt input,
.modal .form-clt textarea {
    padding: 12px 16px 12px 44px !important;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    color: var(--text);
}
.modal .form-clt textarea { padding-bottom: 80px !important; width:100% !important; }

