.our-main-foucus-2
{
    padding: 5% 30px;
    background: #f2f6f7;
    text-align: center;
}
.our-main-foucus-2 h2
{
   margin-top: 20px;
}
.our-main-foucus-2 span
{
    padding: 15px;
    background: #e7e1de;
    text-align: center;
    color: #e87702;
    border-radius: 30px;
    font-weight: bold;
}
.our-main-cont-2 .card-section p
{
   font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    color: #5c727d;
    text-align: center;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.our-main-cont-2 .card-section {
    width: 100%;
    height: 400px;
    padding: 20px;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.our-main-cont-2 .card-section:hover {
    transform: translateY(-5px);
}

.our-main-cont-2 .card-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #f57c00;
    transition: width 0.4s ease-in-out;
}

/* Active card always shows underline */
.our-main-cont-2 .card-section.active-card::after {
    width: 100%;
    transition: none;
}

/* On hover, underline animates left to right */
.our-main-cont-2 .card-section:hover::after {
    width: 100%;
}


.our-team-2 {
    padding: 5% 30px;
    background: #f9f9f9;
    text-align: center;
}

.our-team-2 .section-heading span {
    padding: 10px 30px;
    background: #e7e1de;
    color: #e87702;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
}

.our-team-2 .section-heading h2 {
    margin-top: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}


.team-card-section .team-card-2 {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures equal height */
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.team-card-section .team-card-2:hover {
    transform: translateY(-5px);
}

.team-card-2 .img-section-2 {
    height: 300px;
    /* overflow: hidden; */
}

.team-card-2 .img-section-2 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.team-card-2 .cont-section-2 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: center;
}

.team-card-2 .cont-section-2 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.team-card-2 .cont-section-2 p {
    margin-bottom: 10px;
    color: #777;
    font-size: 0.9rem;
}

.team-card-2 .cont-section-2 ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.team-card-2 .cont-section-2 ul li a {
    font-size: 1rem;
    transition: color 0.3s;
    height: 36px;
    width: 36px;
    display: inline-block;
    background:#eaeaeaed;
    line-height: 36px;
    border-radius: 50%;
    color: rgb(0, 0, 0);
}

.team-card-2 .cont-section-2 ul li a:hover {
    color: #333;
}


.our-team-2 button
{
    width: 20%;
    padding: 15px;
    background: #f57c00;
    color: white;
    box-shadow: 0px 0px 8px 0px #808080a6;
    font-weight: 700;
}



.who-we-are-page
{
    height: 500px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.who-we-are-page img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.who-we-are-page .who-we-are-cont
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #07143db5;
    padding: 5% 0px;
    text-align: justify;
}
.who-we-are-page .who-we-are-cont h4
{
    font-size: 30px;
    color: white;
    position: relative;
}
.who-we-are-page .who-we-are-cont h4::after
{
  content: '';
    position: absolute;
    bottom: -10px;
    left: 5px;
    width: 25%;
    height: 2px;
    background: white;
}

.who-we-are-page .who-we-are-cont p
{
    color: #ffffffc2;
    padding-top: 15px;
}



@media (max-width: 768px) {
    

    .who-we-are-page img {
        height: 300px;
        object-fit: cover;
    }

    .who-we-are-page .who-we-are-cont {
        position: absolute;
        padding: 20px 15px;
        height: 100%;
    }

    .who-we-are-page .who-we-are-cont h4 {
        font-size: 22px;
        text-align: center;
    }

    .who-we-are-page .who-we-are-cont p {
        font-size: 14px;
        line-height: 1.6;
    }
     .who-we-are-page .who-we-are-cont h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40%; /* optional: adjust width as needed */
    }
}

@media (max-width: 480px) {
    .who-we-are-page img {
        height: 100%;
                object-fit: cover;
    }

    .who-we-are-page .who-we-are-cont h4 {
        font-size: 20px;
    }

    .who-we-are-page .who-we-are-cont p {
        font-size: 13px;
    }
}




.preminum-page
{
    padding: 5% 30px;
    background: #eaeaeaed;
    text-align: center;
}
.preminum-page h4
{
    font-size: 25px;
}
.preminum-page p
{
    font-size: 17px;
    font-weight: 500;
}
.preminum-page button
{
   width: 50%;
   padding: 15px;
   font-size: 18px;
   background: #fd7e14;
   color: white;
}


@media screen and (max-width: 768px) {

    .our-main-foucus-2
    {
        padding: 5% 10px;
    }  
    .our-team-2 {
            padding: 5% 10px;
    } 
    .our-team-2 button{
        width: 100%;
    }

    .preminum-page
{
    padding: 5% 0px;
}
    .preminum-page h4
{
    font-size: 18px;
}
    .preminum-page button
{
    width: 100%;
    font-size: 13px;
}
    .preminum-page p
{
    font-size: 13px;
    font-weight: 300;
}
.now-hero-sec .cont-sec h1 .text-part {
    font-size: 35px;
}

}



 .our-psages {
    padding: 5% 30px;
    text-align: center;
    /* background: #000822; */
    margin-bottom: 30px;
}

        .our-psages h2 {
            font-size: 40px;
            margin-bottom: 40px;
            font-weight: 600;
            color: rgb(0, 0, 0);
        }

        .images-slider {
            margin: 0 auto;
        }

        .our-developers-card {
            height: 180px;
            display: flex !important;
            justify-content: center;
            align-items: center;
            padding: 20px;
            border-radius: 10px;
            margin: 0 7.5px; 
            transition: transform 0.3s ease;
        }

        .our-developers-card img {
            max-height: 70%;
            max-width: 70%;
            object-fit: contain;
            display: block;
        }

        .our-developers-card:hover {
            transform: translateY(-5px);
        }

        /* Slick slider fix for spacing */
        .slick-slide {
            padding: 0 !important;
        }

@media screen and (max-width : 768px) {
        .our-psages h2 {
            font-size: 23px;
        }
}

.about-bredcrum {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 15px;
}

.about-bredcrum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-bredcrum .cont-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #07143dcf; /* semi-transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
}

.about-bredcrum .cont-section h1 {
    color: white;
    font-size: 40px;
    margin: 0;
}

/* Responsive design */

@media (max-width: 992px) {
    .about-bredcrum {
        height: 350px;
    }

    .about-bredcrum .cont-section h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-bredcrum {
        height: 300px;
    }

    .about-bredcrum .cont-section h1 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-bredcrum {
        height: 250px;
    }

    .about-bredcrum .cont-section h1 {
        font-size: 22px;
    }
}
