/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #030f27;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #ffffff; /* Changed from #fdbe33 */
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #ffffff; /* Changed from #fdbe33 */
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #ffffff; /* Changed from #fdbe33 to match white theme */
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 110px; /* Increased from 90px to give the logo breathing room */
    background: #ffffff;
}

.top-bar .logo {
    padding: 10px 0; /* Adjusted padding so it doesn't touch the edges */
    text-align: left;
    overflow: visible; /* Changed from hidden so nothing gets clipped */
    height: 100%;
    display: flex;
    align-items: center; /* Ensures vertical centering */
}

.top-bar .logo h1 {
    margin: 0;
    color: #030f27;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 90px; /* Allows the logo image to scale larger cleanly */
    width: auto;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #030f27;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #030f27;
    font-size: 16px;
    font-weight: 400;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #030f27;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: #ffffff; /* Changed from #fdbe33 */
    transition: .3s;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1366px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    background: #030f27 !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff; /* Changed from #fdbe33 to match white theme */
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
    border-color: #ffffff; /* Changed from #fdbe33 */
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 20px;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}

/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
    border-color: #ffffff; /* Changed from #fdbe33 */
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #ffffff; /* Changed from #fdbe33 */
}

.page-header h2 {
    position: relative;
    color: #030f27;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #030f27;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #030f27;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #ffffff; /* Changed from #fdbe33 */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #030f27;
}
    
.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #030f27;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #ffffff; /* Changed from #fdbe33 */
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: #ffffff; /* Changed from #fdbe33 */
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #ffffff; /* Changed from #fdbe33 */
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #ffffff; /* Changed from #fdbe33 */
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #030f27;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #030f27;
    border-radius: 0;
    background: #ffffff; /* Changed from #fdbe33 */
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #ffffff; /* Changed from #fdbe33 to match white theme */
    background: #030f27;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #ffffff); /* Changed #fdbe33 to #ffffff */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #ffffff; /* Changed from #fdbe33 */
    background: #030f27;
}

.fact .fact-right {
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
}

.fact .fact-left h2 {
    color: #ffffff; /* Changed from #fdbe33 */
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff; /* Changed from #fdbe33 */
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}

/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff; /* Changed from #fdbe33 */
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff; /* Changed from #fdbe33 */
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#ffffff, 10%); /* Adjusted for white theme */
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border { 
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #030f27;
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* Changed from #fdbe33 */
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team .team-item:hover .team-text {
    background: #ffffff; /* Changed from #fdbe33 */
}

.team .team-item:hover .team-text h2 {
    color: #030f27;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #ffffff; /* Changed from #fdbe33 */
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #ffffff; /* Changed from #fdbe33 */
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #ffffff; /* Changed from #fdbe33 */
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 15px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

/*******************************/
/******** Testimonial **********/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #030f27;
}

.testimonial .section-header p,
.testimonial .section-header h2 {
    color: #ffffff;
}

.testimonial .testimonial-slider {
    position: relative;
}

.testimonial .testimonial-item {
    position: relative;
    padding: 30px;
    background: #121518;
}

.testimonial .testimonial-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -20px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* Changed from #fdbe33 */
    color: #030f27;
    font-size: 25px;
}

.testimonial .testimonial-text {
    position: relative;
    margin-top: 15px;
}

.testimonial .testimonial-text p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
}

.testimonial .testimonial-meta {
    display: flex;
    align-items: center;
}

.testimonial .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
}

.testimonial .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial .testimonial-name {
    padding-left: 15px;
}

.testimonial .testimonial-name h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.testimonial .testimonial-name p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: #ffffff !important; /* Changed from #fdbe33 */
    transition: .5s;
}

.testimonial .owl-dot.active {
    width: 30px;
    background: #ffffff !important;
}

/*******************************/
/********** Blog CSS ***********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
    transition: .5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog .blog-meta {
    position: relative;
    display: flex;
    padding: 15px 25px;
    background: #030f27;
}

.blog .blog-meta p {
    margin: 0;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.blog .blog-meta p i {
    color: #ffffff; /* Changed from #fdbe33 */
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin-right: 0;
}

.blog .blog-text {
    padding: 25px 25px 30px 25px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog .blog-text h3 a {
    color: #030f27;
}

.blog .blog-text h3 a:hover {
    color: #ffffff; /* Changed from #fdbe33 */
}

.blog .blog-text p {
    margin-bottom: 20px;
}

.blog .blog-text a.btn {
    padding: 0;
    color: #030f27;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background: none;
}

.blog .blog-text a.btn:hover {
    color: #ffffff; /* Changed from #fdbe33 */
}

.blog .pagination {
    margin-bottom: 30px;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    padding: 10px 18px;
    font-size: 16px;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    background: #ffffff; /* Changed from #fdbe33 */
    color: #030f27;
    border-color: #ffffff; /* Changed from #fdbe33 */
}

/*******************************/
/******* Single Blog CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
}

.single .single-img {
    margin-bottom: 25px;
}

.single .single-img img {
    width: 100%;
}

.single h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.single p {
    margin-bottom: 20px;
}

.single h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.single ul {
    margin: 0 0 20px 0;
    padding-left: 30px;
    list-style-type: disc;
}

.single ul li {
    margin-bottom: 10px;
}

.single h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.single .single-tags {
    margin-top: 45px;
    padding: 15px 0;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.single .single-tags a {
    color: #030f27;
    margin-right: 10px;
    padding: 4px 12px;
    display: inline-block;
    background: #dddddd;
    font-size: 14px;
}

.single .single-tags a:hover {
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
}

.single .single-related {
    position: relative;
    margin-top: 45px;
}

.single .single-related h2 {
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
}

.single .related-item {
    position: relative;
    margin-right: 15px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
}

.single .related-img {
    position: relative;
    overflow: hidden;
}

.single .related-img img {
    width: 100%;
    transition: .5s;
}

.single .related-item:hover .related-img img {
    transform: scale(1.1);
}

.single .related-text {
    padding: 20px 15px;
}

.single .related-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.single .related-text h4 a {
    color: #030f27;
}

.single .related-text h4 a:hover {
    color: #ffffff; /* Changed from #fdbe33 */
}

.single .related-text p {
    margin: 0;
    font-size: 14px;
}

.single .related-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dddddd;
    color: #030f27;
    font-size: 14px;
    transition: .5s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    background: #ffffff; /* Changed from #fdbe33 */
}

.single .related-slider .owl-nav .owl-prev {
    margin-right: 5px;
}

.single .media {
    padding: 30px;
    background: #ffffff;
    margin-top: 45px;
}

.single .media img {
    width: 80px;
    height: 80px;
}

.single .media .media-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.single .media .media-body h4 span {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding-left: 10px;
}

.single .media .media-body p {
    margin-bottom: 10px;
}

.single .media .media-body a {
    color: #030f27;
    font-size: 14px;
    font-weight: 600;
}

.single .media .media-body a:hover {
    color: #ffffff; /* Changed from #fdbe33 */
}

.single .comment-form {
    position: relative;
    margin-top: 45px;
    padding: 30px;
    background: #ffffff;
}

.single .comment-form h2 {
    margin-bottom: 20px;
}

.single .comment-form .form-group:last-child {
    margin-bottom: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.1);
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    box-shadow: none;
    border-color: #ffffff; /* Changed from #fdbe33 */
}

.single .comment-form .btn {
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
    border: 1px solid #ffffff; /* Changed from #fdbe33 */
    border-radius: 0;
    font-weight: 600;
    transition: .5s;
}

.single .comment-form .btn:hover {
    color: #ffffff; /* Changed from #fdbe33 */
    background: #030f27;
    border-color: #030f27;
}

/*******************************/
/******** Contact CSS **********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-info {
    position: relative;
    background: #030f27;
    height: 100%;
    padding: 30px;
}

.contact .contact-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* Changed from #fdbe33 */
}

.contact .contact-icon i {
    color: #030f27;
    font-size: 18px;
}

.contact .contact-text {
    position: relative;
    padding-left: 20px;
    width: calc(100% - 50px);
}

.contact .contact-text h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .contact-text p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
}

.contact .contact-form input,
.contact .contact-form textarea {
    padding: 15px;
    border-radius: 0;
    border-color: rgba(0, 0, 0, .1);
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    box-shadow: none;
    border-color: #ffffff; /* Changed from #fdbe33 */
}

.contact .contact-form .btn {
    padding: 15px 35px;
    color: #030f27;
    background: #ffffff; /* Changed from #fdbe33 */
    border: 2px solid #ffffff; /* Changed from #fdbe33 */
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #ffffff; /* Changed from #fdbe33 */
    background: #030f27;
    border-color: #030f27;
}

.contact #success {
    color: #ffffff;
}

/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
    font-size: 0;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 5px 8px;
    padding: 8px 15px;
    color: #030f27;
    font-size: 16px;
    font-weight: 500;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #ffffff; /* Changed from #fdbe33 */
    color: #030f27;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .5s;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.portfolio .portfolio-overlay a.btn {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    transition: .3s;
}

.portfolio .portfolio-overlay a.btn:hover {
    color: #ffffff; /* Changed from #fdbe33 */
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding: 45px 0 0 0;
    background: #121518;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer a {
    color: #ffffff;
}

.footer a:hover {
    color: #ffffff; /* Changed from #fdbe33 */
}

.footer .footer-contact p i,
.footer .footer-link a i {
    margin-right: 10px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* Changed from #fdbe33 */
    color: #121518;
    border-radius: 40px;
    margin-right: 5px;
    transition: .3s;
}

.footer .footer-social a:hover {
    background: #ffffff;
    color: #121518;
}

.footer .newsletter p {
    margin-bottom: 20px;
}

.footer .newsletter form {
    position: relative;
    max-width: 400px;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #ffffff; /* Changed from #fdbe33 */
    border-radius: 0;
    background: #121518;
    color: #ffffff;
}

.footer .newsletter input:focus {
    box-shadow: none;
    border-color: #ffffff;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff; /* Changed from #fdbe33 */
    background: #121518;
    border-radius: 0;
    border: 2px solid #ffffff; /* Changed from #fdbe33 */
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #ffffff; /* Changed from #fdbe33 */
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #ffffff; /* Adjusted from #fdbe33 to fit white theme */
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 25px 0;
    background: #030f27;
    text-align: center;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #ffffff; /* Changed from #fdbe33 */
    font-weight: 600;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (min-width: 992px) {
    .footer .copyright {
        text-align: left;
    }
    
    .footer .copyright .col-md-6:last-child {
        text-align: right;
    }
}

@media (max-width: 991.98px) {
    .footer .copyright {
        text-align: center;
    }
    
    .footer .copyright .col-md-6:last-child {
        text-align: center;
        padding-top: 10px;
    }
}