/* ---------------------------- */
/* About Section Title */
/* ---------------------------- */
body, html {
    font-family: myriad-pro, Arial;}

.about-title {
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 400px) {
    .about-visual img {
        margin-top: 33%;
        height: 320px;
        width: 100%;
    }
}
.about-hero-img {
        /* padding: 0% 10% 0% 10%; */
  width: 100%;
  height: 500px;
  display: block;
}
@media only screen and (max-width: 400px) {
  .about-hero-img {
    max-height: 320px;   /* or whatever you want */
    object-fit: cover;
  }
}
.s-stats-about {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
    background-color: #050505;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}




    @media only screen and (max-width: 400px) {
    .s-stats-about {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        top: 1%;
    }
}
@media only screen and (max-width: 800px) {
    .s-about-section {
        padding-top: 1rem;
        padding-bottom: 0rem;
    }
}




.vm-section {
    padding: 70px 0;
    background: #f5f8ff;
}

.vm-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 20px;
}

.vm-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 35px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid #e0e6f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
     box-shadow: 0 8px 18px rgb(29, 56, 236);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    font-size: 26px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.vm-card h2 {
        margin-top: 3rem;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.vm-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.vm-link {
    display: inline-block;
    margin-top: 20px;
    color: #d00070;
    font-weight: 600;
    text-decoration: none;
}

.vm-link:hover {
    text-decoration: underline;
}

/* Mobile */
@media(max-width: 768px) {
    .vm-container {
        flex-direction: column;
    }
}


/* ---------------------------- */
/* Core Values Grid */
/* ---------------------------- */
.core-values-section {
    width: 100%;
    padding: 40px 0;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 0 auto;
    width: 90%;
}

/* ---------------------------- */
/* Card Styling (Infosys Style) */
/* ---------------------------- */
.cv-card {
    border: 1px solid black;
    background: #fff;
    padding: 35px 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

/* Card hover animation */
.cv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgb(29, 56, 236);
}

/* ---------------------------- */
/* Title */
/* ---------------------------- */
.cv-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 2rem;
}

/* Yellow line */
.cv-underline {
    display: block;
    width: 10%;
    height: 5px;
    background-color: #0077b6;
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

/* Underline expands on hover */
.cv-card:hover .cv-underline {
    width: 15%;
}

/* ---------------------------- */
/* Description */
/* ---------------------------- */
.cv-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

/* ---------------------------- */
/* Responsive Layout */
/* ---------------------------- */
@media (max-width: 992px) {
    .cv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cv-grid {
        grid-template-columns: 1fr;
    }
}






/* ============================= */
/* Overview Section Styling      */
/* ============================= */

.overview-section {
    padding: 40px 0 50px;
}

.overview-card {
    max-width: 1230px;
    margin: 0 auto;
    padding: 32px 42px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 5px solid #0077b6;   /* accent bar */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* subtle gradient glow in the corner */
.overview-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    /* background: radial-gradient(circle, rgba(30,160,255,0.25), transparent 60%); */
    opacity: 0.7;
    pointer-events: none;
}

.overview-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 28px;
    font-weight: 700;
    color: #777;
    margin-bottom: 6px;
}

.overview-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    margin-top: 3rem;
    font-weight: 700;
}

.overview-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
    
}

.overview-highlight {
    font-weight: 600;
    color: #0077ff;
}

/* little tech “pill” tags */
.overview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.overview-pills span {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #dde5f0;
    background: #f5f8fd;
    color: #35506b;
}

/* Hover effect on card */
.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgb(29, 56, 236);
    transition: all 0.25s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .overview-card {
        padding: 24px 20px;
        margin: 0 15px;
    }

    .overview-title {
        font-size: 24px;
    }

    .overview-text {
        font-size: 16px;
    }
}

