/*solutions css*/


.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.sec-title .title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #38CCCC;
    font-weight: 500;
    margin-bottom: 15px;
}

.sec-title h2 {
    font-size: 40px;
    line-height: 1.3em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
    margin: 0;
}

.sec-title h2:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    /*background-color: #d1d2d6;*/
}

.sec-title .text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: justify;
    font-weight: 500;
    margin-top: 30px;
}

.btn-style-one {  
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 600;
    background-color: #FE8318;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn-style-one:hover {
    background-color: #001e57;
    color: #ffffff;
}

.about-section {
    position: relative;
    padding: 120px 0 70px;
    background: url(image/bgackground-1.webp);  
    background-color: #E6ECF1;
}

.about-section .sec-title {
    margin-bottom: 45px;
}

.about-section .content-column {
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    padding-left: 30px;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-bottom: 125px;
}

.about-section .image-column .inner-column:before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 520px;
    width: 520px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: ""; 
    background-size: contain;
    background-repeat: no-repeat;
}

.about-section .image-column .image-1,
.about-section .image-column .image-2 {
    /*box-shadow: 0 30px 50px rgba(8, 13, 62, .15);*/
}

.about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Responsive Enhancements */
@media only screen and (max-width: 767px) {
    .sec-title {
        margin-bottom: 40px;
    }

    .sec-title .title {
        font-size: 16px;
        text-align: center;
    }

    .sec-title h2 {
        font-size: 26px;
        line-height: 1.4em;
        text-align: center;
        padding-bottom: 10px;
    }

    .sec-title h2:before {
        left: 50%;
        transform: translateX(-50%);
    }

    .sec-title .text {
        font-size: 16px;
        line-height: 28px;
        color: #000;
        font-weight: 500;
        margin-top: 30px;
        text-align: justify;
    }

    .about-section .content-column .inner-column {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .about-section .btn-box {
        text-align: center;
        margin-top: 20px;
    }

    .about-section .image-column .inner-column {
        padding-left: 0;
        padding-bottom: 0;
    }

    .about-section .image-column .inner-column:before {
        display: none;
    }

    .about-section .image-column .image-2 {
        position: relative;
        margin-top: 20px;
    }
}

.highlight-text {
    background: linear-gradient(90deg, #FF6F61, #FF6F61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*solutions csss*/


/* Enhanced Solution Offerings Styles */
.solution-offerings {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6ecf1 100%);
    position: relative;
    overflow: hidden;
}

.solution-offerings h2 {
    font-size: 36px;
    font-weight: 700;
    color: #020249;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-offerings h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FF841A;
    margin: 10px auto;
    border-radius: 2px;
}

.tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.tab-button {
    background: #020249;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tab-button:hover {
    background: #FF841A;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tab-button.active {
    background: #FF841A;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 132, 26, 0.4);
    transform: translateY(-3px);
}

.tab-button span {
    position: relative;
    z-index: 1;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.tab-text {
    max-width: 600px;
    animation: fadeInLeft 0.5s ease-in-out;
}

.tab-text h4 {
    font-size: 28px;
    font-weight: 700;
    color: #020249;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FF6F61, #FF841A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tab-text p {
    font-size: 16px;
    line-height: 28px;
    color: #333333;
    font-weight: 400;
    text-align: justify;
}

.tab-image {
    position: relative;
    max-width: 400px;
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: fadeInRight 0.5s ease-in-out;
}

.tab-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
    .solution-offerings {
        padding: 60px 20px;
    }

    .solution-offerings h2 {
        font-size: 30px;
    }

    .tab-content {
        flex-direction: column;
        padding: 20px;
    }

    .tab-text {
        max-width: 100%;
        text-align: center;
    }

    .tab-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .tab-image img {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .solution-offerings h2 {
        font-size: 26px;
    }

    .tab-button {
        min-width: 140px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .tab-text h4 {
        font-size: 24px;
    }

    .tab-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .tab-content {
        padding: 15px;
    }
}

/*key benefits css*/

.mdm-section {
  background: #f2f6fc;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-weight: 700;
  color: #1d3557;
}

.highlight {
  color: #0077b6;
}

.section-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 23px;
  color: #6c757d;
}

/* Feature boxes */
.feature-box {
  background: #fff;
  height:240px;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2rem;
  color: white;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg1 { background: #00b4d8; }
.bg2 { background: #f77f00; }
.bg3 { background: #7209b7; }
.bg4 { background: #ef476f; }
.bg5 { background: #06d6a0; }
.bg6 { background: #3a86ff; }

.feature-title {
  font-size: 1.1rem;
  color: #1d3557;
  font-weight: 600;
}

.feature-text {
  font-size: 0.95rem;
  color: #555;
}

.feature-list {
  text-align: left;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #444;
}

.feature-list li {
  margin-bottom: 6px;
}

/* Reason section */
.reason-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 220px;
}

.reason-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
  
.reason-badge {
  font-size: 1rem;
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  color: white;
  margin-bottom: 10px;
}

.reason-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2d42;
}

.reason-text {
  font-size: 0.95rem;
  color: #555;
}


@media (max-width: 768px) {
  .header.style_two {
       background: none;
  }
}