/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img,
.custom-logo-link img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        background-color: #6222cc;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

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

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

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


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

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

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

.carousel-item {
    min-height: 400px;
}

.gd256-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;   /* Set your desired logo area width */
    height: 60px;   /* Set your desired logo area height */
    overflow: hidden;
    background: transparent;
}

.gd256-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gd256-logo-area {
    display: inline-block;
    width: 120px;   /* Set your desired logo width */
    height: 60px;   /* Set your desired logo height */
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

.gd256-logo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* This will crop and fill the area */
    display: block;
}


.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 10px 0 0;
}
.breadcrumb-item a {
    color: #222121;
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: #ddd;
}

/* --- Modern Sidebar --- */
.modern-sidebar {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
}

/* --- Modern Comments Section --- */
.modern-comments {
    margin-top: 40px;
    font-family: 'Open Sans', sans-serif;
}
.modern-comments-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.comment-list {
    list-style: none;
    padding: 0;
}
.modern-comment-item {
    border-bottom: 1px solid #ececec;
    padding: 20px 0;
}
.modern-comment-item:last-child {
    border-bottom: none;
}
.comment-body {
    display: flex;
    gap: 15px;
}
.comment-author-avatar img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.comment-content {
    flex: 1;
}
.comment-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}
.comment-meta {
    font-size: 0.9rem;
    color: #999;
}
.comment-text {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}
.comment-reply a {
    font-size: 0.9rem;
    color: #0073aa;
    text-decoration: none;
    margin-top: 10px;
}
.comment-reply a:hover {
    text-decoration: underline;
}

/* --- Modern Comment Form --- */
.comment-form {
    background: #fff;
    padding: 25px;
    border: 1px solid #ececec;
    border-radius: 5px;
    margin-top: 30px;
}
.comment-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    border-radius: 3px;
}
.comment-form textarea {
    height: 150px;
    resize: vertical;
}
.comment-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}
.comment-form input[type="submit"]:hover {
    background-color: #005177;
}

/* --- Single Post Final Modern Styles --- */

/* Spacer for fixed header */
.spacer {
  display: block;
}

/* Breadcrumb Section: Transparent background, black text */
.single-breadcrumb {
  background: transparent !important;
  box-shadow: none !important;
}
.single-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.single-breadcrumb .breadcrumb li,
.single-breadcrumb .breadcrumb li a {
  color: #333 !important; /* Black text color */
  text-decoration: none;
}
.single-breadcrumb .breadcrumb li.active {
    color: #777 !important; /* Slightly lighter for the active item */
}
.single-breadcrumb .breadcrumb li+li:before {
  content: "›";
  padding: 0 8px;
  color: #999;
}

/* Title Styling */
.single-post-header .single-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #222;
  margin: 0;
  text-align: left;
}

/* Featured Image */
.featured-image-wrapper {
  margin-top: 20px;
}

/* Post Content */
.post-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* Comments Section */
.comments-section {
  background: #fdfdfd;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid #eee;
  border-radius: 5px;
}

/* Sidebar: Aligned with main content */
.single-sidebar {
  background: #f7f7f7 !important;
  padding: 30px !important;
  border-radius: 5px !important;
}
.single-sidebar .widget {
  margin-bottom: 25px;
}
.single-sidebar h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}


/* --- Post Navigation: Robust Styling for Clear Separation --- */
.post-navigation {
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
}

/* The main flex container for the links */
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* CRITICAL: Limit the width of each link to prevent them from ever touching */
.post-navigation .nav-previous,
.post-navigation .nav-next {
  max-width: 48%;
  flex-basis: 48%;
}

/* Align the 'next' link text to the right on larger screens */
.post-navigation .nav-next {
  text-align: right;
}

/* The "Previous/Next Post" label */
.post-navigation .nav-label {
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  color: #0073aa;
  margin-bottom: 5px;
}

/* The actual post title link */
.post-navigation a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.post-navigation a:hover {
  color: #0073aa;
}

/* --- Responsive Styling for Small Screens (e.g., tablets and phones) --- */
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column; /* Stack them vertically */
    gap: 2rem; /* Add vertical space between them when stacked */
  }

  /* On small screens, allow them to take full width and reset alignment */
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    max-width: 100%;
    flex-basis: 100%;
    text-align: left !important; /* Reset text alignment for consistency */
  }
}

/* --- Blog Listing Page Styles --- */

/* Breadcrumb for Blog Page */
.blog-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.blog-breadcrumb .breadcrumb li,
.blog-breadcrumb .breadcrumb li a {
  color: #333;
  text-decoration: none;
}
.blog-breadcrumb .breadcrumb li.active {
  color: #777;
}
.blog-breadcrumb .breadcrumb li+li:before {
  content: "›";
  padding: 0 8px;
  color: #999;
}

/* --- Modern Pagination Styles --- */
.pagination-wrapper ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem; /* Space between pagination items */
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #0073aa;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.pagination-wrapper .page-numbers a:hover {
  background-color: #f0f0f0;
  border-color: #ccc;
}

.pagination-wrapper .page-numbers .current {
  background-color: #0073aa;
  border-color: #0073aa;
  color: #fff;
  font-weight: bold;
}

.pagination-wrapper .page-numbers .dots {
  border: none;
  background: transparent;
  color: #0073aa;
  padding: 0 0.5rem;
}

/* --- Blog Page Sidebar - World-Class Styling --- */
.blog-sidebar {
  background-color: #f7f7f7;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 30px;
}

/* Style for each widget inside the sidebar */
.blog-sidebar .widget {
  margin-bottom: 2.5rem; /* Generous space between widgets */
}
.blog-sidebar .widget:last-child {
  margin-bottom: 0;
}

/* Widget Title Styling */
.blog-sidebar .widget-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0073aa; /* Accent color border */
  display: inline-block;
}

/* Styling for widget content (lists, text, etc.) */
.blog-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar .widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9e9e9;
}

.blog-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.blog-sidebar .widget ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.blog-sidebar .widget ul li a:hover {
  color: #0073aa;
}

/* ===================================
   Sidebar Widget Base Styles
====================================== */
.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
}

.sidebar-widget .widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #212529;
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff; /* Primary Theme Color */
}

/* Universal list styling for widgets */
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===================================
   Individual Widget Styles
====================================== */

/* 1. Search Bar */
.widget-search-form {
    position: relative;
}
.widget-search-form .form-control {
    height: 50px;
    padding-left: 20px;
    padding-right: 50px;
    border-radius: 25px;
    border: 1px solid #ced4da;
}
.widget-search-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    border-radius: 0 25px 25px 0;
    background: #007bff;
    color: #fff;
    border: none;
}
.widget-search-form .btn:hover {
    background: #0056b3;
}

/* 2. Category & Services List */
.widget-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}
.widget-list li:last-child a {
    border-bottom: none;
}
.widget-list li a:hover {
    color: #007bff;
}
.widget-list .count-badge {
    background-color: #e9ecef;
    color: #495057;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
}
.widget-list .list-icon {
    margin-right: 10px;
    color: #007bff;
}

/* 3. Posts Lists (Latest & Popular) */
.widget-post-list .post-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.widget-post-list .post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.widget-post-list .post-item:first-child {
    padding-top: 0;
}
.widget-post-list .post-item-image {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}
.widget-post-list .post-item-content .post-title {
    display: block;
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s;
}
.widget-post-list .post-item-content .post-title:hover {
    color: #007bff;
}
.widget-post-list .post-item-content .post-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

/* 4. Social Media Connect */
.widget-social-connect {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.widget-social-connect .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.widget-social-connect .social-link:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

/* 5. About Us */
.widget-about .about-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}
.widget-about .about-text {
    color: #6c757d;
    line-height: 1.7;
}

/* ===================================
   Header Search Overlay
====================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 25, 42, 0.95); /* Dark blue overlay */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .close-search-btn {
    position: absolute;
    top: 30px;
    right: 45px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.search-overlay .close-search-btn:hover {
    transform: rotate(90deg);
}

.search-overlay-content {
    width: 80%;
    max-width: 700px;
}

.search-overlay .search-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 2rem; /* Adjust size as needed */
    padding: 15px 0;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-overlay .search-field:focus {
    border-bottom-color: #fff;
}

.search-overlay .screen-reader-text {
    display: none;
}



