body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 90px;
}

/* Header Styles */
.top-header {
    display: flex;
    justify-content: space-between;
    height: 90px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.top-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mobile-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #1c325b;
    position: absolute;
    right: 20px;
    top: 30px;
    display: none;
    z-index: 1001;
    cursor: pointer;
}
.logo{
    width: 100%;
    max-width: 350px;
    max-height: 80px;
}
.navbar-toggler i {
    font-size: 24px;
    color: #1c325b;
}
.logo-box {
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}
.logo-text {
    color: #1c325b;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}
.logo-box:hover .logo-text {
    transform: scale(1.05);
}
.logo-subtext {
    color: #ff6a00;
    font-size: 11px;
    letter-spacing: 12px;
    font-weight: bold;
}
/* Custom Navbar Styles */
.nav-link-custom {
    color: #1c325b !important;
    position: relative;
    padding: 8px 0 !important;
    transition: color 0.3s ease;
}
.nav-link-custom:hover {
    color: #f78f1e !important;
}

.active .nav-link-custom{
    color: #f78f1e !important;
}

.active .nav-link-custom::after{
    background-color: #f78f1e;
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f78f1e;
    transition: width 0.3s ease;
}
.nav-link-custom:hover::after {
    width: 100%;
}

/* Banner Styles */
.banner-carousel .item {
    height: 560px;
}
.banner-item-1 {
    background: url('../images/banner-new.jpg') center/cover;
    position: relative;
}
.banner-item-2 {
    background: url('../images/banner-2.jpg') center/cover;
    position: relative;
}
.banner-item-3 {
    background: url('../images/banner-3.jpg') center/cover;
    position: relative;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}
.banner-content {
    z-index: 1;
}
.banner-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3) !important;
    color: white !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: background 0.3s ease;
}
.banner-carousel .owl-nav button:hover {
    background: #f78f1e !important;
}
.banner-carousel .owl-nav button.owl-prev {
    left: 20px;
}
.banner-carousel .owl-nav button.owl-next {
    right: 20px;
}
.banner-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.banner-carousel .owl-dot span {
    background: transparent !important;
    border: 2px solid white;
}
.banner-carousel .owl-dot.active span {
    background: white !important;
}
.banner-section .banner_title{
    color: #222; 
    font-size: 22px; 
    font-weight: normal; 
    line-height: 1.5;
}
.banner-section .banner_title span{
    color: #222; 
    display: block; 
    margin-bottom: 8px; 
    font-size: 56px; 
    font-weight: 600; 
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* About Section */
.about-section {
    padding: 50px;
    animation: fadeIn 1.2s ease-in;
}
.about-box {
    border: none;
    padding: 30px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.about-box:hover {
    transform: translateY(-5px);
}
.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #f78f1e, #ff6a00);
}
.about-title {
    color: #2b3990;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}
.about-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 50px;
    background: #f4f7f6;
}
.services-title {
    color: #2b3990;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
}
.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f78f1e;
}
.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    background: #fff;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.service-icon {
    color: #f78f1e;
    font-size: 36px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
.service-card .card-title {
    color: #2b3990;
    font-weight: 600;
}
.service-card .card-text {
    font-size: 14px;
}
.service-card-wrapper {
    animation: fadeInUp 0.8s ease forwards;
}
.service-img {
    border-radius: 15px;
}

/* Footer */
.site-footer {
    background: #1c325b;
    color: #fff;
    padding: 20px 0px;
    font-size: 14px;
}
.social-icons a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    background: #f78f1e;
    color: #fff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bg-light-section{
    padding: 50px 0px;
}

.readmore_btn {
    background: #1c325b;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: 0.3s;
    padding: 0.5rem 1rem;
}
.readmore_btn:focus, .readmore_btn:hover {
    background: #f78f1e;
    color: #fff;
    letter-spacing: .03rem;
}
.readmore_btn i {
    padding-left: 5px;
}

/*Banner New CSS
==============*/

.single-banner-slide {
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.single-banner-slide span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.single-banner-slide h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
}
/*.single-banner-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    width: 100%;
    height: 100%;
}*/
.single-banner-slide p {
    color: #fff;
    font-size: 15px;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}
.single-banner-slide a {
    color: #000;
    background: #fff;
    padding: 10px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}
.single-banner-slide a:hover {
    color: #fff;
    background: #000;
}

.all-banner-slide .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3) !important;
    color: white !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: background 0.3s ease;
}
.all-banner-slide .owl-nav button:hover {
    background: #f78f1e !important;
}
.all-banner-slide .owl-nav button.owl-prev {
    left: 20px;
}
.all-banner-slide .owl-nav button.owl-next {
    right: 20px;
}
.all-banner-slide .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.all-banner-slide .owl-dot span {
    background: transparent !important;
    border: 2px solid white;
}
.all-banner-slide .owl-dot.active span {
    background: white !important;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-carousel .item {
        height: 220px;
    }
    .banner-carousel .item .row.h-100,
    .banner-carousel .item .col-md-6.h-100 {
        height: auto !important;
    }
    .banner-carousel .item .col-md-6:first-child {
        min-height: 250px;
    }
    .top-header {
        height: auto;
        padding: 10px 0;
    }
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-radius: 8px;
        margin-top: 10px;
    }
    .nav-link-custom::after {
        display: none;
    }
    .about-section, .services-section, .site-footer {
        padding: 30px 20px;
    }
}