@import url('https://fonts.googleapis.com/css2?family=Pliant:ital,wght@0,100..900;1,100..900&display=swap');

*{
	margin: 0;
	padding: 0;
}

::selection{
    background: darkorange;
    color: #fff;
}
    .breadcrumb-section{
    padding:80px 20px;
    font-family: Arial, sans-serif;

    /* PREMIUM DARK BLUE GRADIENT */
    background: linear-gradient(135deg, #0f172a, #0d6efd);
    position:relative;
    overflow:hidden;
}

/* OPTIONAL LIGHT SHAPE EFFECT */
.breadcrumb-section::before{
    content:"";
    position:absolute;
    top:-50px;
    left:-50px;
    width:200px;
    height:200px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
}

.breadcrumb-section::after{
    content:"";
    position:absolute;
    bottom:-60px;
    right:-60px;
    width:250px;
    height:250px;
    background:rgba(56,189,248,0.2);
    border-radius:50%;
}

/* CENTER BOX */
.breadcrumb-box{
    text-align:center;
    color:#fff;
    position:relative;
    z-index:2;
}

.breadcrumb-box h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
    animation: fadeDown 0.6s ease;
}

/* BREADCRUMB */
.breadcrumb{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:0;
    margin:0;
    font-size:15px;
}

.breadcrumb li{
    color:rgba(255,255,255,0.8);
}

.breadcrumb li a{
    text-decoration:none;
    color:#ffffff;
    font-weight:600;
    transition:0.3s;
}

.breadcrumb li a:hover{
    color:#38bdf8;
}

.breadcrumb span{
    color:rgba(255,255,255,0.5);
}

/* ANIMATION */
@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .breadcrumb-box h1{
        font-size:32px;
    }
}
.service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list li{
    margin-bottom:12px;
}

.service-list li a{
    display:block;
    background:#f8f9fa;
    padding:15px 20px;
    border-radius:10px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:all .3s ease;
    border-left:4px solid #ff6600;
}

.service-list li a:hover{
    background:#ff6600;
    color:#fff;
    transform:translateX(5px);
}

.location-section{
    padding:60px 0;
    background:#f8f9fb;
}

.location-section h2{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#222;
    margin-bottom:35px;
    position:relative;
}

.location-section h2::after{
    content:'';
    width:80px;
    height:3px;
    background:#ff6600;
    display:block;
    margin:12px auto 0;
    border-radius:10px;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:15px;
}

.location-card{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    min-height:55px;
    padding:12px 15px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    font-size:15px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.location-card:hover{
    background:#ff6600;
    color:#fff;
    border-color:#ff6600;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(255,102,0,.25);
}

@media (max-width:768px){

    .location-section{
        padding:40px 0;
    }

    .location-section h2{
        font-size:28px;
        margin-bottom:25px;
    }

    .location-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .location-card{
        min-height:50px;
        font-size:14px;
        padding:10px;
    }
}

@media (max-width:480px){

    .location-grid{
        grid-template-columns:1fr 1fr;
    }

    .location-card{
        font-size:13px;
    }
}
.contact-section{
    padding: 60px 20px;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

.contact-section h2{
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-section p{
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.contact-wrapper{
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info{
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3{
    margin-bottom: 15px;
}

.contact-info p{
    text-align: left;
    margin: 10px 0;
}

/* Form */
.contact-form{
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form form{
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea{
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form button{
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #0056b3;
}

/* Responsive */
@media(max-width: 768px){
    .contact-wrapper{
        flex-direction: column;
    }
}

body{
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

.call-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 25px;
    background:linear-gradient(135deg,#13287e,#2148d8);
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    border-radius:50px;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(19,40,126,0.25);
}

.call-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(19,40,126,0.35);
}

.call-btn i{
    font-size:15px;
}


.menu ul li{
	margin-left: 1em !important;
}


/* Top Header */

.top-header{
    background:#ffffff;
    border-bottom:1px solid #edf1f7;
}

.top-header .container{
    max-width:1200px;
    margin:auto;
    padding:12px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-contact a{
    text-decoration:none;
    color:#555;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.top-contact a:hover{
    color:#13287e;
}

.top-contact i{
    width:32px;
    height:32px;
    background:#f4f7ff;
    color:#13287e;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:8px;
}

.top-support{
    background:#f4f7ff;
    color:#13287e;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.top-support i{
    margin-right:8px;
}

/* Mobile Responsive */

@media(max-width:768px){

    .top-header .container{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

    .top-contact{
        flex-direction:column;
        gap:10px;
    }

    .top-contact a{
        font-size:13px;
    }

    .top-support{
        width:100%;
        justify-content:center;
    }

}.top-marquee{
    background: linear-gradient(135deg,#13287e,#0d4ba0,#ff7b00);
    padding: 0;
    display:flex;
    align-items:center;
    overflow:hidden;
    box-shadow:0 3px 15px rgba(0,0,0,.15);
}

.label{
    background:#ff7b00;
    color:#fff;
    padding:12px 20px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    white-space:nowrap;
}

.top-marquee marquee{
    background:#4085cf;
    color:#fff;
    padding:12px 0;
    font-size:15px;
    font-weight:700;
    width:100%;
    text-shadow:0 1px 1px rgba(0,0,0,.1);
}
.hero{
    padding:50px 0;
    background:linear-gradient(135deg,#f5f9ff,#ffffff);
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#13287e10;
    border-radius:50%;
    top:-250px;
    left:-150px;
}

.hero::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#ff7a0010;
    border-radius:50%;
    bottom:-220px;
    right:-120px;
}

.hero-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

.hero-left{
    flex:1;
}

.hero-badge{
    background:#fff;
    color:#13287e;
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:25px;
}

@media screen and (max-width: 550px){
	.hero-badge{
		font-size: 12px;
	}
}

.hero-left h1{
    font-size:51px;
    line-height:1.15;
    color:#111;
    margin-bottom:20px;
    font-weight:800;
}

.hero-left h1 span{
    color:#ff7a00;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:650px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#13287e;
    color:#fff;
    text-decoration:none;
    padding:15px 32px;
    border-radius:10px;
    font-weight:700;
}

.btn-primary:hover{
    background:#ff7a00;
}

.btn-secondary{
    background:#fff;
    color:#13287e;
    text-decoration:none;
    padding:15px 32px;
    border-radius:10px;
    font-weight:700;
    border:2px solid #13287e;
}

.hero-features{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    color:#13287e;
    font-weight:600;
}

.quote-card{
    width:420px;
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:
    0 20px 60px rgba(19,40,126,.12);
    border:1px solid #edf2ff;
}

.quote-card h3{
    text-align:center;
    color:#13287e;
    font-size:28px;
    margin-bottom:25px;
}

.quote-card input,
.quote-card select{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    margin-bottom:15px;
    font-size:15px;
}

.quote-card input:focus,
.quote-card select:focus{
    border-color:#ff7a00;
    outline:none;
}

.quote-card button{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#13287e,#1d46d8);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
}

.quote-card button:hover{
    background:linear-gradient(135deg,#ff7a00,#ff9800);
}

@media(max-width:991px){

.hero-container{
    flex-direction:column;
}

.hero-left h1{
    font-size:40px;
}

.quote-card{
    width:100%;
}

.hero-features{
    grid-template-columns:1fr;
}
}

.service-bar{
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#13287e,#0d1f5c);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(19,40,126,.25);
    border-bottom:4px solid #ff7a00;
}

.service-heading{
    background:#ff7a00;
    color:#fff;
    font-size:15px;
    font-weight:700;
    padding:16px 25px;
    letter-spacing:1px;
    white-space:nowrap;
    position:relative;
}

.service-heading::after{
    content:'';
    position:absolute;
    right:-20px;
    top:0;
    border-top:28px solid transparent;
    border-bottom:28px solid transparent;
    border-left:20px solid #ff7a00;
}

.service-bar marquee{
    color:#fff;
    font-size:15px;
    font-weight:600;
    padding:15px 0;
    width:100%;
    text-shadow:0 1px 2px rgba(0,0,0,.2);
}.about-section{
    padding:100px 0;
    background:#fff;
    position:relative;
}

.about-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    background:rgba(255,122,0,.1);
    color:#ff7a00;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-content h2{
    font-size:42px;
    line-height:1.3;
    color:#13287e;
    margin-bottom:20px;
    font-weight:800;
}

.about-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.about-features span{
    background:#f8faff;
    padding:14px 18px;
    border-radius:10px;
    color:#13287e;
    font-weight:600;
    border-left:4px solid #ff7a00;
    transition:.3s;
}

.about-features span:hover{
    transform:translateY(-3px);
}

.about-btn{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(135deg,#13287e,#004a99);
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    background:linear-gradient(135deg,#ff7a00,#ff9800);
}

@media(max-width:991px){

.about-section{
    padding:70px 0;
}

.about-section .container{
    flex-direction:column;
}

.about-content h2{
    font-size:32px;
}

.about-features{
    grid-template-columns:1fr;
}

}.about-image::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:#ff7a00;
    border-radius:20px;
    top:-20px;
    left:-20px;
    z-index:-1;
}

.about-image::after{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:#13287e;
    border-radius:20px;
    bottom:-20px;
    right:-20px;
    z-index:-1;
}


.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#ff7a00;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#13287e;
    margin:0;
    line-height:1.2;
    position:relative;
}

.section-title h2::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#ff7a00;
    margin:15px auto 0;
    border-radius:50px;
}

.section-title p{
    max-width:650px;
    margin:20px auto 0;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:15px;
}
}
.why-us{
    padding:70px 0;
    background:#f8fbff;
    overflow:hidden;
}

.why-wrapper{
    max-width:1000px;
    margin:40px auto 0;
    position:relative;
}

.why-wrapper::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:linear-gradient(#13287e,#ff7a00);
    transform:translateX(-50%);
}

.why-item{
    width:50%;
    padding:10px 25px;
    position:relative;
}

.why-item.left{
    text-align:right;
}

.why-item.right{
    margin-left:50%;
}

.content{
    background:#fff;
    padding:18px 20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    border:1px solid #edf2ff;
}

.content:hover{
    transform:translateY(-5px);
}

.icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#13287e,#ff7a00);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    position:absolute;
    top:25px;
    z-index:2;
}

.left .icon{
    right:-25px;
}

.right .icon{
    left:-25px;
}

.content h3{
    color:#13287e;
    font-size:18px;
    margin-bottom:6px;
    font-weight:700;
}

.content p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin:0;
}

/* Heading Design */

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title span{
    display:inline-block;
    color:#ff7a00;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:8px;
}

.section-title h2{
    font-size:40px;
    font-weight:800;
    color:#13287e;
    margin:0;
    position:relative;
    padding-bottom:15px;
}

.section-title h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#ff7a00;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    border-radius:50px;
}

/* Mobile Responsive */

@media(max-width:768px){

    .why-us{
        padding:50px 0;
    }

    .why-wrapper{
        margin-top:30px;
    }

    .why-wrapper::before{
        left:22px;
    }

    .why-item{
        width:100%;
        margin-left:0 !important;
        padding:8px 0 8px 65px;
        text-align:left !important;
    }

    .icon{
        width:45px;
        height:45px;
        font-size:18px;
        left:0 !important;
        right:auto !important;
    }

    .section-title h2{
        font-size:30px;
    }

    .content{
        padding:15px;
    }
}

.nav button{
	text-align: start !important;
}.service-tabs{
    padding:80px 0;
    background:#f8fbff;
}

#v-pills-tab{
    min-width:320px;
    gap:12px;
}

#v-pills-tab .nav-link{
    background:#fff;
    border:none;
    border-radius:15px;
    padding:18px 20px;
    text-align:left;
    color:#13287e;
    font-size:16px;
    font-weight:700;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

#v-pills-tab .nav-link::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#ff7a00;
    transform:scaleY(0);
    transition:.4s;
}

#v-pills-tab .nav-link:hover{
    transform:translateX(8px);
    color:#13287e;
}

#v-pills-tab .nav-link.active{
    background:linear-gradient(135deg,#13287e,#004a99);
    color:#fff;
    box-shadow:0 15px 35px rgba(19,40,126,.25);
}

#v-pills-tab .nav-link.active::before{
    transform:scaleY(1);
}

.tab-content{
    width:100%;
    margin-left:30px;
}

.tab-pane{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:1px solid #edf2ff;
    min-height:350px;
}

.tab-pane h3{
    color:#13287e;
    font-size:30px;
    font-weight:800;
    margin-bottom:15px;
    position:relative;
    padding-bottom:15px;
}

.tab-pane h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:80px;
    height:4px;
    background:#ff7a00;
    border-radius:50px;
}

.tab-pane p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:15px;
}

.tab-pane ul{
    padding-left:0;
    margin-top:20px;
}

.tab-pane ul li{
    list-style:none;
    margin-bottom:12px;
    color:#13287e;
    font-weight:600;
}

.tab-pane ul li::before{
    content:'✓';
    width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ff7a00;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    font-size:12px;
}

@media(max-width:991px){

.d-flex.align-items-start{
    flex-direction:column;
}

#v-pills-tab{
    min-width:100%;
    margin-bottom:25px;
}

.tab-content{
    margin-left:0;
}

.tab-pane{
    padding:25px;
}

.tab-pane h3{
    font-size:24px;
}
}


.work-process{
    padding:80px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#13287e;
    margin:10px 0;
}

.section-title p{
    color:#666;
    font-size:16px;
}

.process-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    padding:30px 25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    transition:.4s;
    border:1px solid #edf2ff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.process-card:hover{
    transform:translateY(-10px);
}

.step-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:45px;
    font-weight:800;
    color:rgba(19,40,126,.08);
}

.process-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#13287e,#004a99);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#fff;
    margin-bottom:20px;
}

.process-card h3{
    color:#13287e;
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

.process-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:991px){

.process-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.work-process{
    padding:60px 0;
}

.section-title h2{
    font-size:32px;
}

.process-wrapper{
    grid-template-columns:1fr;
}

.process-card{
    padding:25px 20px;
}

}

.difference-section{
    padding:80px 0;
    background:linear-gradient(135deg,#13287e,#0c1f5e);
    color:#fff;
}

.difference-section .container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.difference-left{
    flex:1;
}

.sub-title{
    color:#ff7a00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.difference-left h2{
    font-size:42px;
    margin:15px 0;
    line-height:1.3;
}

.difference-left h2 span{
    color:#ff7a00;
}

.difference-left p{
    color:#ddd;
    line-height:1.8;
}

.diff-list{
    margin-top:30px;
}

.diff-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.diff-item .icon{
    width:60px;
    height:60px;
    border-radius:15px;
    background:#ff7a00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.diff-item h4{
    margin-bottom:5px;
}

.diff-item p{
    margin:0;
    color:#ccc;
}

.difference-right{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stats-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:30px;
    text-align:center;
}

.stats-card h3{
    color:#ff7a00;
    font-size:42px;
    margin-bottom:10px;
    font-weight:800;
}

.stats-card p{
    margin:0;
    color:#fff;
}

@media(max-width:991px){

.difference-section .container{
    flex-direction:column;
}

.difference-right{
    width:100%;
}

}

@media(max-width:768px){

.difference-left h2{
    font-size:30px;
}

.difference-right{
    grid-template-columns:1fr;
}

}


.mission-vision-section{
    max-width:1200px;
    margin:auto;
    padding:80px 0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    position:relative;
}

.mv-box{
    flex:1;
    background:#fff;
    padding:40px;
    border-radius:20px;
    position:relative;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.mv-box:hover{
    transform:translateY(-10px);
}

.mission-box{
    border-left:6px solid #ff7a00;
}

.vision-box{
    border-right:6px solid #13287e;
}

.mv-icon{
    font-size:45px;
    margin-bottom:15px;
}

.mv-box h2{
    font-size:32px;
    color:#13287e;
    margin-bottom:15px;
    font-weight:800;
}

.mv-box p{
    color:#666;
    line-height:1.9;
    margin:0;
}

.center-circle{
    width:120px;
    height:120px;
    background:linear-gradient(135deg,#13287e,#ff7a00);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:#fff;
    box-shadow:0 15px 40px rgba(19,40,126,.25);
    flex-shrink:0;
}

@media(max-width:991px){

.mission-vision-section{
    flex-direction:column;
    gap:25px;
}

.center-circle{
    width:90px;
    height:90px;
    font-size:38px;
}

.mv-box{
    width:100%;
}
}


.diff-item .icon{
    display: none !important;
}
.premium-call-section{
    padding:80px 20px;
    background: linear-gradient(135deg, #eef3ff, #f8fbff);
    font-family: Arial, sans-serif;
}

.premium-call-box{
    max-width:1000px;
    margin:auto;
    background: #ffffff;
    border-radius:18px;
    padding:45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.10);
    gap:30px;
    position:relative;
    overflow:hidden;
}

/* LEFT */
.left-content h2{
    font-size:30px;
    color:#1e2a3a;
    margin:10px 0;
}

.left-content p{
    color:#666;
    font-size:15px;
    line-height:1.6;
    max-width:500px;
}

.badge{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:10px;
}

/* FEATURES */
.features{
    margin-top:15px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.features span{
    background:#f1f5ff;
    padding:6px 10px;
    border-radius:6px;
    font-size:13px;
    color:#1e2a3a;
}

/* RIGHT ACTION */
.right-action{
    display:flex;
    flex-direction:column;
    gap:12px;
    text-align:center;
}

/* BUTTONS */
.call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:14px 25px;
    border-radius:10px;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
    display:inline-block;
}

/* CALL */
.call-btn{
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color:#fff;
    box-shadow:0 8px 20px rgba(13,110,253,0.3);
}

.call-btn:hover{
    transform:translateY(-5px);
}

/* WHATSAPP */
.whatsapp-btn{
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color:#fff;
    box-shadow:0 8px 20px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover{
    transform:translateY(-5px);
}

/* SMALL TEXT */
.small-text{
    font-size:12px;
    color:#888;
}

/* RESPONSIVE */
@media(max-width:768px){
    .premium-call-box{
        flex-direction:column;
        text-align:center;
    }

    .features{
        justify-content:center;
    }
}



.st-charge-section{
    padding:80px 20px;
    background:#f7f9fc;
}

.st-charge-heading{
    text-align:center;
    margin-bottom:40px;
}

.st-charge-heading h2{
    font-size:42px;
    color:#004aad;
    margin-bottom:10px;
}

.st-charge-heading p{
    color:#666;
    font-size:18px;
}

.st-table-wrap{
    overflow-x:auto;
    max-width:1300px;
    margin:auto;
}

.st-price-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.st-price-table th{
    background:#004aad;
    color:#fff;
    padding:18px;
    font-size:18px;
}

.st-price-table td{
    padding:18px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.st-price-table tr:nth-child(even){
    background:#f8fbff;
}

.st-price-table tr:hover{
    background:#eef5ff;
}

.st-extra-grid{
    max-width:1300px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.st-extra-card{
    background:#fff;
    text-align:center;
    padding:30px 15px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.st-extra-card:hover{
    transform:translateY(-8px);
}

.st-extra-card i{
    font-size:45px;
    color:#004aad;
    margin-bottom:15px;
}

.st-extra-card h3{
    font-size:18px;
    margin-bottom:10px;
}

.st-extra-card span{
    color:#ff6600;
    font-weight:700;
}

/* Tablet */

@media(max-width:992px){

.st-extra-grid{
    grid-template-columns:repeat(2,1fr);
}

.st-charge-heading h2{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:576px){

.st-extra-grid{
    grid-template-columns:1fr;
}

.st-charge-heading h2{
    font-size:28px;
}

.st-price-table th,
.st-price-table td{
    font-size:14px;
    padding:12px;
}

}