
/** team-section **/

.team-section{
  position: relative;
}

.team-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 1827px;
  height: 1235px;
  background-repeat: no-repeat;
  background-position: center;
}

.team-block-one{
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: inline-block;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .overlay-image {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  transform: translatex(50%) scaleX(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
  transition: background-color 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 50%;
}

.team-block-one .inner-box:hover .image-box .overlay-image {
  transform: translatex(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.team-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 23px;
}

.team-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.team-block-one .inner-box .lower-content h3 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
}

.team-section .lower-box{
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.join-section{
  position: relative;
}

.join-section .content-box{
  position: relative;
  display: block;
}

.join-section .content-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 40px;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .join-section .content-box p br{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .team-section{
    padding: 70px 0px 20px 0px;
  }

  .team-section.pt_0.pb_0{
    padding: 0px;
  }

  .join-section{
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){
  .team-block-one .inner-box .image-box{
    width: 280px;
    height: 280px;
  }
}
  
/* my code */

/* ==========================================================================
   About Page: Team Profile Specialized Desks Styles
   ========================================================================== */

.team-profile-section {
  position: relative;
  padding: 90px 0px;
  background-color: #ffffff; /* Clean white canvas backdrop */
  width: 100%;
}

.team-title-wrapper {
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.team-subtitle {
  font-size: 0.95rem;
  color: #b38a38; /* Signature Gold Color */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.team-title-wrapper h2 {
  font-size: 2.4rem;
  color: #0f172a; /* Dark Blue Theme */
  font-weight: 700;
  margin-bottom: 15px;
}

.team-title-wrapper p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* Grid Layout for 4 Column Profiles */
.team-grid-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Desk Card */
.team-profile-card {
  background-color: #f8fafc; /* Crisp light grey panel base */
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
}

.team-profile-card:hover {
  transform: translateY(-8px);
  border-color: #b38a38;
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(179, 138, 56, 0.08);
}

/* Profile Icon Graphical Container (No-Person Style) */
.profile-graphic-box {
  background-color: #0f172a; /* Corporate dark background for the icon box */
  padding: 40px 0px;
  position: relative;
  transition: background-color 0.3s ease;
}

.team-profile-card:hover .profile-graphic-box {
  background-color: #b38a38; /* Changes to gold on block hover */
}

.profile-icon {
  font-size: 2.5rem;
  display: inline-block;
}

/* Text Meta Block Elements */
.profile-info {
  padding: 30px 20px;
}

.profile-info h3 {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.profile-info .designation {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b38a38; /* Gold subtitle text style */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.profile-info .desc-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 70px; /* Aligns paragraph heights uniformly across components */
}

/* Bottom Tag Indicator */
.profile-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  padding: 5px 14px;
  border-radius: 50px;
}

.team-profile-card:hover .profile-badge {
  color: #b38a38;
  border-color: #b38a38;
}

/* Responsive Viewport Sizing Adjustments */
@media (max-width: 991px) {
  .team-profile-section { padding: 60px 0px; }
  .team-title-wrapper h2 { font-size: 1.9rem; }
  .team-profile-card { max-width: 100%; flex: auto; width: 45%; }
}

@media (max-width: 600px) {
  .team-profile-card { width: 100%; }
}

/* --- Global Stats Section Styles --- */
.team-stats-section {
    padding: 80px 0;
    background-color: #0f172a; /* Dark Blue/Gray Modern Background */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stats-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* --- Left Side Content --- */
.stats-content-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0 20px 0;
    line-height: 1.3;
}

.stats-content-box p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* CTA Button */
.stats-btn {
    display: inline-block;
    background-color: #b38a38;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.stats-btn:hover {
    background-color: #0a2540;
    color: #ffffff;
}

/* --- Right Side Grid --- */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #b38a38;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #b38a38;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .stats-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-content-box {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Team Workflow Section Styles --- */
.team-workflow-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Subtle light background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Steps Layout Grid --- */
.workflow-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* --- Individual Step Card --- */
.workflow-step-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.workflow-step-item:hover {
    transform: translateY(-5px);
    border-color: #b38a38;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.1);
}

/* --- Step Number Circle --- */
.step-number-box {
    width: 50px;
    height: 50px;
    background-color: #eff6ff;
    border: 2px solid #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.workflow-step-item:hover .step-number-box {
    background-color: #b38a38;
    border-color: #b38a38;
}

.step-num {
    font-size: 18px;
    font-weight: 700;
    color: #b38a38;
    transition: color 0.3s ease;
}

.workflow-step-item:hover .step-num {
    color: #ffffff;
}

/* --- Step Content Typography --- */
.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .workflow-steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .workflow-step-item {
        padding: 25px;
    }
}

/* add new section */
/*==============================================
Team Excellence Section
==============================================*/

.team-excellence-section{
    padding:100px 0;
    background:#ffffff;
}

.team-excellence-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Left Highlight Box */

.team-highlight-box{
    background:#0a2540;
    padding:55px 45px;
    border-radius:20px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.team-highlight-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#b38a38;
}

.highlight-text{
    display:inline-block;
    color:#b38a38;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.team-highlight-box h2{
    color:#fff;
    font-size:38px;
    line-height:1.3;
    margin-bottom:20px;
}

.team-highlight-box p{
    color:#d1d5db;
    line-height:30px;
    margin-bottom:40px;
}

/* Stats */

.highlight-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}


.highlight-item h3{
    color:#b38a38;
    font-size:36px;
    font-weight:700;
    margin-bottom:6px;
}

.highlight-item span{
    color:#ffffff;
    font-size:15px;
}

/* Right Content */

.team-excellence-content h2{
    font-size:42px;
    color:#0a2540;
    margin:18px 0 20px;
    font-weight:700;
}

.team-excellence-content p{
    color:#666;
    line-height:30px;
    margin-bottom:35px;
}

/* List */

.excellence-list{
    margin-top:25px;
}

.excellence-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.excellence-item i{
    width:55px;
    height:55px;
    background:#0a2540;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
    transition:.35s;
}

.excellence-item:hover i{
    background:#b38a38;
}

.excellence-item h4{
    color:#0a2540;
    font-size:20px;
    margin-bottom:8px;
}

.excellence-item p{
    margin:0;
    color:#666;
    line-height:26px;
}

/* Responsive */

@media(max-width:991px){

.team-excellence-wrapper{
    grid-template-columns:1fr;
}

.team-highlight-box{
    padding:40px 30px;
}

.team-highlight-box h2{
    font-size:32px;
}

.team-excellence-content h2{
    font-size:34px;
}

}

@media(max-width:767px){

.team-excellence-section{
    padding:70px 0;
}

.highlight-stats{
    grid-template-columns:1fr;
}

.team-highlight-box h2{
    font-size:28px;
}

.team-excellence-content h2{
    font-size:28px;
}

.excellence-item{
    gap:15px;
}

.excellence-item i{
    width:48px;
    height:48px;
    font-size:18px;
}

}

/*==============================
Collaboration Section
==============================*/

.collaboration-section{
    padding:100px 0;
    background:#f8f9fb;
}

.collaboration-wrapper{
    position:relative;
    max-width:1000px;
    margin:60px auto 0;
}

.collaboration-wrapper::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#b38a38;
}

.collaboration-step{
    width:50%;
    padding:20px 50px;
    position:relative;
}

.collaboration-step.right{
    margin-left:50%;
}

.step-content{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.step-content:hover{
    transform:translateY(-8px);
}

.step-content span{
    display:inline-flex;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0a2540;
    color:#fff;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.step-content:hover span{
    background:#b38a38;
}

.step-content h3{
    color:#0a2540;
    margin-bottom:15px;
    font-size:26px;
}

.step-content p{
    color:#666;
    line-height:28px;
}

@media(max-width:991px){

.collaboration-wrapper::before{
    display:none;
}

.collaboration-step,
.collaboration-step.right{
    width:100%;
    margin-left:0;
    padding:15px 0;
}

}

/* Premium Text-Heavy Section Style */
.tp-editorial-section {
    padding: 120px 20px;
    background-color: #0a2540;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.tp-editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr; /* Balanced layout asymmetry */
    gap: 80px;
    align-items: flex-start;
    
}

/* Left Sidebar Sticky Logic */
.tp-editorial-sidebar {
    position: sticky;
    top: 50px;
}

.tp-editorial-tag {
    color: #b38a38 !important; /* Signature Corporate Gold */
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.tp-editorial-sidebar h2 {
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.tp-editorial-sidebar p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Right Editorial Content Design (The Core Line Layout) */
.tp-editorial-timeline {
    position: relative;
    border-left: 2px solid #f1f5f9; /* Subtle gray vertical guide line */
    padding-left: 45px; /* Offset text to clear space for numbers */
}

.tp-timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.tp-timeline-item:last-child {
    margin-bottom: 0;
}

/* Absolute Floating Floating Numbers */
.tp-timeline-number {
    position: absolute;
    left: -45px; /* Aligns number box on top of the left vertical line border */
    top: 0;
    transform: translateX(-50%);
    background: #ffffff;
    color: #b38a38 !important; /* Gold numbered emphasis */
    font-size: 15px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border: 2px solid #b38a38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Text Element Layouts */
.tp-timeline-content h3 {
    font-size: 24px;
    color: #c6c8ce;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
}

.tp-timeline-content p {
    color: #c9ced4;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Highlighting the repeated team-profile strings */
.tp-timeline-content strong {
    color: #adafb4;
    font-weight: 600;
    border-bottom: 1px dashed #b38a38; /* Soft golden underline on the core keyword */
}

/* Responsive Handling */
@media (max-width: 992px) {
    .tp-editorial-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .tp-editorial-sidebar {
        position: relative;
        top: 0;
    }
    .tp-editorial-sidebar h2 {
        font-size: 34px;
    }
    .tp-editorial-section {
        padding: 70px 15px;
    }
}

/* Light Pre-Footer CTA Styles */
.tp-pre-footer-light {
    padding: 60px 20px;
    background-color: #ffffff; /* Clean White Background */
    font-family: Arial, sans-serif;
    border-top: 1px solid #e2e8f0; /* Soft separating border from top sections */
    border-bottom: 1px solid #e2e8f0; /* Perfect bridge line right before the footer */
}

.tp-pre-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content Customization */
.tp-pre-footer-content h2 {
    font-size: 28px;
    color: #0f172a; /* Strong Slate Black */
    margin: 0 0 10px 0;
    font-weight: 700;
}

.tp-pre-footer-content p {
    color: #475569; /* Balanced Grey text for legibility */
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    max-width: 800px;
}

.tp-pre-footer-content strong {
    color: #b38a38 !important; /* Signature Corporate Gold */
    font-weight: 600;
}

/* Right Action Button Styling */
.tp-pre-footer-action {
    flex-shrink: 0;
}

.tp-gold-btn {
    display: inline-block;
    background-color: #b38a38; 
    color: #ffffff !important;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.tp-gold-btn:hover {
    background-color: #96722e;
    transform: translateY(-2px);
}

/* Responsive Handling */
@media (max-width: 768px) {
    .tp-pre-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .tp-pre-footer-light {
        padding: 50px 15px;
    }
    .tp-pre-footer-content h2 {
        font-size: 24px;
    }
}















































