
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #1E3A8A;
    overflow-x: hidden;
    font-family: "Quicksand", sans-serif;
}


:root{
    --primary-color: #F97316;
    --secondary-color: #1E3A8A;
    --white:#fff;
    --text:#333;
    --hover:#b95a17;
}

/*Comman Css Start*/
html {
    scroll-behavior: smooth;
    margin: 0!important;
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ol,
ul {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    transition: all 0.5s ease;
}

a:focus,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Plus Jakarta Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
}
h1{
    font-size: 5.5rem;
    font-style: normal;
    line-height: 6rem;
    margin: 0 0 20px 0;
}
h2{
    font-size: 4rem;
    font-style: normal;
    line-height: 5rem;
    margin: 0 0 20px 0;
}
h2 strong{
    font-weight: 700;
    color: var(--primary-color);
}
h3{
    font-size: 3.5rem;
    font-style: normal;
    line-height: 4rem;
    margin: 0 0 20px 0;
}
h4{
    font-size: 3rem;
    font-style: normal;
    line-height: 3.5rem;
}
h5{
    font-size: 24px;
    font-style: normal;
    line-height: 30px;
}
h6{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px 0;
} 

p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #879096;
}

figure {
    margin: 0!important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button:focus {
    outline: none;
    box-shadow: none;
}
.container-fluid,
.container {
    padding: 0 15px;
}
.offcanvas {
    z-index: 1111;
    overflow-y: visaible;
}
.offcanvas::-webkit-scrollbar {
    display: none;
}
.offcanvas {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* Comman Css End*/



/* Navigation */

.top-closebar{
    display: none;
}



.header {
    z-index: 1111;
    position: relative;
    top: 0;
    width: 100%;
    transition: all 0.5s ease;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.fixed {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 11111;
    animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/* .header.fixed{
  position: sticky!important;
  top: 0;
  left: 0;
  z-index: 11111!important;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */
.navbar-toggler {
    padding: 0;
    z-index: 1;
    position: relative;
    border: none;
    margin: 0 ;
}
.navbar-toggler-icon {
    width: auto;
    height: auto;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 2px;
    margin: 5px 0;
    border-radius: 100px;
    transition: 0.4s;
    background-color: var(--text);
}
.change .bar1,
.change .bar2,
.change .bar3 {
    background-color: var(--text);
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-4px, 6px);
  transform: rotate(-45deg) translate(-4px, 6px);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-4px, -6px);
  transform: rotate(45deg) translate(-4px, -6px);
}

.navbar {
    min-height: 75px;
    padding: 0px 0;
    width: 100%;
    margin: 0;
    transition: all 0.5s ease;
    position: relative;
}

.navbar-brand {
    margin: 0 0 0 0;
    padding: 0 0px 0 0;
}
.navbar-brand img{
    width: 184px;
    max-width: 184px;
}
.navbar-expand-lg .navbar-nav {
    margin: 0 0 0 auto;
    padding: 0;
}
.navbar-expand-lg .navbar-nav .nav-item{
    margin: 0 45px 0 0;
    padding: 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 0;
    border: none;
    display: block;
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0;
    transition: all 0.5s ease;
    position: relative;
}
.navbar-expand-lg .navbar-nav .current_page_item .nav-link,
.navbar-expand-lg .navbar-nav .nav-link:hover{
    color: var(--primary-color);
}
/* .navbar-expand-lg .navbar-nav .nav-link::before{
    content: "";
    width: 0%;
    height: 3px;
    background-color: #FAFAFA;
    position: absolute;
    bottom: 4px;
    left: 0;
    transition: all 0.5s ease-in;
}
.navbar-expand-lg .navbar-nav li.active .nav-link::before,
.navbar-expand-lg .navbar-nav .nav-link:hover::before{
    width: 100%;
} */

.dropdown-toggle::after {
    display: none;
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-nav .dropdown-toggle {
    position: relative;
    padding-right: 20px !important;
}

.navbar-nav .dropdown-toggle::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile Dropdown Styles */
.offcanvas .navbar-nav .dropdown-menu {
    background-color: var(--white);
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    margin: 28px 0 0 0;
    border-top: 2px solid var(--primary-color);
}

.offcanvas .navbar-nav .dropdown-item {
    padding: 8px 15px;
    font-size: 14px;
}







/*Common Part*/
body .btn.btn-primary{
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #fff;
    padding: 10px 30px 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    gap: 8px;
    background-color: var(--primary-color);
    border-radius: 6px;
}
body .btn.btn-primary:hover,
body .btn.btn-primary:focus{
    background-color: var(--hover);
    color: #FFFFFF;
}

.gx-30{
    --bs-gutter-x: 30px;
}
.gy-30{
    --bs-gutter-y: 30px;
}
.align-centre{
    align-items: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    padding: 12px 0;
    color: var(--white);
    font-size: 14px;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary-color);
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    color: var(--white);
    font-weight: 600;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(249, 115, 22, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0px;
}

.hero-content h6 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 5.5rem;
    line-height: 6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 10px 30px 12px 30px;
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.hero-slider .swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.feature-box h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-box p {
    color: #879096;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
    padding-bottom: 0;
    position: relative;
}

.section-header.text-center {
    text-align: center;
}

.section-header h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.section-header h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 2px;
}

.section-header.text-center h6 {
    padding-left: 0;
    padding-bottom: 15px;
}

.section-header.text-center h6::before {
    display: none;
}

.section-header.text-center h6::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 2px;
}

.section-header h2 {
    color: var(--secondary-color);
    font-size: 3.5rem;
    line-height: 4.2rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    position: relative;
}

.section-header h2 strong {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.section-header p {
    color: #879096;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-content {
    padding: 20px;
}

.service-content h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-content p {
    color: #879096;
    margin-bottom: 20px;
    line-height: 26px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--hover);
    gap: 12px;
}

/* Flash Deal Section */
/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1f4a 100%);
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-card {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h5 {
    padding: 25px 20px;
    color: var(--secondary-color);
    margin: 0;
    font-size: 22px;
}

/* Special Offer Section */
.special-offer-section {
    padding: 100px 0;
    background: var(--white);
}

.special-offer-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
    padding: 60px;
}

.special-offer-image {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.special-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-offer-content {
    padding-left: 40px;
}

.special-offer-content h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.special-offer-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 3.5rem;
    line-height: 4rem;
}

.special-offer-content p {
    color: #879096;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 28px;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.news-date span:first-child {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.news-date span:last-child {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.news-content {
    padding: 30px;
}

.news-author {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.news-content h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 32px;
}

.news-content p {
    color: #879096;
    margin-bottom: 20px;
    line-height: 26px;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--hover);
    gap: 12px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 8rem 0 30px 0;
    color: var(--white);
    position: relative;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 26px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.footer-links h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    position: relative;
    z-index: 2;
}

.footer-contact h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 26px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}


.inside-banner-sec{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: var(--secondary-color);
    z-index: 1;
}
.inside-banner-sec::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    opacity: 0.9;
}
.inside-banner-wrapper{
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.inside-banner-content{
    text-align: center;
}

.inside-banner-content h1{
    color: var(--white);
    margin: 0 0 0 0;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0 0 0;
    background: var(--white);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 40px;
}

.about-content h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 3.5rem;
    line-height: 4rem;
}

.about-content p {
    color: #879096;
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 16px;
}

.about-content .btn {
    margin-top: 10px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
}

.mission-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.mission-box p {
    color: #879096;
    line-height: 28px;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-box {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.why-choose-box:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.why-choose-box h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.why-choose-box p {
    color: #879096;
    line-height: 26px;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1f4a 100%);
    position: relative;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-content {
    margin-bottom: 50px;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-text {
    margin-bottom: 50px;
}

.service-detail-text h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-detail-text h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 3.5rem;
    line-height: 4rem;
}

.service-detail-text p {
    color: #879096;
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 16px;
}

/* Service Features */
.service-features {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #f8f9fa;
    border-bottom: 2px solid #f8f9fa;
}

.service-features h3 {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
    line-height: 3rem;
}

.service-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.service-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.service-feature-content h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.service-feature-content p {
    color: #879096;
    margin: 0;
    line-height: 26px;
}

/* Service Process */
.service-process {
    margin: 60px 0;
}

.service-process h3 {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
    line-height: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.process-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.process-content h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.process-content p {
    color: #879096;
    margin: 0;
    line-height: 26px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 24px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.service-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.service-info-list li:last-child {
    border-bottom: none;
}

.service-info-list li i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.service-info-list li div {
    flex: 1;
}

.service-info-list li strong {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.service-info-list li span {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #879096;
    line-height: 24px;
}

.service-benefits-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.sidebar-card .contact-info {
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info-item i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.contact-info-item a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

/* Related Services Section */
.related-services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1f4a 100%);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 3.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.cta-buttons {
    text-align: right;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 18px;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-right {
        text-align: left;
        margin-top: 10px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }
    
    .special-offer-content {
        padding: 40px;
    }
    
    .special-offer-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    /* Section Header Responsive */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
        line-height: 3.5rem;
    }
    
    .section-header p {
        font-size: 16px;
        line-height: 26px;
    }
    
    /* Service Detail Responsive */
    .service-detail-text h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .service-features h3,
    .service-process h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
    
    .cta-box {
        padding: 40px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .cta-buttons {
        text-align: left;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    
    /* Section Header Mobile */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h6 {
        font-size: 16px;
        letter-spacing: 1px;
        padding-left: 15px;
    }
    
    .section-header h6::before {
        width: 3px;
        height: 16px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 2.8rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 15px;
        line-height: 24px;
    }
    
    /* Service Detail Mobile */
    .service-detail-text h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .service-features h3,
    .service-process h3 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:hover {
        transform: translateY(-5px);
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-outline {
        width: 100%;
    }
    
    .special-offer-box {
        padding: 30px;
    }
    
    .special-offer-content h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .mission-box {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group label span {
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    transition: all 0.3s ease;
    font-family: "Quicksand", sans-serif;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-control::placeholder {
    color: #879096;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gy-20 {
    --bs-gutter-y: 20px;
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.contact-info-content h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-info-content p {
    color: #879096;
    margin: 0;
    line-height: 26px;
}

.contact-info-content a {
    color: #879096;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.social-links-contact h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.social-links-contact .social-links {
    display: flex;
    gap: 15px;
}

.social-links-contact .social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-links-contact .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Contact Section */
@media screen and (max-width: 991px) {
    .contact-info-wrapper {
        position: relative;
        top: 0;
        margin-top: 50px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .contact-info-box {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-box {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

/* Blog Page Styles */
.breaking-news-section {
    background: var(--secondary-color);
    padding: 15px 0;
    position: relative;
}

.breaking-news-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.breaking-news-label {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.breaking-news-content {
    flex: 1;
}

.breaking-news-content p {
    color: var(--white);
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Blog Main Section */
.blog-main-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.blog-category-section {
    margin-bottom: 60px;
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-header h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    line-height: 3.5rem;
    margin: 0;
}

/* Blog Post Card */
.blog-post-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 0;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-post-card.featured {
    margin-bottom: 30px;
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post-card.featured .blog-post-image {
    height: 300px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-post-meta span {
    color: #879096;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-meta .blog-author {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post-meta .blog-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.blog-post-meta .blog-date {
    color: #879096;
}

.blog-post-meta .blog-comments {
    color: #879096;
}

.blog-post-content h3,
.blog-post-content h4 {
    margin: 0;
    line-height: 1.4;
}

.blog-post-content h3 a,
.blog-post-content h4 a {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.blog-post-content h3 a:hover,
.blog-post-content h4 a:hover {
    color: var(--primary-color);
}

.blog-post-content h3 {
    font-size: 24px;
    line-height: 32px;
}

.blog-post-content h4 {
    font-size: 20px;
    line-height: 28px;
}

.blog-post-card .blog-post-content p {
    color: #879096;
    margin-top: 10px;
    line-height: 24px;
    font-size: 15px;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: var(--hover);
    gap: 12px;
}

.btn-read-more i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Make images clickable */
.blog-post-image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-post-image a img {
    transition: transform 0.5s ease;
}

.blog-post-image a:hover img {
    transform: scale(1.1);
}

.weekly-post-image a,
.popular-post-image a,
.video-image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.weekly-post-image a img,
.popular-post-image a img,
.video-image a img {
    transition: transform 0.5s ease;
}

.weekly-post-image a:hover img,
.popular-post-image a:hover img,
.video-image a:hover img {
    transform: scale(1.1);
}

/* Featured Posts Section */
.featured-posts-section {
    margin-bottom: 60px;
}

.featured-post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Weekly Post Section */
.weekly-post-section {
    margin-bottom: 60px;
}

.weekly-post-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.weekly-post-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.weekly-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.weekly-post-image {
    width: 200px;
    min-width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.weekly-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.weekly-post-item:hover .weekly-post-image img {
    transform: scale(1.1);
}

.weekly-post-content h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

.weekly-post-content h4 a {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.weekly-post-content h4 a:hover {
    color: var(--primary-color);
}

.weekly-post-content p {
    color: #879096;
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 14px;
}

/* Blog Sidebar */


.sidebar-widget {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

/* Social Media Widget */
.social-media-widget {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-image {
    width: 100px;
    min-width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-post-item:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-content h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.popular-post-content h5 a {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.popular-post-content h5 a:hover {
    color: var(--primary-color);
}

/* Tags Widget */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--white);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Videos Widget */
.videos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: var(--hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 15px;
}

.video-content h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.video-content h5 a {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.video-content h5 a:hover {
    color: var(--primary-color);
}

/* Category List Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list li a {
    color: #879096;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-list li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Don't Miss Widget */
.dont-miss-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dont-miss-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dont-miss-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dont-miss-item h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.dont-miss-item h5 a {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.dont-miss-item h5 a:hover {
    color: var(--primary-color);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1f4a 100%);
    color: var(--white);
}

.newsletter-widget h3 {
    color: var(--white);
    border-bottom-color: var(--primary-color);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form .form-control {
    background: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
}

.newsletter-form .btn {
    width: 100%;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact-info p strong {
    color: var(--primary-color);
}

/* Responsive Blog Styles */
@media screen and (max-width: 991px) {
    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 50px;
    }
    
    .breaking-news-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breaking-news-label {
        width: 100%;
    }
    
    .weekly-post-item {
        flex-direction: column;
    }
    
    .weekly-post-image {
        width: 100%;
        height: 200px;
    }
    
    .popular-post-item {
        flex-direction: column;
    }
    
    .popular-post-image {
        width: 100%;
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .blog-main-section {
        padding: 40px 0 60px;
    }
    
    .category-header h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-card.featured .blog-post-image {
        height: 250px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .social-media-widget {
        justify-content: center;
    }
}
