 footer {
     background: #1a1a1a;
     color: white;
     padding: 3rem 0 1.5rem;
 }

 .footer-nav {
     text-align: center;
     margin-bottom: 2rem;
 }

 .footer-nav a {
     color: white;
     text-decoration: none;
     margin: 0 1rem;
     transition: color 0.3s ease;
     font-size: 0.95rem;
 }

 .footer-nav a:hover {
     color: #4361ee;
 }

 .social-icons {
     text-align: center;
     margin-bottom: 2rem;
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     margin: 0 0.5rem;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-icons a:hover {
     background: #4361ee;
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     color: #999;
     font-size: 0.9rem;
     padding-top: 1.5rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Add to your main CSS file */
 .testimonial-form-section {
     background: #051d3a;
     color: rgb(255, 255, 255);
     padding: 2.5rem;
     border-radius: 15px;
     margin-bottom: 2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .form-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .form-subtitle {
     opacity: 0.9;
     margin-bottom: 1.5rem;
     font-size: 1rem;
 }

 .testimonial-form .form-group {
     margin-bottom: 1.2rem;
 }

 .testimonial-form label {
     font-weight: 600;
     color: rgb(255, 255, 255);
     margin-bottom: 0.5rem;
     display: block;
 }

 .testimonial-form .form-control {
     background: rgba(255, 255, 255, 0.9);
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 8px;
     padding: 0.75rem 1rem;
     transition: all 0.3s ease;
 }

 .testimonial-form .form-control:focus {
     background: white;
     border-color: white;
     box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
 }

 /* Star Rating */
 .star-rating {
     display: flex;
     flex-direction: row-reverse;
     justify-content: flex-end;
     gap: 5px;
 }

 .star-rating input {
     display: none;
 }

 .star-rating label {
     font-size: 2rem;
     color: #ccc;
     cursor: pointer;
     transition: color 0.3s;
 }

 .star-rating label:hover,
 .star-rating label:hover~label,
 .star-rating input:checked~label {
     color: #ffc107;
 }

 /* Platform Features */
 .platform-features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 10px;
     margin-top: 0.5rem;
 }

 .platform-features .form-check {
     background: rgba(255, 255, 255, 0.1);
     padding: 10px 15px;
     border-radius: 6px;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .platform-features .form-check label {
     margin: 0;
     font-weight: normal;
     cursor: pointer;
 }

 .platform-features .form-check input[type="checkbox"] {
     margin-right: 8px;
 }

 /* Submit Button */
 .btn-submit {
     background: white;
     color: #667eea;
     border: none;
     padding: 12px 30px;
     border-radius: 8px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-submit:hover {
     background: #b4b4b4;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 /* Testimonial Cards */
 .testimonial-card {
     background: white;
     border-radius: 12px;
     padding: 1.5rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     height: 100%;
     transition: transform 0.3s ease;
     border: 1px solid #eee;
 }

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

 .testimonial-rating {
     font-size: 1rem;
 }

 .testimonial-text {
     color: #333;
     font-style: italic;
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #ffffff 0%, #019219 100%);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 1.2rem;
 }

 .author-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 .author-info .author-name {
     font-weight: 600;
     color: #333;
     margin-bottom: 0.2rem;
 }

 .author-info .author-role {
     color: #24e44d;
     font-size: 0.9rem;
     margin-bottom: 0.2rem;
 }

 .author-info .author-experience {
     font-size: 0.8rem;
 }