/* ==========================================================
   MAR CONSULTANCY
   ABOUT PAGE
========================================================== */

/* ==========================================================
   PAGE BANNER
========================================================== */

.page-banner{

    position:relative;

    padding:60px 0;

    background:linear-gradient(135deg, #0B2447 0%, #19376D 100%);

    color:#fff;

    overflow:hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-120px;

    top:-150px;

}

.page-banner h1{

    font-size:3.5rem;

    font-weight:800;

    margin-bottom:15px;

}

.breadcrumb{

    justify-content:center;

    background:transparent;

    margin:0;

}

.breadcrumb a{

    color:#ffffff;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#ffc107;

}

/* ==========================================================
   ABOUT INTRODUCTION
========================================================== */

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.02);

}

.badge-primary{

    display:inline-block;

    padding:8px 22px;

    border-radius:50px;

    background:#eaf3ff;

    color:var(--primary);

    font-weight:700;

    letter-spacing:1px;

    font-size:13px;

}

.about-content h2{

    font-size:2.7rem;

    font-weight:800;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    line-height:1.9;

}

/* ==========================================================
   MISSION • VISION • VALUES
========================================================== */

.card-modern{

    background:#fff;

    border:none;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    height:100%;

}

.card-modern:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.card-modern i{

    font-size:60px;

    color:var(--primary);

}

.card-modern h4{

    margin:25px 0 15px;

    font-weight:700;

}

.card-modern p{

    color:#666;

}

/* ==========================================================
   WHY CHOOSE US
========================================================== */

.why-list{

    margin-top:30px;

}

.why-list .item{

    display:flex;

    margin-bottom:25px;

}

.why-list i{

    font-size:28px;

    margin-right:18px;

    color:#0d6efd;

}

.why-list h5{

    font-weight:700;

    margin-bottom:8px;

}

.why-list p{

    margin:0;

    color:#666;

}

.why-image{

    position:relative;

}

.why-image img{

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/* ==========================================================
   ACHIEVEMENT COUNTERS
========================================================== */

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card i{

    font-size:50px;

    color:var(--primary);

    margin-bottom:20px;

}

.stat-card h2{

    font-size:2.4rem;

    font-weight:800;

    color:var(--primary);

}

.stat-card p{

    margin:0;

    color:#666;

}

/* ==========================================================
   TEAM SECTION
========================================================== */

.team-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.team-card:hover{

    transform:translateY(-10px);

}

.team-card img{

    width:100%;

    height:340px;

    object-fit:cover;

    transition:.4s;

}

.team-card:hover img{

    transform:scale(1.05);

}

.team-body{

    padding:30px;

    text-align:center;

}

.team-body h4{

    font-weight:700;

}

.team-body p{

    color:#666;

}

.team-body .footer-social{

    margin-top:20px;

}

.team-body .footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f5f8ff;

    color:var(--primary);

    margin:0 6px;

    transition:.3s;

}

.team-body .footer-social a:hover{

    background:var(--primary);

    color:#fff;

}
/* ==========================================================
   COMPANY JOURNEY
========================================================== */

.process-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    transition:.35s;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),#ffb703);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.process-number{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    color:#ffffff;

    background:linear-gradient(135deg,var(--primary),#2b8cff);

    margin-bottom:20px;

}

.process-card h5{

    font-weight:700;

    margin-bottom:0;

    line-height:1.6;

}

/* ==========================================================
   GALLERY
========================================================== */

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.45s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(9,32,74,.18);

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{

    opacity:1;

}

/* ==========================================================
   CALL TO ACTION
========================================================== */

.cta{

    background:linear-gradient(135deg,#0d6efd,#003f88);

    color:#ffffff;

    padding:80px 50px;

    border-radius:28px;

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-130px;

    right:-100px;

}

.cta h2{

    font-size:2.4rem;

    font-weight:800;

}

.cta p{

    max-width:720px;

    margin:20px auto 35px;

    font-size:17px;

    line-height:1.8;

}

.cta .btn{

    padding:14px 38px;

    font-weight:700;

    border-radius:50px;

}

/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter{

    background:#ffffff;

    padding:60px;

    border-radius:25px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.newsletter h2{

    font-weight:800;

}

.newsletter p{

    color:#666;

}

.newsletter input{

    height:56px;

    border-radius:50px;

    border:1px solid #d9d9d9;

    padding-left:20px;

}

.newsletter button{

    height:56px;

    border-radius:50px;

    font-weight:700;

}

/* ==========================================================
   FOOTER IMPROVEMENTS
========================================================== */

.footer{

    background:#07162f;

    color:#d9d9d9;

    padding:80px 0 25px;

}

.footer h5{

    color:#ffffff;

    margin-bottom:22px;

    font-weight:700;

}

.footer p{

    color:#c9c9c9;

    line-height:1.8;

}

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#d0d0d0;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#ffc107;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    background:rgba(255,255,255,.08);

    transition:.3s;

}

.footer-social a:hover{

    background:#ffc107;

    color:#07162f;

}

.footer hr{

    border-color:rgba(255,255,255,.12);

}

/* ==========================================================
   FLOATING BUTTONS
========================================================== */

.whatsapp-btn,

.call-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:26px;

    z-index:999;

    text-decoration:none;

    box-shadow:0 12px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.whatsapp-btn{

    bottom:25px;

    background:#25D366;

}

.call-btn{

    bottom:95px;

    background:#0d6efd;

}

.whatsapp-btn:hover,

.call-btn:hover{

    transform:translateY(-6px) scale(1.05);

}


/* ==========================================================
   ANIMATIONS
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-40px);

    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(40px);

    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

.zoom-in{

    opacity:0;

    transform:scale(.9);

    transition:all .8s ease;

}

.zoom-in.show{

    opacity:1;

    transform:scale(1);

}

/* ==========================================================
   HOVER EFFECTS
========================================================== */

.team-card,
.card-modern,
.process-card,
.stat-card,
.gallery-item{

    will-change:transform;

}

.team-card:hover{

    transform:translateY(-12px);

}

.gallery-item:hover{

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.newsletter{

    transition:.35s;

}

.newsletter:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.cta{

    transition:.4s;

}

.cta:hover{

    transform:translateY(-6px);

}

/* ==========================================================
   IMAGE UTILITIES
========================================================== */

img{

    max-width:100%;

    display:block;

}

.img-shadow{

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.round-xl{

    border-radius:25px;

}

.round-xxl{

    border-radius:35px;

}

/* ==========================================================
   SECTION SPACING
========================================================== */

section{

    position:relative;

}

.section-title{

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:10px;

    margin-bottom:18px;

    font-size:2.7rem;

    font-weight:800;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.9;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

.page-banner h1{

font-size:3rem;

}

.about-content h2{

font-size:2.3rem;

}

.section-title h2{

font-size:2.3rem;

}

}

@media(max-width:992px){

.page-banner{

padding:50px 0;

text-align:center;

}

.about-content{

margin-top:40px;

}

.why-image{

margin-top:40px;

}

.newsletter{

padding:40px;

}

.cta{

padding:60px 35px;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:768px){

.page-banner h1{

font-size:2.4rem;

}

.about-content h2{

font-size:2rem;

}

.section-title h2{

font-size:2rem;

}

.team-card img{

height:300px;

}

.gallery-item img{

height:250px;

}

.process-number{

width:65px;

height:65px;

font-size:20px;

}

.newsletter{

padding:30px;

}

.cta h2{

font-size:2rem;

}

}

@media(max-width:576px){

.page-banner{

padding:45px 0;

}

.page-banner h1{

font-size:2rem;

}

.badge-primary{

font-size:12px;

padding:7px 16px;

}

.about-content h2{

font-size:1.8rem;

}

.section-title h2{

font-size:1.8rem;

}

.card-modern{

padding:30px 20px;

}

.team-body{

padding:22px;

}

.stat-card{

padding:30px 18px;

}

.newsletter{

padding:25px;

}

.cta{

padding:45px 20px;

}

.cta h2{

font-size:1.7rem;

}

.cta p{

font-size:15px;

}

.whatsapp-btn,

.call-btn{

width:55px;

height:55px;

font-size:22px;

right:15px;

}

.whatsapp-btn{

bottom:15px;

}

.call-btn{

bottom:85px;

}



}

/* ==========================================================
   PRINT
========================================================== */

@media print{

.whatsapp-btn,

.call-btn,

.back-to-top,

.top-bar,

.navbar,

footer{

display:none !important;

}

.page-banner{

padding:30px 0;

background:#ffffff;

color:#000000;

}

body{

background:#ffffff;

}

}

/* Premium Milestone Card Styling */
.milestone-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
    border: 1px solid #eaedf1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.milestone-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 16px 16px 0 0;
}
.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}
.milestone-date {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(13, 110, 253, 0.08);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.milestone-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================
   PROFESSIONAL ABOUT PAGE ENHANCEMENTS
========================================================== */

/* Tighter section padding override */
section.py-5{
    padding-top:70px !important;
    padding-bottom:70px !important;
}

/* Alternate section backgrounds */
.bg-section{
    background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
}

/* Section heading consistency */
.section-title h2{
    font-size:2.3rem;
    font-weight:800;
    color:#0B2447;
    line-height:1.2;
}

.section-title span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0d6efd;
    margin-bottom:14px;
}

/* ==========================================================
   END OF FILE
========================================================== */