
 :root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --accent: #198754;
            --light: #f8f9fa;
            --dark: #212529;
            --nursing-blue: #0a58ca;
            --nursing-green: #198754;


             --accent-teal: #2a9d8f;
            --accent-red: #e63946;
            --light-blue: #a8dadc;
            --light-bg: #f8f9fa;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        /* Top Header */
        .top-header {
            background: var(--nursing-blue);
            color: white;
            padding: 8px 0;
            font-size: 1.2rem;
        }
        
        .top-header a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
                      
        }
        
        .top-header a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            text-align: center;
            line-height: 28px;
            margin-left: 8px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--nursing-green);
            transform: translateY(-3px);
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            font-size: larger;
            letter-spacing: 1px;
            
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--nursing-blue) !important;
            font-size: 1.8rem;
        }
        
        .navbar-brand span {
            color: var(--nursing-green);
        }
        
        .nav-link {
            font-weight: 400;
          
            color: var(--dark) !important;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--nursing-blue) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--nursing-blue);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-top: 10px;
        }
        
        .dropdown-item {
            padding: 10px 20px;
            transition: all 0.2s;
        }
        
        .dropdown-item:hover {
            background-color: #e9f7fe;
            color: var(--nursing-blue);
            padding-left: 25px;
        }
        
        /* Hero Slider */
        .hero-slider {
            height: 85vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100%;
            background-size: cover;
            background-position: center;
            display:contain;
        }
        
        .carousel-caption {
            background: rgba(10, 88, 202, 0.85);
            padding: 30px;
            border-radius: 10px;
            max-width: 700px;
            margin: 0 auto;
            bottom: 30%;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .carousel-caption p {
            font-size: 1.25rem;
            margin: 20px auto 30px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            text-align: center;
            color: var(--nursing-blue);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--nursing-green);
            border-radius: 2px;
        }
        
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 25px;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .facility-icon {
            font-size: 3rem;
            color: var(--nursing-blue);
            margin-bottom: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 25px;
            height: 250px;
        }
        
        .gallery-item img {
            transition: transform 0.5s;
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 88, 202, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .contact-form {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
        }
        
        .contact-info {
            background: var(--nursing-blue);
            color: white;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            background: rgba(255,255,255,0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        
        .footer-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--nursing-green);
        }
        
        .footer-links a {
            display: block;
            color: #ddd;
            padding: 5px 0;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--nursing-blue);
            transform: translateY(-5px);
        }
        
        .copyright {
            background: rgba(0,0,0,0.2);
            padding: 15px 0;
            margin-top: 40px;
        }
        
        .btn-primary {
            background-color: var(--nursing-blue);
            border-color: var(--nursing-blue);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: #094db0;
            border-color: #08419c;
        }
        
        .btn-outline-primary {
            color: var(--nursing-blue);
            border-color: var(--nursing-blue);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--nursing-blue);
            border-color: var(--nursing-blue);
            color: white;
        }
        
        .course-card {
            border-left: 4px solid var(--nursing-blue);
        }
        
        .badge-course {
            background: var(--nursing-green);
            font-weight: 500;
            padding: 7px 15px;
            border-radius: 30px;
        }
        
        /* New Sections */
        .stats-section {
            background: linear-gradient(rgba(10, 88, 202, 0.9), rgba(10, 88, 202, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 20px 0;
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(10, 88, 202, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--nursing-blue);
        }
        
        .news-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 25px;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .news-img {
            height: 200px;
            object-fit: cover;
        }
        
        .news-date {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--nursing-blue);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-title {
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-box {
            padding: 30px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--nursing-blue);
            margin-bottom: 20px;
        }
        
        /* Page Specific */
        .page-header {
            background: linear-gradient(rgba(10, 88, 202, 0.8), rgb(79, 130, 197)), url('../images/header1.jpg');
            background-size: cover;
            background-position: center;
            padding: 30px 0 30px;
            color: white;
            text-align: center;
        }
        
        .breadcrumb {
            background: rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 30px;
            display:-webkit-inline-box;
           
        }
        
        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }
        
        .page-content {
            padding: 0px 0;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-left: 20px;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--nursing-blue);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 30px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--nursing-green);
            border: 4px solid var(--nursing-blue);
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--nursing-blue);
        }
        
        .staff-card {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .staff-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--nursing-blue);
            margin: 0 auto 20px;
        }
        
        .course-details {
            padding: 30px;
            border-radius: 12px;
            background: rgba(10, 88, 202, 0.05);
            margin-bottom: 30px;
        }
        
        .eligibility-box {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .table-custom {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .table-custom thead {
            background: var(--nursing-blue);
            color: white;
        }
        
        .facility-card {
            height: 100%;
            transition: all 0.3s;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
        }
        
        .facility-img {
            height: 200px;
            object-fit: cover;
        }

  .contact-container {
             position: relative;
             z-index: 1;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
        }
        

 
        .contact-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .contact-form {
            padding: 30px;
            background: white;
        }
        
        .contact-info {
            padding: 30px;
            background: linear-gradient(to bottom right, var(--nursing-blue), #0a4a9e);
            color: white;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }
        
        .contact-info::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }
        
        .contact-icon {
            font-size: 1.5rem;
            background: rgba(255,255,255,0.15);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .contact-item {
            transition: transform 0.3s;
            margin-bottom: 25px;
            z-index: 1;
            position: relative;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
        }
        
        .contact-item:hover .contact-icon {
            background: var(--nursing-green);
            transform: rotate(5deg);
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--nursing-blue);
            box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.1);
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--nursing-green);
            transform: translateY(-5px);
            color: white;
        }
        
        .btn-primary {
            background-color: var(--nursing-blue);
            border-color: var(--nursing-blue);
            padding: 12px 25px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #094db0;
            border-color: #08419c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 400px;
        }
        
        .alert-success {
            background: rgba(25, 135, 84, 0.1);
            border: 1px solid rgba(25, 135, 84, 0.2);
            color: var(--nursing-green);
            border-radius: 10px;
        }
        
        .text-danger {
            color: #dc3545;
            font-size: 0.9rem;
        }
        
        .contact-header {
            position: relative;
            z-index: 1;
        }
        
        .info-card {
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .info-card h5 {
            color: white;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--nursing-blue);
            margin-bottom: 20px;
            background: var(--light-blue);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-box {
            text-align: center;
            padding: 25px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(25, 135, 84, 0.1);
            z-index: 0;
        }

    
        
        .floating-1 {
            top: 20%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-2 {
            bottom: 30%;
            right: 7%;
            animation: float 10s ease-in-out infinite;
            background: rgba(10, 88, 202, 0.1);
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }





/* Parent must be relative */
.position-relative {
  position: relative;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

/* One floating circle top-left */
.floating-1 {
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #007bff 70%, transparent 50%);
}

/* Another floating circle bottom-right */
.floating-2 {
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, #6f42c1 70%, transparent 50%);
}


.contact-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(10, 88, 202, 0.15);
    border-radius: 50%;
    top: 50%;
    right: -100px;
    z-index: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  margin-top: 0;
}



.hero-slider {
  position: relative;
}

.hero-slider .carousel-item {
  height:750px; /* Or any height you want */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}









        /* Custom styles only for courses section */
        #courses {
            background: linear-gradient(to right, #f8f9fa, #e9f2f9);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        #courses::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,10 100,0 L100,100 Q50,90 0,100 Z" fill="%23ffffff" opacity="0.2"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .section-title {
            position: relative;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
            color: #2b7dbc;
            z-index: 1;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2b7dbc, #4facfe);
            margin: 10px auto;
            border-radius: 2px;
        }
        
        .course-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(43, 125, 188, 0.15);
        }
        
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .course-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .badge-course {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 2;
            color: white;
        }
        
        .anm-badge { 
            background: linear-gradient(135deg, #ff7e5f, #feb47b); 
        }
        .gnm-badge { 
            background: linear-gradient(135deg, #4facfe, #00f2fe); 
        }
        .bsc-badge { 
            background: linear-gradient(135deg, #a6c0fe, #f68084); 
        }
        
        .card-body {
            padding: 25px;
        }
        
        .card-title {
            font-weight: 700;
            color: #2b7dbc;
            margin-bottom: 0.5rem;
        }
        
        .card-subtitle {
            font-weight: 600;
            color: #6c757d;
            margin-bottom: 1.5rem;
        }
        
        .card-text {
            color: #555;
            margin-bottom: 1.8rem;
            line-height: 1.7;
        }
        
        .btn-outline-primary {
            border: 2px solid #2b7dbc;
            color: #2b7dbc;
            font-weight: 600;
            border-radius: 30px;
            padding: 8px 25px;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background: #2b7dbc;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43, 125, 188, 0.3);
        }
        
        /* Feature icons styling */
        .course-features {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature {
            text-align: center;
            flex: 1;
        }
        
        .feature i {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #2b7dbc;
        }
        
        .feature span {
            font-size: 0.85rem;
            color: #666;
        }
        
        /* Animation for the section */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .course-card {
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }
        
        .course-card:nth-child(1) { animation-delay: 0.1s; }
        .course-card:nth-child(2) { animation-delay: 0.3s; }
        .course-card:nth-child(3) { animation-delay: 0.5s; }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .card-img-top {
                height: 200px;
            }
            
            .course-features {
                flex-direction: column;
                gap: 10px;
            }
        }

.card .card-title {
  color: #2b7dbc;
}



 /* Testimonials */
        .testimonials-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--light-blue);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            padding-top: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--accent-teal);
        }
    
   