/********** Template CSS **********/
/* Master CSS file-er 1st line */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&display=swap');

:root {
    --primary: #fe621e;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.content_card h2,
.main_content2 h2 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 18px !important;
}

h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.bg-orange {
    background-color: #fe621e !important;
}

.text-orange {
    color: #fe621e !important;
}

.text-orange{
     color: #fe621e;
}
.btn-orange {
  color: #fdfdfd;
  background-color: #fe621e;
  border-color: #fe621e
}

.bg-orange{
     background-color: #fe621e;
}

.sticky-top {
    border-bottom: 3px solid #fe621e; 
}

/*** Navbar ***/
.infinitex-logo {
    width: 300px;
    height: auto;
    display: block;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 120px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
    font-size: 22px;
    font-family: 'Oswald', sans-serif, Arial;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 20pxy;
}
/* Mobile */
@media (max-width: 575.98px) {
    .infinitex-logo {
        width: 190px;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    .infinitex-logo {
        width: 240px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}

.navbar .dropdown-menu .dropdown-item {
    font-family: 'Oswald', sans-serif, Arial;
    font-size: 18px;                 
    color: var(--dark);              
    padding: 5px 20px;              
    transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--primary);            
    background-color: #F8F9FA;      
    padding-left: 20px;              
}

/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.btn-custom-social {
    color: #6c757d; 
    border: 1px solid #6c757d; 
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.btn-outline-secondary:hover {
    background-color: #fe621e !important; 
    border-color: #fd7e14 !important;
    color: #ffffff !important; 
}

.copyright-section {
    background: #000000;
    padding: 24px 0;
}
.crunchbase-icon:hover {
    border-color: #ff6600;
    transform: translateY(-2px);
}
.crunchbase-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #6c757d;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: all 0.3s ease;
}

.crunchbase-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* ----customs css start----- */

/* =========================================
   Breadcrumb
========================================= */

.breadcrumb-banner {
    position: relative;
    min-height: 160px;

    display: flex;
    align-items: center;

    /* Top to Bottom Fade Gradient */
   background-color: #fe621e;
    overflow: hidden;
}

/* Content */
.breadcrumb-wrapper {
    position: relative;
    z-index: 2;
    padding: 35px 0;
}

/* Page Title */
.breadcrumb-title {
    margin: 0 0 18px;

    font-size: 42px;
    font-weight: 700;

    color: #ffffff;

    line-height: 1.2;
}

/* Breadcrumb */
.custom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 18px;
    font-weight: 500;
}

/* Home */
.custom-breadcrumb .breadcrumb-item a {
    color: #fcfafa;
    text-decoration: none;

    transition: all 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #020202;
}

/* Breadcrumb Separator */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f285";
    font-family: "bootstrap-icons";
    color: #ffffff;
    font-size: 16px;
    padding-right: 12px;
}

/* Current Page */
.custom-breadcrumb .breadcrumb-item.active {
    color: #fcfbfb;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 767px) {

    .breadcrumb-banner {
        min-height: 210px;
    }

    .breadcrumb-wrapper {
        padding: 30px 15px;
    }

    .breadcrumb-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .custom-breadcrumb {
        font-size: 14px;
    }
}

/* =====================================================
   COMPANY PROFILE PAGE
===================================================== */

.company-profile-section {
    background: #fff;
}

.profile-small-title {
    display: inline-block;
    color: #ff5722;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.profile-heading h2,
.section-heading h2,
.bdtradeinfo-card h2,
.commitment-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 18px;
}

.profile-heading h2 span,
.section-heading h2 span,
.bdtradeinfo-card h2 span,
.commitment-box h2 span,
.ceo-title span {
    color: #ff5722;
}

.company-profile-section p,
.journey-section p,
.ceo-section p,
.partnership-section p,
.bdtradeinfo-section p,
.commitment-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   HIGHLIGHT CARD
===================================================== */

.company-highlight-card {
    background: linear-gradient(
        145deg,
        #fff5ef,
        #ffffff
    );

    border: 1px solid #ffe0d2;
    border-radius: 15px;

    padding: 35px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    position: relative;
    overflow: hidden;
}

.company-highlight-card::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border: 25px solid rgba(255, 87, 34, 0.06);
    border-radius: 50%;
}



.company-highlight-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: #222;
}

.company-highlight-card > p {
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 0;

    border-top: 1px solid #f1ddd4;
}

.highlight-item i {
    color: #ff5722;
    font-size: 22px;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item small {
    color: #888;
}

.highlight-item strong {
    color: #333;
}


/* =====================================================
   JOURNEY TIMELINE
===================================================== */

.journey-section {
    background: #fff8f4;
}

.section-heading {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";

    position: absolute;

    left: 105px;
    top: 0;
    bottom: 0;

    width: 2px;

    background: #ffd6c6;
}

.timeline-item {
    display: flex;
    align-items: flex-start;

    margin-bottom: 35px;

    position: relative;
}

.timeline-year {
    width: 105px;

    color: #ff5722;

    font-size: 22px;
    font-weight: 700;

    text-align: left;
}

.timeline-content {
    margin-left: 35px;

    background: #fff;

    padding: 25px 30px;

    border-radius: 12px;

    border: 1px solid #f5ddd4;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);

    flex: 1;

    position: relative;
}

.timeline-content::before {
    content: "";

    position: absolute;

    left: -42px;
    top: 28px;

    width: 14px;
    height: 14px;

    background: #ff5722;

    border: 4px solid #fff5ef;

    border-radius: 50%;
}

.timeline-content h4 {
    color: #222;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 10px;
}

.timeline-content h4 i {
    color: #ff5722;
    margin-right: 8px;
}

/* =====================================================
   CEO SECTION
===================================================== */

.ceo-section {
    background: #fff;
}

.ceo-image-wrapper {
    position: relative;

    max-width: 350px;

    margin: auto;
}

.ceo-image-wrapper img {
    width: 100%;

    border-radius: 15px;

    display: block;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ceo-image-badge {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    background: rgba(255, 87, 34, 0.95);

    color: #fff;

    padding: 14px 18px;

    border-radius: 8px;

    display: flex;
    flex-direction: column;
}

.ceo-image-badge strong {
    font-size: 16px;
}

.ceo-image-badge span {
    font-size: 13px;
}

.ceo-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.ceo-title span {
    display: block;
}

.certification-box {
    display: flex;
    gap: 15px;

    margin-top: 25px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 20px;

    border: 1px solid #f0ddd5;

    border-radius: 10px;

    background: #fff8f4;
}

.certification-item i {
    color: #0cd638;
    font-size: 24px;
}

.certification-item div {
    display: flex;
    flex-direction: column;
}

.certification-item strong {
    color: #333;
}

.certification-item span {
    color: #777;
    font-size: 12px;
}


/* =====================================================
   PARTNERSHIP
===================================================== */

.partnership-section {
    background: #fff8f4;
}

.partner-card {
    height: 100%;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border: 1px solid #f2ddd4;

    border-radius: 12px;

    transition: all 0.3s ease;
}

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

    border-color: #ffb79d;

    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.08);
}

.partner-icon {
    min-width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e9;

    color: #ff5722;

    border-radius: 10px;

    font-size: 25px;
}

.partner-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #222;

    margin-bottom: 8px;
}

.partner-card p {
    margin-bottom: 5px;
}

.partner-card span {
    color: #888;
    font-size: 14px;
}


/* =====================================================
   BD TRADE INFO
===================================================== */

.border-orange {
    border-color: #fe621e !important;
}

.bdtradeinfo-section {
    background: #fff;
}

.bdtradeinfo-card {
    padding: 45px;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #fff5ef,
        #fffaf8
    );

    border: 1px solid #ffddd0;
}

.bdtradeinfo-icon {
    width: 100px;
    height: 100px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff5722;

    color: #fff;

    font-size: 42px;
}


/* =====================================================
   COMMITMENT
===================================================== */

.commitment-section {
    background: #fff8f4;
}

.commitment-box {
    max-width: 850px;
    margin: auto;
}

.commitment-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff5722;

    color: #fff;

    border-radius: 50%;

    font-size: 28px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .profile-heading h2,
    .section-heading h2,
    .ceo-title,
    .bdtradeinfo-card h2,
    .commitment-box h2 {
        font-size: 30px;
    }

    .company-highlight-card {
        margin-top: 10px;
    }

    .timeline::before {
        left: 85px;
    }

    .timeline-year {
        width: 85px;
        font-size: 18px;
    }

    .timeline-content {
        margin-left: 25px;
    }

    .timeline-content::before {
        left: -32px;
    }
}


@media (max-width: 767px) {

    .company-profile-section,
    .journey-section,
    .ceo-section,
    .partnership-section,
    .bdtradeinfo-section,
    .commitment-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .profile-heading h2,
    .section-heading h2,
    .ceo-title,
    .bdtradeinfo-card h2,
    .commitment-box h2 {
        font-size: 27px;
    }

    .company-profile-section p,
    .journey-section p,
    .ceo-section p,
    .partnership-section p,
    .bdtradeinfo-section p,
    .commitment-section p {
        font-size: 15px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        display: block;
    }

    .timeline-year {
        width: auto;
        margin-bottom: 10px;
    }

    .timeline-content {
        margin-left: 0;
    }

    .timeline-content::before {
        display: none;
    }

    .certification-box {
        flex-direction: column;
    }

    .bdtradeinfo-card {
        padding: 30px 20px;
    }

    .partner-card {
        padding: 22px;
    }

}

/* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #121824 0%, #1e293b 100%);
            color: #ffffff;
            padding: 90px 0 80px;
            position: relative;
        }

        .hero-title {
            font-weight: 700;
            font-size: 2.8rem;
            line-height: 1.2;
            color: white;
        }

        .hero-subtitle {
            color: #94a3b8;
            font-size: 1.15rem;
            margin-top: 15px;
            margin-bottom: 30px;
        }

        /* Feature Badge Card */
        .portal-badge-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

    .service-item {
        transition: all 0.3s ease-in-out;
    }
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        border-color: #fd7e14 !important; /* Theme Color Highlight */
    }
    .service-item:hover .icon-square {
        background-color: #fd7e14 !important;
        color: #ffffff !important;
        transition: all 0.3s ease-in-out;
    }
    .service-item .read-more-link {
        color: #fd7e14 !important;
    }
    .service-item:hover .read-more-link i {
        margin-left: 8px !important;
        transition: all 0.2s ease-in-out;
    }

    .text-justify {
    text-align: justify;
    color: black;
}

.btn-call-orange {
    background-color: #ff7300;
    color: #fff;
    border: none;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(255, 115, 0, 0.25);
}

.btn-call-orange:hover {
    background-color: #e96500;
    color: #fff;
}

/* -----web hosting--- */

.bg-blue {
        background-color: #2c4054 !important;
    }

    .bg-blue th {
        background-color: #2c4054 !important;
        color: #ffffff !important;
        font-weight: 600;
        border-color: #2c4054 !important;
        vertical-align: middle;
    }

    .table-bordered > :not(caption) > * > * {
        border-color: #dee2e6;
    }

    .table tbody tr {
        height: 49px;
    }

    .table tbody td {
        vertical-align: middle;
    }

    .table-hover tbody tr:hover {
        background-color: #f8f9fa;
    }

    .service-list-mobile li {
        position: relative;
        padding-left: 22px;
        color: #333;
        font-size: 18px;
    }

    .service-list-mobile li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #ff6b00;
        font-weight: 700;
    }

    .main_content2 img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 767.98px) {

        .main_content2 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .main_content2 .p-4 {
            padding: 1rem !important;
        }

        .table {
            font-size: 14px;
        }

        .table th,
        .table td {
            white-space: nowrap;
        }

        .service-list-mobile {
            margin-bottom: 0 !important;
        }


    }
   
    /* ----end web hosting --- */

    /* ==============================
   Compact Hero / Carousel
   ============================== */
.header-carousel .owl-carousel-item {
    height: auto;
    overflow: hidden;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.header-carousel .owl-nav button.owl-prev,
.header-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.header-carousel .owl-nav button.owl-prev:hover,
.header-carousel .owl-nav button.owl-next:hover {
    background: #ff6600 !important;
    color: #fff !important;
}


/* Hero button position */
.hero-overlay {
    position: absolute;
    left: 5%;
    bottom: 170px;
    z-index: 5;
}

.hero-work-btn {
    background: #ff6600 !important;
    border: 2px solid #ff6600 !important;
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    padding: 11px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-work-btn:hover {
    background: #e65c00 !important;
    border-color: #e65c00 !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* ==============================
   Tablet
   ============================== */

@media (max-width: 991px) {

    .header-carousel,
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img {
        height: 380px;
    }

    .hero-overlay {
        left: 4%;
        bottom: 25px;
    }

}


/* ==============================
   Mobile
   ============================== */

/* ==============================
   Mobile
   ============================== */

@media (max-width: 576px) {

    .header-carousel,
    .header-carousel .owl-carousel-item {
        height: auto;
    }

    .header-carousel .owl-carousel-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .hero-overlay {
        left: 20px;
        bottom: 18px;
    }

    .hero-work-btn {
            font-size: 10px;
            padding: 4px 8px;
        }

        .hero-work-btn i {
            font-size: 9px;
            margin-left: 3px !important;
        }

}

/* Mission & Vision Icons */
.mission-vision-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(254, 98, 30, 0.18);
    color: #fe621e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}
/* CEO Image Wrapper */
.ceo-image-wrapper {
    width: 100%;
    height: 460px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keep full image visible without cropping */
.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-icons li {
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.social-icons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons li img {
    display: block;
    max-width: 35px;
    height: auto;
}

.ceo-small-image-wrapper {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f8f9fa;
    padding: 3px;
}

.ceo-small-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    /* Ete image-er ratio thik thakbe ebong pura chhobi dekha jabe */
    object-position: center;
    display: block;
}

.mission-vision-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #ff5e14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.border-orange {
    border-color: #ff5e14 !important;
}

.text-orange {
    color: #ff5e14 !important;
}

@media (max-width: 767.98px) {
    .ceo-small-image-wrapper {
        width: 80px;
        height: 80px;
    }
}
#services {
    scroll-margin-top: 90px;
}

.contact-icon {
    width: 32px;
    min-width: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.object-fit-cover {
    object-fit: cover;
}

/* ---home page css- start--- */
.section-divider {
    width: 50px;
    height: 3px;
}

.service-item .icon-square {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.service-item .service-desc {
    line-height: 1.6;
}
.service-item {
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.service-item:hover .icon-square {
    background-color: #ff5e14;
    color: #fff !important;
}

.section-label-line {
    width: 45px;
    height: 3px;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
}

.feature-divider {
    width: 30px;
    height: 3px;
}
.header-icon-circle {
    width: 50px;
    height: 50px;
}



.x-social-icon strong {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}