
body {
  background-color: #F2EFE7;
  color: #2973B2;
}

header {
  background-color: #9ACBD0;
  padding: 60px 0;
  text-align: center;
}

.section-light,
.section-mid,
.section-dark,
.contact-section {
  background-color: #F2EFE7;
}

.card,
.what-we-do-card,
.contact-card {
  background-color: #1A1A1A;
  border: none;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(72, 166, 167, 0.1);
  padding: 5px;
  border-radius: 15px;
}

#contact{
  background-color: #000000;
}

.card:hover,
.contact-card:hover {
  box-shadow: 0 0 25px rgba(72, 166, 167, 0.3);
}

h2, h4 {
  color: #000000;
}

h5{color: white;}

p {
  color: #ffffff;
}

.btn-custom,
.contact-btn {
  background-color: #48A6A7;
  color: white;
  border: none;
}

.btn-custom:hover,
.contact-btn:hover {
  background-color: #2973B2;
}

.team-img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto; 
}

@media (max-width: 600px) {
  .team-img {
    max-width: 100%;
    height: auto; /* make it proportional on very small screens */
  }
}

.accordion-item,
.accordion-button {
  background-color: #0D0D0D !important;
  color: 	#E6E6E6 !important;
  border-color: #1A1A1A !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(127, 132, 132, 0.3);
}

.accordion-button:not(.collapsed) {
  background-color: #262626 !important;
  color: #F2EFE7 !important;
}

footer {
  background-color: #F2EFE7;
  color: #2973B2;
}

.img-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.contact-card {
background-color: #9ACBD0;
box-shadow: 0 0 20px rgba(72, 166, 167, 0.2);
}

.custom-input {
background-color: #F2EFE7;
border: 1px solid #48A6A7;
color: #2973B2;
border-radius: 10px;
padding: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
border-color: #2973B2;
box-shadow: 0 0 10px rgba(72, 166, 167, 0.3);
}

.custom-input:hover {
transform: scale(1.02);
box-shadow: 0 0 15px rgba(72, 166, 167, 0.4);
}


.contact-btn:hover {
background-color: #2973B2;
transform: scale(1.05);
}

.section-light {
background-color: #ffffff; /* Light background color */
}

.section-mid {
background-color: #CCE8E8; /* Mid background color */
}

.section-dark {
background-color: #000000; /* Dark background color */
}

.contact-section {
background-color: #d1eeee; /* Contact section background color */
}

.weicons{
font-size: 45px; 
padding: 12px;
}

.feedback-section {
padding: 40px;
background-color: #f8f9fa;
text-align: center;
}

.feedback-section h2 {
margin-bottom: 30px;
font-size: 2rem;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.8s forwards 0.2s;
}

.feedback-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}

.feedback-card {
background: #fff;
border-radius: 12px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
opacity: 0;
transform: translateY(40px);
animation: fadeInUp 0.8s forwards;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:nth-child(1) { animation-delay: 0.3s; }
.feedback-card:nth-child(2) { animation-delay: 0.4s; }
.feedback-card:nth-child(3) { animation-delay: 0.5s; }
.feedback-card:nth-child(4) { animation-delay: 0.6s; }
.feedback-card:nth-child(5) { animation-delay: 0.7s; }
.feedback-card:nth-child(6) { animation-delay: 0.8s; }

.feedback-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feedback-card i {
font-size: 30px;
color: #007BFF;
margin-bottom: 10px;
transition: color 0.3s;
}

.feedback-card:hover i {
color: #0056b3;
}

.feedback-card p {
font-style: italic;
color: #333;
}

.client-name {
font-weight: bold;
margin-top: 15px;
color: #222;
}

.client-role {
font-size: 0.9rem;
color: #777;
}

/* Animations */
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}


@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  50%  { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

.team-card:hover {
  animation: bounce 0.8s;
}

.img-fluid:hover {
  animation: wiggle 0.6s ease-in-out;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

.headop{
    color: linear-gradient();
    background: linear-gradient(45deg, #e63946, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-nav {
  background: linear-gradient(45deg, #e63946, #8e2de2);
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.pad{
  padding: 25px;
}

.section-light {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-light h2 {
  font-size: 32px;
  font-weight: bold;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.client-logo {
  width: 80px; /* set width */
  height: auto; /* auto height to keep aspect ratio */
  object-fit: contain; /* makes sure logos don't get stretched */
  margin: 0 auto;
  display: block;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

.bhasha{
  transform: scale(1.05);
  opacity: 1;
  height:100px !important; 
  width: 200px !important;
}

.gradient-text {
  background: linear-gradient(90deg, #e50914, #a239ca, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.arrow {
  font-size: 1em;
  display: inline-block;
  transform: translateY(-5px);
}

.footer-link {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease-in-out;
}

.footer-link:hover {
  color: #fff;
}

.footer-icon {

  font-size: 1.25rem;
  transition: color 0.3s;
}

.footer-icon:hover {
  color: #a239ca;
}

