

/*-----------------------------------------------------------------------------------
   CSS INDEX
  ===================
website made by Mr.Djemel Hadi - computer scientist 
  1. Theme Default CSS (body, link color, section etc)
  2. - Area
   2.1 Stick menu Area
  3. About Area
  4.Services Area
  5.Skill Area
  6.Faq Area
  7.Wellcome Area
  8.Team Area
  9.Review Area
  10.Portfolio Area
  11. Pricing Table
  12. Testimonials area
  13. Review Area
  14. Quote area
  15.Footer Area
  16.Home Page-2 Area
  17.Home Page 3  CSS
  18.Blog CSS
  17.Blog Details CSS

-----------------------------------------------------------------------------------**/
:root {
    --primary: #0056b3;
    --secondary: #00a8a0;
    --accent: #ff6b00;
    --dark: #1a2b47;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Enhanced Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.90); /* more transparent */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    transition: var(--transition);
}


.navbar-logo {
    height: 42px;
    width: auto;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #0d6efd;
    text-transform: uppercase;
}

.navbar.navbar-scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.94); /* more transparent */
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(0, 86, 179, 0.04);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
    background-color: rgba(0, 86, 179, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Enhanced Dropdown */

.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.90); /* more transparent */
    animation: dropdownFadeIn 0.3s ease;
    backdrop-filter: blur(8px);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    margin: 2px 0;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

/* Ensure navbar collapse works properly */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Mobile menu styling */
@media (max-width: 1199.98px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .dropdown-menu {
        text-align: center;
        border: none;
        background: rgba(255, 255, 255, 0.95);
    }
}
/* Enhanced Navbar Responsive Styles */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Mobile menu improvements */
@media (max-width: 1199.98px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .dropdown-menu {
        text-align: center;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: none;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
}

/* Ensure proper spacing for all screen sizes */
.navbar-nav .nav-link {
    white-space: nowrap;
}

/* Dropdown menu enhancements for mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}

/* Language switcher responsive */
@media (max-width: 576px) {
    .language-switcher .dropdown-language span {
        display: none;
    }
}

/* Navbar toggle button styling */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Smooth dropdown animations */
.dropdown-menu {
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Enhanced Buttons */
.btn {
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* About Page - */
.about-section .content {
    line-height: 1.7;
    color: #555;
}

.about-section img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Stats section fix */
.stat-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Video section styles */
.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Enhanced About Preview Styles */
.image-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.collage-main {
    grid-row: 1 / -1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.collage-secondary {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.collage-main img,
.collage-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-main:hover img,
.collage-secondary:hover img {
    transform: scale(1.05);
}

/* Video overlay styles */
.video-overlay {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
}

.video-with-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    transition: all 0.3s ease;
    background: var(--primary) !important;
    border: 3px solid rgba(255,255,255,0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.play-button:hover {
    transform: scale(1.15);
    background: var(--primary-dark) !important;
    border-color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Video modal enhancements */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background: var(--primary);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Responsive design for image collage */
@media (max-width: 992px) {
    .image-collage {
        height: 350px;
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .image-collage {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 150px 150px;
        height: auto;
        gap: 10px;
    }
    
    .collage-main {
        grid-row: 1;
    }
    
    .play-button {
        width: 60px !important;
        height: 60px !important;
    }
    
    .play-button i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .image-collage {
        grid-template-rows: 200px 120px 120px;
    }
}

/* Enhanced image shadows and animations */
.img-fluid.rounded.shadow {
    transition: all 0.3s ease;
}

.img-fluid.rounded.shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

/* Video container enhancements */
.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-with-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-with-thumbnail:hover {
    transform: translateY(-5px);
}


/* Responsive fixes for about page */
@media (max-width: 768px) {
    .about-section .row {
        text-align: center;
    }
    
    .about-section img {
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-collage {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 150px 150px;
        height: auto;
    }
    
    .collage-main {
        grid-row: 1;
    }
}

/* Admin form enhancements */


.image-preview {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    background: #f8f9fa;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.video-preview {
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
}


/* Enhanced About Page Styles */
.about-page .intro-card {
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
}

.about-page .intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.about-page .intro-card .card-img-top {
    height: 200px;
}

.about-page .intro-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,86,179,0.1) 0%, rgba(0,168,160,0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.about-page .intro-card:hover .card-overlay {
    opacity: 1;
}

/* Feature Sections */
.feature-section .feature-image {
    position: relative;
}

.feature-section .feature-image .image-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    opacity: 0.1;
    z-index: -1;
    transition: var(--transition);
}

.feature-section:hover .feature-image .image-decoration {
    opacity: 0.3;
    transform: translate(5px, 5px);
}

.feature-title {
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Stats Section Enhancement */
.stats-section .stat-item {
    padding: 2rem 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-section .stat-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

/* PDG Section Enhancement */
.pdg-section .pdg-image-wrapper {
    position: relative;
}

.pdg-section .pdg-image-wrapper .image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    opacity: 0.1;
    z-index: -1;
}

/* Video Section Enhancement */
.video-section .video-with-thumbnail {
    transition: var(--transition);
}

.video-section .video-with-thumbnail:hover {
    transform: translateY(-3px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .about-page .feature-section .row {
        text-align: center;
    }
    
    .feature-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stats-section .stat-item {
        margin-bottom: 1rem;
    }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--gradient-dark);
}

#heroCarousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 0.8s ease;
}

.carousel-item.active .slide-img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(26, 43, 71, 0.25) 0%,
    rgba(0, 86, 179, 0.20) 50%,
    rgba(0, 168, 160, 0.18) 100%
);

}

.carousel-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Visitor Counter - Fixed Position */
.visitor-counter-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
}

.visitor-counter {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.visitor-counter:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.counter-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
    color: white;
}

.counter-content {
    text-align: left;
}

.counter-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
    font-weight: 500;
}

/* Enhanced Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.carousel-indicators {
    bottom: 100px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.3);
    border-color: var(--primary);
}

/* Animation improvements */
.hero-section .animate__animated {
    animation-duration: 1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 15px;
    }
    
    .carousel-indicators {
        bottom: 120px;
    }
    
    .visitor-counter-wrapper {
        bottom: 20px;
    }
    
    .visitor-counter {
        padding: 10px 20px;
    }
    
    .counter-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .visitor-counter {
        padding: 8px 16px;
    }
    
    .counter-number {
        font-size: 1.3rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
}
/* Page Hero */
.page-hero {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .breadcrumb {
    background: transparent;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}
/* Service Single Page Styles */
.service-icon-large {
    color: var(--primary);
    text-align: center;
}

.service-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-featured-image img {
    transition: var(--transition);
}

.service-featured-image:hover img {
    transform: scale(1.02);
}

.service-content {
    line-height: 1.8;
}

.service-content h2, .service-content h3, .service-content h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
}

.service-sidebar .card {
    border: none;
    box-shadow: var(--shadow-md);
}

.service-meta .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.related-service-item {
    transition: var(--transition);
}

.related-service-item:hover {
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 8px;
    padding-left: 10px;
    margin-left: -10px;
}

.quick-contact a {
    color: var(--dark);
    transition: var(--transition);
}

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

.process-step {
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .page-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .page-hero .display-4 {
        font-size: 2rem;
    }
    
    .service-featured-image {
        margin-bottom: 2rem;
    }
    
    .service-cta .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}
/* Enhanced Section Titles */
.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gray);
    opacity: 0.3;
}

/* Enhanced Cards */
.service-card, .blog-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    background: white;
    position: relative;
}

.service-card::before, .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before,  .blog-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover, .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

/* Enhanced Division Cards */
.division-img {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.division-card:hover .division-img {
    transform: scale(1.05);
}

/* Division Cards Styling */
.division-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.division-img {
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.division-card:hover .division-img {
    transform: scale(1.05);
}

.division-icon-large {
    color: rgba(255,255,255,0.8);
}

/* Badge Styling */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Stats Section */
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Expertise Features */
.expertise-feature {
    padding: 2rem 1rem;
}

.expertise-icon .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .division-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Ensure consistent card heights */
.division-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.division-card .card-text {
    flex-grow: 1;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

/* Enhanced Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: countUp 2s ease-out;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

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

/* Enhanced Testimonials */
/* Enhanced Testimonials Styling */
.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(0, 86, 179, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

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

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #dee2e6;
}

.rating-stars {
    color: #ffc107;
}

/* For the fallback user icon */
.client-img.bg-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
}

/* Enhanced Accreditations */
.accreditations-slider {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accreditation-logo {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.accreditation-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 168, 160, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section .lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}



/* Enhanced Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 12px;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .navbar .nav-link {
        margin: 2px 0;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .scroll-to-top {
        display: none;
    }
    
    .hero-section {
        background: none !important;
        color: black;
        padding: 50px 0;
    }
    
    .btn {
        display: none;
    }
}
/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.language-flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
    border-radius: 2px;
}

.dropdown-language {
    background: none;
    border: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.dropdown-language:hover {
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary) !important;;
}

.dropdown-language:focus {
    box-shadow: none;
    background-color: rgba(0, 86, 179, 0.1);
}

.dropdown-language::after {
    margin-left: 5px;
}

/* Language dropdown items */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 8px;
    margin: 2px 0;
    transition: var(--transition);
}

.dropdown-item .language-flag {
    width: 18px;
    height: 13px;
    margin-right: 10px;
}

.dropdown-item:hover .language-flag {
    transform: scale(1.1);
}

/* Visitor Counter Styles */
/* .visitor-counter-wrapper {
    display: flex;
    justify-content: center;
} */

.visitor-counter {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.counter-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.counter-content {
    text-align: left;
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* Online Visitors in Stats */
.online-visitors {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Floating Visitor Widget */
.floating-visitor-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.visitor-badge {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.visitor-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
}

.visitor-badge i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.visitor-count {
    font-size: 0.8rem;
    font-weight: 600;
}

.visitor-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-bottom: 15px;
}

.floating-visitor-widget:hover .visitor-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-content {
    text-align: center;
}

.online-now {
    color: var(--primary);
    margin-bottom: 8px;
}

.total-today {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animation for counter */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.counter-update {
    animation: pulse 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-visitor-widget {
        bottom: 80px;
        right: 20px;
    }
    
    .visitor-badge {
        width: 50px;
        height: 50px;
    }
    
    .visitor-counter {
        padding: 12px 20px;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .counter-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Enhanced Footer Styles */
/* Enhanced Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer h5 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.footer a::before {
    content: '▶';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition);
    font-size: 10px;
}

.footer a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 50px;
} 

.footer-content {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-content p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-text {
    flex: 1;
}

.contact-text span {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2px;
}

.contact-text a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
    border-color: var(--primary);
}

/* Facebook Gallery */
.facebook-gallery .gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.facebook-gallery .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.facebook-gallery .gallery-item:hover::before {
    opacity: 0.3;
}

.facebook-gallery .gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
}

.copyright p {
    color: #aaa;
    margin: 0;
    font-size: 0.9rem;
}

.copyright strong {
    color: #ddd;
}

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

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Social Icons in Footer */
.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .footer-contacts .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .facebook-gallery .gallery-item img {
        height: 60px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* Blog Specific Styles */
.blog-img {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.featured-post-img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.featured-post:hover .featured-post-img {
    transform: scale(1.03);
}

/* Blog Sidebar */
.sidebar-widget .card {
    border: none;
    box-shadow: var(--shadow-md);
}

.sidebar-widget .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.recent-post-item {
    transition: var(--transition);
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.tags-cloud .btn {
    transition: var(--transition);
}

.tags-cloud .btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary);
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border-radius: var(--border-radius);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-link:hover {
    background-color: var(--light);
    border-color: var(--primary);
}

/* Post Meta */
.post-meta {
    font-size: 0.85rem;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-sidebar {
        margin-top: 3rem;
    }
    
    .featured-post-img {
        height: 200px;
    }
    
    .hero-stats .stat-item {
        margin: 0 10px;
    }
}

/* Reading Time */
.text-muted .far.fa-clock {
    font-size: 0.8rem;
}

/* Add to style.css */
/* Gallery Styles */
.gallery-item {
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-2px);
}

.gallery-item .gallery-image {
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    box-shadow: var(--shadow-lg);
}

.caption-overlay {
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .caption-overlay {
    opacity: 1;
}

/* Image thumbnail management */
.image-thumbnail {
    transition: var(--transition);
}

.image-thumbnail:hover {
    transform: scale(1.05);
}

.image-thumbnail .btn-group {
    opacity: 0;
    transition: var(--transition);
}

.image-thumbnail:hover .btn-group {
    opacity: 1;
}
 
/* Video container */
.video-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Carousel in modal */
.carousel-item img {
    border-radius: 8px;
}

/* Responsive gallery */
@media (max-width: 768px) {
    .gallery-image {
        height: 200px !important;
    }
    
    .image-thumbnail .btn-group {
        opacity: 1; /* Always show on mobile */
    }
}

/* Enhanced CSS-only solution */
.client-logos-rows {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-logos-row {
    display: flex;
    gap: 60px;
}

.client-logos-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 40s linear infinite;
}

.client-logos-row:nth-child(1) .client-logos-track {
    animation: scrollLogos 35s linear infinite;
}

.client-logos-row:nth-child(2) .client-logos-track {
    animation: scrollLogos 45s linear infinite reverse;
}

.client-logos-row:nth-child(3) .client-logos-track {
    animation: scrollLogos 50s linear infinite;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* Pause on hover */
.client-logos-slider-container:hover .client-logos-track {
    animation-play-state: paused;
}

.client-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;          /* FIX: uniform row height */
    padding: 0 20px;
}

.client-logo-img {
    max-height: 60px;      /* FIX: all logos same visual height */
    max-width: 150px;      /* prevents very wide logos from breaking layout */
    object-fit: contain;
    width: auto;
    height: auto;
}


/* Enhanced Rating System */
.rating-stars .star-label {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
    margin: 0;
}

.rating-stars .star-label:hover {
    color: #ffc107;
    transform: scale(1.2);
}

.rating-stars input[type="radio"]:checked ~ .star-label,
.rating-stars input[type="radio"]:checked ~ .star-container .star-label {
    color: #ffc107;
}

.rating-stars .star-container:hover .star-label,
.rating-stars .star-container:hover ~ .star-container .star-label {
    color: #ffc107;
}

.rating-stars input[type="radio"]:checked + .star-label ~ .star-container .star-label {
    color: #ddd;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
}



.current-image {
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
}

/* Ensure the link is on top and clickable */
.service-carousel .service-link {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}