/* CSS Document */

/*==============================
 Top Bar
==============================*/

.top-bar{

    background:#0B1F5C;

    font-size:15px;

}

.top-contact{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-contact a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.top-contact a:hover{

    color:#FFC107;

}

.top-contact i{

    margin-right:8px;

    color:#FFC107;

}

.top-social{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:12px;

}

.top-social a{

    width:36px;

    height:36px;

    border:1px solid rgba(255,255,255,.25);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ffffff;

    transition:.3s;

    font-size:16px;

}

.top-social a:hover{

    background:#FFC107;

    color:#0B1F5C;

    transform:translateY(-3px);

}

/*==============================
 Mobile Responsive
==============================*/

@media(max-width:767px){

.top-contact{

    justify-content:center;

    flex-direction:column;

    gap:8px;

    margin-bottom:12px;

}

.top-social{

    justify-content:center;

}

}


/*==============================
HEADER
==============================*/

.header-area{

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.logo{

    height:70px;

}

/*==============================
NAVBAR
==============================*/

.navbar{

    padding:05px 0;

}

.navbar-nav .nav-item{

    margin:0 6px;

}

.navbar-nav .nav-link{

    color:#0B1F5C;

    font-weight:600;

    font-size:16px;

    position:relative;

    padding:12px 18px;

    transition:.35s;

}

/* Premium Hover */

.navbar-nav .nav-link::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:5px;

    width:0;

    height:3px;

    background:#FFC107;

    border-radius:50px;

    transform:translateX(-50%);

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:#FFC107;

}

.navbar-nav .nav-link:hover::before{

    width:70%;

}

.navbar-nav .active{

    color:#FFC107;

}

/*==============================
Dropdown
==============================*/

.dropdown-menu{

    border:none;

    border-radius:15px;

    min-width:260px;

    padding:12px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    margin-top:0px;

}

.dropdown-item{

    padding:14px 18px;

    border-radius:10px;

    font-weight:500;

    transition:.35s;

}

.dropdown-item i{

    color:#FFC107;

    margin-right:10px;

    width:22px;

}

.dropdown-item:hover{

    background:#0B1F5C;

    color:#fff;

    transform:translateX(6px);

}

/* Hover Open */

@media(min-width:992px){

.dropdown:hover .dropdown-menu{

display:block;

animation:menu .3s ease;

}

}

@keyframes menu{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==============================
Quote Button
==============================*/

.quote-btn{

    background:#FFC107;

    color:#0B1F5C;

    padding:14px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    text-decoration:none;
}



.quote-btn:hover{

    background:#0B1F5C;

    color:#fff;

}

/*==============================
Mobile
==============================*/

.navbar-toggler{

    border:none;

    font-size:34px;

    color:#0B1F5C;

}

.navbar-toggler:focus{

    box-shadow:none;

}

@media(max-width:991px){

.navbar-collapse{

margin-top:20px;

padding:20px;

background:#fff;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.quote-btn{

display:block;

margin-top:20px;

text-align:center;

}

.dropdown-menu{

box-shadow:none;

margin-left:10px;

}

}


/*==================================
Hero Banner
==================================*/

.hero-slider{

    position:relative;

}

.hero-slider .carousel-item{

    height:100%;

}

.hero-slider img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* Overlay */

.hero-slider .carousel-item::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    left:0;

    top:0;


    z-index:1;

}

/* Caption */

.carousel-caption{

    z-index:5;

    left:0;

    right:0;

    bottom:0;

    top:0;

    display:flex;

    align-items:center;

    text-align:left;

}

.hero-content{

    max-width:100px;

}







/* Buttons */

.btn-yellow{

    background:#FFC107;

    color:#0B1F5C;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    margin-right:15px;

    display:inline-block;

    transition:.4s;

}

.btn-yellow:hover{

    background:#fff;

    color:#0B1F5C;

}

.btn-blue{

    background:#0B1F5C;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    border:2px solid #fff;

    display:inline-block;

}

.btn-blue:hover{

    background:#FFC107;

    color:#0B1F5C;

}

/* Controls */

.carousel-control-prev,
.carousel-control-next{

    width:70px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:50px;

    height:50px;

    border-radius:50%;

    background-color:#FFC107;

    background-size:50%;

}

/* Indicators */

.carousel-indicators button{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#fff;

}

.carousel-indicators .active{

    background:#FFC107;

}


/*=========================
Mobile banner Section
==========================*/

/* Mobile Slider */

.mobile-hero-slider{
    margin:0;
    padding:0;
    overflow:hidden;
    background:#fff;
}

.mobile-hero-slider .carousel-item img{
    width:100%;
    height:auto;
    display:block;
    border-radius:0;
}

.mobile-hero-slider .carousel-indicators{
    margin-bottom:8px;
}

.mobile-hero-slider .carousel-indicators button{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#ffc107;
    opacity:.5;
    border:none;
}

.mobile-hero-slider .carousel-indicators .active{
    opacity:1;
    width:28px;
    border-radius:20px;
    background:#0b2f66;
}



/*==================================================
 ABOUT COMPANY SECTION
==================================================*/

.about-company{
    width:100%;
    max-width:100%;
    margin:0 auto;
    padding:40px 30px;
    background:#ffffff;
}

/* Agar Bootstrap Container Use Ho Raha Hai */

.about-company .container{
    width:100%;
    max-width:100% !important;
    padding-left:20px;
    padding-right:20px;
}

/*==================================================
 SECTION HEADING
==================================================*/

.section-heading{
    margin-bottom:35px;
}

.section-heading span{
    display:block;
    color:#FFC107;
    font-size:15px;
    letter-spacing:2px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-heading h1{
    font-size:42px;
    color:#041e3f;
    font-weight:700;
    border-left:6px solid #FFC107;
    padding-left:18px;
    margin:0;
    line-height:1.3;
}

/*==================================================
 ABOUT CONTENT
==================================================*/

.about-content p{
    font-size:17px;
    line-height:32px;
    color:#555;
    text-align:justify;
    margin-bottom:22px;
}

.about-content h3{
    color:#0B1F5C;
    font-size:26px;
    font-weight:700;
    margin:40px 0 18px;
}

/*==================================================
 CONTACT BOX
==================================================*/

.contact-box{
    margin-top:40px;
    background:#F8F9FA;
    border-left:5px solid #FFC107;
    padding:30px;
    border-radius:10px;
    font-size:17px;
    line-height:32px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-box a{
    color:#0B1F5C;
    font-weight:700;
    text-decoration:none;
}

.contact-box a:hover{
    color:#FFC107;
}

/*==================================================
 TABLET
==================================================*/

@media (max-width:991px){

.about-company{
    padding:30px 15px;
}

.section-heading h1{
    font-size:34px;
}

.about-content p{
    font-size:16px;
    line-height:30px;
}

.contact-box{
    padding:20px;
}

}

/*==================================================
 MOBILE
==================================================*/

@media (max-width:576px){

.about-company{
    padding:25px 12px;
}

.section-heading h1{
    font-size:28px;
    padding-left:12px;
}

.section-heading span{
    font-size:13px;
}

.about-content p{
    font-size:15px;
    line-height:28px;
}

.about-content h3{
    font-size:22px;
}

.contact-box{
    font-size:15px;
    line-height:28px;
    padding:18px;
}

}
/*==========================
 Responsive
==========================*/

@media (max-width:1399px){

.about-company{
    max-width:100%;
}

}

@media (max-width:991px){

.about-company{
    padding:0 15px;
}

.section-heading h1{
    font-size:34px;
}

.about-content p{
    font-size:16px;
    line-height:30px;
}

}

/*====================================
Estimated Shifting Cost
====================================*/

.shifting-cost{

    background:#f8f9fa;

}

.shifting-cost .section-title{

    max-width:900px;

    margin:auto;

    margin-bottom:40px;

}

.sub-heading{

    color:#FFC107;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:15px;

}

.shifting-cost h2{

    color:#0B1F5C;

    font-size:42px;

    font-weight:800;

    margin:15px 0;

}

.shifting-cost h2 span{

    color:#FFC107;

}

/*=========================
Table
=========================*/

.cost-table{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.cost-table thead{

    background:#0B1F5C;

}

.cost-table thead th{

    color:#041e3f;

    font-size:18px;

    padding:20px;

    text-align:center;

    border:none;

}

.cost-table tbody td{

    padding:18px;

    text-align:center;

    font-size:17px;

    border:1px solid #ececec;

}

.cost-table tbody tr:nth-child(even){

    background:#FFFDF4;

}

.cost-table tbody tr:hover{

    background:#FFF3CD;

    transition:.3s;

}

.cost-table tbody td:first-child{

    font-weight:700;

    color:#0B1F5C;

}

/*=========================
Bottom Note
=========================*/

.price-note{

    margin-top:30px; margin-bottom:20px;

    background:#fff;

    border-left:5px solid #FFC107;

    padding:25px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.price-note h4{

    color:#0B1F5C;

    margin-bottom:10px;

    font-weight:700;

}

.price-note p{

    margin:0;

    line-height:30px;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.shifting-cost h2{

font-size:32px;

}

.cost-table thead th{

font-size:16px;

padding:14px;

}

.cost-table tbody td{

font-size:15px;

padding:14px;

}

}

/*====================================
Why Noida Packers
====================================*/

.why-noida-packers{
    background:#0B1F5C;
    position:relative;
    overflow:hidden;
    padding:80px 0;

}

/* Decorative Shapes */

.why-noida-packers::before{


    position:absolute;

    width:280px;
    height:280px;

    background:rgba(255,193,7,.08);

    border-radius:50%;

    top:-120px;
    right:-80px;

}

.why-noida-packers::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    bottom:-80px;
    left:-60px;

}

/* Heading */

.section-heading{
    color:#FFC107;
    position:relative;
    z-index:2;
    margin-bottom:45px;

}

.section-heading span{

    color:#FFC107;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-heading h2{

    color:#ffffff;

    font-size:42px;

    font-weight:800;

    margin-top:12px;

}

.section-heading h2 span{

    color:#FFC107;

}

/* Content Box */

.content-box{

    position:relative;

    z-index:2;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.15);

    border-left:6px solid #FFC107;

    border-radius:18px;

    padding:45px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

/* Paragraph */

.content-box p{

    color:#000;

    font-size:17px;

    line-height:32px;

    text-align:justify;

    margin-bottom:22px;

}

/* Strong */

.content-box strong{

    color:#FFC107;

    font-weight:700;

}


/*==================================
Office Gallery Marquee
==================================*/

.office-gallery{

    background:#F7F9FC;

    overflow:hidden;

}

.office-gallery h2{

    color:#0B1F5C;

    font-size:42px;

    font-weight:800;

}

.office-gallery .sub-heading{

    color:#FFC107;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.office-gallery p{

    max-width:850px;

    margin:auto;

    color:#666;

}

.marquee-wrapper{

    overflow:hidden;

    width:100%;

    position:relative;

}

.marquee-content{

    display:flex;

    width:max-content;

    animation:scrollLeft 35s linear infinite;

}

.marquee-wrapper:hover .marquee-content{

    animation-play-state:paused;

}

.office-box{

    flex:0 0 350px;

    margin:0 15px;

}

.office-box img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:16px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.4s;

}

.office-box img:hover{

    transform:scale(1.05);

}

@keyframes scrollLeft{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.office-gallery h2{

font-size:30px;

}

.office-box{

flex:0 0 280px;

}

.office-box img{

height:200px;

}

}


/*==================================
Why Choose Us
==================================*/

.why-choose-us{

    background:#0B1F5C;

}

.why-choose-us .section-title{

    max-width:850px;

    margin:auto;

}

.why-choose-us .sub-title{

    color:#FFC107;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.why-choose-us h2{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin:15px 0;

}

.why-choose-us h2 span{

    color:#FFC107;

}

.why-choose-us p{

    color:#d9d9d9;

    line-height:30px;

}

/*=========================*/

.choose-box{

    background:#ffffff;

    padding:35px;

    border-radius:15px;

    text-align:center;

    height:100%;

    transition:.4s;

    border-bottom:4px solid transparent;

}

.choose-box:hover{

    transform:translateY(-8px);

    border-color:#FFC107;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.choose-box .icon{

    width:75px;

    height:75px;

    margin:auto;

    background:#FFC107;

    color:#0B1F5C;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:20px;

}

.choose-box h3{

    color:#0B1F5C;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.choose-box p{

    color:#666;

    font-size:16px;

    line-height:28px;

}

@media(max-width:991px){

.why-choose-us h2{

    font-size:32px;

}

.choose-box{

    padding:25px;

}

}


/*==================================
Real Gallery
==================================*/

.real-gallery{

    background:#F8FAFD;

}

.real-gallery .section-title{

    max-width:900px;

    margin:auto;

}

.real-gallery .sub-title{

    color:#FFC107;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.real-gallery h2{

    color:#0B1F5C;

    font-size:42px;

    font-weight:800;

    margin:15px 0;

}

.real-gallery h2 span{

    color:#FFC107;

}

.real-gallery p{

    color:#666;

    line-height:30px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:16px;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    background:linear-gradient(transparent,rgba(11,31,92,.95));

    padding:45px 20px 20px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.gallery-overlay h4{

    font-size:20px;

    font-weight:700;

    margin:0;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

@media(max-width:991px){

.real-gallery h2{

font-size:32px;

}

.gallery-item img{

height:200px;

}

}

/*=================================
Working Process
=================================*/

.working-process{

background:#F7F9FC;

}

.working-process .sub-title{

color:#FFC107;

font-weight:700;

letter-spacing:2px;

}

.working-process h2{

font-size:42px;

font-weight:800;

color:#0B1F5C;

margin:15px 0;

}

.working-process h2 span{

color:#FFC107;

}

.process-box{

position:relative;

background:#fff;

padding:40px 25px;

border-radius:18px;

text-align:center;

height:100%;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.process-box:hover{

transform:translateY(-10px);

}

.step-no{

position:absolute;

top:-18px;

left:50%;

transform:translateX(-50%);

width:45px;

height:45px;

background:#FFC107;

border-radius:50%;

font-weight:700;

line-height:45px;

color:#0B1F5C;

font-size:18px;

}

.process-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:20px;

background:#0B1F5C;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:35px;

color:#FFC107;

}

.process-box h3{

font-size:22px;

font-weight:700;

color:#0B1F5C;

margin-bottom:15px;

}

.process-box p{

font-size:16px;

line-height:30px;

color:#666;

}

@media(max-width:991px){

.working-process h2{

font-size:32px;

}

.process-box{

padding:30px 20px;

}

}


.services-section{

background:#071B52;

}

.section-heading{

max-width:900px;

margin:auto;

margin-bottom:60px;

}

.sub-heading{

color:#FFC107;

font-weight:700;

letter-spacing:2px;

}

.section-heading h2{

font-size:46px;

font-weight:800;

color:#fff;

margin:15px 0;

}

.section-heading h2 span{

color:#FFC107;

}

.section-heading p{

color:#ddd;

line-height:32px;

}

.service-box{

background:#fff;

border-radius:18px;

overflow:hidden;

transition:.4s;

height:100%;

}

.service-box:hover{

transform:translateY(-10px);

}

.service-image{

overflow:hidden;

}

.service-image img{

width:100%;

height:220px;

object-fit:cover;

transition:.5s;

}

.service-box:hover img{

transform:scale(1.1);

}

.service-content{

padding:30px;

text-align:center;

}

.service-icon{

width:70px;

height:70px;

background:#FFC107;

border-radius:50%;

margin:auto;

margin-top:-65px;

position:relative;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#071B52;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.service-content h3{

font-size:24px;

font-weight:700;

color:#071B52;

margin:20px 0;

}

.service-content p{

color:#666;

line-height:28px;

}

.service-content a{

display:inline-block;

margin-top:15px;

padding:10px 24px;

background:#071B52;

color:#fff;

border-radius:40px;

text-decoration:none;

transition:.3s;

}

.service-content a:hover{

background:#FFC107;

color:#071B52;

}


/*====================================================
        LOCAL SHIFTING CHARGES SECTION
=====================================================*/

.local-charges-section{
    padding:80px 0;
    background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
}

/*=========================
Section Heading
==========================*/

.section-tag{
    display:inline-block;
    background:#FFC107;
    color:#0B1F5C;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:8px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.local-charges-section h2{
    font-size:42px;
    font-weight:800;
    color:#0B1F5C;
    margin-bottom:20px;
}

.local-charges-section h2 span{
    color:#FFC107;
}

.section-desc{
    max-width:950px;
    margin:auto;
    font-size:17px;
    color:#555;
    line-height:30px;
}

/*=========================
Image
==========================*/

.local-charges-section img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/*=========================
Highlight Box
==========================*/

.charges-highlight{

    background:#0B1F5C;
    color:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    height:100%;

}

.charges-highlight h3{

    color:#FFC107;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;

}

.charges-highlight ul{

    padding-left:18px;
    margin-bottom:25px;

}

.charges-highlight ul li{

    line-height:38px;
    font-size:16px;

}

.call-btn{

    display:inline-block;
    background:#FFC107;
    color:#0B1F5C;
    font-weight:700;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    transition:.4s;

}

.call-btn:hover{

    background:#fff;
    color:#0B1F5C;

}

/*=========================
Table
==========================*/

.charges-table{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.charges-table thead{

    background:#0B1F5C;
    color:#fff;

}

.charges-table th{

    padding:18px;
    border:none;
    font-size:17px;
    font-weight:700;
    text-align:center;

}

.charges-table td{

    padding:18px;
    vertical-align:middle;
    font-size:15px;
    text-align:center;
    border-color:#ECECEC;

}

.charges-table tbody tr{

    transition:.3s;

}

.charges-table tbody tr:nth-child(even){

    background:#FFFDF6;

}

.charges-table tbody tr:hover{

    background:#FFF4CC;

}

/*=========================
Price Badge
==========================*/

.price{

    background:#FFC107;
    color:#0B1F5C;
    font-weight:700;
    padding:8px 18px;
    border-radius:30px;
    display:inline-block;
    font-size:15px;

}

/*=========================
Important Note
==========================*/

.charges-note{

    background:#FFF8E6;
    border-left:6px solid #FFC107;
    padding:25px;
    border-radius:15px;
    font-size:16px;
    color:#444;
    line-height:30px;
    margin-top:35px;

}

.charges-note strong{

    color:#0B1F5C;

}

/*=========================
Call Button
==========================*/

.quote-btn{

    display:inline-block;
    background:#0B1F5C;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.4s;

}

.quote-btn:hover{

    background:#FFC107;
    color:#0B1F5C;

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.local-charges-section{

    padding:60px 0;

}

.local-charges-section h2{

    font-size:32px;

}

.section-desc{

    font-size:16px;
    line-height:28px;

}

.charges-highlight{

    margin-top:30px;
    padding:25px;

}

.charges-highlight h3{

    font-size:24px;

}

.charges-table{

    min-width:850px;

}

.quote-btn{

    width:100%;
    text-align:center;

}

}

@media(max-width:576px){

.local-charges-section h2{

    font-size:28px;

}

.section-tag{

    font-size:13px;

}

.charges-highlight{

    padding:20px;

}

.charges-highlight ul li{

    line-height:32px;
    font-size:15px;

}

.charges-note{

    padding:18px;
    font-size:15px;

}

}


/*=========================================
Noida Packers Section Styling
==========================================*/

.noida-packers-section{
   background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 60px 0;
  font-family: Arial, sans-serif;
  color: #1f2937;
}

/* Container */
.noida-packers-section .container{
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* Image styling */
.noida-packers-section img{
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Main heading */
.noida-packers-section h2{
  font-size: 30px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #111827;
}

/* Sub headings */
.noida-packers-section h3{
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0f172a;
}

/* Paragraph */
.noida-packers-section p{
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 15px;
  text-align: justify;
}

/* Highlight strong text */
.noida-packers-section strong{
  color: #111827;
}

/* Custom list styling */
.noida-packers-section ul.custom-list{
  padding-left: 0;
  margin-top: 15px;
}

.noida-packers-section ul.custom-list li{
  list-style: none;
  background: #f9fafb;
  margin-bottom: 10px;
  padding: 12px 15px;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  transition: 0.3s;
}

/* Hover effect */
.noida-packers-section ul.custom-list li:hover{
  background: #eef2ff;
  transform: translateX(3px);
}

/* Center section subtitle */
.section-desc{
  max-width: 900px;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px){

  .noida-packers-section{
    padding: 40px 0;
  }

  .noida-packers-section h2{
    font-size: 22px;
    text-align: center;
  }

  .noida-packers-section h3{
    font-size: 18px;
  }

  .noida-packers-section p{
    font-size: 14px;
  }

}



/*=========================================
Contact Section Styling
==========================================*/

.contact-banner-section{
  background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 10px 0 0;
}

.banner-img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Contact Section */
.contact-info-section{
  background: #ffffff;
  padding: 60px 0;
}

/* Card */
.contact-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Titles */
.contact-title{
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

/* Text */
.contact-text,
.address-text{
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* Links */
.contact-link{
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
}

.contact-link:hover{
  color: #1d4ed8;
}

/* Social icons */
.social-title{
  margin-top: 15px;
  font-weight: 600;
  color: #111827;
}

.social-icons{
  margin-top: 10px;
}

.social-icons img{
  width: 42px;
  margin: 5px;
  transition: 0.3s;
}

.social-icons img:hover{
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px){

  .contact-card{
    padding: 20px;
    text-align: center;
  }

  .contact-title{
    font-size: 18px;
  }

}


/*=========================================
FAQ Section Styling
==========================================*/

.faq-section{
  background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.faq-banner{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Titles */
.faq-title{
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-top: 15px;
}

.faq-subtitle{
  font-size: 15px;
  color: #6b7280;
  margin-top: 10px;
}

/* FAQ Box */
.faq-accordion{
  margin-top: 30px;
}

/* FAQ Item */
.faq-item{
  background: #f9fafb;
  border-left: 4px solid #2563eb;
  margin-bottom: 12px;
  padding: 15px 18px;
  border-radius: 8px;
  transition: 0.3s;
}

/* Question */
.faq-question{
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

/* Answer */
.faq-answer{
  margin-top: 8px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* Hover effect */
.faq-item:hover{
  background: #eef2ff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px){

  .faq-title{
    font-size: 22px;
    text-align: center;
  }

  .faq-subtitle{
    text-align: center;
  }

}



/* Theme Colors */
:root{
  --dark:#fff;
  --dark2:#102a57;
  --yellow:#facc15;
  --text:#e5e7eb;
}

/* Section Background */
.services-glass-section{
   background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 70px 0;
  color: white;
  font-family: Arial, sans-serif;
}

/* Header */
.section-header h2{
  font-size: 30px;
  font-weight: 800;
  color: #0b1b3a;
}

.section-header h2 span{
  color: var(--yellow);
}

.section-desc{
  color: #000;
  font-size: 15px;
  max-width: 850px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* Glass Card */
.glass-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 14px;
  padding: 25px;
  margin-top: 25px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Headings */
.glass-card h3{
  color: var(--yellow);
  font-size: 20px;
  margin-bottom: 12px;
}

/* Paragraph */
.glass-card p{
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

/* List */
.glass-card ul{
  list-style: none;
  padding-left: 0;
}

.glass-card ul li{
  padding: 6px 0;
  color: var(--text);
  font-size: 14px;
}

/* Service Grid */
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.service-item{
  background: var(--dark2);
  border: 1px solid rgba(250, 204, 21, 0.2);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  color: white;
}

.service-item:hover{
  background: var(--yellow);
  color: black;
  transform: translateY(-3px);
}




/* Section Background */

/* Theme */
:root{
  --dark:#fff;
  --yellow:#facc15;
  --text:#e5e7eb;
}

/* Section */
.about-glass-section{
  background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 70px 0;
  color: white;
  font-family: Arial, sans-serif;
}

/* Glass Card */
.glass-card{
  background: #00224f;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Headings */
.glass-card h2{
  color: var(--yellow);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Paragraph */
.glass-card p{
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

/* Image */
.section-img{
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Links */
.glass-card a{
  color: var(--yellow);
  text-decoration: none;
}

.glass-card a:hover{
  text-decoration: underline;
}



.packing-materials-section{
 background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.packing-materials-section .section-header h2{
  font-size: 28px;
  font-weight: 700;
  color: #0b1f3a; /* dark blue */
}

.packing-materials-section .section-header h2 span{
  color: #f4b400; /* yellow highlight */
}

.packing-materials-section .section-header p{
  color: #444;
  max-width: 900px;
  margin: 10px auto 30px;
  font-size: 16px;
}

.content-box{
  display: flex;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #f8fbff;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #0b1f3a;
}

.image-box{
  flex: 1;
  min-width: 280px;
}

.image-box img{
  width: 100%;
  border-radius: 12px;
  border: 3px solid #f4b400;
}

.text-box{
  flex: 2;
  min-width: 300px;
}

.text-box p{
  text-align: justify;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.award-box{
  margin-top: 30px;
  padding: 25px;
  background: #0b1f3a;
  color: #fff;
  border-radius: 12px;
}

.award-box h2{
  font-size: 22px;
  color: #f4b400;
  margin-bottom: 15px;
}

.award-box p{
  line-height: 1.7;
  margin-bottom: 15px;
}

.award-box ol{
  padding-left: 20px;
}

.award-box li{
  margin-bottom: 8px;
}

/* Mobile responsive */
@media(max-width:768px){
  .content-box{
    flex-direction: column;
  }
}



.local-shifting-section{
 background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding: 60px 0;
}

.local-shifting-section .section-header h2{
  font-size: 30px;
  font-weight: 700;
  color: #0b1f3a;
}

.local-shifting-section .section-header h2 span{
  color: #f4b400;
}

.local-shifting-section .section-header p{
  max-width: 900px;
  margin: 10px auto 30px;
  color: #444;
}

.content-grid{
  display: flex;
  justify-content: center;
}

.service-block{
  background: #f8fbff;
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #0b1f3a;
}

.service-block img{
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 3px solid #f4b400;
}

.service-block p{
  text-align: justify;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.marquee-box{
  margin-top: 20px;
  background: #0b1f3a;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}

/* Mobile */
@media(max-width:768px){
  .service-block{
    padding: 15px;
  }
}



.packers-gallery-section{
 background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding:60px 0;
  font-family: Arial, sans-serif;
}

.packers-gallery-section .section-header h2{
  font-size:28px;
  color:#000066;
  font-weight:700;
  margin-bottom:10px;
}

.packers-gallery-section .section-header h2 span{
  color:#f7b500;
}

.packers-gallery-section .section-header p{
  font-size:16px;
  color:#444;
  max-width:850px;
  margin:0 auto 30px;
  line-height:1.6;
}

/* Gallery Box */
.gallery-marquee-box{
  overflow:hidden;
  background:#f9f9ff;
  border:2px solid #e6eaff;
  border-radius:15px;
  padding:15px;
}

/* Smooth marquee effect */
.marquee-track{
  display:flex;
  gap:20px;
  animation: scrollLeft 25s linear infinite;
  width:max-content;
}

.marquee-track img{
  width:220px;
  height:140px;
  object-fit:cover;
  border-radius:12px;
  border:3px solid #000066;
  transition:0.3s;
}

.marquee-track img:hover{
  transform:scale(1.05);
  border-color:#f7b500;
}

@keyframes scrollLeft{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* Mobile Responsive */
@media(max-width:768px){
  .marquee-track img{
    width:160px;
    height:110px;
  }
}


.contact-info-section{
 background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding:60px 0;
  font-family: Arial, sans-serif;
}

.contact-info-section .section-header h2{
  font-size:28px;
  color:#000066;
  font-weight:700;
}

.contact-info-section .section-header h2 span{
  color:#f7b500;
}

.contact-info-section .section-header p{
  max-width:850px;
  margin:10px auto 40px;
  color:#444;
  line-height:1.6;
}

/* Grid */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
}

/* Cards */
.contact-card{
  background:#0f1f3d;
  color:#fff;
  padding:25px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
  transition:0.3s;
  border:2px solid transparent;
}

.contact-card:hover{
  transform:translateY(-5px);
  border-color:#f7b500;
}

.contact-card h3{
  color:#f7b500;
  margin-bottom:10px;
  font-size:20px;
}

.contact-card a{
  color:#ffffff;
  text-decoration:none;
}

.contact-phone{
  font-size:20px;
  font-weight:bold;
  display:inline-block;
  margin:10px 0;
  color:#fff;
}

/* Social */
.social-section{
  text-align:center;
  margin-top:40px;
}

.social-section h3{
  color:#000066;
  margin-bottom:15px;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:15px;
}

.social-icons a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#000066;
  color:#fff;
  font-size:20px;
  border-radius:50%;
  transition:0.3s;
}

.social-icons a:hover{
  background:#f7b500;
  color:#000;
}


.map-section{
 background:linear-gradient(360deg,#ffffff 0%,#d9e2ea 100%);
  padding:60px 0 0;
  font-family: Arial, sans-serif;
}

.map-section .section-header h2{
  font-size:28px;
  color:#000066;
  font-weight:700;
}

.map-section .section-header h2 span{
  color:#f7b500;
}

.map-section .section-header p{
  max-width:850px;
  margin:10px auto 30px;
  color:#444;
  line-height:1.6;
}

/* Map wrapper styling */
.map-wrapper{
  width:100%;
  border-top:4px solid #000066;
  border-bottom:4px solid #f7b500;
  box-shadow:0 -5px 25px rgba(0,0,0,0.08);
}

/* Mobile optimization */
@media(max-width:768px){
  .map-wrapper iframe{
    height:320px;
  }
}


/* =========================
   FOOTER MAIN DESIGN
========================= */
.footer{
    background: #001331; /* dark navy blue */
    color: #ffffff;
    padding: 50px 0;
    font-family: Arial, sans-serif;
	width:100%;
}

/* Footer Heading */
.footer h2{
    color: #e3a300; /* yellow */
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Remove default list style */
.footer ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Footer list items */
.footer ul li{
    margin-bottom: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Links styling */
.footer ul li a{
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover effect */
.footer ul li a:hover{
    color: #ffd700;
    padding-left: 5px;
}

/* Bootstrap icon style */
.footer .bi-check-circle-fill{
    color: #ffd700;
    margin-right: 8px;
    font-size: 14px;
}

/* =========================
   COPYRIGHT SECTION
========================= */
.footer-bottom{
    background: #05022e;
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

.footer-bottom a{
    color: #ffd700;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.3s;
}

.footer-bottom a:hover{
    color: #ffffff;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px){

    .footer{
        text-align: center;
        padding: 30px 15px;
    }

    .footer ul li{
        font-size: 14px;
    }

}

/*=============================
 Floating Contact Buttons
==============================*/

.floating-contact{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s ease;
}

.call-btn{
    background:#0B3D91;
}

.whatsapp-btn{
    background:#25D366;
}

.floating-contact a:hover{
    transform:translateY(-5px) scale(1.08);
    color:#fff;
}

.call-btn:hover{
    background:#082f70;
}

.whatsapp-btn:hover{
    background:#1EBE5D;
}

/* Mobile */

@media(max-width:768px){

.floating-contact{
    right:15px;
    bottom:15px;
}

.floating-contact a{
    width:55px;
    height:55px;
    font-size:24px;
}

}


/* Inner Page Coding Start */


/*=========================================
 Inner Banner
=========================================*/

.inner-banner{
    position:relative;
    overflow:hidden;
    width:100%;
}

.inner-banner-img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.inner-banner-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,30,70,.55);

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

}

.inner-banner h1{

    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    text-shadow:0 3px 10px rgba(0,0,0,.35);

}

.breadcrumb{
    background:none;
    margin:0;
    padding:0;
}

.breadcrumb-item,
.breadcrumb-item a{

    color:#ffffff;
    font-size:16px;
    text-decoration:none;

}

.breadcrumb-item+.breadcrumb-item::before{
    color:#FFC107;
}

.breadcrumb-item.active{
    color:#FFC107;
}

/*==========================
 Tablet
==========================*/

@media(max-width:991px){

.inner-banner-img{
    height:260px;
}

.inner-banner h1{
    font-size:36px;
}

}

/*==========================
 Mobile
==========================*/

@media(max-width:576px){

.inner-banner-img{
    height:180px;
}

.inner-banner h1{
    font-size:28px;
    margin-bottom:10px;
}

.breadcrumb-item,
.breadcrumb-item a{
    font-size:14px;
}

}




/*====================================================
 ABOUT PAGE CSS - NOIDA PACKERS
====================================================*/

.about-company,
.company-highlights,
.company-introduction,
.why-choose-section,
.mission-section,
.services-overview,
.network-section,
.strength-section,
.achievement-section,
.promise-section,
.about-cta{
    padding:70px 0;
}

.section-title span,
.section-heading span{
    display:inline-block;
    color:#ffb400;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2,
.section-heading h1{
    font-size:42px;
    font-weight:800;
    color:#0b2d5c;
    margin-bottom:18px;
    line-height:1.3;
}

.section-title p,
.about-content p,
.company-introduction p,
.network-section p,
.promise-section p{
    font-size:17px;
    color:#555;
    line-height:32px;
}

.about-image img{
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/*==================================
 Highlight Boxes
==================================*/

.highlight-box,
.choose-box,
.service-card,
.strength-box,
.mission-box{

    background:#fff;
    padding:35px 30px;
    text-align:center;
    border-radius:15px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;

}

.highlight-box:hover,
.choose-box:hover,
.service-card:hover,
.strength-box:hover,
.mission-box:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/*==================================
 Large Icons
==================================*/

.highlight-box i,
.choose-box i,
.service-card i,
.strength-box i,
.mission-box i{

    font-size:60px;
    color:#ffb400;
    margin-bottom:20px;
    display:block;

}

.highlight-box h3{

    font-size:42px;
    font-weight:800;
    color:#0b2d5c;

}

.highlight-box h5{

    font-size:20px;
    margin:15px 0;
    font-weight:700;

}

.highlight-box p,
.choose-box p,
.service-card p,
.strength-box p,
.mission-box p{

    font-size:16px;
    line-height:28px;
    color:#666;

}

.choose-box h3,
.service-card h4,
.strength-box h4,
.mission-box h3{

    font-size:24px;
    color:#0b2d5c;
    margin-bottom:15px;
    font-weight:700;

}

/*==================================
 Achievement
==================================*/

.achievement-section img{

    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.achievement-section h2{

    font-size:38px;
    font-weight:700;
    color:#0b2d5c;
    margin-bottom:20px;

}

.achievement-section p{

    font-size:17px;
    line-height:31px;
    color:#555;

}

.achievement-list{

    list-style:none;
    padding:0;
    margin-top:25px;

}

.achievement-list li{

    padding:10px 0;
    font-size:18px;
    color:#333;
    font-weight:600;

}

/*==================================
 CTA
==================================*/

.about-cta{

    background:linear-gradient(135deg,#0b2d5c,#164d99);
    color:#fff;
    border-radius:20px;
    margin-top:60px;
	

}

.about-cta h2{

    font-size:38px;
    font-weight:700;
    margin-bottom:15px;

}

.about-cta p{

    font-size:18px;
    color:#f5f5f5;

}

.about-cta .btn{

    padding:15px 35px;
    font-size:18px;
    font-weight:700;
    border-radius:50px;
    transition:.3s;

}

.about-cta .btn:hover{

    transform:translateY(-3px);

}

/*==================================
 Buttons
==================================*/

.btn-warning{

    background:#ffb400;
    border:none;
    color:#000;

}

.btn-warning:hover{

    background:#ffca2c;
    color:#000;

}

.btn-primary{

    background:#0b2d5c;
    border:none;

}

/*==================================
 Responsive
==================================*/

@media(max-width:991px){

.section-title h2,
.section-heading h1{

    font-size:34px;

}

.highlight-box,
.choose-box,
.service-card,
.strength-box,
.mission-box{

    padding:30px 20px;

}

.highlight-box i,
.choose-box i,
.service-card i,
.strength-box i,
.mission-box i{

    font-size:50px;

}

.about-cta{

    text-align:center;

}

.about-cta .btn{

    width:100%;
    margin-top:15px;

}

}

@media(max-width:576px){

.about-company,
.company-highlights,
.company-introduction,
.why-choose-section,
.mission-section,
.services-overview,
.network-section,
.strength-section,
.achievement-section,
.promise-section,
.about-cta{

    padding:45px 0;

}

.section-title h2,
.section-heading h1{

    font-size:28px;

}

.section-title p,
.about-content p,
.company-introduction p,
.network-section p,
.promise-section p{

    font-size:16px;
    line-height:29px;

}

.highlight-box i,
.choose-box i,
.service-card i,
.strength-box i,
.mission-box i{

    font-size:46px;

}

.highlight-box h3{

    font-size:34px;

}

.highlight-box h5,
.choose-box h3,
.service-card h4,
.strength-box h4,
.mission-box h3{

    font-size:22px;

}

.about-cta h2{

    font-size:28px;

}

.about-cta p{

    font-size:16px;

}

}


/*====================================
 Sector Links Section
====================================*/

.sector-links-section{

    background:#f8f9fc;
    padding:70px 0;

}

.sector-box{

    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.sector-links-section .section-heading span{

    display:inline-block;
    color:#FFC107;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;

}

.sector-links-section h2{

    font-size:38px;
    font-weight:700;
    color:#0B2D5C;
    margin-bottom:15px;

}

.sector-links-section p{

    max-width:850px;
    margin:0 auto 35px;
    color:#666;
    font-size:17px;
    line-height:30px;

}

/*====================================
 Links
====================================*/

.sector-links{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.sector-links a{

    display:inline-block;
    padding:10px 18px;
    background:#eef4ff;
    color:#0B2D5C;
    border:1px solid #d7e4ff;
    border-radius:30px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;

}

.sector-links a:hover{

    background:#0B2D5C;
    color:#fff;
    border-color:#0B2D5C;
    transform:translateY(-2px);

}

/*====================================
 Mobile
====================================*/

@media(max-width:768px){

.sector-box{

    padding:25px;

}

.sector-links-section h2{

    font-size:28px;

}

.sector-links-section p{

    font-size:15px;
    line-height:28px;

}

.sector-links{

    gap:10px;

}

.sector-links a{

    width:100%;
    text-align:center;
    font-size:15px;

}

}



/*===================================
Gallery
===================================*/

.gallery-section{

padding:80px 0;
background:#f8f9fb;


}

.gallery-section h2{color:#000066;}

.gallery-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}

.gallery-item{

overflow:hidden;
border-radius:12px;
background:#fff;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.35s;

}

.gallery-item:hover{

transform:translateY(-6px);

}

.gallery-item img{

width:100%;
height:280px;
object-fit:cover;
display:block;
transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

/*=====================
Tablet
======================*/

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(3,1fr);

}

}

/*=====================
Mobile
======================*/

@media(max-width:767px){

.gallery-section{

padding:50px 0;

}



.gallery-grid{

grid-template-columns:repeat(2,1fr);
gap:12px;

}

.gallery-item img{

height:170px;

}

}

@media(max-width:480px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item img{

height:230px;

}

}



/*====================================
Reviews Section
====================================*/

.reviews-section{

    padding:80px 0;
    background:#f8f9fc;

}

.review-card{

    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.review-card:hover{

    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.review-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;

}

.review-name{

    font-size:22px;
    font-weight:700;
    color:#0B2D5C;

}

.stars{

    font-size:22px;
    color:#FFC107;
    letter-spacing:2px;

}

.review-card p{

    font-size:17px;
    color:#555;
    line-height:30px;
    text-align:justify;
    margin:0;

}

/* Mobile */

@media(max-width:768px){

.review-card{

    padding:25px;

}

.review-name{

    font-size:20px;

}

.review-card p{

    font-size:16px;
    line-height:28px;

}

.stars{

    font-size:18px;

}

}


/*=====================================
Contact Section
=====================================*/

.contact-section{

padding:80px 0;
background:#f8f9fb;

}

.contact-card{

background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
height:100%;

}

.contact-card h3,
.contact-card h4{

font-size:24px;
font-weight:700;
color:#0B2D5C;
margin-bottom:15px;

}

.contact-card h4{

font-size:20px;

}

.contact-card i{

color:#FFC107;
margin-right:10px;
font-size:22px;

}

.contact-card p{

font-size:17px;
line-height:30px;
color:#555;
margin-bottom:0;

}

.contact-card a{

color:#0B5ED7;
text-decoration:none;
font-weight:600;

}

.contact-card a:hover{

color:#FFC107;

}

.contact-card hr{

margin:25px 0;
border-color:#e9ecef;

}

/* Map */

.map-box{

background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
height:100%;

}

.map-box iframe{

width:100%;
height:100%;
min-height:520px;
border:0;

}

/* Mobile */

@media(max-width:991px){

.contact-section{

padding:60px 0;

}

.map-box iframe{

min-height:400px;

}

}

@media(max-width:576px){

.contact-card{

padding:25px;

}

.contact-card h3{

font-size:22px;

}

.contact-card h4{

font-size:18px;

}

.contact-card p{

font-size:16px;
line-height:28px;

}

.map-box iframe{

min-height:320px;

}

}


/*==================================
FAQ Section
==================================*/

.faq-section{

padding:80px 0;
background:#f8f9fb;

}

.faq-section h2{color:#000033}

.faq-section .accordion-item{

border:none;
border-radius:12px;
overflow:hidden;
margin-bottom:18px;
box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.faq-section .accordion-button{

font-size:18px;
font-weight:700;
color:#0B2D5C;
padding:20px 25px;
background:#fff;
box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

background:#0B2D5C;
color:#fff;

}

.faq-section .accordion-button:focus{

box-shadow:none;

}

.faq-section .accordion-body{

font-size:16px;
line-height:30px;
color:#555;
background:#fff;

}

@media(max-width:768px){

.faq-section{

padding:50px 0;

}

.faq-section .accordion-button{

font-size:16px;
padding:16px 18px;

}

.faq-section .accordion-body{

font-size:15px;
line-height:28px;

}

}


.location-service-section{

padding:80px 0;

}

.location-service-section img{

border-radius:15px;

}

.location-service-section p{

font-size:17px;
line-height:32px;
text-align:justify;
color:#555;

}

.service-list{

list-style:none;
padding:0;

}

.service-list li{

padding:10px 0;
font-size:17px;

}

.service-list i{

color:#28a745;
margin-right:10px;
font-size:18px;

}

.why-box{

background:#f8f9fb;
padding:35px;
border-radius:15px;
margin-top:20px;

}

.feature-box{

background:#fff;
padding:25px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
margin-top:20px;
height:100%;

}

.feature-box i{

font-size:42px;
color:#FFC107;
margin-bottom:15px;

}

.feature-box h4{

font-size:20px;
font-weight:700;
color:#0B2D5C;

}

@media(max-width:768px){

.location-service-section{

padding:50px 0;

}

.location-service-section p{

font-size:16px;
line-height:29px;

}

.feature-box{

padding:20px;

}

.feature-box h4{

font-size:18px;

}

}