:root {
        --ime-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ime-orange: #3e7bbf;
    --ime-gray: #f2f2f2;
    --e-global-color-white: #ffffff;
    --e-global-color-very-light-gray: #e5e5e5;
    --e-global-color-secondary: #19191f;
    --e-global-color-accent: #3e7bbf;
}

.btn-primary {
    background-color: var(--e-global-color-accent) !important;
    border-color: var(--e-global-color-accent) !important;
}

/* Hover state */
.btn-primary:hover,
.btn-primary:focus {
    background-color: #356aa6 !important; /* slightly darker */
    border-color: #356aa6 !important;
}

/* Active state */
.btn-primary:active,
.btn-primary.active {
    background-color: #2f5f96 !important;
    border-color: #2f5f96 !important;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Hide top bar on tablets and mobiles */
@media (max-width: 770px) {
    .top-bar {
        display: none;
    }
}

.top-bar {
    background: var(--ime-gray);
    position: relative;
    min-height: 42px;
}

/* Orange strip on right */
.social-strip {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 400px;
    background: #3e7bbf;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-strip a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

/* Main Header */
.main-header {
    background: #fff;
}

.main-header .navbar-brand img {
    height: 55px;
}

/* Smaller logo on mobile */
@media (max-width: 991.98px) {
    .main-header .navbar-brand img {
        height: 40px;
    }
}

.main-header .nav-link {
    color: #000;
    font-weight: 600;
    padding: 18px 18px;
}

.main-header .nav-link:hover {
    color: var(--ime-orange);
}

/* Dropdown */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--ime-orange);
    color: #fff;
}

/* Desktop hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Move toggler to right on mobile */
@media (min-width: 600px) {
    .navbar .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 10px;
    }
}

.hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.hero-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hero-content ul li:before {
    content: "✓";
    margin-right: 10px;
    font-weight: bold;
}

.btn-orange {
    background-color: var(--ime-orange);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background-color: #3e7bbf;
    color: white;
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content ul li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 300px;
        padding: 40px 10px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p,
    .hero-content ul li {
        font-size: 14px;
    }

    .btn-orange {
        padding: 8px 16px;
        font-size: 14px;
    }
}
.text-orange {
    color: #3e7bbf;
}

.card {
    background: linear-gradient(135deg, #e8f0fa 0%, #ffffff 100%);
}

.text-orange {
    color: #3e7bbf;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .position-absolute.top-50.start-50.translate-middle.w-100.px-3 {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        padding: 20px 15px;
    }

    .card {
        margin-bottom: 20px;
    }

    .bg-primary.rounded-circle.d-inline-flex.align-items-center.justify-content-center {
        width: 50px !important;
        height: 50px !important;
    }
}
.btn-orange {
    background-color: #3e7bbf;
    border-color: #3e7bbf;
    color: white;
}

.btn-orange:hover {
    background-color: #3e7bbf;
    border-color: #3e7bbf;
    color: white;
}

@media (max-width: 992px) {
    .card.bg-primary.text-white.p-4 {
        margin: 15px;
    }

    .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }
}
.ime-image {
    max-height: 300px;
    object-fit: cover;
}
.ime-card {
    background-color: #3e7bbf;
}

/* Desktop overlap only */
@media (min-width: 992px) {
    .ime-card {
        margin-right: -350px; /* HALF CARD ON IMAGE */
        z-index: 1;
        max-width: 700px;
        border-radius: 12px;
    }
}

.accordion-button {
    padding: 15px 20px;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: #3e7bbf;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #3e7bbf;
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
    font-size: 14px;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 12px 15px;
    }

    .accordion-body {
        padding: 15px;
    }
}

.footer {
    background-color: #000000;
}

.footer h6 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #3e7bbf;
}

@media (max-width: 768px) {
    .footer .col-md-6 {
        margin-bottom: 30px;
    }

    .footer h6 {
        font-size: 16px;
    }
}

.page_header {
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Particles layer */
#particles-page-header {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Text layer */
.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* Section */


/* Image */
.about_image {
    position: relative;
    padding: 10px;
}

.about_image img {
    width: 100%; /* full width of its column */
    height: auto; /* maintain aspect ratio */
    display: block;
    max-width: 500px; /* optional, keeps image from being too large on big screens */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about_section {
        padding: 40px 0px;
    }

    .about_image {
        margin-bottom: 30px; /* space between image and content */
    }

    .experience_box {
        display: none;
    }
     .about_image img{
        height: 300px;
    }
}

/* Experience Box */
.experience_box {
    position: absolute;
    bottom: -30px;
    left: 80%;
    transform: translateX(-50%);
    background: #1f3fa1;
    color: #fff;
    text-align: center;
    padding: 20px 40px 5px;
    border-radius: 6px;
    border: 2px solid #1f3fa1;
}

.experience_box h2 {
    font-size: 40px;
}

.experience_box p {
    font-size: 16px;
}

/* Content */
.about_content {
    max-width: 550px;
}

.small_title {
    color: #3e7bbf;
    font-weight: bold;
    font-size: 18px;
}

.about_content h1 {
    font-size: 44px;
    margin: 15px 0 20px;
}

.about_content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.content_box {
    flex: 1;
    min-width: 350px;
}
.company_name {
    color: #3e7bbf;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.main_heading {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 800;
}

.description {
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Feature grid */
.features_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature_item {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.feature_item i {
    color: #3e7bbf;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Right side image*/
.image_box {
    flex: 1; /* allows it to grow */
    min-width: 250px; /* ensures it doesn’t shrink too small on small screens */
    max-width: 100%; /* prevents overflow */
}

.image_box img {
    width: 100%; /* makes image scale with container */
    height: auto; /* keeps the aspect ratio */
    border-radius: 4px;
    display: block;
}

/* services */
.section-padding {
    padding: 80px 0;
}

.main-heading {
    font-size: 42px;
    font-weight: 700;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
}

.image-box img {
    border-radius: 12px;
}

.section-padding {
    padding: 80px 0;
}

/* card section */
.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #3e7bbf;
    border-radius: 0 0 40px 40px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    font-size: 15px;
}

.section-padding {
    padding: 80px 0;
}

.reason-title {
    font-size: 42px;
    font-weight: 700;
}

.watch-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: #a6ff8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s ease;
}

.image-card img {
    width: 100%;
    transition: 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.08);
}

.image-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* above footer */
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #3e7bbf;
    padding: 15px 35px;
    font-weight: 700;
    border-top-right-radius: 16px;
}

.cta-section {
    background: linear-gradient(120deg, rgb(85, 50, 53), #0b0d0b 60%);
    color: #fff;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

/* top & bottom accent lines */
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #3e7bbf;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #3e7bbf;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
}

.cta-text {
    max-width: 520px;
    color: #d0d0d0;
    margin-top: 20px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3e7bbf;
    font-weight: 600;
    margin-top: 25px;
    text-decoration: none;
    border-bottom: 1px solid #3e7bbf;
    width: max-content;
}

.phone-box {
    text-align: right;
}

.phone-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #3e7bbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #3e7bbf;
    margin-left: auto;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
}

.phone-sub {
    color: #b5b5b5;
    margin-top: 5px;
}

.blogpage-section {
    position: relative;
    padding: 20px 0 10px;
    background: var(--e-global-color-white);
}
.blogpage-section .blog_content {
    text-align: center;
}
.blogpage-section .blog_content h2 {
    margin-bottom: 46px;
}
.blogpage-section .blog-box {
    position: relative;
    background: var(--e-global-color-white);
    box-shadow: 0px 0px 50px rgb(0 0 0 / 15%);
    transition: all 0.3s ease-in-out;
    margin-bottom: 32px;
}
.blogpage-section .blog-box img {
    width: 100%;
}
.blogpage-section .blog-box .lower-portion {
    padding: 26px 30px 20px;
    /* background: var(--e-global-color-secondary); */
    border-bottom: 1px solid var(--e-global-color-very-light-gray);
}
.blogpage-section .blog-box .lower-portion .content {
    display: flex;
    align-items: center;
}
.blogpage-section .blog-box .lower-portion .admin {
    margin-right: 20px;
}
.blogpage-section .blog-box .lower-portion i {
    position: relative;
    font-size: 18px;
    top: 3px;
    margin-right: 8px;
    color: var(--e-global-color-accent);
}
.blogpage-section .blog-box .lower-portion .text {
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    margin-bottom: 20px;
}
.blogpage-section .blog-box .lower-portion span {
    font-family: "Montserrat", sans-serif;
    color: var(--e-global-color-secondary);
}
.blogpage-section .blog-box .lower-portion h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--e-global-color-secondary);
    position: relative;
    text-transform: capitalize;
}
.blogpage-section .blog-box .button-portion {
    position: relative;
    padding: 16px 0 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blogpage-section .blog-box .button-portion span {
    font-family: "Montserrat", sans-serif;
    color: var(--e-global-color-secondary);
}
.blogpage-section .blog-box .button-portion .calendar-ml {
    font-size: 22px;
    color: var(--e-global-color-accent);
    margin-right: 5px;
    margin-bottom: 28px;
}
.blogpage-section .blog-box .button-portion .read_more {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 30px 0 0 30px;
    padding: 14px 24px 14px 26px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    overflow: visible;
    outline: none;
}
.blogpage-section .blog-box .button-portion .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}


/* single blog  */
.singleblog-section .main-box {
    border-radius: 0;
    position: relative;
    background: var(--e-global-color-white);
    box-shadow: 0px 0px 50px rgb(0 0 0 / 15%);
    transition: all 0.3s ease-in-out;
    padding: 10px 15px 40px;
    width: 104%;
    margin-left: -45px;
}
.singleblog-section .main-box .singleblog-image1 {
    margin-bottom: 30px;
}
.singleblog-section .main-box .image1 img {
    border-radius: 10px;
    width: 100%;
}
.singleblog-section .main-box .content1 {
    margin-left: 10px;
}
.singleblog-section .main-box h4 {
    font-family: "Inter", sans-serif;
}
.singleblog-section .main-box .content1 h4 {
    color: var(--e-global-color-secondary);
    margin-bottom: 18px;
}
.singleblog-section .main-box .content1 i {
    font-size: 14px;
    color: var(--e-global-color-accent);
    margin-right: 4px;
}
.singleblog-section .main-box .content1 .calendar {
    font-size: 16px;
}
.singleblog-section .main-box .content1 span {
    font-family: "Montserrat", sans-serif;
    color: var(--e-global-color-secondary);
    display: inline-block;
    margin-bottom: 32px;
}
.singleblog-section .main-box .content1 .text-mr {
    margin-right: 10px;
}
.singleblog-section .main-box .content1 p {
    font-weight: 600;
    margin-bottom: 35px;
}
.singleblog-section .main-box .content2 {
    background: var(--e-global-color-secondary);
    padding: 20px 32px 32px;
    border-radius: 0;
    margin-bottom: 34px;
}
.singleblog-section .main-box .content2 .singleblog-quoteimage {
    margin-bottom: 22px;
}
.singleblog-section .main-box .content2 p {
    font-style: italic;
}
.singleblog-section .main-box .text {
    font-weight: 600;
    margin-bottom: 35px;
    margin-left: 15px;
}
.singleblog-section .main-box .singleblog-image2 {
    margin-bottom: 30px;
}
.singleblog-section .content4 {
    padding: 0 14px;
    margin-bottom: 115px;
}
.singleblog-section .content4 h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
    text-transform: capitalize;
    color: var(--e-global-color-secondary);
}
.singleblog-section .content4 .tag li {
    display: contents;
}
.singleblog-section .content4 .tag .button {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    background: var(--e-global-color-secondary);
    color: #ffffff;
    border-radius: 0;
    padding: 10px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-right: 4px;
}
.singleblog-section .content4 .tag .button2 {
    padding: 10px 24px;
}
.singleblog-section .content4 .tag li:last-child {
    margin-right: 0;
}
.singleblog-section .content4 .tag .button:hover {
    background: var(--e-global-color-accent);
}
.singleblog-section .content4 .icon {
    position: relative;
}
.singleblog-section .content4 .icon h5 {
    float: right;
}
.singleblog-section .content4 .icon .social-icons {
    top: 46px;
    right: -8px;
}
.singleblog-section .content4 .icon .social-icons ul li {
    margin: 0 5px;
    display: inline-block;
}
.singleblog-section .content4 .icon .social-icons ul li:first-child {
    margin-left: 0;
}
.singleblog-section .content4 .icon .social-icons ul li:last-child {
    margin-right: 0;
}
.singleblog-section .content4 .middle-portion a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.6px;
    word-spacing: 0.2px;
}
.singleblog-section .content4 .icon .social-icons ul li .social-networks {
    font-size: 16px;
    border-radius: 100px;
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-secondary);
    background: var(--e-global-color-secondary);
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 35px;
    height: 35px;
    line-height: 35px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .content4 .icon .social-icons ul li .social-networks:hover {
    color: var(--e-global-color-accent);
    background: transparent;
    border: 1px solid var(--e-global-color-accent);
    transform: translateY(-5px);
}
.singleblog-section .content5 {
    position: relative;
    text-align: center;
    margin-bottom: 45px;
}
.singleblog-section .content5 .singleblog-review1 {
    position: absolute;
    left: 0;
    right: 0;
    top: -62px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .content5 .singleblog-review1:hover {
    transform: translateY(-5px);
}
.singleblog-section .content5 .singleblog-review1 img {
    border-radius: 100px;
}
.singleblog-section .content5 .content {
    padding: 82px 65px 20px;
    background: var(--e-global-color-secondary);
    border-radius: 0;
}
.singleblog-section .content5 .content h4 {
    margin-bottom: 4px;
    color: var(--e-global-color-white);
}
.singleblog-section .content5 .content span {
    font-family: "Montserrat", sans-serif;
    display: block;
    color: var(--e-global-color-white);
    margin-bottom: 14px;
}
.singleblog-section .content5 .content .text-size-14 {
    color: var(--e-global-color-white);
}
.singleblog-section .content6 {
    padding: 0 15px;
    margin-bottom: 58px;
}
.singleblog-section .content6:after {
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 92%;
    height: 6px;
    left: 26px;
}
.singleblog-section .content6 h4 {
    margin-bottom: 34px;
    color: var(--e-global-color-secondary);
}
.singleblog-section .content6 h4:after {
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 23%;
    height: 45px;
    left: 23px;
}
.singleblog-section .content6 .comment {
    display: flex;
    margin: 0 0 24px 6px;
}
.singleblog-section .content6 .comment .image img {
    border-radius: 100px;
}
.singleblog-section .content6 .comment .content {
    padding: 13px 0 0 19px;
}
.singleblog-section .content6 .comment h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 2px;
    text-transform: capitalize;
    color: var(--e-global-color-secondary);
}
.singleblog-section .content6 .comment span {
    margin-bottom: -38px;
    display: block;
    font-family: "Montserrat", sans-serif;
    color: var(--e-global-color-accent);
}
.singleblog-section .content6 .comment .reply {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background: var(--e-global-color-secondary);
    color: #ffffff;
    border-radius: 0;
    padding: 12px 28px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    float: right;
    right: -18px;
    top: -28px;
}
.singleblog-section .content6 .comment .reply:hover {
    background: var(--e-global-color-accent);
}
.singleblog-section .content6 .comment .text_holder p {
    display: inline-block;
    line-height: 24px;
    margin: 0 40px 12px 0;
    word-spacing: 1.6px;
}
.singleblog-section .content7 {
    padding: 0 15px;
}
.singleblog-section .content7 h4 {
    color: var(--e-global-color-secondary);
    margin-bottom: 28px;
}
.singleblog-section .content7 textarea {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
    background: transparent;
    border: 1px solid var(--e-global-color-very-light-gray);
    border-radius: 0;
    padding: 18px 30px 20px;
    width: 100%;
    height: 184px;
    margin-bottom: 15px;
    resize: none;
    outline: none;
    overflow: auto;
    /* border: none; */
}
.singleblog-section .content7 input {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
    background: transparent;
    border: 1px solid var(--e-global-color-very-light-gray);
    border-radius: 0;
    padding: 14px 30px;
    margin-bottom: 16px;
    width: 100%;
    overflow: visible;
    outline: none;
    /* border: none; */
}
.singleblog-section .content7 .text-mb {
    margin-bottom: 26px;
}
.singleblog-section .content7 .post_comment {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    padding: 25px 38px;
    border-radius: 0;
    color: #ffffff;
    background-color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: block;
    text-align: center;
    outline: none;
    border-style: none;
}
.singleblog-section .content7 .post_comment:hover {
    background: var(--e-global-color-accent);
    color: #ffffff;
}
.singleblog-section .column {
    margin-left: -20px;
}
.singleblog-section .box1 {
    border-radius: 0;
    box-shadow: 0px 0px 100px rgba(0 0 0 / 10%);
    background: var(--e-global-color-white);
    padding: 34px 30px;
    margin-bottom: 43px;
    width: 110%;
}
.singleblog-section .box1 h5 {
    position: relative;
    text-align: center;
    margin-bottom: 42px;
    padding-bottom: 10px;
    text-transform: capitalize;
    color: var(--e-global-color-secondary);
}
.singleblog-section .box1 h5:after {
    content: "";
    background: var(--e-global-color-accent);
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}
.singleblog-section .box1 input {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Montserrat", sans-serif;
    background: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-very-light-gray);
    border-radius: 0;
    padding: 0 18px;
    width: 100%;
    height: 58px;
    overflow: visible;
    outline: none;
}
.singleblog-section .box1 .form-button {
    position: relative;
}
.singleblog-section .box1 .search {
    position: absolute;
    font-size: 18px;
    right: 0;
    top: -57px;
    width: 60px;
    height: 56px;
    border: 1px solid transparent;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .box1 .search:hover {
    color: var(--e-global-color-accent);
    background: transparent;
    border: 1px solid var(--e-global-color-accent);
}
.singleblog-section .box2 {
    text-align: center;
}
.singleblog-section .box2 h5 {
    margin-bottom: 38px;
}
.singleblog-section .box2 ul li {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 28px;
    color: var(--e-global-color-secondary);
}
.singleblog-section .box2 ul li:hover {
    color: var(--e-global-color-accent);
}
.singleblog-section .box3 {
    text-align: center;
    padding: 30px 30px 60px;
}
.singleblog-section .box3 h5 {
    margin-bottom: 43px;
}
.singleblog-section .box3 .social-icons ul li {
    margin: 0 10px;
    display: inline-block;
}
.singleblog-section .box3 .social-icons ul li:first-child {
    margin-left: 0;
}
.singleblog-section .box3 .social-icons ul li:last-child {
    margin-right: 0;
}
.singleblog-section .box3 .social-icons ul li .social-networks {
    font-size: 20px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    border-radius: 100px;
    border: 1px solid var(--e-global-color-secondary);
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 45px;
    height: 45px;
    line-height: 45px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .box3 .social-icons ul li .social-networks:hover {
    background: transparent;
    color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    transform: translateY(-5px);
}
.singleblog-section .box4 h5 {
    margin-bottom: 36px;
}
.singleblog-section .box4 .tag li {
    margin-right: 8px;
    display: contents;
}
.singleblog-section .box4 .tag .button {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    background: var(--e-global-color-secondary);
    color: #ffffff;
    border-radius: 0;
    padding: 15px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 4px;
    letter-spacing: 0.6px;
}
.singleblog-section .box4 .tag .button2 {
    padding: 15px 24px;
}
.singleblog-section .box4 .tag .button:hover {
    background: var(--e-global-color-accent);
    color: #ffffff;
}
.singleblog-section .box5 {
    margin-bottom: 0 !important;
}
.singleblog-section .box5 h5 {
    margin-bottom: 42px;
}
.singleblog-section .box5 .feed {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
}
.singleblog-section .box5 .feed:after {
    content: "";
    background: var(--e-global-color-accent);
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}
.singleblog-section .box5 .feed4 {
    margin-bottom: 0 !important;
}
.singleblog-section .box5 .feed4:after {
    display: none;
}
.singleblog-section .box5 .feed .feed-image {
    width: 34%;
}
.singleblog-section .box5 .feed .feed-image img {
    border-radius: 0;
}
.singleblog-section .box5 .feed a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    width: 66%;
    padding-left: 16px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.singleblog-section .box5 .feed a:hover {
    color: var(--e-global-color-accent);
}

/* BLOG PAGES */

/* .blog-posts iframe{
    height: 288px;
} */
.hide-blog {
    display: none;
}
/* .blog-posts .blogpost-box .lower-portion {
	background: var(--e-global-color-secondary);
} */
/* .blog-posts .infinite-blog .button-portion{
    background: var(--e-global-color-secondary);
} */
.blog-posts .load-more {
    text-align: center;
}
.blog-posts .onecolumn-blog .lower-portion h5 {
    margin-bottom: 12px;
}
.blog-posts .twocolumn-blog .lower-portion {
    padding: 26px 30px 30px;
}
.blog-posts .threecolumn-blog .lower-portion {
    padding: 26px 18px 20px;
}
.blog-posts .threecolumn-blog .button-portion {
    padding: 16px 0 16px 18px;
}
.blog-posts .threecolumn-blog .button-portion .read_more {
    padding: 10px 16px 10px 20px;
}
.blog-posts .threecolumn-blog .lower-portion .text-mr {
    margin-right: 28px;
}
.blog-posts .threecolumn-blog .button-portion .calendar-ml {
    margin-left: 0;
}
.blog-posts .fourcolumn-blog .lower-portion {
    padding: 26px 20px 20px;
}
.blog-posts .fourcolumn-blog .button-portion {
    padding: 16px 0 16px 20px;
}
.blog-posts .fourcolumn-blog .button-portion .read_more {
    padding: 10px 16px 10px 20px;
}
.blog-posts .fourcolumn-blog .lower-portion .text-mr {
    margin-right: 28px;
}
.blog-posts .onecolumn-blog iframe {
    height: 540px;
}
.blog-posts .twocolumn-blog iframe {
    height: 265px;
}
.blog-posts .embed-container {
    display: flex;
}
.blog-posts .three-blog iframe {
    height: 294px;
}
.blog-posts .threecolumn-blog iframe {
    height: 216px;
}
.blog-posts .fourcolumn-blog iframe {
    height: 216px;
}

/* Sticky Social Media Bar */
.social-sticky-bar {
    position: fixed;
    top: 40%;
    right: 0px;
    transform: translateY(-50%);
    background: #3e7bbf; /* Blue background */
    border-radius: 12px 0 0 12px;
    padding: 8px 6px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-sticky-bar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-sticky-bar .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-sticky-bar .social-icon i {
    margin: 0;
}

/* Optional: Responsive adjustment */
@media (max-width: 768px) {
    .social-sticky-bar {
        right: 0px;
        padding: 8px 6px;
    }
    .social-sticky-bar .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}



/* particles css */

.hero-section1 {
    position: relative;
    height: 400px;
    overflow: hidden;
    /* background-image: url('https://focalsoft.ae/wp-content/uploads/2024/01/digital-marketing-concept-banner-3d-render-scaled.webp');  */
    display: flex;
    justify-content: center;
    align-items: center;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    /* text-align: center; */
}




/* review card css */
.review-card {
    width: 100%; 
    max-width: 300px; 
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .swiffy-slider.slider-item-show3 .slider-container > div {
        flex: 0 0 45%; 
    }
}

@media (max-width: 768px) {
    .swiffy-slider.slider-item-show3 .slider-container > div {
        flex: 0 0 80%; 
    }
}

.swiffy-slider .slider-container > div {
    padding: 0 10px;
}

.review-card:hover {
    transform: translateY(-8px);
}




/*  */

.hero-img-who {
    height: 100%;
    max-height: 600px; /* Optional: limit max height */
    object-fit: cover;
}

/* Optional: Adjust content padding for smaller devices */
@media (max-width: 991px) {
    .hero-content-who {
        padding: 2rem !important;
        text-align: center;
    }
}


.navbar-nav .nav-link.active {
    color: #3e7bbf !important;
    font-weight: 600;
    position: relative;
}

