﻿
/* About Section General */
.about-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    background-color: #fff; /* Keep existing background or change if needed */
}

/* Patterns */
.pattern-layer .pattern-1,
.pattern-layer .pattern-2 {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Content Column */
.content-column .content-box {
    padding: 40px 30px; /* Spacious padding */
}

/* Section Title */
.sec-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fc8a29; /* Orange H2 */
    margin-bottom: 25px;
}

/* Paragraphs */
.text-box p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* Mission & Vision Collapsible */
.accordion-button {
    background-color: #fc8a29;
    color: #333;
    font-weight: 600;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background-color: #000;
        color: #fff;
    }

.accordion-collapse {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    padding: 15px 20px;
}

/* What We Offer List */
.list-style-one {
    margin-top: 20px;
    padding-left: 20px;
}

    .list-style-one li {
        margin-bottom: 18px;
        line-height: 1.9;
        font-size: 16px;
        text-align: justify;
    }

        .list-style-one li strong {
            color: #fc8a29;
        }

/* Inner Box Stats */
.inner-box {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fafafa;
}

    .inner-box .icon-box {
        margin-right: 20px;
    }

    .inner-box .text h2 {
        font-size: 28px;
        color: #fc8a29;
    }

/* Image Column */
.image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px; /* moves the entire image column down */
}

    /* Each Image Box */
    .image-column figure.image {
        width: 85%;
        height: 320px;
        border-radius: 12px;
        rtloverflow: hidden;
        margin-bottom: 35px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
    }

        /* Last image shouldn’t have extra gap */
        .image-column figure.image:last-child {
            margin-bottom: 0;
        }

        /* Image Styling */
        .image-column figure.image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        /* Hover Effect */
        .image-column figure.image:hover img {
            transform: scale(1.07);
        }

        .image-column figure.image:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .image-column {
        margin-top: 40px; /* smaller spacing for tablets */
    }

        .image-column figure.image {
            width: 90%;
            height: 260px;
        }
}

@media (max-width: 575px) {
    .image-column {
        margin-top: 30px; /* smaller spacing for phones */
    }

        .image-column figure.image {
            width: 100%;
            height: 220px;
        }
}


/** about-style-two **/

/* ================================
   Why Choose SourceSquid Section
   ================================ */
.content_block_four {
    position: relative;
    padding: 120px 0;
    background: #fff;
}

    .content_block_four .sec-title h2 {
        color: rgb(252, 138, 41);
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 30px;
        transition: color 0.3s ease;
        cursor: pointer;
    }

        .content_block_four .sec-title h2.clicked {
            color: #000; /* turns black after clicking */
        }

    .content_block_four .list-style-one {
        margin-top: 25px;
        padding-left: 20px;
    }

        .content_block_four .list-style-one li {
            margin-bottom: 18px;
            line-height: 1.8;
            font-size: 16px;
            color: #333;
        }

            .content_block_four .list-style-one li strong {
                color: #000;
            }


/* Images Column */
.image_block_two .image-box .image {
    width: auto;
    height: 180px; /* increased height */
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .image_block_two .image-box .image:hover {
        transform: scale(1.05);
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .content_block_four {
        padding: 80px 20px;
    }

        .content_block_four .sec-title h2 {
            font-size: 28px;
        }

        .content_block_four .list-style-one li {
            font-size: 15px;
        }

    .image_block_two .image-box .image {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .image_block_two .image-box .image {
        height: 120px;
    }
}

/* CLIENT SECTION STYLING */
.client-section {
    padding-top: 140px;
    padding-bottom: 120px;
    background-color: #f9f9f9;
}

    .client-section .sec-title {
        text-align: center;
        margin-bottom: 75px;
    }

    .client-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px; /* space between boxes */
    }

.client-block {
    flex: 0 0 calc(100% / 6 - 25px); /* 6 boxes per row */
    max-width: 180px; /* fixed width */
    display: flex;
    justify-content: center;
}

.client-box {
    width: 45%; /* flexible width */
    height: 180px; /* fixed height for uniformity */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .client-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* scales images without stretching */
        display: block;
    }

    .client-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
/*doesnt stick to screen edge*/
.container, .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .client-block {
        flex: 0 0 calc(100% / 5 - 25px);
    }

    .client-box {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
    .client-block {
        flex: 0 0 calc(100% / 4 - 20px);
    }

    .client-box {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .client-block {
        flex: 0 0 calc(100% / 3 - 15px);
    }

    .client-box {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .client-block {
        flex: 0 0 calc(100% / 2 - 10px);
    }

    .client-box {
        width: 100px;
        height: 100px;
    }
}



/** about-style-three **/

.about-style-three{
  position: relative;
}

.content_block_seven .content-box{
  position: relative;
  display: block;
}

.content_block_seven .content-box .text-box p{
  margin-bottom: 40px;
}

.content_block_seven .content-box .text-box .list-item{
  position: relative;
  display: flex;
  align-items: center;
  max-width: 470px;
  gap: 40px;
  margin-bottom: 60px;
}

.content_block_seven .content-box .text-box .list-item li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.content_block_seven .content-box .text-box .list-item li i{
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: rgba(255, 130, 77, 0.10);
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  color: var(--title-color);
}

.content_block_seven .content-box .text-box .theme-btn{
  background: #1D1D1D;
}

.content_block_seven .content-box .text-box .theme-btn:before,
.content_block_seven .content-box .text-box .theme-btn:after{
  background: var(--theme-color);
}

.image_block_three .image-box{
  position: relative;
  display: block;
  padding-right: 223px;
  padding-bottom: 122px;
}

.image_block_three .image-box .image{
  box-shadow: 0px 4px 45px 0px rgba(69, 51, 187, 0.10);
}

.image_block_three .image-box .image img{
  width: 100%;
}

.image_block_three .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.about-style-three .image-inner .image{
  box-shadow: 0px 4px 45px 0px rgba(69, 51, 187, 0.10);
}

.about-style-three .image-inner .image img{
  width: 100%;
}

.about-style-three.pt_150 .image_block_three .image-box{
  padding-right: 77px;
  padding-bottom: 75px;
}


/** about-style-four **/

.about-style-four{
  position: relative;
}

.about-style-four .image-box{
  position: relative;
  display: flex;
  gap: 50px;
}

.about-style-four .image-box .image{
  position: relative;
  border-radius: 12px;
}

.about-style-four .image-box .image img{
  width: 100%;
  border-radius: 12px;
}

.about-style-four .image-box .image-shape{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 908px;
  height: 908px;
  background-repeat: no-repeat;
}

.about-style-four .content-box{
  position: relative;
  display: block;
}

.about-style-four .content-box .theme-btn{
  background: #222222;
}

.about-style-four .content-box .theme-btn:before,
.about-style-four .content-box .theme-btn:after{
  background: var(--theme-color);
}


/** about-style-five **/

.about-style-five{
  position: relative;
}

.image_block_four .image-box{
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.image_block_four .image-box .image{
  position: relative;
  border-radius: 12px;
}

.image_block_four .image-box .image img{
  width: 100%;
  border-radius: 12px;
}

.image_block_four .image-box .experience-box{
  position: relative;
  display: block;
  background: #F1F1FF;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px 15px 20px 15px;
  margin-bottom: 30px;
}

.image_block_four .image-box .experience-box h2{
  display: block;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 2px;
}

.image_block_four .image-box .experience-box h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.image_block_four .image-box .experience-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.content_block_nine .content-box{
  position: relative;
  display: block;
}

.content_block_nine .content-box .inner-box{
  position: relative;
  display: block;
  padding-right: 200px;
}

.content_block_nine .content-box .inner-box .budget-box{
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: center;
}

.content_block_nine .content-box .inner-box .budget-box:before{
  position: absolute;
  content: '';
  background: #D9D9D9;
  width: 1px;
  height: 100%;
  left: -40px;
  top: 0px;
}

.content_block_nine .content-box .inner-box .list-style-one li:before{
  color: #228B22;
}

.content_block_nine .content-box .inner-box .budget-box h2{
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 92px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #164782;
  margin-bottom: 6px;
}

.content_block_nine .content-box .inner-box .budget-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}

.content_block_nine .content-box .btn-box .theme-btn{
  background: #228B22;
}


/** about-style-six **/

.about-style-six{
  position: relative;
}

.about-style-six .image-box{
  position: relative;
  display: block;
  margin-right: 118px;
}

.about-style-six .image-box .award-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 188px;
  background: var(--theme-color);
  border-radius: 15px;
  padding: 36px 30px 28px 30px;
  z-index: 2;
}

.about-style-six .image-box .image{
  position: relative;
  display: block;
}

.about-style-six .image-box .image img{
  width: 100%;
}

.about-style-six .image-box .award-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}

.about-style-six .image-box .award-box h3{
  display: block;
  font-size: 22px;
  line-height: 31px;
  color: #fff;
}

.content_block_11 .content-box{
  position: relative;
  display: block;
}

.content_block_11 .content-box .text-box p{
  margin-bottom: 35px;
}

.content_block_11 .content-box .text-box{
  position: relative;
  border-bottom: 1px solid #D9D9D9;
}

.content_block_11 .content-box .inner-box .single-item{
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.content_block_11 .content-box .inner-box .single-item .inner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.content_block_11 .content-box .inner-box .single-item .icon-box{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #9680EF;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
}

.content_block_11 .content-box .inner-box .single-item h3{
  font-size: 17px;
  line-height: 26px;
  font-weight: 700;
}

.content_block_11 .content-box .btn-box .theme-btn{
  border-radius: 50px;
  background: -webkit-linear-gradient(-60deg, #0D0328 0%, #9680EF 100%);
}



/** rtl-css **/


/** responsive-css **/

@media only screen and (max-width: 1600px){

}

@media only screen and (max-width: 1200px){
  .image_block_two .image-box{
    margin-right: 0px;
  }

  .about-style-six .image-box{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 991px){
  .image_block_one .image-box,
  .image_block_two .image-box .image{
    margin-bottom: 30px;
  }

  .image_block_three .image-box.ml_35{
    margin-left: 0px;
    margin-top: 30px;
  }

  .about-style-three .image-inner,
  .about-style-three.pt_150 .image_block_three .image-box{
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .about-style-four .image-box{
    margin-bottom: 30px;
  }

  .image_block_four .image-box{
    margin-bottom: 30px;
  }

  .about-style-six .image-box{
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){
  .about-section{
    padding: 70px 0px;
  }

  .content_block_one .content-box .list-style-one li{
    float: none;
    width: 100%;
  }

  .about-style-two,
  .about-style-three,
  .about-style-four{
    padding-bottom: 70px;
  }

  .content_block_four .content-box .inner-content{
    padding-right: 0px;
  }

  .content_block_four .content-box .inner-content .experience-box{
    position: relative;
    width: 100%;
  }

  .about-style-three .inner-box.mb_150{
    margin-bottom: 70px;
  }

  .about-style-three.pt_150,
  .about-style-two.pt_150{
    padding-top: 70px;
  }

  .about-style-five,
  .about-style-six{
    padding: 70px 0px;
  }

}

@media only screen and (max-width: 599px){
  .image_block_three .image-box{
    padding: 0px;
  }

  .image_block_three .image-box .image-2{
    position: relative;
    margin-top: 30px;
  }

  .content_block_seven .content-box .text-box .list-item{
    display: block;
  }

  .content_block_seven .content-box .text-box .list-item li{
    margin-bottom: 15px;
  }

  .content_block_seven .content-box .text-box .list-item li:last-child{
    margin-bottom: 0px;
  }

  .about-style-three.pt_150 .image_block_three .image-box{
    padding: 0px;
  }

  .content_block_nine .content-box .inner-box{
    padding-right: 0px;
  }

  .content_block_nine .content-box .inner-box .budget-box{
    position: relative;
    text-align: left;
  }
}

@media only screen and (max-width: 499px){
  .content_block_one .content-box .inner-box{
    display: block;
  }

  .content_block_one .content-box .inner-box .icon-box{
    position: relative;
    display: block;
    margin-bottom: 20px;
  }

  .content_block_four .content-box .inner-box{
    display: block;
  }

  .content_block_four .content-box .inner-box .single-item{
    margin-bottom: 30px;
  }

  .content_block_four .content-box .inner-box .single-item:last-child{
    margin-bottom: 0px;
  }

  .content_block_four .content-box .inner-box .single-item:before{
    display: none;
  }

  .image_block_two .image-box{
    padding: 0px;
  }

  .image_block_two .image-box .image-2{
    padding-left: 0px;
    margin-top: 30px;
  }

  .image_block_two .image-box .image-3{
    position: relative;
  }

  .image_block_two .image-box .clients-box{
    position: relative;
    top: 0px;
    width: 100%;
    margin-bottom: 30px;
  }

  .about-style-four .image-box{
    display: block;
  }
}

/*responsive for mob*/
/* === Mobile Readability Adjustments === */
@media (max-width: 575px) {
    .sec-title h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .text-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .list-style-one li {
        font-size: 15px;
        line-height: 1.7;
    }

    .accordion-button {
        font-size: 15px;
        padding: 10px 15px;
    }

    .inner-box .text h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .inner-box {
        flex-direction: column;
        align-items: flex-start;
    }

        .inner-box .icon-box {
            margin-bottom: 10px;
        }
}

/* === Fix for Client Section on Mobile === */
@media (max-width: 768px) {
    .client-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .client-section .client-block {
        flex: 0 0 45%; /* 2 per row on mobile */
        max-width: 45%;
        box-sizing: border-box;
        margin: 5px;
        text-align: center;
    }

    .client-section .client-box {
        width: 100%;
        background: #fff;
        border-radius: 8px;
        padding: 10px;
    }

        .client-section .client-box img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
}

/* For very small screens */
@media (max-width: 480px) {
    .client-section .client-block {
        flex: 0 0 100%; /* one per row on very small screens */
        max-width: 100%;
    }
}

/* === Responsive Client Section (original look restored) === */
@media (max-width: 1200px) {
    .client-block {
        flex: 0 0 calc(20% - 25px);
    }
}

@media (max-width: 992px) {
    .client-block {
        flex: 0 0 calc(25% - 20px);
    }
}

@media (max-width: 768px) {
    .client-block {
        flex: 0 0 calc(33.33% - 15px);
    }
}

@media (max-width: 576px) {
    .client-block {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 400px) {
    .client-block {
        flex: 0 0 100%;
    }
}

/* === Fix: restore client layout after inner-box override === */
.client-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
}

.client-section .client-block {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 180px !important;
    margin: 10px;
}

.client-section .client-box {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

    .client-section .client-box img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

/* Mobile tweak — only scale down slightly, don't stack vertically */
@media (max-width: 575px) {
    .client-section .client-block {
        max-width: 45% !important;
    }
}
/* === FINAL FIX: Perfectly Uniform Client Boxes === */
.client-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}

/* Every client-block has the same exact size */
.client-section .client-block {
    flex: 0 0 auto !important;
    width: 160px !important;
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 10px !important;
}

/* Inner box also consistent, no stretching */
.client-section .client-box {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

    /* Logos are centered and scale neatly inside each box */
    .client-section .client-box img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain !important;
        object-position: center;
        display: block;
    }

/* --- Responsive layout --- */
@media (max-width: 991px) {
    .client-section .client-block {
        width: 140px !important;
        height: 90px !important;
    }
}

@media (max-width: 767px) {
    .client-section .client-block {
        width: 45% !important; /* 2 per row */
        height: 90px !important;
        margin: 8px !important;
    }
}

@media (max-width: 400px) {
    .client-section .client-block {
        width: 100% !important; /* 1 per row on small phones */
        height: 80px !important;
    }
}












































