/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0077b6;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f0fdf4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    padding: 120px 0 80px;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #10b981;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #10b981;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-card i {
    font-size: 4rem;
    margin-bottom: 16px;
    color: white;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    position: relative;
    display: inline-block;
    cursor: default;
    text-align: center;
    margin-left: auto;
    margin-right: auto;

}
.section-title-wrapper {
    text-align: center;
}


/* BEFORE HOVER: hidden underline at center */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; /* space below the text */
    left: 50%;
    transform: translateX(-50%) scaleX(0); /* hidden, centered */
    transform-origin: center;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4); /* matches your theme */
    transition: transform 0.4s ease;
}

/* AFTER HOVER: underline expands from center outward */
.section-title:hover::after {
    transform: translateX(-50%) scaleX(1);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #374151;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

a.service-card {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}



.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    transition: transform 0.4s ease;
}

.hover-underline:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature i {
    color: #10b981;
    font-size: 1.25rem;
    margin-right: 12px;
}

.feature span {
    color: #374151;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    max-width: 320px;
}

.about-card i {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-item p {
    color: #6b7280;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    border: none;
    font-size: 1.125rem;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10b981;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #10b981;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #10b981;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 24px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .about,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Loading animation */
.service-card,
.contact-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

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

/* Chatbot Floating Icon */
#chatbot-toggle {
  position: fixed;
  bottom: 15%;
  right: 25px;
  background-color: #10b981;
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#chatbot-toggle:hover {
  background-color: #0e9e6e;
}

.chatbot-icon {
  font-size: 20px;
  margin-right: 8px;
}

.chatbot-label {
  font-size: 14px;
  font-weight: 500;
}

/* Chatbot Box */
#chatbot-box {
  display: none;
  position: fixed;
  bottom: calc(15% + 60px); /* adjust if needed */
  right: 25px;
  width: 800px;         /* ⬅️ Increased width */
  max-height: 800px;    /* ⬅️ Increased height */
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 16px;
  z-index: 10001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}


.chatbot-header {
  background-color: #10b981;
  color: white;
  padding: 10px 16px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-close {
  cursor: pointer;
  font-size: 25px;
}

.chatbot-body {
  padding: 15px;
  max-height: 350px;
  overflow-y: auto;
}

.chat-question {
  font-weight: bold;
  margin: 10px 0;
  background-color: #f3f4f6;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-question:hover {
  background-color: #e0f7ef;
}

.chat-answer {
  display: none;
  padding: 8px 12px;
  background-color: #f9f9f9;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

/* Responsive & Larger Chatbot Enhancements */

/* Make chat box wider and text larger */
#chatbot-box {
  width: 540px;
  font-size: 15px;
}

.chat-answer {
  font-size: 15px;
}

/* On small screens, show only icon in circular bubble */
@media screen and (max-width: 600px) {
  #chatbot-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .chatbot-label {
    display: none;
  }

  .chatbot-icon {
    font-size: 22px;
    margin: 0;
  }

  #chatbot-box {
    width: 95%;
    right: 2.5%;
  }
}

.chatbot-message {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 75%;
  line-height: 1.4;
  word-wrap: break-word;
  font-size: 13.5px;
}

.chatbot-message.user {
  background-color: #e0f7ef;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
  color: #333;
}

.chatbot-message.bot {
  background-color: #f3f4f6;
  align-self: flex-start;
  margin-right: auto;
  color: #333;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #eee;
  padding: 10px;
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.chatbot-input button {
  padding: 8px 14px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.chatbot-question-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 10px;
  padding: 10px;
  margin-top: 10px;
}

.chatbot-question-button {
  background-color: #e2e8f0;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  white-space: normal;
}

.chatbot-question-button:hover {
  background-color: #c7d2fe;
}

@media screen and (max-width: 480px) {
  .chatbot-question-container {
    grid-template-columns: 1fr; /* stack vertically */
  }
}



/* WhatsApp Floating Button */
#whatsapp-toggle {
  position: fixed;
  bottom: calc(14% + 90px); /* slightly above chatbot */
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  text-align: center;
  line-height: 56px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#whatsapp-toggle:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
  #whatsapp-toggle {
    bottom: calc(15% + 70px);
    width: 50px;
    height: 50px;
    font-size: 22px;
    line-height: 50px;
  }
}

/* feedback start  */

.feedback {
  padding: 100px 0;
  background: #ffffff;
}

.feedback-form {
  background: #f9fafb;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 48px;
}

.feedback-form .form-group {
  margin-bottom: 24px;
}

.rating-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.star-rating {
  display: flex;
  gap: 6px;
  font-size: 24px;
  cursor: pointer;
}

.star {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.star.selected {
  color: #fbbf24;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feedback-item {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.feedback-item h4 {
  margin-bottom: 8px;
  color: #111827;
  font-weight: 600;
}

.feedback-item .stars {
  color: #fbbf24;
  margin-bottom: 8px;
}

.feedback-item p {
  color: #374151;
  line-height: 1.6;
}

/* feedback end ? */

.btn-primary {
  background: white;
  color: #10b981;
  border: 2px solid #10b981;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #10b981;
  color: white;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}
 /* new  */

 .feedback-list-container {
  position: relative;
}

.feedback-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  max-height: none;
  transition: max-height 0.4s ease;
  overflow: hidden;
}

.feedback-item {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}

.feedback-item:hover {
  transform: translateY(-4px);
}

.feedback-item h4 {
  margin-bottom: 8px;
  font-weight: 600;
  color: #1f2937;
}

.feedback-item .stars {
  color: #fbbf24;
  margin-bottom: 8px;
}

.feedback-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hide items beyond 9 unless expanded */
.feedback-list.collapsed .feedback-item:nth-child(n+9) {
  display: none;
}

/* Show More / Show Less Button */
#show-more-btn {
  display: block;
  margin: 24px auto 0;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  border: 2px solid #10b981;
  color: #10b981;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  text-align: center;
  visibility: visible; /* Ensures it's always visible */
  opacity: 1;           /* Fully visible */
}

#show-more-btn:hover {
  background: #10b981;
  color: white;
}


/* changed chatbot css  */

.chatbot-suggested {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.chatbot-button {
  background-color: #023e8a;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 100%;
  text-align: center;
}

.chatbot-button:hover {
  background-color: #002855;
}

.chatbot-followup {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}

.chatbot-button.followup {
  border-radius: 20px;
  padding: 10px 16px;
  background-color: #023e8a;
  color: white;
}



/* Videos file css  */

.clients-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.client-card {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.client-card video {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px; 
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    padding: 12px;
  }
}


.client-card h4 {
  margin: 10px 0 4px;
  font-size: 18px;
  color: #0077b6;
}

.client-card p {
  font-size: 14px;
  color: #333;
}


