body{
    background:#f7f9fc;
}

.custom-nav{
    padding:20px 0;
    background:transparent;
}

.custom-nav .container{
    background:#fff;
    border-radius:60px;
    padding:12px 30px;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

.navbar-brand img{
    height:55px;
}

.nav-box{
    gap:10px;
}

.nav-link{
    color:#1d3557;
    font-weight:600;
    padding:12px 18px !important;
    border-radius:30px;
    transition:.35s;
}

.nav-link:hover,
.nav-link.active{
    background:#eef6ff;
    color:#ff7a00;
}

.dropdown-menu{
    border:none;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    padding:12px;
}

.dropdown-item{
    border-radius:12px;
    padding:10px 15px;
    transition:.3s;
}

.dropdown-item:hover{
    background:#f3f8ff;
    color:#ff7a00;
}

.quote-btn{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    text-decoration:none;
    padding:13px 24px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.quote-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 12px 25px rgba(255,122,0,.3);
}
.custom-nav{
    border:1px solid; #000;
}
@media(max-width:991px){

.custom-nav .container{
    border-radius:20px;
    padding:15px;
}

.nav-box{
    margin-top:15px;
}

.quote-btn{
    display:block;
    text-align:center;
    margin-top:15px;
}

}.topbar{
    background:#0d3b66;
    color:#fff;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    flex-wrap:wrap;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.topbar a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.topbar a:hover{
    color:#ff9800;
}

.topbar i{
    color:#ff9800;
    margin-right:6px;
}

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:34px;
    height:34px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff9800;
    color:#fff;
}

@media(max-width:991px){

.topbar .container{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

.topbar-left,
.topbar-right{
    flex-direction:column;
    gap:8px;
}

}

@media(max-width:576px){

.topbar{
    font-size:13px;
}

.social-icons{
    justify-content:center;
}

}.notice-bar{
    width:100%;
    background:#f8f9fa;
    border-top:1px solid #e9ecef;
    border-bottom:1px solid #e9ecef;
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
}

.notice-track{
    display:inline-block;
    padding-left:100%;
    animation:marqueeMove 25s linear infinite;
}

.notice-track span{
    display:inline-block;
    color:#0d3b66;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
}

.notice-track:hover{
    animation-play-state:paused;
}

@keyframes marqueeMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-100%);
    }

}

@media(max-width:768px){

.notice-bar{
    padding:8px 0;
}

.notice-track span{
    font-size:13px;
}

}.hero-section{
    padding:50px 0;
    background:linear-gradient(135deg,#eef6ff,#ffffff);
}

.hero-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-content{
    width:55%;
}

.hero-tag{
    display:inline-block;
    background:#0056d6;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
}

.hero-tag i{
    margin-right:8px;
}

.hero-content h1{
    font-size:58px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#ff6600;
}

.hero-content p{
    color:#666;
    line-height:30px;
    margin-bottom:30px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature-box{
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box i{
    color:#ff6600;
    margin-right:8px;
}

.hero-btns{
    display:flex;
    gap:15px;
}

.btn-orange,
.btn-blue{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
}

.btn-orange{
    background:#ff6600;
}

.btn-blue{
    background:#0056d6;
}

.hero-form{
    width:420px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.hero-form h3{
    text-align:center;
    margin-bottom:20px;
}

.hero-form input,
.hero-form select{
    width:100%;
    height:52px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
}

.hero-form button{
    width:100%;
    height:52px;
    background:#ff6600;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

@media(max-width:991px){

.hero-row{
flex-direction:column;
}

.hero-content{
width:100%;
text-align:center;
}

.hero-form{
width:100%;
}

.hero-features{
grid-template-columns:1fr;
}

.hero-btns{
justify-content:center;
}

.hero-content h1{
font-size:42px;
}

}.hero-title{
    font-size:60px;
    font-weight:700;
    min-height:80px;
}

#typing{
    color:#ff6600;
}

.typed-cursor{
    color:#ff6600;
    font-size:60px;
}/*=============================
 Premium Marquee
==============================*/

.premium-marquee{
    padding:70px 0;
    background:#f5f8fc;
}

.pm-wrapper{

    width:92%;
    max-width:1350px;
    margin:auto;

    display:flex;
    align-items:center;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.8);

    border-radius:70px;

    box-shadow:
    0 15px 45px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.8);

    overflow:hidden;

    position:relative;

}

.pm-wrapper::before{

    content:"";

    position:absolute;

    left:-120px;
    top:0;

    width:120px;
    height:100%;

    background:linear-gradient(90deg,#ffffff,transparent);

    z-index:3;

}

.pm-wrapper::after{

    content:"";

    position:absolute;

    right:-120px;
    top:0;

    width:120px;
    height:100%;

    background:linear-gradient(270deg,#ffffff,transparent);

    z-index:3;

}

.pm-badge{

    min-width:280px;

    background:linear-gradient(135deg,#0D6EFD,#003C8F);

    color:#fff;

    font-size:20px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:26px;

    z-index:5;

    box-shadow:8px 0 25px rgba(13,110,253,.35);

}

.pm-badge i{

    width:55px;
    height:55px;

    border-radius:50%;

    background:#fff;

    color:#0D6EFD;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

}

.pm-track{

    flex:1;

    overflow:hidden;

    white-space:nowrap;

}

.pm-content{

    display:inline-flex;

    align-items:center;

    animation:premiumMove 26s linear infinite;

}

.pm-content span{

    margin:22px;

    padding:14px 28px;

    border-radius:50px;

    background:#fff;

    color:#003C8F;

    font-size:15px;

    font-weight:600;

    border:1px solid #eef2f8;

    box-shadow:
    0 8px 25px rgba(0,0,0,.07);

    transition:.4s;

}

.pm-content span:hover{

    background:#0D6EFD;

    color:#fff;

    transform:translateY(-5px);

}

.pm-track:hover .pm-content{

    animation-play-state:paused;

}

@keyframes premiumMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}


/*==========================
 Responsive
===========================*/

@media(max-width:991px){

.pm-wrapper{

flex-direction:column;

border-radius:25px;

}

.pm-badge{

width:100%;

min-width:100%;

padding:18px;

font-size:18px;

}

.pm-content span{

font-size:14px;

padding:12px 18px;

margin:15px;

}

}

@media(max-width:576px){

.premium-marquee{

padding:40px 0;

}

.pm-content{

animation-duration:18s;

}

.pm-content span{

font-size:13px;

margin:10px;

padding:10px 15px;

}

}.acc-about{
    padding:100px 0;
    background:#f7f9fc;
}

.about-image-area{
    position:relative;
}

.main-img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    left:-20px;
    bottom:40px;
    width:170px;
    background:#0d6efd;
    color:#fff;
    text-align:center;
    padding:25px;
    border-radius:18px;
    animation:float 3s ease-in-out infinite;
}

.experience-box h2{
    font-size:48px;
    margin:0;
    font-weight:700;
}

.experience-box span{
    font-size:16px;
}

.delivery-box{
    position:absolute;
    right:-20px;
    top:40px;
    background:#fff;
    padding:18px 25px;
    border-radius:15px;
    font-weight:600;
    color:#0d6efd;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    animation:float2 4s ease-in-out infinite;
}

.about-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#e8f1ff;
    color:#0d6efd;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.about-content h2{
    font-size:46px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
    line-height:1.3;
}

.about-content h2 span{
    color:#0d6efd;
}

.about-content p{
    color:#666;
    font-size:17px;
    line-height:30px;
    margin-bottom:35px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.feature-box{
    background:#fff;
    padding:18px 20px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    font-weight:600;
    transition:.4s;
}

.feature-box:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-6px);
}

.about-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-main{
    background:#0d6efd;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.btn-main:hover{
    background:#003b91;
    color:#fff;
}

.btn-call{
    background:#fff;
    color:#111;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.btn-call:hover{
    background:#0d6efd;
    color:#fff;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes float2{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(15px);
    }
}

@media(max-width:991px){

.acc-about{
    padding:70px 0;
}

.about-image-area{
    margin-bottom:50px;
}

.about-content h2{
    font-size:34px;
}

.about-features{
    grid-template-columns:1fr;
}

.experience-box{
    left:15px;
    bottom:15px;
}

.delivery-box{
    right:15px;
    top:15px;
}

}

@media(max-width:576px){

.about-content h2{
    font-size:28px;
}

.about-content p{
    font-size:15px;
    line-height:28px;
}

.btn-main,
.btn-call{
    width:100%;
    text-align:center;
}

}.acc-about{
    position:relative;
    padding:110px 0;
    overflow:hidden;

    background:
    linear-gradient(135deg,#f8fbff 0%,#eef6ff 45%,#ffffff 100%);
}

/* Light Grid Pattern */

.acc-about::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(13,110,253,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(13,110,253,.05) 1px,transparent 1px);

    background-size:50px 50px;

    opacity:.5;

    z-index:0;
}

/* Floating Blur */

.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    animation:float 10s ease-in-out infinite;
}

.circle1{
    width:280px;
    height:280px;
    background:#4da3ff;
    top:-80px;
    left:-80px;
    opacity:.25;
}

.circle2{
    width:350px;
    height:350px;
    background:#9ecbff;
    right:-100px;
    bottom:-100px;
    opacity:.25;
    animation-delay:2s;
}

.circle3{
    width:180px;
    height:180px;
    background:#0d6efd;
    top:40%;
    right:25%;
    opacity:.12;
    animation-delay:4s;
}

.container{
    position:relative;
    z-index:2;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-40px) translateX(20px);
}

100%{
transform:translateY(0px);
}

}.about-image-area{
    position:relative;
    padding:18px;
    border-radius:30px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(15px);

    box-shadow:
    0 25px 70px rgba(0,0,0,.08);

    border:1px solid rgba(255,255,255,.8);
}

.about-image-area::before{

content:"";

position:absolute;

inset:-3px;

border-radius:30px;

background:linear-gradient(135deg,#0d6efd,#5ba9ff,#ffffff,#0d6efd);

background-size:300%;

z-index:-1;

animation:borderMove 6s linear infinite;

}

@keyframes borderMove{

0%{
background-position:0%;
}

100%{
background-position:300%;
}

}.acc-why-choose{
    padding:90px 0;
    background:#f8fbff;
    position:relative;
}

.acc-heading{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.acc-heading span{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
}

.acc-heading h2{
    font-size:42px;
    font-weight:700;
    color:#0d1b2a;
    margin-bottom:18px;
}

.acc-heading p{
    color:#666;
    line-height:28px;
    font-size:17px;
}

.acc-choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.acc-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.acc-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:#ff7a00;
    transition:.4s;
}

.acc-card:hover::before{
    left:0;
}

.acc-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.acc-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:22px;
    background:#eef6ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    transition:.4s;
}

.acc-card:hover .acc-icon{
    background:#0d6efd;
    color:#fff;
    transform:rotateY(360deg);
}

.acc-card h4{
    font-size:22px;
    margin-bottom:12px;
    color:#0d1b2a;
    font-weight:700;
}

.acc-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

.acc-choose-grid{
grid-template-columns:repeat(2,1fr);
}

.acc-heading h2{
font-size:34px;
}

}

@media(max-width:767px){

.acc-why-choose{
padding:60px 0;
}

.acc-choose-grid{
grid-template-columns:1fr;
}

.acc-heading h2{
font-size:28px;
}

.acc-card{
padding:30px 25px;
}

}/*==============================
   SERVICES SECTION
==============================*/

.acc-services{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,#dcecff 0%,transparent 30%),
        radial-gradient(circle at bottom right,#ffe8d4 0%,transparent 30%),
        linear-gradient(135deg,#f7fbff,#ffffff);
}

/* Floating Background Circle */
.acc-services::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(13,110,253,.06);
    border-radius:50%;
    top:-160px;
    left:-140px;
    filter:blur(10px);
    animation:floatOne 10s ease-in-out infinite;
}

/* Floating Background Circle */
.acc-services::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,122,0,.08);
    border-radius:50%;
    bottom:-120px;
    right:-100px;
    filter:blur(10px);
    animation:floatTwo 12s ease-in-out infinite;
}

.acc-services .container{
    position:relative;
    z-index:2;
}

/*==============================
   TITLE
==============================*/

.service-title{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:65px;
}

.service-title span{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:#0d6efd;
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.service-title h2{
    font-size:44px;
    font-weight:700;
    color:#1d3557;
    margin-bottom:18px;
}

.service-title p{
    color:#6c757d;
    line-height:28px;
    font-size:17px;
}

/*==============================
   GRID
==============================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/*==============================
   CARD
==============================*/

.service-box{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:35px;
    border-radius:20px;
    background:#fff;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 35px rgba(0,0,0,.07);
    transition:.45s ease;
}

/* Decorative Circle */

.service-box::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(13,110,253,.30);
    right:-40px;
    top:-40px;
    transition:.5s;
}

/* Decorative Line */

.service-box::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#ff7a00;
    transition:.4s;
}

.service-box:hover::after{
    width:100%;
}

.service-box:hover::before{
    transform:scale(1.6);
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/*==============================
   ICON
==============================*/

.service-icon{
    width:85px;
    height:85px;
    min-width:85px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    background:#eef5ff;
    color:#0d6efd;
    transition:.5s;
}

.service-box:hover .service-icon{
    background:#0d6efd;
    color:#fff;
    transform:rotate(10deg) scale(1.1);
}

/*==============================
   CONTENT
==============================*/

.service-content h3{
    font-size:24px;
    color:#1d3557;
    margin-bottom:12px;
    font-weight:700;
}

.service-content p{
    color:#6c757d;
    line-height:28px;
    margin-bottom:18px;
}

.service-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#ff7a00;
    font-weight:600;
    transition:.3s;
}

.service-content a:hover{
    color:#0d6efd;
    transform:translateX(6px);
}

/*==============================
   ANIMATION
==============================*/

@keyframes floatOne{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(30px);
}

100%{
transform:translateY(0px);
}

}

@keyframes floatTwo{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-30px);
}

100%{
transform:translateY(0px);
}

}

/*==============================
   TABLET
==============================*/

@media(max-width:991px){

.service-grid{
grid-template-columns:1fr;
}

.service-title h2{
font-size:36px;
}

}

/*==============================
   MOBILE
==============================*/

@media(max-width:767px){

.acc-services{
padding:70px 0;
}

.service-title{
margin-bottom:45px;
}

.service-title h2{
font-size:30px;
}

.service-box{
flex-direction:column;
align-items:center;
text-align:center;
padding:30px 25px;
}

.service-icon{
margin-bottom:10px;
}

.service-content h3{
font-size:22px;
}

}/*==========================
 WORK PROCESS
===========================*/

.work-process{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:linear-gradient(135deg,#0b1f4d,#123b8f);
}

/* Orange Glow */

.work-process::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,136,0,.18);
    border-radius:50%;
    top:-180px;
    left:-120px;
    filter:blur(30px);
    animation:float1 8s ease-in-out infinite;
}

/* Blue Glow */

.work-process::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(25px);
    animation:float2 10s ease-in-out infinite;
}

.work-process .container{
    position:relative;
    z-index:2;
}

/* Heading */

.process-heading{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
}

.process-heading span{
    display:inline-block;
    padding:8px 22px;
    background:#ff8c00;
    color:#fff;
    border-radius:40px;
    font-weight:600;
    margin-bottom:15px;
}

.process-heading h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
}

.process-heading p{
    color:#d8e3ff;
    line-height:28px;
}

/* Cards */

.process-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
}

.process-card{
    flex:1;
    min-width:240px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
    position:relative;
}

.process-card:hover{
    transform:translateY(-10px);
    background:#fff;
}

.process-card:hover h3,
.process-card:hover p{
    color:#222;
}

.step-no{
    position:absolute;
    top:15px;
    right:18px;
    font-size:45px;
    font-weight:800;
    color:rgba(255,255,255,.08);
}

.process-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#ff8c00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;
}

.process-card:hover .process-icon{
    transform:rotateY(360deg);
    background:#0d6efd;
}

.process-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.process-card p{
    color:#dbe5ff;
    line-height:28px;
}

/* Arrow */

.process-arrow{
    color:#ffb347;
    font-size:35px;
    animation:moveArrow 1.5s infinite;
}

/* Animation */

@keyframes moveArrow{

50%{
transform:translateX(10px);
}

}

@keyframes float1{

50%{
transform:translateY(40px);
}

}

@keyframes float2{

50%{
transform:translateY(-40px);
}

}

/* Responsive */

@media(max-width:992px){

.process-row{
flex-direction:column;
}

.process-arrow{
transform:rotate(90deg);
}

.process-heading h2{
font-size:34px;
}

}

@media(max-width:768px){

.work-process{
padding:70px 0;
}

.process-heading h2{
font-size:28px;
}

.process-card{
padding:35px 20px;
}

}







/*==========================
   TOP MARQUEE BAR
===========================*/

.top-notice-bar{
    position:relative;
    width:100%;
    overflow:hidden;
    background:linear-gradient(90deg,#071952,#0d47a1,#ff7a00,#071952);
    background-size:300% 100%;
    animation:bgMove 8s linear infinite;
    padding:12px 0;
    border-top:2px solid rgba(255,255,255,.15);
    border-bottom:2px solid rgba(255,255,255,.15);
}

.marquee{
    display:flex;
    width:max-content;
    animation:marqueeMove 35s linear infinite;
}

.marquee-content{
    display:flex;
    align-items:center;
}

.marquee-content span{
    position:relative;
    color:#fff;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
    margin:0 35px;
    padding-left:15px;
}

/* Orange Separator */

.marquee-content span::before{
    content:"";
    position:absolute;
    left:-20px;
    top:50%;
    transform:translateY(-50%);
    width:7px;
    height:7px;
    background:#ffb300;
    border-radius:50%;
    box-shadow:0 0 8px #ffb300;
}

.top-notice-bar:hover .marquee{
    animation-play-state:paused;
}

/* Marquee Animation */

@keyframes marqueeMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* Background Animation */

@keyframes bgMove{

0%{
background-position:0% 50%;
}

100%{
background-position:300% 50%;
}

}

/* Mobile */

@media(max-width:768px){

.marquee-content span{
font-size:13px;
margin:0 22px;
}

.top-notice-bar{
padding:10px 0;
}

}/*==========================
MISSION & VISION
==========================*/

.mission-vision-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    color:#0b1f4d;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    line-height:28px;
}

.mv-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
    border-top:5px solid #ff7a00;
}

.vision{
    border-top:5px solid #0d6efd;
}

.mv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.mv-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.vision .mv-icon{
    background:#ff7a00;
}

.mv-card h3{
    font-size:28px;
    color:#0b1f4d;
    margin-bottom:18px;
}

.mv-card p{
    color:#666;
    line-height:30px;
    margin-bottom:25px;
}

.mv-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mv-card ul li{
    margin-bottom:15px;
    font-weight:600;
    color:#333;
}

.mv-card ul li i{
    color:#ff7a00;
    margin-right:10px;
}

.vision ul li i{
    color:#0d6efd;
}

@media(max-width:991px){

.mission-vision-section{
padding:70px 0;
}

.section-title h2{
font-size:34px;
}

.mv-card{
margin-bottom:30px;
}

}

@media(max-width:767px){

.section-title h2{
font-size:28px;
}

.mv-card{
padding:30px;
}

}/*==========================
 CTA SECTION
==========================*/

.cta-section{

    padding:90px 0;

    background:linear-gradient(135deg,#0b1f4d,#0d47a1);

    position:relative;

    overflow:hidden;

}

/* Background Circle */

.cta-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,122,0,.15);

    border-radius:50%;

    top:-150px;

    left:-120px;

    filter:blur(20px);

}

.cta-section::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-80px;

    right:-80px;

}

.section-heading{

    text-align:center;

    color:#fff;

    margin-bottom:60px;

}

.section-heading span{

    display:inline-block;

    background:#ff7a00;

    padding:8px 22px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:44px;

    font-weight:700;

    margin-bottom:15px;

}

.section-heading p{

    color:#d9e4ff;

    max-width:700px;

    margin:auto;

    line-height:30px;

}

.cta-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.cta-box{

    background:#fff;

    padding:35px 20px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;

}

.cta-box:hover::before{

    transform:scaleX(1);

}

.cta-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.cta-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:#eef5ff;

    color:#0d47a1;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:20px;

    transition:.4s;

}

.cta-box:hover .cta-icon{

    background:#ff7a00;

    color:#fff;

    transform:rotateY(360deg);

}

.cta-box h4{

    font-size:24px;

    color:#0b1f4d;

    margin-bottom:10px;

    font-weight:700;

}

.cta-box p{

    color:#666;

    margin:0;

}

/* Responsive */

@media(max-width:991px){

.cta-grid{

grid-template-columns:repeat(2,1fr);

}

.section-heading h2{

font-size:34px;

}

}

@media(max-width:767px){

.cta-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:28px;

}

.section-heading{

margin-bottom:40px;

}

.cta-section{

padding:70px 0;

}

}/*==========================
 ALL INDIA BRANCH
==========================*/

.branch-section{
    padding:90px 0;
    background:#f8fbff;
}

.branch-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.branch-title span{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.branch-title h2{
    font-size:42px;
    color:#0b1f4d;
    font-weight:700;
    margin-bottom:15px;
}

.branch-title p{
    color:#666;
    line-height:28px;
}

.branch-box{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #eef2f7;
}

.branch-box:hover{
    background:#0d6efd;
    transform:translateY(-8px);
}

.branch-box i{
    font-size:38px;
    color:#ff7a00;
    margin-bottom:15px;
    transition:.4s;
}

.branch-box h5{
    font-size:20px;
    font-weight:600;
    color:#0b1f4d;
    margin:0;
    transition:.4s;
}

.branch-box:hover h5,
.branch-box:hover i{
    color:#fff;
}

@media(max-width:768px){

.branch-section{
    padding:70px 0;
}

.branch-title h2{
    font-size:30px;
}

}.counter-section{
    padding:90px 0;
    background:linear-gradient(135deg,#0b1f4d,#0d47a1);
}

.counter-title{
    text-align:center;
    margin-bottom:60px;
}

.counter-title span{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.counter-title h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:20px;
    text-align:center;
    padding:35px 20px;
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:#fff;
}

.counter-box i{
    font-size:45px;
    color:#ff7a00;
    margin-bottom:20px;
}

.counter{
    font-size:45px;
    color:#fff;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box:hover .counter{
    color:#0b1f4d;
}

.counter-box p{
    color:#dbe5ff;
    margin:0;
    font-size:18px;
}

.counter-box:hover p{
    color:#555;
}

@media(max-width:991px){

.counter-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.counter-grid{
grid-template-columns:1fr;
}

.counter-title h2{
font-size:30px;
}

.counter-section{
padding:70px 0;
}

}/* FAQ Section */

.faq-section{
    padding:90px 0;
    background:#f8fbff;
}

.sub-title{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

.accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.accordion-button{
    padding:20px 25px;
    font-size:18px;
    font-weight:600;
    color:#0b1f4d;
    background:#fff;
}

.accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:20px 25px;
    color:#666;
    line-height:30px;
    background:#fff;
}

@media(max-width:768px){

.section-title h2{
font-size:30px;
}

.accordion-button{
font-size:16px;
padding:18px;
}

}.acc-footer{
    background:#081b35;
    color:#d8e2ef;
    padding:70px 0 0;
}

.acc-footer h3,
.acc-footer h4{
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
}

.footer-logo{
    font-size:28px;
}

.footer-logo span{
    color:#ff8c00;
}

.acc-footer p{
    line-height:28px;
    color:#bfc9d6;
}

.acc-footer ul{
    padding:0;
    margin:0;
    list-style:none;
}

.acc-footer ul li{
    margin-bottom:14px;
}

.acc-footer ul li a{
    color:#bfc9d6;
    text-decoration:none;
    transition:.3s;
}

.acc-footer ul li a:hover{
    color:#ff8c00;
    padding-left:8px;
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
}

.footer-contact i{
    width:42px;
    height:42px;
    background:#ff8c00;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.social-links{
    margin-top:25px;
}

.social-links a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#112d55;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.4s;
}

.social-links a:hover{
    background:#ff8c00;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:50px;
    padding:20px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#c8d0db;
}

@media(max-width:768px){

.acc-footer{
    text-align:center;
}

.footer-contact p{
    justify-content:center;
}

.social-links{
    text-align:center;
}

}


.premium-cta{

    padding:80px 0;
    position:relative;

    background:
    linear-gradient(rgba(10,25,55,.90),rgba(10,25,55,.90)),
    url(images/car-bg.jpg);

    background-size:cover;
    background-position:center;
    overflow:hidden;

}

.shape{

    position:absolute;
    border-radius:50%;
    filter:blur(40px);

}

.shape1{

    width:280px;
    height:280px;
    background:#ff7300;
    top:-80px;
    left:-80px;
    opacity:.35;
    animation:float 8s infinite ease-in-out;

}

.shape2{

    width:220px;
    height:220px;
    background:#0d6efd;
    right:-70px;
    bottom:-70px;
    opacity:.30;
    animation:float 7s infinite alternate;

}

.cta-box{

    position:relative;
    z-index:2;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:22px;

    padding:55px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.30);

}

.mini-title{

    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    margin-bottom:18px;
    font-weight:600;

}

.cta-left h2{

    color:#fff;
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;

}

.cta-left h2 span{

    color:#ff9c00;

}

.cta-left p{

    color:#d8d8d8;
    font-size:18px;
    line-height:32px;
    max-width:700px;

}

.call-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:220px;
    height:65px;

    text-decoration:none;

    background:linear-gradient(135deg,#ff9800,#ff5500);

    color:#fff;

    font-size:18px;
    font-weight:700;

    border-radius:60px;

    transition:.4s;

    box-shadow:0 15px 35px rgba(255,140,0,.45);

}

.call-btn:hover{

    transform:translateY(-8px);
    color:#fff;
    box-shadow:0 25px 45px rgba(255,140,0,.60);

}

@keyframes float{

    50%{

        transform:translateY(25px);

    }

}

@media(max-width:991px){

.cta-box{

flex-direction:column;
text-align:center;
padding:40px;

}

.cta-left h2{

font-size:36px;

}

.call-btn{

width:100%;

}

}

@media(max-width:576px){

.cta-left h2{

font-size:28px;

}

.cta-left p{

font-size:16px;
line-height:28px;

}

}.about-sec{
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

.about-img{
    position:relative;
}

.about-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.exp-box{
    position:absolute;
    left:-20px;
    bottom:40px;
    background:#ff7a00;
    color:#fff;
    padding:25px 35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 40px rgba(255,122,0,.35);
}

.exp-box h3{
    font-size:42px;
    margin:0;
    font-weight:800;
}

.exp-box p{
    margin:5px 0 0;
    font-size:15px;
}

.truck-icon{
    position:absolute;
    top:20px;
    right:-20px;
    width:80px;
    height:80px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    animation:float 3s infinite ease-in-out;
    box-shadow:0 10px 30px rgba(13,110,253,.4);
}

.about-content .sub-title{
    display:inline-block;
    background:#ffe8d2;
    color:#ff7300;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.about-content h2{
    font-size:46px;
    font-weight:800;
    color:#0b1f3f;
    margin:20px 0;
    line-height:1.3;
}

.about-content p{
    color:#666;
    font-size:17px;
    line-height:30px;
    margin-bottom:20px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.about-list div{
    background:#fff;
    padding:15px 20px;
    border-radius:12px;
    font-weight:600;
    color:#0b1f3f;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.about-list div:hover{
    transform:translateY(-5px);
}

.about-btn{
    display:inline-block;
    background:linear-gradient(135deg,#ff9800,#ff5c00);
    color:#fff;
    padding:16px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.about-btn:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(255,122,0,.35);
}

@keyframes float{
    50%{
        transform:translateY(-12px);
    }
}

@media(max-width:991px){

.about-sec{
    padding:70px 0;
}

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:34px;
}

.about-list{
    grid-template-columns:1fr;
}

.exp-box{
    left:15px;
}

.truck-icon{
    right:15px;
}

}/*==============================
    Breadcrumb Section
==============================*/

.breadcrumb-section{
    position:relative;
    padding:70px 0;
    background:
    linear-gradient(rgba(8,27,53,.82),rgba(8,27,53,.82)),
    url("images/breadcrumb-bg.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.breadcrumb-section::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,140,0,.18);
    border-radius:50%;
    top:-120px;
    left:-80px;
    filter:blur(30px);
}

.breadcrumb-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-70px;
    bottom:-70px;
    filter:blur(25px);
}

.breadcrumb-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.breadcrumb-tag{
    display:inline-block;
    background:#ff8c00;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.breadcrumb-content h1{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:15px;
}

.breadcrumb-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb-nav li{
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.breadcrumb-nav li a{
    color:#ffb347;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-nav li a:hover{
    color:#fff;
}

.breadcrumb-nav span{
    color:#bdbdbd;
}

/* Responsive */

@media(max-width:768px){

.breadcrumb-section{
    padding:50px 0;
}

.breadcrumb-content h1{
    font-size:32px;
}

.breadcrumb-nav li{
    font-size:14px;
}

}.about-page{
    background:#f8fbff;
}

.about-content h2{
    font-size:40px;
    font-weight:700;
    color:#0b1f3f;
    margin:15px 0;
}

.about-content p{
    color:#666;
    line-height:30px;
    font-size:16px;
}

.sub-title{
    display:inline-block;
    background:#ffe7cf;
    color:#ff7a00;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
}

.service-sidebar{
    background:#fff;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    overflow:hidden;
}

.service-sidebar h4{
    background:#0b1f3f;
    color:#fff;
    padding:18px;
    margin:0;
    text-align:center;
}

.service-sidebar ul{
    margin:0;
    padding:0;
    list-style:none;
}

.service-sidebar ul li{
    border-bottom:1px solid #eee;
}

.service-sidebar ul li:last-child{
    border:none;
}

.service-sidebar ul li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.service-sidebar ul li a:hover{
    background:#ff7a00;
    color:#fff;
    padding-left:30px;
}

.contact-box{
    background:linear-gradient(135deg,#ff8a00,#ff5200);
    color:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
}

.contact-box h5{
    font-size:28px;
    margin-bottom:15px;
}

.contact-box p{
    color:#fff;
}

.contact-btn{
    display:inline-block;
    margin-top:15px;
    background:#fff;
    color:#ff5a00;
    padding:14px 35px;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.contact-btn:hover{
    background:#0b1f3f;
    color:#fff;
}

@media(max-width:991px){

.service-sidebar,
.contact-box{
    margin-top:20px;
}

.about-content h2{
    font-size:32px;
}

}.contact-section{
    padding:90px 0;
    background:#f8fbff;
}

.section-tag{
    display:inline-block;
    background:#ffe7d0;
    color:#ff6b00;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-info h2{
    font-size:42px;
    font-weight:800;
    color:#08203a;
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
    line-height:30px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:18px;
    margin-top:20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.info-box:hover{
    transform:translateX(8px);
}

.info-box i{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#ff9800,#ff5500);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-box h5{
    margin:0;
    font-weight:700;
    color:#08203a;
}

.info-box p{
    margin:5px 0 0;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    color:#08203a;
}

.contact-form .form-control{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:auto;
}

.contact-form .form-control:focus{
    border-color:#ff6b00;
    box-shadow:none;
}

.contact-form button{
    background:linear-gradient(135deg,#ff9800,#ff5500);
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(255,98,0,.35);
}

@media(max-width:991px){

.contact-section{
    padding:70px 0;
}

.contact-info{
    text-align:center;
}

.contact-info h2{
    font-size:34px;
}

.contact-form{
    padding:30px;
}

}