    .vision-title {
        font-size: 32px;
        line-height: 32px;
        font-weight: 700;
        color: #ffffff;
        font-style: normal;
    }

    .vision-col-1 {
        padding-top: 5%;
        padding-bottom: 5%;
        padding-left: 10%;
        text-align: right;
        font-family: "Raleway", Helvetica, Arial, sans-serif;
    }

    .vision-col-1 p {
        color: #ffffff;
        font-style: normal;
    }
    
    .tab-pane {
        display: none;
    }
    .tab-pane.active {
        display: block;
    }
    .tab-button {
        cursor: pointer;
        margin: 5px;
    }
    
.why-choose-section{
    position:relative;
    background:#f8f9fc;
    overflow:hidden;
    padding:100px 0;
}

/* Left Geometric Design */
.left-pattern{
    position:absolute;
    left:0;
    top:0;
    width:250px;
    height:100%;
    z-index:1;
}

.left-pattern span{
    position:absolute;
    width:90px;
    height:90px;
    transform:rotate(45deg);
}

.left-pattern span:nth-child(1){
    top:0;
    left:30px;
    background:#4d79ff;
}

.left-pattern span:nth-child(2){
    top:80px;
    left:-10px;
    background:#53d4e7;
}

.left-pattern span:nth-child(3){
    top:160px;
    left:50px;
    background:#7468ff;
}

.left-pattern span:nth-child(4){
    top:240px;
    left:0;
    background:#4d79ff;
}

.left-pattern span:nth-child(5){
    top:320px;
    left:60px;
    background:#53d4e7;
}

/* Heading */
.section-title{
    position:relative;
    z-index:2;
}
/* White Card */
.main-feature-card{
    background:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
    z-index:2;
}

/* Hover Read More */
.feature-readmore{
    position:absolute;
    left:0;
    bottom:-70px;
    width:100%;
    background:linear-gradient(90deg,#4d79ff,#5f52ff);
    color:#fff;
    text-decoration:none;
    text-align:center;
    padding:20px;
    font-weight:600;
    transition:.4s;
}

.feature-box:hover .feature-readmore{
    bottom:0;
}

.feature-readmore:hover{
    color:#fff;
}

/* Responsive */
@media(max-width:991px){

    .left-pattern{
        display:none;
    }

    .section-title h2{
        font-size:24px;
    }

    .feature-box{
        border-right:none;
        border-bottom:1px dashed #ddd;
        min-height:auto;
    }
}


.section-title{
    text-align:center;
    margin-bottom:60px;
}

/* Feature Box */
.feature-box{
    position:relative;
    overflow:hidden;
    height:100%;
    text-align:center;
    box-shadow:rgba(0, 0, 0, 0.08) 0px 10px 35px;;
    transition:.4s;
    background:#fff;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-icon{
    font-size:45px;
    color:#6f6ff1;
    margin-bottom:20px;
}
.feature-icon i{
    border: 1px solid skyblue;
    padding: 17px;
}

.feature-box h5{
    font-weight:700;
    color:#111;
}
.feature-border{
    border:1px solid #e5e5e5;
    transition:.3s;
}

.feature-border:hover{
    border-color:#0d6efd;
}

@media(max-width:767px){

    .section-title h2{
        font-size:30px;
    }

    .feature-box{
        margin-bottom:20px;
    }

}

.contact-section{
    position:relative;
}

.hover-card{
    background:#fff;
    border-radius:18px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:all .4s ease;
    overflow:hidden;
    height:100%;
    position:relative;
}

.hover-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:linear-gradient(180deg, #d0d30a, #ff0018cf);
    transition:.4s;
}

.hover-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    border-color:#00d2ff;
}

.hover-card:hover::before{
    width:100%;
    opacity:.04;
}

.contact-icon1{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:50%;
    background:linear-gradient(135deg, #0a23d3, #e13949cf);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-right:22px;
    transition:.4s;
    position:relative;
    z-index:2;
}

.hover-card:hover .contact-icon1{
    transform:scale(1.08) rotate(8deg);
}

.contact-content{
    flex:1;
    position:relative;
    z-index:2;
}

.contact-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#eef4ff;
    color:#3f5efb;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
    transition:.3s;
}

.hover-card:hover .contact-badge{
    background:linear-gradient(135deg,#3f5efb,#00d2ff);
    color:#fff;
}

.contact-content h5{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.contact-content p{
    margin:0;
    color:#6b7280;
    font-size:15px;
    line-height:28px;
}

.contact-item{
    display:block;
    text-decoration:none;
    color:#374151;
    font-size:15px;
    font-weight:500;
    margin-bottom:10px;
    transition:.3s;
    position:relative;
    z-index:5;
}

.contact-item i{
    width:22px;
    color:#3f5efb;
    margin-right:6px;
}

.contact-item:hover{
    color:#0d6efd;
    transform:translateX(5px);
}

@media(max-width:991px){

    .hover-card{
        margin-bottom:25px;
    }

    .contact-icon1{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:22px;
        margin-right:18px;
    }

    .contact-content h5{
        font-size:20px;
    }

    .contact-content p,
    .contact-item{
        font-size:14px;
    }
}
/* ============================================
   Testimonial Section - 6/6 Layout
   ============================================ */

/* Client Image */
.testimonial-section .client-image {
    width: 100px;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #B74614;
    flex-shrink: 0;
}

.testimonial-section .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Text */
.testimonial-section .testimonial-text {
    position: relative;
    padding-left: 20px;
}

.testimonial-section .testimonial-text::before {
    content: '\201C';
    font-size: 40px;
    color: #B74614;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: Georgia, serif;
}

/* Rating Stars */
.testimonial-section .client-rating i {
    color: #f5a623;
    font-size: 15px;
    margin-right: 2px;
}

/* Right Side Image */
.testimonial-section .testimonial-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-section .testimonial-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-section .testimonial-image:hover img {
    transform: scale(1.03);
}

/* Navigation */
.testimonial-section .testimonial-nav span {
    width: 42px;
    height: 42px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a2e;
    font-size: 16px;
    background: #ffffff;
}

.testimonial-section .testimonial-nav span:hover {
    background: #B74614;
    color: #ffffff;
    border-color: #B74614;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(183, 70, 20, 0.3);
}

/* Swiper Slide */
.testimonial-section .swiper-slide {
    padding: 10px 5px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
    .testimonial-section .testimonial-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }
    
    .testimonial-section .testimonial-image {
        margin-top: 30px;
    }
    
    .testimonial-section .testimonial-image img {
        height: 280px;
    }
    
    .testimonial-section .testimonial-text::before {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 0;
    }
    
    .testimonial-section .testimonial-image img {
        height: 220px;
    }
    
    .testimonial-section .client-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-section .testimonial-text {
        font-size: 14px;
        padding-left: 15px;
    }
    
    .testimonial-section .testimonial-text::before {
        font-size: 25px;
        top: -5px;
    }
}
.info-strip{
    margin-top:-60px;
    position:relative;
    z-index:99;
}

.col-lg-2-4{
    width:20%;
    padding:0 10px;
}

@media(max-width:991px){
    .col-lg-2-4{
        width:50%;
    }
}

@media(max-width:575px){
    .col-lg-2-4{
        width:100%;
    }
}

.info-box{
    background:#071d3d;
    border-radius:12px;
    padding:28px 18px;
    min-height:120px;
    display:flex;
    align-items:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.info-box:hover{
    background:#0b2d5d;
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.info-icon{
    width:55px;
    min-width:55px;
    text-align:center;
    font-size:30px;
    color:#fff;
}

.info-content{
    padding-left:15px;
}

.info-content h6{
    margin:0;
    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.info-content p{
    margin:6px 0 0;
    color:#d8e0ec;
    font-size:14px;
    line-height:22px;
}

.info-content small{
    color:#9eb3cf;
    font-size:12px;
}

@media(max-width:991px){

.info-strip{
    margin-top:30px;
}

.info-box{
    margin-bottom:20px;
}

}
#partner-section{
    padding:90px 0;
    background:#f8f9fb;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#09142a;
}

.partner-card{
    background:#fff;
    padding:45px 30px;
    text-align:center;
    border-radius:12px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.partner-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.partner-card i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

.partner-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#09142a;
}

.partner-card p{
    color:#666;
    line-height:28px;
}
.footer-section{
    color:#ddd;
}

.footer-logo{
    max-width:280px;
}

.footer-about{
    color:#b9c3cf;
    line-height:30px;
    font-size:15px;
    margin-top:15px;
}

.footer-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
}

.footer-title:after{
    content:'';
    width:55px;
    height:3px;
    background:#D4A017;
    position:absolute;
    left:0;
    bottom:-12px;
}

.footer-contact,
.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-contact li{
    margin-bottom:18px;
    line-height:28px;
    color:#d8d8d8;
}

.footer-contact i{
    color:#D4A017;
    width:25px;
    font-size:18px;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links li a{
    color:#ddd;
    transition:.3s;
    text-decoration:none;
}

.footer-links li a:before{
    content:"›";
    color:#D4A017;
    margin-right:10px;
}

.footer-links li a:hover{
    color:#D4A017;
    padding-left:8px;
}

.footer-social{
    margin-bottom:35px;
}

.footer-social a{
    width:46px;
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    transition:.4s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#D4A017;
    border-color:#D4A017;
    color:#071B36;
    transform:translateY(-5px);
}

.footer-open{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:25px;
}

.footer-open h5{
    color:#fff;
    font-size:20px;
    margin-bottom:10px;
}

.footer-open p{
    color:#ddd;
    margin-bottom:5px;
}

.footer-open span{
    color:#D4A017;
    display:block;
    font-weight:600;
    margin-bottom:5px;
}

.footer-open small{
    color:#9ca8b6;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    color:#bbb;
}

.footer-bottom strong{
    color:#D4A017;
}

@media(max-width:991px){

.footer-title{
    margin-top:15px;
}

.footer-section{
    text-align:left;
}

.footer-logo{
    max-width:240px;
}

}
.footer-contact li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-contact li a:hover{
    color:#D4A017;
    padding-left:5px;
}

.office-tag{
    color:#d4a017;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}
#office-section h2{
    font-size:52px;
    line-height:62px;
    font-weight:800;
    color:#082145;
    margin:15px 0;
}
.title-line{
    width:60px;
    height:3px;
    background:#d4a017;
    margin:25px 0;
}
.office-list{
    margin-top:40px;
}
.office-item{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}
.office-item .icon{
    width:55px;
    height:55px;
    background:#082145;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    margin-right:18px;
    flex-shrink:0;
}
.office-item span:last-child{
    font-size:20px;
    font-weight:600;
    color:#082145;
}
.office-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}
.office-bottom{
    margin-top:45px;
    background:#081d42;
    border-radius:15px;
    overflow:hidden;
}
.bottom-box{
    display:flex;
    align-items:center;
    padding:35px 30px;
    border-right:1px solid rgba(255,255,255,.12);
}
.bottom-icon{
    color:#d4a017;
    font-size:34px;
    margin-right:20px;
}
.bottom-box h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}
.bottom-box p{
    color:#ddd;
    font-size:15px;
    line-height:26px;
    margin:0;
}
@media(max-width:991px){
#office-section{
padding:70px 0;
}
.office-image{
margin-top:40px;
}
.bottom-box{
border-right:none;
border-bottom:1px solid rgba(255,255,255,.10);
}

#office-section h2{
font-size:38px;
line-height:48px;
}

}