
/*********************about****************/
/* ==========================================
   DESIGN CENTRE - ABOUT SECTION
========================================== */

.dc-about-section {
    padding: 80px 0;
    background: #f8faff;
}

.dc-about-row {
    display: flex;
    align-items: center;
}


/* LEFT IMAGE */

.dc-about-image {
    position: relative;
    padding: 10px;
    margin-right: 35px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dc-about-image img {
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}


/* EXPERIENCE BOX */

.dc-experience-box {
    position: absolute;
    top: 0;
    right: -25px;

    width: 145px;
    height: 145px;

    background: #e76f00;
    color: #fff;

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

    text-align: center;
    border-radius: 18px 4px 4px 18px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dc-experience-box strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}

.dc-experience-box span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}


/* RIGHT CONTENT */

.dc-about-content {
    padding-left: 25px;
}

.dc-small-title {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #d95f00;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    margin-bottom: 18px;
}

.dc-small-title span {
    display: inline-block;
    width: 38px;
    height: 2px;
    background: #e76f00;
}


.dc-about-content h2 {
    margin: 0 0 20px;

    color: #082d5c;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}


.dc-about-content p {
    line-height: 1.7;
}

.dc-main-text {
    color: #444;
    font-size: 17px;
    margin-bottom: 16px;
}

.dc-sub-text {
    color: #777;
    font-size: 16px;
    margin-bottom: 22px;
}


/* FEATURE BOXES */

.dc-feature-grid {
    margin-left: -7px;
    margin-right: -7px;
}

.dc-feature-grid > div {
    padding-left: 7px;
    padding-right: 7px;
}

.dc-feature-box {
    min-height: 74px;

    display: flex;
    align-items: center;

    padding: 15px 16px;
    margin-bottom: 14px;

    background: #fff;
    border: 1px solid #dfe4ea;
    border-radius: 7px;
}

.dc-feature-box i {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;
    line-height: 22px;

    margin-right: 13px;

    text-align: center;

    background: #e76f00;
    color: #fff;

    border-radius: 50%;
    font-size: 11px;
}

.dc-feature-box span {
    color: #1156b5;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}


/* BOTTOM BUTTON + PHONE */

.dc-about-bottom {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.dc-touch-btn {
    display: inline-flex;
    align-items: center;

    padding: 14px 24px;

    background: #e76f00;
    color: #fff !important;

    border-radius: 30px;

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

    text-decoration: none !important;

    transition: 0.3s;
}

.dc-touch-btn i {
    margin-left: 13px;
}

.dc-touch-btn:hover {
    background: #1156b5;
}


/* PHONE */

.dc-call-area {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.dc-phone-icon {
    width: 48px;
    height: 48px;

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

    background: #fff2e8;
    color: #e76f00;

    border-radius: 50%;
    margin-right: 12px;

    font-size: 19px;
}

.dc-call-area small {
    display: block;
    color: #999;
    margin-bottom: 2px;
}

.dc-call-area strong {
    display: block;
    color: #1156b5;
    font-size: 16px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .dc-about-section {
        padding: 50px 0;
    }

    .dc-about-row {
        display: block;
    }

    .dc-about-image {
        margin-right: 0;
        margin-bottom: 45px;
    }

    .dc-about-image img {
        height: auto;
    }

    .dc-experience-box {
        width: 115px;
        height: 115px;
        right: 5px;
    }

    .dc-experience-box strong {
        font-size: 32px;
    }

    .dc-about-content {
        padding-left: 0;
    }

    .dc-about-content h2 {
        font-size: 30px;
    }

    .dc-about-bottom {
        flex-wrap: wrap;
        gap: 20px;
    }

    .dc-call-area {
        margin-left: 0;
    }
}

 
/* ABOUT PAGE FINAL BACKGROUND FIX */

#center.center_about {
    background: #fff2cf !important;
}

#feature {
    background: #ffffff !important;
}

#feature .container,
#feature .row,
#feature .feature_1,
#feature .feature_1l,
#feature .feature_1r {
    background: #ffffff !important;
}

/* ==================================
   ABOUT HERO
================================== */

.about-hero {
    position: relative;
    min-height: 500px;

    background-image: url("../img/about-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
              rgba(3, 24, 55, 0.78) 0%,
              rgba(3, 24, 55, 0.60) 48%,
              rgba(3, 24, 55, 0.50) 100%
        );
}

.about-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* LEFT */

.about-hero-content {
    padding: 70px 0;
}

.about-breadcrumb {
    margin-bottom: 10px;
    font-size: 15px;
}

.about-breadcrumb a {
    color: #ff9800;
    text-decoration: none;
}

.about-breadcrumb span {
    color: #ffffff;
    margin-left: 7px;
}

.about-hero-content h1 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 12px;
}

.about-hero-content h1::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 48px;
    background: #ff9800;
    margin-right: 10px;
    vertical-align: middle;
}

.about-hero-content p {
    color: #ffd46b;
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 25px;
}

/* BUTTONS */

.about-hero-buttons {
    display: flex;
    gap: 10px;
}

.about-btn-primary,
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.about-btn-primary {
    background: #e86d00;
    color: #ffffff;
    border: 1px solid #e86d00;
}

.about-btn-primary:hover {
    background: #ff8200;
    color: #ffffff;
}

.about-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.7);
}

.about-btn-secondary:hover {
    background: #ffffff;
    color: #0b3667;
}

/* RIGHT PANEL */

.about-feature-panel {
    background: rgba(87, 110, 153, 0.42);
    border: 1px solid rgba(255,255,255,0.25);

    padding: 20px;
    border-radius: 16px;
    margin-top: 50px;
    backdrop-filter: blur(3px);
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-feature-card {
    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;

    padding: 17px;
}

.about-feature-card span {
    display: block;

    color: #dce6f3;

    font-size: 13px;
    margin-bottom: 5px;
}

.about-feature-card strong {
    color: #ffffff;

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

.about-feature-note {
    margin-top: 18px;

    color: #e9eef5;

    font-size: 14px;
    line-height: 1.5;

    display: flex;
    gap: 9px;
}

.about-feature-note i {
    color: #ffffff;
    margin-top: 3px;
}

/* TABLET */

@media (max-width: 991px) {

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-feature-panel {
        margin: 40px 0;
    }
}

/* MOBILE */

@media (max-width: 767px) {

    .about-hero {
        min-height: auto;
    }

    .about-hero-content {
        padding: 55px 0 25px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

     .about-feature-panel {
        margin-top: 10px;
        margin-bottom: 50px;
    }

    .about-hero-buttons {
        flex-wrap: wrap;
    }
}

/* ==================================
   ACTIVITIES & SKILLS
================================== */

.dc-skills-area {
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid #e2e6eb;
}

.dc-skills-text {
    padding-right: 25px;
}

.dc-skills-text h3 {
    margin: 0 0 15px;
    color: #082d5c;
    font-size: 22px;
    font-weight: 700;
}

.dc-skills-subtitle {
    color: #777;
    font-size: 17px;
    margin-bottom: 20px;
}

.dc-skills-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}


/* Progress section */

.dc-skills-progress {
    padding-left: 20px;
}

.dc-skill-item {
    margin-bottom: 25px;
}

.dc-skill-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.dc-skill-title strong {
    color: #082d5c;
    font-size: 17px;
    font-weight: 700;
}

.dc-skill-title span {
    color: #1156b5;
    font-size: 16px;
    font-weight: 700;
}


/* Progress background */

.dc-progress {
    width: 100%;
    height: 12px;

    background: #e5e7eb;

    border-radius: 20px;
    overflow: hidden;
}


/* Blue progress */

.dc-progress-bar {
    height: 100%;
    background: #1764c0;

    border-radius: 20px;

    transition: width 0.6s ease;
}


/* Mobile */

@media (max-width: 767px) {

    .dc-skills-area {
        margin-top: 40px;
    }

    .dc-skills-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .dc-skills-progress {
        padding-left: 0;
    }
}

/* =====================================
   FACILITY & CAPABILITY
===================================== */

.dc-facility-section {
    padding:  70px 0 25px;
    background: #ffffff;
}

.dc-facility-heading {
    max-width: 900px;
    margin: 0 auto 45px;
}

.dc-facility-heading > span {
    display: block;
    color: #1156b5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dc-facility-heading h2 {
    margin: 0 0 14px;
    color: #1156b5;
    font-size: 38px;
    font-weight: 700;
}

.dc-facility-heading p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* Main row */

.dc-facility-row {
    display: flex;
    align-items: stretch;
}


/* LEFT BOX */

.dc-readiness-box {
    height: 100%;
    padding: 22px;
    border: 1px solid #e1e5e9;
    background: #ffffff;
}

.dc-readiness-box h3 {
    margin: 0 0 16px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.dc-readiness-item {
    display: flex;
    align-items: flex-start;

    padding: 18px 16px;
    margin-bottom: 13px;

    border: 1px solid #e2e5e9;
    background: #fff;
}

.dc-readiness-item:last-child {
    margin-bottom: 0;
}

.dc-readiness-item > i {
    flex: 0 0 32px;
    color: #1156b5;
    font-size: 22px;
    margin-top: 4px;
    margin-right: 14px;
}

.dc-readiness-item h4 {
    margin: 0 0 4px;
    color: #222;
    font-size: 17px;
    font-weight: 700;
}

.dc-readiness-item p {
    margin: 0;
    color: #777;
    line-height: 1.5;
    font-size: 14px;
}


/* RIGHT GALLERY */

.dc-facility-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    padding-left: 5px;
}

.dc-facility-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.dc-facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dc-facility-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;

    background: linear-gradient(
        to top,
        rgba(0, 24, 55, 0.80),
        transparent
    );
}

.dc-facility-image span {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 2;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.dc-facility-image:hover img {
    transform: scale(1.07);
}


/* TABLET */

@media (max-width: 991px) {

    .dc-facility-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .dc-facility-image {
        height: 160px;
    }
}


/* MOBILE */

@media (max-width: 767px) {

    .dc-facility-section {
        padding: 55px 0;
    }

    .dc-facility-row {
        display: block;
    }

    .dc-readiness-box {
        margin-bottom: 30px;
    }

    .dc-facility-gallery {
        padding-left: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .dc-facility-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {

    .dc-facility-gallery {
        grid-template-columns: 1fr;
    }

    .dc-facility-image {
        height: 210px;
    }
}

html {
    scroll-behavior: smooth;
}

#about-details {
    scroll-margin-top: 100px;
}

/* =====================================
   MEET OUR TEAM - PROFESSIONAL STYLE
===================================== */

.dc-team-section {
    padding: 35px 0 80px;
    background: #ffffff;
}


/* Heading */

.dc-team-heading {
    max-width: 950px;
    margin: 0 auto 55px;
}

.dc-team-label {
    display: inline-block;

    padding: 9px 22px;

    background: #fff0e6;
    color: #e86d00;

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

    border-radius: 30px;

    margin-bottom: 15px;
}

.dc-team-heading h2 {
    margin: 0 0 15px;

    color: #082d5c;
    font-size: 38px;
    font-weight: 700;
}

.dc-team-heading p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* Team Row */

.dc-team-row {
    margin-top: 15px;
}


/* Card */

.dc-team-card {
    position: relative;

    margin-bottom: 30px;

    text-align: center;

    transition: 0.3s ease;
}


/* Image */

.dc-team-image {
    width: 100%;
    height: 335px;

    overflow: hidden;

    background: #eeeeee;
}

.dc-team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    display: block;

    transition: transform 0.4s ease;
}


/* Info box */

.dc-team-info {
    position: relative;

    width: 90%;

    margin: -38px auto 0;

    padding: 22px 15px 18px;

    background: #ffffff;

    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.10);

    border-bottom: 5px solid #f07800;

    z-index: 2;
}

.dc-team-info h3 {
    margin: 0 0 8px;

    color: #082d5c;

    font-size: 21px;
    font-weight: 700;
}

.dc-team-info p {
    margin: 0;

    color: #555;

    font-size: 15px;
}


/* Hover */

.dc-team-card:hover .dc-team-image img {
    transform: scale(1.05);
}

.dc-team-card:hover .dc-team-info {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}


/* Tablet */

@media (max-width: 991px) {

    .dc-team-image {
        height: 360px;
    }

    .dc-team-card {
        margin-bottom: 45px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .dc-team-section {
        padding: 55px 0;
    }

    .dc-team-heading {
        margin-bottom: 35px;
    }

    .dc-team-heading h2 {
        font-size: 30px;
    }

    .dc-team-image {
        height: auto;
    }

    .dc-team-image img {
        height: auto;
    }

    .dc-team-info {
        width: 92%;
    }
}

.dc-call-area {
    display: flex;
    align-items: center;
    margin-left: 25px;
    text-decoration: none !important;
    cursor: pointer;
}

.dc-phone-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2e8;
    color: #e76f00;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 19px;
    transition: 0.3s ease;
}

.dc-call-text small {
    display: block;
    color: #999;
    margin-bottom: 2px;
    transition: 0.3s ease;
}

.dc-call-text strong {
    display: block;
    color: #1156b5;
    font-size: 16px;
    transition: 0.3s ease;
}

.dc-call-area:hover .dc-phone-icon {
    background: #e76f00;
    color: #fff;
    transform: scale(1.08);
}

.dc-call-area:hover .dc-call-text small,
.dc-call-area:hover .dc-call-text strong {
    color: #e76f00;
}