* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
}

body.menu-open {
    overflow: hidden; 
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}



.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.container-service{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.service-section{
    padding:90px 0;
}

.service-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.service-image{
    flex:1;
}

.service-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    max-height: 213px !important;
}

.service-content{
    flex:1;
}

.sub-title{
    color:#E85318;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.service-content h2{
    font-size:42px;
    margin:15px 0 20px;
    color:#222;
    line-height:1.2;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.service-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#333;
}

.item i{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#E85318;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-style:normal;
    font-size:14px;
}

.btn-service{
    display:inline-block;
    padding:15px 35px;
    background:#E85318;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-service:hover{
    background:#ff6b35;
}

@media(max-width:991px){

.service-wrapper{
    flex-direction:column;
}

.service-content{
    text-align:center;
}

.service-list{
    grid-template-columns:1fr;
}

.item{
    justify-content:center;
}

.service-content h2{
    font-size:34px;
}

}



.services-a{
    padding:20px 0;
    background:#ffffff;
}

.container-sc{
    width:90%;
    max-width:1200px;
    margin:auto;
}



.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    padding:8px 20px;
    background:#e8f2ff;
    color:#E85318;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin:20px 0 15px;
    font-weight:700;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}


.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}


.service-box{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.service-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0066ff,#00b4ff);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.service-box:hover::before{
    transform:scaleX(1);
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}


.service-box .icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#0066ff,#00b4ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
    transition:.4s;
}

.service-box:hover .icon{
    transform:rotateY(180deg) scale(1.08);
}


.service-box h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.service-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-box a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#E85318;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-box a:hover{
    color:#ff6600;
}

.service-box a::after{
    content:"→";
    transition:.3s;
}

.service-box a:hover::after{
    transform:translateX(6px);
}


@media(max-width:992px){

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.services-a{
    padding:70px 0;
}

.service-grid{
    grid-template-columns:1fr;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:30px;
}

.service-box{
    padding:30px 25px;
}

.service-box h3{
    font-size:22px;
}

.service-box .icon{
    width:65px;
    height:65px;
    font-size:26px;
}

}

.container-form{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.contact-section{
    padding:100px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


.contact-info{
    background:linear-gradient(135deg,#E85318,#E85318);
    color:#ffffff;
    padding:60px;
}

.subtitle{
    color:#ffd166;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.contact-info h2{
    font-size:42px;
    margin:15px 0 20px;
}

.contact-info p{
    line-height:1.8;
    opacity:.9;
}

.info-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:35px;
}

.icon{
    width:60px;
    height:60px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}



.contact-form{
    padding:60px;
}

.contact-form form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    width:100%;
}

.full{
    grid-column:1/-1;
}

input,
textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

input:focus,
textarea:focus{
    border-color:#E85318;
    box-shadow:0 0 0 3px rgba(0,68,120,.12);
}

textarea{
    resize:none;
}

button{
    grid-column:1/-1;
    padding:16px;
    background:#E85318;
    color:#fff;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

button:hover{
    background:#ff7a00;
}

/* Responsive */

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-info,
.contact-form{
    padding:40px;
}

.contact-info h2{
    font-size:32px;
}

.contact-form form{
    grid-template-columns:1fr;
}

.full,
button{
    grid-column:auto;
}

}







.why-us-section{
    padding:120px 0;
    background:linear-gradient(135deg,#f8fbff,#eef8ff);
    position:relative;
    overflow:hidden;
}

.why-us-section::before,
.why-us-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    animation:blobMove 12s infinite alternate ease-in-out;
}

.why-us-section::before{
    width:320px;
    height:320px;
    background:#E85318;
    top:-100px;
    left:-100px;
}

.why-us-section::after{
    width:280px;
    height:280px;
    background:#ff8fb5;
    right:-80px;
    bottom:-80px;
}

@keyframes blobMove{

0%{
transform:translateY(0) scale(1);
}

100%{
transform:translateY(80px) scale(1.3);
}

}

/* ===== HEADER ===== */

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header h2{
    font-size:48px;
    color:#1e293b;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

/* ===== GRID ===== */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:35px;
}

/* ===== CARD ===== */

.feature-card{

    position:relative;

    padding:45px 35px;

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:30px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

/* Animated Border */

.feature-card::before{

content:"";

position:absolute;

inset:-2px;

background:linear-gradient(
45deg,
#00d4ff,
#7b61ff,
#ff4d94,
#00d4ff
);

background-size:400%;

z-index:-2;

border-radius:30px;

animation:borderMove 6s linear infinite;

}

.feature-card::after{

content:"";

position:absolute;

inset:2px;

background:white;

border-radius:28px;

z-index:-1;

}

@keyframes borderMove{

0%{
background-position:0%;
}

100%{
background-position:400%;
}

}

.feature-card:hover{

transform:translateY(-18px) rotateX(5deg);

box-shadow:0 40px 80px rgba(0,0,0,.18);

}

/* ===== ICON ===== */

.icon-wrapper{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#00c6ff,#E85318);

display:flex;

justify-content:center;

align-items:center;

font-size:36px;

color:white;

margin-bottom:30px;

position:relative;

animation:float 4s infinite ease-in-out;

}

.icon-wrapper::before{

content:"";

position:absolute;

width:110px;

height:110px;

border-radius:50%;

border:2px dashed rgba(0,114,255,.25);

animation:spin 10s linear infinite;

}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}

@keyframes float{

50%{
transform:translateY(-10px);
}

}

/* ===== TEXT ===== */

.feature-card h3{

font-size:25px;

margin-bottom:15px;

text-align:center;

color:#1f2937;

}

.feature-card p{

text-align:center;

color:#64748b;

line-height:1.9;

}

/* ===== STATS ===== */

.stats-bar{

margin-top:90px;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-item{

background:white;

padding:35px;

text-align:center;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.stat-item:hover{

background:#0ea5e9;

color:white;

transform:translateY(-10px);

}

.stat-item h3{

font-size:44px;

font-weight:700;

display:inline-block;

}

.plus{

font-size:32px;

font-weight:bold;

}

/* ===== SCROLL ===== */

.animated-element{

opacity:0;

transform:translateY(80px);

transition:1s cubic-bezier(.22,1,.36,1);

}

.visible{

opacity:1;

transform:none;

}

/* ===== MOBILE ===== */

@media(max-width:992px){

.stats-bar{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

.stats-bar{

grid-template-columns:1fr;

}

.section-header h2{

font-size:34px;

}

}




.blogs-section{
    padding:30px!important;
    background:#f8fbff;
}

.container-new{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#E85318;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    color:#01336B;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.category{
    position:absolute;
    top:20px;
    left:20px;
    background:#E85318;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.blog-content{
    padding:30px;
}

.date{
    color:#888;
    font-size:14px;
}

.date i{
    color:#E85318;
    margin-right:5px;
}

.blog-content h3{
    margin:18px 0;
    font-size:24px;
    line-height:1.5;
}

.blog-content h3 a{
    color:#01336B;
    text-decoration:none;
    transition:.3s;
}

.blog-content h3 a:hover{
    color:#E85318;
}

.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.read-btn{
    color:#E85318;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.read-btn:hover{
    color:#01336B;
}

.blog-btn{
    text-align:center;
    margin-top:60px;
}

.theme-btn{
    display:inline-block;
    background:#E85318;
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:#E85318;
}



@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    font-size:21px;
}

}




/*=====================================
            FAQ SECTION
======================================*/

.faq-section{
    padding:50px 0;
    background:#f8fbff;
}

.container-design{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Section Title */

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    padding:8px 20px;
    background:#ffe8ef;
    color:#E85318;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    margin:18px 0 15px;
    font-size:42px;
    color:#1f2937;
    font-weight:700;
}

.section-title p{
    color:#6b7280;
    line-height:1.8;
}

/* FAQ Grid */

.faq-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* FAQ Card */

.faq-item{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
}

.faq-item:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 25px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#222;
}

.faq-question span{
    padding-right:15px;
}

.faq-question i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#E85318;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    flex-shrink:0;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    background:#E85318;
}

/* Answer */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

/* Responsive */

@media(max-width:991px){

.faq-wrapper{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:576px){

.faq-section{
    padding:30px 0;
}

.section-title h2{
    font-size:28px;
}

.faq-question{
    padding:18px;
    font-size:16px;
}

.faq-question i{
    width:34px;
    height:34px;
}

.faq-answer p{
    padding:0 18px 18px;
}

}









.callback-form{
    margin-top:20px;
}

.callback-form .form-group{
    margin-bottom:15px;
}

.callback-form input{
    width:100%;
    height:50px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.08);
    color:#fff;
    border-radius:8px;
    padding:0 15px;
    outline:none;
    transition:.3s;
    font-size:15px;
}

.callback-form input::placeholder{
    color:rgba(255,255,255,.75);
}

.callback-form input:focus{
    border-color:#E85318;
    background:rgba(255,255,255,.12);
}

.callback-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:8px;
    background:#E85318;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.callback-btn:hover{
    background:#ffffff;
    color:#E85318;
    transform:translateY(-2px);
}



.about-section{
    padding:100px 0;
    background:#fff;
}



.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* Image */

.image-box{
    position:relative;
}

.image-box img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    left:-20px;
    bottom:30px;
    background: #E85318 !important;
    color:#fff;
    padding:25px 30px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(233,30,99,.3);
}

.experience-box h3{
    font-size:42px;
    margin-bottom:5px;
}

.experience-box span{
    font-size:15px;
}

/* Content */

.sub-title{
    display:inline-block;
    padding:8px 18px;
    background:#ffe6f0;
    color:#E85318;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}

.about-content h2{
    font-size:42px;
    margin:20px 0;
    color:#222;
    line-height:1.3;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/* List */

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.list-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.list-item i{
    color:#E85318;
    font-size:18px;
}

/* Button */

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background: #E85318;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.about-btn:hover{
    background:#0d6efd;
}

.about-btn i{
    transition:.35s;
}

.about-btn:hover i{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:992px){

.about-wrapper{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:34px;
}

.about-list{
    grid-template-columns:1fr;
}

.experience-box{
    left:20px;
}

}

@media(max-width:576px){

.about-section{
    padding:70px 0;
}

.about-content h2{
    font-size:28px;
}

.experience-box{
    padding:18px 20px;
}

.experience-box h3{
    font-size:30px;
}

}





.about-hero{

    padding:120px 0;

    background:linear-gradient(135deg,#fff7fb,#eef7ff);

    overflow:hidden;

    position:relative;

}

.about-hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:#ffd9e8;

border-radius:50%;

top:-250px;

right:-150px;

filter:blur(100px);

opacity:.5;

}



.breadcrumb{

margin-bottom:40px;

font-size:15px;

}

.breadcrumb a{

color:#666;

text-decoration:none;

}

.breadcrumb span{

margin:0 6px;

color:#999;

}

.about-hero-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

}

.hero-subtitle{

display:inline-block;

padding:8px 18px;

background:#ffe8ef;

color:#E85318;

border-radius:30px;

font-weight:700;

margin-bottom:20px;

}

.about-left h1{

font-size:58px;

line-height:1.15;

margin-bottom:25px;

color:#1f2937;

}

.about-left h1 span{

display:block;

color:#E85318;

}

.about-left p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.hero-btns{

display:flex;

gap:20px;

margin-bottom:40px;

}

.btn-primary{

background:#E85318;

color:#fff;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.btn-primary:hover{

background:#0d6efd;

}

.btn-outline{

border:2px solid #E85318;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

color:#E85318;

font-weight:600;

transition:.35s;

}

.btn-outline:hover{

background:#E85318;

color:#fff;

}

.hero-features{

display:flex;

gap:35px;

flex-wrap:wrap;

}

.hero-features div{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

}

.hero-features i{

width:50px;

height:50px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#E85318;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.about-right{

position:relative;

}

.about-right img{

width:100%;

border-radius:30px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.experience-card{

position:absolute;

bottom:30px;

left:-30px;

background:#fff;

padding:25px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

text-align:center;

}

.experience-card h2{

font-size:48px;

color:#E85318;

}

.experience-card p{

font-weight:600;

color:#444;

}

/* Animation */

.reveal-left,
.reveal-right{

opacity:0;

transition:1s ease;

}

.reveal-left{

transform:translateX(-80px);

}

.reveal-right{

transform:translateX(80px);

}

.show{

opacity:1;

transform:none;

}

@media(max-width:992px){

.about-hero-wrapper{

grid-template-columns:1fr;

}

.about-left{

text-align:center;

}

.hero-btns{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.about-left h1{

font-size:42px;

}

.experience-card{

left:20px;

bottom:20px;

}

}

@media(max-width:576px){

.about-hero{

padding:80px 0;

}

.about-left h1{

font-size:32px;

}

.hero-btns{

flex-direction:column;

}

.btn-primary,
.btn-outline{

width:100%;

text-align:center;

}

}




.pg-hero{
    position:relative;
    width:100%;
    height:420px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.pg-hero__overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.70),
        rgba(0,0,0,.45)
    );
}

.pg-hero__wrapper{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.pg-hero__content{
    color:#fff;
}

.pg-hero__subtitle{
    display:inline-block;
    background:#E85318;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
    font-size:15px;
}

.pg-hero__title{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.pg-hero__breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    list-style:none;
}

.pg-hero__breadcrumb li{
    color:#fff;
    font-size:16px;
}

.pg-hero__breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.pg-hero__breadcrumb a:hover{
    color:#E85318;
}

.pg-hero__breadcrumb i{
    color:#E85318;
    font-size:13px;
}

@media(max-width:768px){

.pg-hero{
    height:300px;
}

.pg-hero__title{
    font-size:40px;
}

.pg-hero__breadcrumb{
    flex-wrap:wrap;
    gap:8px;
}

}



.container-ab{
width:90%;
max-width:1200px;
margin:auto;
}

.mission-vision{

padding:100px 0;

}

.section-title{

text-align:center;
max-width:750px;
margin:auto;
margin-bottom:70px;

}

.section-title span{

color:#E85318;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;

}

.section-title h2{

font-size:46px;
margin:15px 0;
color:#E85318;

}

.section-title p{

color:#666;
line-height:1.9;

}

.mv-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;

}

.mv-card{

background:#fff;
padding:50px 40px;
border-radius:25px;
position:relative;
overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.5s;

opacity:0;
transform:translateY(60px);

}

.mv-card::before{

content:"";
position:absolute;

top:0;
left:0;

width:100%;
height:5px;

background:linear-gradient(90deg,#13A89E,#E85318);

transform:scaleX(0);

transition:.5s;

transform-origin:left;

}

.mv-card:hover::before{

transform:scaleX(1);

}

.mv-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.icon{

width:80px;
height:80px;

background:linear-gradient(135deg,#13A89E,#E85318);

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:34px;
color:#fff;

margin-bottom:30px;

transition:.5s;

}

.mv-card:hover .icon{

transform:rotateY(180deg);

}

.mv-card h3{

font-size:30px;
color:#E85318;
margin-bottom:20px;

}

.mv-card p{

color:#666;
line-height:1.9;

}

.reveal.active{

opacity:1;

transform:translateY(0);

transition:1s ease;

}

/* Responsive */

@media(max-width:991px){

.mv-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

}

@media(max-width:576px){

.mv-card{

padding:35px 25px;

}

.section-title h2{

font-size:30px;

}

}


.sd-contact-form{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.sd-contact-form h3{
    font-size:26px;
    margin-bottom:10px;
    color:#E85318;
}

.sd-contact-form p{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.sd-form-group{
    margin-bottom:18px;
}

.sd-form-group input,
.sd-form-group select,
.sd-form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:.3s;
    font-family:inherit;
    resize:none;
}

.sd-form-group input:focus,
.sd-form-group select:focus,
.sd-form-group textarea:focus{
    border-color:#0F172A;
    box-shadow:0 0 0 3px rgba(179,147,89,.15);
}

.sd-submit-btn{
    width:100%;
    background:#E85318;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.sd-submit-btn:hover{
    background:#0F172A;
}

.sd-content h3{
    font-size:24px;
    color:#01336B;
    margin:35px 0 18px;
    font-weight:700;
}

.sd-content ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px 20px;
}

.sd-content ul li{
    position:relative;
    padding:14px 18px 14px 50px;
    background:#f8fbff;
    border:1px solid #e8eef7;
    border-radius:10px;
    font-size:16px;
    font-weight:500;
    color:#555;
    line-height:1.6;
    transition:all .3s ease;
}

.sd-content ul li::before{
    content:"\f058";
   
    font-weight:900;
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#F46318 !important;
    font-size:18px;
}

.sd-content ul li:hover{
    background:#01336B;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(1,51,107,.15);
}

.sd-content ul li:hover::before{
    color:#fff;
}

@media(max-width:768px){
    .sd-content ul{
        grid-template-columns:1fr;
    }

    .sd-content ul li{
        font-size:15px;
    }
}



.sd-checklist{
    margin-top:50px;
}

.sd-checklist ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sd-checklist li{
    position:relative;
    padding:15px 0 15px 35px;
    border-bottom:1px solid #eee;
}

.sd-checklist li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:16px;
    color:#E85318;
    font-size:18px;
}





