/* Custom CSS for Imperial Hospitality Services */

/* Preloader Logo Styling */
#loading-icon img {
    max-width: 150px;
    height: auto;
    animation: fadeInOut 1.5s infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Logo circular background styling */
.logo-container {
   display: inline-block;
   background-color: white;
   border-radius: 50%;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   padding: 15px 20px;
}

.logo-container:hover {
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   transform: translateY(-1px);
}

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

/* Red-orange gradient colors for Ghana theme */
:root {
   --ghana-red: #D92016;
   --ghana-orange: #ff6b35;
   --ghana-red-light: #ff6b61;
   --ghana-red-dark: #b01a12;
   --ghana-gradient: linear-gradient(135deg, #D92016 0%, #ff6b35 50%, #ff8c42 100%);
   --ghana-gradient-hover: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
}

/* Yellow accents on dark backgrounds/sections */

/* Header topbar - maintain white background with subtle yellow accents */
.header-topbar {
   background: white;
}

.topbar_note {
   background: linear-gradient(135deg, rgba(217, 32, 22, 0.08) 0%, rgba(255, 107, 53, 0.05) 50%, rgba(255, 140, 66, 0.03) 100%);
   border-image: var(--ghana-gradient) 1;
   color: #333;
}

.topbar_note a span {
   color: var(--ghana-red);
   font-weight: 600;
}

.topbar_note a:hover span {
   color: var(--ghana-red-dark);
}

/* Dark skill section - yellow accents */
.tj-skill-section {
   background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.tj-skill-section .title {
   color: var(--ghana-red);
}

.tj-skill-section .desc {
   color: #e5e5e5;
}

.tj-progress__bar {
   background: var(--ghana-gradient);
}

.tj-progress__title {
   color: var(--ghana-red);
   font-weight: 600;
}

/* Dark testimonial section - red accents */
.testimonial-quote i {
   color: var(--ghana-red);
}

.tj-testimonial-author .author-name {
   color: var(--ghana-red);
}

/* Dark footer areas - red accents */
.tj-footer-area {
   background: #1a1a1a;
}

.footer-widget .widget-title {
   color: var(--ghana-red);
}

.footer-widget a:hover {
   color: var(--ghana-red);
}

/* Dark navigation areas - red accents */
.mainmenu ul li a:hover,
.mainmenu ul li.current-menu-item a {
   color: var(--ghana-red);
}

/* Dark buttons on dark backgrounds */
.tj-primary-btn {
   background: var(--ghana-gradient);
   border-color: var(--ghana-red);
   color: white;
}

.tj-primary-btn:hover {
   background: var(--ghana-gradient-hover);
   transform: translateY(-2px);
}

/* Dark feature items hover */
.feature-item:hover {
   background: rgba(217, 32, 22, 0.05);
   border-color: var(--ghana-red);
}

.feature-item:hover .feature-icon {
   color: var(--ghana-red);
   transform: scale(1.1);
}

.feature-item:hover .title {
   color: var(--ghana-red);
}

/* Dark blog section accents */
.blog-item:hover .blog-title a {
   color: var(--ghana-red);
}

.blog-meta .category a {
   background: var(--ghana-gradient);
   color: white;
   padding: 4px 12px;
   border-radius: 20px;
   font-weight: 600;
}

/* Dark project section accents */
.project-item:hover .title a {
   color: var(--ghana-red);
}

/* Why Choose Us Section - Enhanced Design */
.tj-why-choose-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.why-choose-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.92) 0%, rgba(0, 51, 102, 0.90) 100%);
    pointer-events: none;
    z-index: 1;
}

.why-choose-background-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(234, 98, 20, 0.12) 0%, transparent 50%),
                      radial-gradient(circle at 70% 70%, rgba(234, 98, 20, 0.10) 0%, transparent 50%);
}

.tj-why-choose-section .sec-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(234, 98, 20, 0.15);
    color: #EA6214;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.why-choose-badge i {
    font-size: 18px;
}

.why-choose-main-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.why-choose-divider {
    width: 80px;
    height: 4px;
    background: var(--ghana-gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.why-choose-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-card {
    padding: 50px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(234, 98, 20, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ghana-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    background: white;
    border-color: #EA6214;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(234, 98, 20, 0.15);
    line-height: 1;
}

.why-choose-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(234, 98, 20, 0.4);
}

.why-choose-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--ghana-gradient);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-card:hover .why-choose-icon-wrapper::after {
    opacity: 1;
}

.why-choose-icon-wrapper i {
    font-size: 44px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon-wrapper i {
    transform: scale(1.1);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 16px;
    line-height: 1.4;
}

.card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .why-choose-main-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .tj-why-choose-section {
        padding: 80px 0;
    }
    
    .why-choose-main-title {
        font-size: 32px;
    }
    
    .why-choose-card {
        margin-bottom: 20px;
    }
}

/* Call to Action Section Styling */
.tj-cta-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.85) 0%, rgba(0, 51, 102, 0.85) 100%);
    z-index: 1;
}

.cta-simple-wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.cta-simple-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-simple-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-simple-button .tj-primary-btn {
    box-shadow: 0 15px 40px rgba(234, 98, 20, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-simple-title {
        font-size: 42px;
    }
    
    .cta-simple-desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .tj-cta-section {
        padding: 80px 0;
    }
    
    .cta-simple-wrapper {
        padding: 60px 0;
    }
    
    .cta-simple-title {
        font-size: 32px;
    }
    
    .cta-simple-desc {
        font-size: 16px;
    }
}

/* Content Section Styling */
.tj-content-section {
   padding: 100px 0;
   background: white;
}

.tj-content-section .sec-heading .sub-title {
   color: var(--ghana-red);
   font-weight: 600;
}

.tj-content-section .sec-heading .sec-title {
   color: #1e3a8a;
   font-weight: 700;
   margin-bottom: 30px;
}

.tj-content-section .desc {
   font-size: 18px;
   color: #555;
   line-height: 1.8;
   margin-bottom: 40px;
}

.tj-content-section .desc p {
   margin-bottom: 20px;
}

.content-cta {
   margin-top: 40px;
}

/* Gallery Section Styling */
.tj-gallery-section {
   padding: 100px 0;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tj-gallery-section .sec-heading .sub-title {
   color: var(--ghana-red);
   font-weight: 600;
}

.tj-gallery-section .sec-heading .sec-title {
   color: #1e3a8a;
   font-weight: 700;
   margin-bottom: 20px;
}

.tj-gallery-section .desc {
   font-size: 18px;
   color: #555;
   margin-bottom: 50px;
}

.gallery-slider {
   margin-top: 40px;
}

.gallery-item {
   background: white;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   height: 100%;
}

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

.gallery-image {
   position: relative;
   overflow: hidden;
   height: 300px;
}

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

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

.gallery-content {
   padding: 30px;
}

.gallery-title {
   font-size: 24px;
   font-weight: 700;
   color: #1e3a8a;
   margin-bottom: 15px;
   line-height: 1.3;
}

.gallery-desc {
   font-size: 16px;
   color: #666;
   line-height: 1.6;
   margin: 0;
}

/* Swiper Customization */
.gallery-swiper {
   padding: 20px 0 60px 0;
}

.gallery-swiper .swiper-slide {
   height: auto;
}

.swiper-pagination-bullet {
   background: var(--ghana-red);
   opacity: 0.5;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   background: var(--ghana-gradient);
}

.swiper-button-next,
.swiper-button-prev {
   color: var(--ghana-red);
   background: var(--ghana-gradient);
   width: 50px;
   height: 50px;
   border-radius: 50%;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
   color: white;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
   .cta-title {
      font-size: 36px;
   }
   
   .cta-desc {
      font-size: 16px;
   }
   
   .why-choose-item .title {
      font-size: 16px;
   }
   
   .tj-content-section {
      padding: 60px 0;
   }
   
   .tj-content-section .desc {
      font-size: 16px;
   }
   
   .tj-content-section .sec-heading .sec-title {
      font-size: 28px;
   }
}

.tj-about-section .about-bg-images .about-shape-1 img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: cover;
    max-width: 100%;
}

.tj-about-section .about-bg-images .about-shape-2 img {
    max-width: 100%;
    margin-top: 20px;
    object-fit: contain;
}

.blog-meta ul li.category a {
    color: white;
}

/* Header Navy Blue Background - Topbar Only */
.tj-header-area .header-topbar {
    background: #001f3f !important;
}

/* Adjust topbar text colors for navy background */
.header-topbar_wrap .topbar_note,
.header-topbar_wrap .topbar_note i,
.header-topbar_wrap .topbar_note a,
.header-topbar_wrap .topbar_note a span {
    color: white !important;
}

.topbar_infos .info_item,
.topbar_infos .info_item a,
.topbar_infos .info_item span,
.topbar_infos .info_item i {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Feature Section Enhancements */
.tj-feature-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tj-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(234, 98, 20, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tj-feature-section .sec-heading {
    margin-bottom: 60px;
}

.tj-feature-section .sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #EA6214;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(234, 98, 20, 0.1);
    border-radius: 30px;
    margin-bottom: 16px;
}

.tj-feature-section .sec-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.tj-feature-section .desc p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Items Styling */
.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    border: 2px solid rgba(234, 98, 20, 0.1);
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 98, 20, 0.1) 0%, rgba(217, 32, 22, 0.1) 100%);
    border-radius: 50%;
}

.feature-item .feature-icon i {
    font-size: 48px;
    color: #EA6214;
    position: relative;
    z-index: 2;
}

.feature-item .feature-content {
    text-align: center;
}

.feature-item .feature-content .title {
    font-size: 22px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 16px;
}

.feature-item .feature-content .desc p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .tj-feature-section .sec-title {
        font-size: 36px;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .tj-feature-section .sec-title {
        font-size: 28px;
    }
    
    .tj-feature-section .desc p {
        font-size: 16px;
    }
}

/* About Section Design */
.tj-about-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

/* Image Grid */
.about-image-grid {
    position: relative;
    padding-right: 50px;
}

.about-img-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.about-experience-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 140px;
    height: 140px;
    background: var(--ghana-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(234, 98, 20, 0.4);
    animation: pulse 2s infinite;
}

.about-experience-badge .badge-inner {
    text-align: center;
    color: white;
}

.about-experience-badge h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0 0;
    line-height: 1.3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Content Wrapper */
.about-content-wrapper {
    padding-left: 50px;
}

.about-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(234, 98, 20, 0.1);
    color: #EA6214;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #001f3f;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Services Grid */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.service-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(234, 98, 20, 0.1) 0%, rgba(217, 32, 22, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: #EA6214;
}

.service-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #001f3f;
    margin: 0 0 6px;
}

.service-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Group */
.about-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.about-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-contact-info i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.about-contact-info div span {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 2px;
}

.about-contact-info div strong {
    font-size: 18px;
    color: #001f3f;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content-wrapper {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .about-image-grid {
        padding-right: 0;
    }
    
    .about-main-title {
        font-size: 36px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .tj-about-section {
        padding: 80px 0;
    }
    
    .about-main-title {
        font-size: 28px;
    }
    
    .about-img-main img {
        height: 400px;
    }
    
    .about-img-secondary {
        width: 200px;
        height: 200px;
    }
    
    .about-experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        left: 20px;
    }
    
    .about-experience-badge h3 {
        font-size: 36px;
    }
    
    .about-experience-badge p {
        font-size: 12px;
    }
}

/* Experience Section Design */
.tj-experience-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.experience-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(234, 98, 20, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0, 31, 63, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.experience-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Header */
.experience-header {
    margin-bottom: 60px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(234, 98, 20, 0.1) 0%, rgba(217, 32, 22, 0.1) 100%);
    color: #EA6214;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.experience-badge i {
    font-size: 18px;
}

.experience-title {
    font-size: 52px;
    font-weight: 700;
    color: #001f3f;
    line-height: 1.2;
    margin-bottom: 30px;
}

.experience-divider {
    width: 80px;
    height: 4px;
    background: var(--ghana-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Content Grid */
.experience-content-grid {
    margin-bottom: 60px;
}

.experience-text-box {
    padding: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.experience-text-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.experience-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.experience-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

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

.experience-text-box:hover .experience-image-wrapper img {
    transform: scale(1.1);
}

.experience-icon-box {
    width: 70px;
    height: 70px;
    background: var(--ghana-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(234, 98, 20, 0.3);
}

.experience-icon-box i {
    font-size: 32px;
    color: white;
}

.experience-text-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 16px;
    padding: 0 40px;
}

.experience-text-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    padding: 0 40px 40px;
}

/* Stats Row */
.experience-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(234, 98, 20, 0.1) 0%, rgba(217, 32, 22, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 28px;
    color: #EA6214;
}

.stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 4px;
    line-height: 1;
}

.stat-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* CTA */
.experience-cta {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .experience-title {
        font-size: 40px;
    }
    
    .experience-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .experience-content-grid {
        margin-bottom: 40px;
    }
    
    .experience-text-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .tj-experience-section {
        padding: 80px 0;
    }
    
    .experience-title {
        font-size: 32px;
    }
    
    .experience-stats-row {
        grid-template-columns: 1fr;
    }
    
    .experience-text-box {
        padding: 30px;
    }
    
    .stat-item {
        padding: 24px;
    }
    
    .stat-content h3 {
        font-size: 28px;
    }
}

/* Hero Full Width Slider Styling */
.hero-fullwidth-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full Width Background Images */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay for text readability */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Content positioning */
.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 40px 20px;
    color: white;
}

.hero-slide-content .hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-slide-content .hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slide-content .active-color {
    background: var(--ghana-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Navigation Buttons */
.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--ghana-gradient);
    transform: scale(1.1);
}

.hero-nav-btn::after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper .swiper-button-next {
    right: 30px;
}

.hero-swiper .swiper-button-prev {
    left: 30px;
}

/* Hero Pagination */
.hero-pagination {
    bottom: 120px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--ghana-gradient);
    width: 30px;
    border-radius: 6px;
}

/* Smooth transitions for hero content */
.hero-swiper .swiper-slide-active .hero-title,
.hero-swiper .swiper-slide-active .desc,
.hero-swiper .swiper-slide-active .hero-button {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Scroll Button */
.hero-fullwidth-slider .hero_scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-fullwidth-slider .hero_scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero-fullwidth-slider .hero_scroll a span {
    display: block;
}

.hero-fullwidth-slider .hero_scroll a span i {
    transform: rotate(270deg);
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-fullwidth-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-slide-content .hero-title {
        font-size: 36px;
    }
    
    .hero-slide-content .hero-desc {
        font-size: 16px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-btn::after {
        font-size: 16px;
    }
    
    .hero-swiper .swiper-button-next {
        right: 15px;
    }
    
    .hero-swiper .swiper-button-prev {
        left: 15px;
    }
    
    .hero-pagination {
        bottom: 100px !important;
    }
    
    .hero-fullwidth-slider .hero_scroll {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-slide-content .hero-title {
        font-size: 28px;
    }
    
    .hero-slide-content .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

/* ================================
   About Page Styles
================================ */

/* Breadcrumb Section */
.tj-breadcrumb-section {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    position: relative;
    overflow: hidden;
}

.tj-breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/photorealistic-portrait-african-women.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.breadcrumb-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 100px;
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    position: relative;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 15px;
    color: #EA6214;
}

.breadcrumb-list li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #EA6214;
}

/* About Introduction Section */
.tj-about-intro-section {
    padding: 100px 0;
    background: white;
}

.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(217, 32, 22, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.badge-content p {
    font-size: 14px;
    margin: 5px 0 0;
    line-height: 1.3;
}

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

.about-intro-content .section-header .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.about-intro-content .section-header .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro-content .intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.about-cta {
    margin-top: 30px;
}

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

.tj-mission-vision-section .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.tj-mission-vision-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.tj-mission-vision-section .section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.mb-60 {
    margin-bottom: 60px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #001f3f;
    flex-shrink: 0;
}

.card-header-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #001f3f;
    margin: 0;
}

.card-divider {
    display: none;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.card-pattern {
    display: none;
}

/* Values Section */
.tj-values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.tj-values-section .section-header {
    margin-bottom: 60px;
}

.tj-values-section .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.tj-values-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.tj-values-section .section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.values-checklist {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.value-item:first-child {
    padding-top: 0;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: #EA6214;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.value-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Why Choose About Section */
.tj-why-choose-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    position: relative;
}

.tj-why-choose-about .section-header {
    margin-bottom: 60px;
}

.tj-why-choose-about .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.tj-why-choose-about .section-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.why-choose-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-choose-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-content {
    padding-left: 40px;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.choose-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.choose-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.choose-text p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* About CTA Section */
.tj-about-cta-section {
    padding: 100px 0;
    background-image: url('../images/joshua-duneebon-I1KnBSlRolc-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.tj-about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
}

.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tj-secondary-btn {
    background: white;
    color: #001f3f;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.tj-secondary-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.tj-secondary-btn .btn_icon i {
    color: #001f3f;
}

.tj-secondary-btn:hover .btn_icon i {
    color: white;
}

/* ================================
   Services Page Styles
================================ */

/* Services Introduction */
.services-intro-section {
    padding: 80px 0 60px;
    background: white;
}

.services-intro-section .section-header .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.services-intro-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.services-intro-section .section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Service Category Section */
.service-category-section {
    padding: 80px 0;
    background: white;
}

.service-category-section.alt-bg {
    background: #f8f9fa;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

.category-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 18px;
    color: #666;
}

/* Services page specific styling */
.service-category-section .service-item {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-category-section.alt-bg .service-item {
    background: white;
}

.service-category-section .service-item:hover {
    border-color: #EA6214;
    box-shadow: 0 10px 30px rgba(234, 98, 20, 0.1);
    transform: translateY(-5px);
}



.service-category-section .service-item {
    display: flex;
    flex-direction: column;
}

.service-category-section .service-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #EA6214;
    transition: all 0.3s ease;
    order: 1;
}

.service-category-section .service-item:hover .service-icon {
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    color: white;
}

.service-category-section .service-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 12px;
    order: 2;
}

.service-category-section .service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    order: 3;
}

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

.service-detail-section.alt-bg {
    background: #f8f9fa;
}

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

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-detail-content {
    padding-left: 40px;
}

.service-detail-section .order-lg-1 .service-detail-content {
    padding-left: 0;
    padding-right: 40px;
}

.service-detail-content .category-icon {
    margin: 0 0 25px;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.service-detail-content .lead-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.consultancy-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #001f3f;
    margin-top: 30px;
    margin-bottom: 20px;
}

.consultancy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.consultancy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.consultancy-list li i {
    color: #EA6214;
    font-size: 18px;
    flex-shrink: 0;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background-image: url('../images/joshua-duneebon-I1KnBSlRolc-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
}

.services-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Responsive Services Page */
@media (max-width: 991px) {
    .service-detail-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .service-detail-section .order-lg-1 .service-detail-content {
        padding-right: 0;
    }

    .services-intro-section .section-title,
    .category-header h2,
    .service-detail-content h2,
    .services-cta-content h2 {
        font-size: 32px;
    }

    .service-detail-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .services-intro-section .section-title {
        font-size: 28px;
    }

    .category-header h2 {
        font-size: 28px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .services-cta-content h2 {
        font-size: 28px;
    }

    .service-detail-image img {
        height: 300px;
    }
}

/* ================================
   Team Page Styles
================================ */

.team-intro-section {
    padding: 80px 0 60px;
    background: white;
}

.team-intro-section .section-header .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.team-intro-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.team-intro-section .section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.team-members-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

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

.team-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder > i {
    font-size: 120px;
    color: #ccc;
    transition: all 0.3s ease;
}

.team-card:hover .team-placeholder > i {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234, 98, 20, 0.95) 0%, rgba(217, 32, 22, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA6214;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #001f3f;
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 30px 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 8px;
}

.team-position {
    font-size: 16px;
    color: #EA6214;
    font-weight: 600;
    margin: 0;
}

.team-cta-section {
    padding: 100px 0;
    background-image: url('../images/ifeoluwa-b-0qz48eDvNHo-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.team-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
}

.team-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.team-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Responsive Team Page */
@media (max-width: 991px) {
    .team-intro-section .section-title,
    .team-cta-content h2 {
        font-size: 32px;
    }

    .team-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .team-intro-section .section-title {
        font-size: 28px;
    }

    .team-cta-content h2 {
        font-size: 28px;
    }

    .team-image {
        height: 350px;
    }
}

/* ================================
   Careers Page Styles
================================ */

.career-hero-section {
    padding: 80px 0;
    background: white;
}

.career-hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.career-hero-content .lead-text {
    font-size: 24px;
    color: #EA6214;
    font-weight: 600;
    margin-bottom: 25px;
}

.career-hero-content .hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.opportunities-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.opportunities-overview-section .section-header {
    margin-bottom: 60px;
}

.opportunities-overview-section .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.opportunities-overview-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.opportunities-overview-section .section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.opportunity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.opportunity-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

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

.opportunity-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.opportunity-list li i {
    color: #EA6214;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.future-growth-section {
    padding: 100px 0;
    background: white;
}

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

.growth-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

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

.growth-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 25px;
}

.growth-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.growth-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #EA6214;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 16px;
    color: #001f3f;
    font-weight: 600;
    margin: 0;
}

.why-join-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-join-section .section-header {
    margin-bottom: 60px;
}

.why-join-section .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.why-join-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #EA6214;
    box-shadow: 0 10px 30px rgba(234, 98, 20, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #EA6214;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    color: white;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.careers-cta-section {
    padding: 100px 0;
    background-image: url('../images/beautiful-umbrella-chair-around-swimming-pool-hotel-resort.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.careers-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
}

.careers-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.careers-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* Responsive Careers Page */
@media (max-width: 991px) {
    .career-hero-content h2 {
        font-size: 36px;
    }

    .growth-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .growth-image img {
        height: 400px;
    }

    .growth-stats {
        gap: 20px;
    }

    .opportunities-overview-section .section-title,
    .why-join-section .section-title,
    .growth-content h2,
    .careers-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .career-hero-content h2 {
        font-size: 32px;
    }

    .career-hero-content .lead-text {
        font-size: 20px;
    }

    .growth-image img {
        height: 300px;
    }

    .growth-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 40px;
    }

    .opportunities-overview-section .section-title,
    .why-join-section .section-title,
    .growth-content h2,
    .careers-cta-content h2 {
        font-size: 28px;
    }
}

/* ================================
   FAQ Page Styles
================================ */

.faq-intro-section {
    padding: 80px 0 60px;
    background: white;
}

.faq-intro-section .section-header .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.faq-intro-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.faq-intro-section .section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.faq-content-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.faq-accordion {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 25px 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #EA6214;
}

.faq-question h4 {
    font-size: 20px;
    font-weight: 700;
    color: #001f3f;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h4 {
    color: #EA6214;
}

.faq-question i {
    font-size: 16px;
    color: #EA6214;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 0 0 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.faq-cta-section {
    padding: 100px 0;
    background-image: url('../images/yoel-winkler-a0BGODzhmqg-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.faq-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
}

.faq-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.faq-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Responsive FAQ Page */
@media (max-width: 991px) {
    .faq-intro-section .section-title,
    .faq-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .faq-intro-section .section-title {
        font-size: 28px;
    }

    .faq-cta-content h2 {
        font-size: 28px;
    }

    .faq-question h4 {
        font-size: 18px;
        padding-right: 10px;
    }

    .faq-accordion {
        padding: 15px;
    }

    .faq-item {
        padding: 20px 15px;
    }
}

/* ================================
   Contact Page Styles
================================ */

.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-section .section-header {
    margin-bottom: 60px;
}

.contact-info-section .sub-title {
    color: #EA6214;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.contact-info-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.contact-info-section .section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #EA6214;
    box-shadow: 0 10px 30px rgba(234, 98, 20, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EA6214 0%, #D92016 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #EA6214;
}

.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form-wrapper {
    background: white;
    padding: 70px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 50px;
}

.form-header h3 {
    font-size: 38px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 12px;
    display: block;
    order: 1;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    order: 2;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #EA6214;
    box-shadow: 0 0 0 3px rgba(234, 98, 20, 0.1);
}

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

.contact-form .w-100 {
    width: 100%;
    justify-content: center;
}

.contact-map-section {
    padding: 0;
    background: white;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.blue-black {
    background: #001f3f;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-info-section .section-title,
    .form-header h3 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .contact-info-section .section-title {
        font-size: 28px;
    }

    .form-header h3 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .map-container {
        height: 350px;
    }
}

/* Responsive About Page */
@media (max-width: 991px) {
    .about-intro-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .why-choose-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .breadcrumb-title {
        font-size: 36px;
    }

    .about-intro-content .section-header .section-title,
    .tj-values-section .section-title,
    .tj-why-choose-about .section-title,
    .about-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .tj-breadcrumb-section {
        padding: 80px 0 60px;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .about-intro-image img {
        height: 400px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }

    .badge-content h3 {
        font-size: 36px;
    }

    .badge-content p {
        font-size: 12px;
    }

    .about-intro-content .section-header .section-title {
        font-size: 28px;
    }

    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }

    .value-card {
        margin-bottom: 20px;
    }

    .choose-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .about-cta-content h2 {
        font-size: 28px;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}