/* ================= BASE ================= */
body {
    margin: 0;
    background: #000;
    font-family: "Source Sans 3", sans-serif;
    overflow-x: hidden;
}
.section-space{
    padding-top: 60px;
    padding-bottom: 60px
}
.sec-p-40{
    padding: 60px 40px;
}
.main-heading{
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    font-size: 50px;
    letter-spacing: 2px;
}
.heading-2{
    font-weight: 300;
    color: #000;
    font-size: 50px;
    letter-spacing: 2px;
}
.new-link{

    margin-top: 20px;

    color: #000
}
html, body {
    margin: 0;
    padding: 0;
}

/* each section behaves like a full page */
.slide-section {
    height: 100vh;
    width: 100%;
}

/* smooth scroll behavior */
html {
    scroll-behavior: auto;
}

/* optional: removes weird spacing */
.inner-content {
    width: 100%;
}
.sec-ab-new{
    position: relative;
    background-image: url(../../assets/img/service.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.sec-ab-new-con{

}
.about-footer-holder{
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: end
}
.full-image{
    width: 100%;
    height: 728px;
    overflow: hidden;
}
.full-image img{
    width: 100%;
    height: 728px;
    object-fit: cover;
    object-position: top;
}
.full-image-2{
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.full-image-2 img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}
/* ================= NAVBAR ================= */
.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1005;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    transition: all 0.4s ease;
}
.navbar-custom.scrolled {
    background: rgb(0 0 0 / 36%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 40px
}
.top-logo {
    width: 54px;
}
.bg-video::-webkit-media-controls {
    display: none !important;
}

.bg-video {
    pointer-events: none; /* prevents tap = no controls */
}
/* ================= HAMBURGER ================= */
.hamburger {
    width: 25px;
    height: 24px;
    cursor: pointer;
    position: relative;
}
.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.4s;
}
.hamburger span:nth-child(1){
    top:0;
}
.hamburger span:nth-child(2){
    top:11px;
}
.hamburger span:nth-child(3){
    bottom:0;
}

.hamburger.active span:nth-child(1){
    transform: rotate(45deg);
    top: 13px;
}
.hamburger.active span:nth-child(2){
    opacity:0;
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg);
    bottom: 9px;
}
.search-btn{
    cursor: pointer;
    margin-left: -35px;
    font-size: 26px;
}
.alternate-img {
    position: relative;
}

/* Make dots full width */
.alt-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0;
}

/* Each dot becomes a line */
.alt-carousel .owl-dot {
    flex: 1;
}

.alt-carousel .owl-dot span {
    width: 100%;
    height: 5px;
    margin: 0;
    background: rgb(0 87 160 / 43%);
    display: block;
    border-radius: 0;
}

/* Active line */
.alt-carousel .owl-dot.active span {
    background: #0057A0;
}
/* ================= MENU ================= */
.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1002;

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

}

.menu-list {
    list-style: none;
    text-align: center;
    padding: 0;
}
.menu-item{
    margin: 15px 0px
}
.menu-item a {
    font-size: 40px;
    color: #fff !important;
    text-decoration: none;
    position: relative
}
.menu-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0%;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}
.menu-item a:hover::after {
    width: 40%;
}
/* ================= SEARCH ================= */
.search-canvas {
    position: fixed;
    top: -100%;
    width: 100%;
    height: 35vh;
    background: #000;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
.search-canvas.active {
    top:0;
}

.search-box {
    width: 60%;
    border: none ;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 28px;
}
.search-box:focus, .search-box:focus-visible {
    border: none !important;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 28px;
}
/* ================= SCROLL SECTIONS ================= */

.panel {
    height: 100vh;
    position: relative;
}
.panel.panel-inn{
    height: 70vh
}
.panel.panel-team-detail{
    height: 70vh
}
/* BACKGROUND */
.bg-video, .bg-image {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s;
    z-index: -3;
    will-change: opacity;
    transform: translateZ(0);
}

.panel.active .bg-video,
.panel.active .bg-image {
    opacity: 1;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 24%);
    z-index: -2;
}

/* TEXT */
.heading-holder {
    position: absolute; /* IMPORTANT */
    bottom: 4%;
    transform: translateY(100px);
    opacity: 0;
    transition: .8s;
    padding-left: 40px;
    max-width: 55%;
}

.panel.active .heading-holder {
    transform: translateY(0);
    opacity: 1;
}

.heading {
    color: #fff;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0px;
}
.heading a{
    color: #fff;
    text-decoration: underline;
    display: inline;
}

/* BUTTON */
.contact-btn {
    font-size: 36px;
    position: fixed;
    bottom: 4%;
    right: 40px;
    z-index: 1003;
    color: #ffffff;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1.3;
}
.contact-btn i{
    font-size: 26px;
    line-height: 0;
}
.contact-btn:hover {
}
.inner-content{
    position: relative;
    z-index: 1;
    background: #fff;
}
.inner-content.project-inner{
    background: #fff;
}
.contact-btn .mobile-con{
    display: none;
}
/* CANVAS */
.contact-canvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;

    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);

    color: #fff;
    z-index: 1009;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}
.canvas-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* HEADER */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-header i {
    cursor: pointer;
    transition: 0.3s;
}

.contact-header i:hover {
    transform: rotate(90deg);
}

/* BODY */
.contact-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ITEM */
.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;

    opacity: 0;
    transform: translateY(30px);
}

.contact-item i {
    font-size: 18px;
    color: #fff;
}

.contact-item p {
    margin: 0;
    font-size: 13px;
    color: #aaa;
}

.contact-item h4 {
    margin: 0;
    font-size: 14px;
}
.contact-form-wrap {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* TITLE */
.contact-form-title {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* INPUT WRAPPER */
.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* PLACEHOLDER */
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #888;
}

/* FOCUS EFFECT */
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

/* BUTTON */
.contact-submit {
    margin-top: 10px;
    padding: 12px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgb(62 60 60 / 30%);
}
/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 40px 0px;
}

.footer a {
    color: #fff;
    margin: 0 10px;
}
.ft-logo-div{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ft-logo-div .ft-logo{

    width: 80px;
}
.ft-logo-div h2{
    font-family: "Bebas Neue", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1.9px;
    margin-bottom: 0px;
}
.ft-logo-div p{

    margin-bottom: 0px;

    width: 80%;
}
.ft-link-div{

}
.ft-heading{

    font-size: 20px;

    font-weight: 600;

    text-transform: capitalize;

    color: #FFFFFF;

    margin-bottom: 30px;
}
.ft-list{

    list-style: none;

    padding-left: 0;

    margin-bottom: 0;
}
.ft-list li{margin-top: 18px;}
.ft-list li a{

    font-size: 16px;

    font-weight: 500;

    text-decoration: none;
}
.ft-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

/* ITEM */
.ft-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

/* ICON */
.ft-item i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* TEXT */
.ft-item span {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}
.ft-bottom{

    padding-top: 30px;

    padding-bottom: 30px;

    border-top: 1px solid #fff;

    margin-top: 50px;
}
.ft-map iframe {
    filter: grayscale(100%) contrast(85%) brightness(85%) saturate(0.6);
    transition: 0.4s ease;
}
.ft-social{
    display: flex;
    gap: 18px;
    margin-top: 24px
}
.ft-social a {
    font-size: 18px;
    color: #fff;
    transition: 0.3s ease;
    margin: 0px
}

.ft-social a:hover {
    color: #fff;

}
.sec-alternate{
    background: #1e1e1e
}
.alternate-con{
    padding: 140px;
}
.alternate-con .heading-2{
    color: #000
}
.alternate-con p{
    color: #000
}
.alternate-img{

    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.alternate-img img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
.team-quote {
    display: block;
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
    color: #111;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 28px;
    border-left: 3px solid #222;
}

.quote-by {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.quote-by [quote-name] {
    color: #000;
    font-weight: 700;
}

.quote-by-des {
    color: #555;
    font-weight: 400;
}
What this gives you
.sec-alternate.bg-white .heading-2, .sec-alternate.bg-white p{
    color: #000
}
.section-approach{
    position: relative;
    background-image: url(../../assets/img/approach.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 120px 60px;
}
.section-approach:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: .7;
}
.section-approach .heading-2{
    color: #fff;
    margin-bottom: 40px;
}
.approach-text{

    position: relative;

    z-index: 3;

    width: 70%;

    margin-left: auto;

    margin-right: auto;
}
.section-approach p{
    color: #fff
}
.section-approach.section-team{
    background-image: url(../../assets/img/team.jpg);
}
.section-approach.section-team .new-link{
    color: #fff
}
.sec-team-n{
    display: flex;
    align-items: center;
}
/* LEFT SIDE */
.ct-title {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ct-sub {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
}

/* INFO ITEMS */
.ct-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.ct-icon {
    font-size: 20px;
    color: #000000;
    background: rgb(0 0 0 / 10%);
    padding: 12px;
    border-radius: 12px;
    min-width: 50px;
    text-align: center;
}

.ct-label {
    margin: 0;
    font-weight: 600;
}

.ct-text {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}
.ct-text a{
    color: #6c757d;
}
/* FORM BOX */
.ct-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* FORM TITLE */
.ct-form-title {
    font-weight: 600;
}

/* INPUTS */
.ct-input {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 14px;
    transition: 0.3s;
}

.ct-input:focus {
    border-color: #000;
    box-shadow: none;
}

/* BUTTON */
.ct-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
    background: #000;
    display: flex;
    gap: 10px;
}

.ct-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 30%);
    background: #000;
}
.project-box {
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    margin-bottom: 30px;
}

.project-img {
    overflow: hidden;
    position: relative;
    height: 650px;
}

.project-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 0.6s ease;
}

.project-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    transition: 0.4s ease;
}
.team-projects .project-img{
    height: 672px;
}
.team-projects .project-img img{
    height: 672px;
}
.team-projects .project-con{
    top: 68%;
}
/* CENTER CONTENT */
.project-con {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    top: 54%;
}

/* ALWAYS VISIBLE */
.project-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
    text-transform: uppercase;
}

.project-loc {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    text-transform: uppercase;
}

/* HOVER CONTENT */
.project-hover-content {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s ease;
    margin-top: 8px;
}

.project-brief {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 280px;
}

.project-readmore {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

/* HOVER EFFECTS */
.project-box:hover .project-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.project-box:hover .project-img img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

.project-box:hover {

}
.project-detail p{
    font-size: 18px
}
.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    border: 1px solid #535353;
    background: #1e1e1e;
}
.project-sidebar .heading-2{
    color: #fff;
    font-size: 30px
}
/* ITEM */
.ps-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    background: rgb(47 47 47 / 12%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Glow hover effect */
.ps-item::before {
    content: "";
}

.ps-item:hover::before {
    opacity: 1;
}

/* Hover lift */
.ps-item:hover {
    transform: translateY(-5px) scale(1.02);
}

/* IMAGE */
.ps-img {
    width: 90px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 0px;
    overflow: hidden;
}

.ps-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ps-item:hover .ps-img img {
    transform: scale(1.1);
}

/* CONTENT */
.ps-content h3 {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.ps-content p {
    margin: 4px 0 0;
    font-size: 17px;
    color: #dddddd;
    letter-spacing: 0.5px;
}
.faq-sec {
    background: #000;
    color: #fff;
}
.faq-sec .heading-2{
    color: #fff;
}
.faq-sec .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-sec .accordion-button {
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
    box-shadow: none;
}

.faq-sec .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
}

.faq-sec .accordion-button:focus {
    box-shadow: none;
}

.faq-sec .accordion-body {
    color: rgba(255,255,255,0.75);
    padding: 0 0 20px 0;
}

/* WHITE CHEVRON */
.faq-sec .accordion-button::after {
    filter: brightness(0) invert(1);
}

/* REMOVE RADIUS */
.faq-sec .accordion-item,
.faq-sec .accordion-button {
    border-radius: 0 !important;
}
.contact-map{
    margin-top: 40px
}
.contact-map iframe{
    filter: grayscale(100%) contrast(85%) brightness(85%) saturate(0.6);
    transition: 0.4s ease;
}
/* team */
.team-container{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.team-box {
    flex: 0 0 calc(30.33% - 0px);
    transition: 0.4s ease;
}

/* IMAGE WRAPPER */
.team-img {
    position: relative;
    display: block;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER OVERLAY */
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    height: 30%;
    top: 70%;
}

.team-box:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* OVERLAY TEXT */
.team-overlay p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.team-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

/* BOTTOM CONTENT */
.team-con {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.team-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #000;
    transition: 0.4s ease;
}

.team-box:hover .team-title::after {
    width: 100%;
}

.team-link {
    color: #0A66C2;
    font-size: 22px;
}
/* Container & Global */
.container-custom {
    margin: 0 auto;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.left-col, .image-half {
    width: 50%;
}
.right-col, .text-half {
    width: 40%;
}

/* Hero Section */
.profile-hero-section {
    background: #000;
    color: #fff;
    padding: 150px 0 80px 0;
}

.hero-quote {
    font-size: 14px;
    color: #888;
    max-width: 300px;
    margin-bottom: 40px;
}

.hero-name {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-designation {
    color: #888;
    margin-bottom: 30px;
}

.btn-add-contact {
    display: inline-block;
    border: 1px solid #444;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/* Sections Styling */
#procanvas .contact-item p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 4px;
}

#procanvas .contact-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

#procanvas .contact-item i {
    color: #fff;
    font-size: 18px;
}

#procanvas .contact-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.profile-intro-section, .split-feature-section {

}
.link-accreditation{
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}
.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.main-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Project Grid */
.projects-row {
    display: flex;
    gap: 20px;
}

.project-card {
    flex: 1;
}

.project-thumb img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.project-info h3 {
    font-size: 16px;
    margin-top: 15px;
    text-transform: uppercase;
}

.project-info p {
    color: #777;
    font-size: 14px;
}
.tm-detail-sec {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px
}

.tm-detail-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}
.tm-detail-wrap .t-left{
    width: 60%;
}
.tm-detail-wrap .t-right{
    flex: 1;
    text-align: right;
}
.arrow-link{
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px
}
/* IMAGE */
.tm-detail-image {
    overflow: hidden;
    border-radius: 16px;
}

.tm-detail-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* CONTENT */
.tm-detail-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 18px;
}

.tm-detail-name {
    font-size: 46px;
    font-weight: 700;
    color: #000;
    margin-bottom: 22px;
}

.tm-detail-text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 18px;
}

/* INFO GRID */
.tm-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.center-image-section {
    padding: 60px 0;
    background: #f5f5f5; /* light grey background */
}

.center-image-section .container {
    max-width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.image-wrapper {
    text-align: center;
}

.image-wrapper img {
    width: 100%;
    height:1200px;
    max-width: 1000px; /* image center me control karega */
    height: auto;
    border-radius: 6px; /* optional smooth look */
    display: block;
    margin: 0 auto;
}
.tm-detail-card {
    border: 1px solid #e5e5e5;
    padding: 22px;
    transition: .3s ease;
}

.tm-detail-card:hover {
    background: #000;
    border-color: #000;
}

.tm-detail-card:hover span,
.tm-detail-card:hover a,
.tm-detail-card:hover p {
    color: #fff;
}

.tm-detail-card span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 8px;
    transition: .3s ease;
}

.tm-detail-card a,
.tm-detail-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: .3s ease;
}

/* SOCIALS */
.tm-detail-socials {
    display: flex;
    gap: 14px;
}

.tm-detail-socials a {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease;
}

.tm-detail-socials a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.pro-sec-one{
    padding-top: 100px;
    padding-left: 40px
}
.pro-sec-left{
    width: 85%;
    padding-top: 50px
}
.pro-sec-title{
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 400;
    margin-top: 60px;
    margin-bottom: 15px;
}
.pro-sec-loc{
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #6a6a6a;
    font-weight: 600;
}
.pro-sec-loc i{

}
.pro-sec-p{
    color: #6a6a6a;
    font-weight: 600;
    width: 70%;
    margin-top: 40px;
    margin-bottom: 30px;
    line-height: 1.9
}
.pro-bread {
    padding: 0px 0;
}
.pro-sec-table{

    font-size: 15px;
}
.pro-sec-table th{

    color: #6a6a6a;

    text-transform: uppercase;

    font-weight: 600;

    padding: 5px 5px 5px 0px;
}
.pro-sec-table td{

    color: #6a6a6a;

    padding: 5px 5px 5px 0px;
}
.pro-bread .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.pro-bread .breadcrumb-item {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding-left: 0px
}

.pro-bread .breadcrumb-item a {
    text-decoration: none;
    color: #777;
    transition: 0.3s;
}

.pro-bread .breadcrumb-item a:hover {
    color: #040404;
}

/* Active item */
.pro-bread .breadcrumb-item.active {
    color: #000;
    font-weight: 600;
}

/* Replace default > with / */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #aaa;
    padding: 0 8px;
}
.pro-sec-right{
    position: relative;
    height: 640px;
    overflow: hidden
}
.pro-sec-right img{
    width: 100%;
    height: 640px;
    object-fit: cover
}
.back-to-pro{
    position: absolute;
    top: 50px;
    right: 40px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #2b2b2b;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none
}
.back-to-pro i{
    margin-top: 2px;
}
.back-to-pro:hover{
    text-decoration: underline
}
.pro-big-banner{
    height: 640px;
    overflow: hidden;
    margin-top :60px
}
.pro-big-banner img{
    width: 100%;
    height: 640px;
    object-fit: cover
}
.pro-gal {
    display: flex;
    gap: 16px;
}

/* LEFT IMAGE */
.pro-gal-left {
    flex: 1;
}

.pro-gal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* RIGHT SIDE */
.pro-gal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* EACH RIGHT IMAGE */
.pro-gal-right-img {
    flex: 1;
}

.pro-gal-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gal-title{
    text-transform: uppercase;
    position: relative;
    font-size: 26px;
    margin-bottom: 50px;
}
.gal-title:after{
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: #000;
    top: 14px;
    right: 37%;
}
.gal-con{
    padding-left: 20%;

}
.gal-ft {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    align-items: start;
    width: 66%;
}

.gal-ft-icon {
    font-size: 36px;
    margin-top: -6px;
}

.gal-ft-con {
}

.gal-ft-con h4 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.gal-ft-con p {
    font-size: 15px;
    color: #6a6a6a;
    font-weight: 500;
    line-height: 1.8;
}
.gal-col-img{
    width: 100%;
    height: 720px;
    overflow: hideen;
}
.gal-col-img img{
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center
    
}
.stats-section {
  background: #f5f5f5;
  padding: 30px 0;
}

.stat-box {
  padding: 15px 10px;
}

.stat-icon {
  font-size: 38px;
  color: #777;
  flex-shrink: 0;
}

.stat-box h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.stat-box p {
  font-size: 14px;
  color: #777;
  letter-spacing: .5px;
  margin: 2px 0 0;
  font-weight: 600;
}

/* Divider */
.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #ddd;
}
/* RESPONSIVE */
@media (max-width: 991px) {
    
    .contact-btn .mobile-con{
    display: block;
    width: 40px;
}
.contact-btn .desk-con{
    display: none;
}
    .tm-detail-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tm-detail-name {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .tm-detail-grid {
        grid-template-columns: 1fr;
    }

    .tm-detail-name {
        font-size: 28px;
    }
}
@media (max-width: 991.2px){
    .top-logo {
    width: 40px;
}
.menu-item a {
    font-size: 30px;
}
    .heading-holder{
        max-width: 95%;
        bottom: 11%;
        padding-left: 15px
    }
    .heading{
        font-size: 24px
    }
    .contact-btn{
        right: 10px;
        bottom: 15px;
        font-size: 18px;
        padding: 0px;
    }
    .contact-btn i{
        font-size: 18px;
    }
    .ft-logo-div .ft-logo {
        width: 50px;
    }
    .ft-logo-div h2 {
        font-size: 18px;
        ful
    }
    .ft-logo-div p{
        width: 100%;
        font-size: 14px;
        margin-bottom: 15px;
    }
    .ft-link-div{
        margin-bottom: 20px
    }
    .navbar-custom {
        padding: 10px 10px !important;
    }
    .footer {
        padding: 50px 10px 0px;
    }
  
    .search-box {
        width: 90%;
    }
    .alternate-con {
        padding: 50px 10px;
    }
    .sec-p-40 {
        padding: 50px 10px;
    }
    .main-heading{
        font-size: 40px;
    }
    .pro-sec-one {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.pro-sec-title {
    font-size: 30px;
    margin-top: 30px;
}
.pro-sec-left {
    width: 100%;
    padding-top: 20px;
}
.back-to-pro{
    display: none;
}
.gal-con {
    padding-left: 0px;
    padding-top: 20px;
}
.gal-ft{
    width: 100%;
}
.stat-box {
    padding: 10px 10px;
    display: block !important;
}
.stat-box h3 {
    font-size: 18px;
}
.stat-box p {
    font-size: 12px;
}
.approach-text{
    width: 100%;
}
.section-approach{
    padding: 40px 20px;
}
.team-container{
    display: block;
}
.team-img{
    height: 450px;
}
.split-layout {
    display: block;
}
.left-col, .image-half {
    width: 100%;
}
.right-col, .text-half {
    width: 100%;
}
.tm-detail-sec {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}
.team-projects .project-img {
    height: 550px;
}
.team-projects .project-img img {
    height: 550px;
}
.heading-2{
    font-size: 30px;
}
.faq-sec .accordion-button{
    font-size: 16px;
}
.ct-title {
    font-size: 30px;
}
.ct-form-box {
    padding: 20px;
}
}