body {
  margin: 0;
  padding-top: 90px;
   background: #f9fcff;
   
  font-family: "Poppins", sans-serif;
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}
.container {
  /* max-width: 100%; */
  overflow-x: hidden;
}

/* Navbar */
.navbar .nav-link {
  color: #000;
  font-weight: 500;
  transition: 0.3s;
  
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #008d95;
}

.btn-primary {
  background-color: #008d95;
  border: none;
}
.btn-primary:hover {
  background-color: #006f76;
}
.navbar-brand img {
  border-radius:10px;
  width:30px;
}
.logo_name{
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
}
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #e3f2fd, #e0f7fa);
  padding: 50px 5%;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* Decorative Glow */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 0;
}
.hero-section::before {
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(0, 150, 136, 0.3), transparent 70%);
}
.hero-section::after {
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.3), transparent 70%);
}

.left-box {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Typewriter */
.typewriter {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #009688;
  border-right: 3px solid #009688;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3s steps(30, end) forwards, blink 0.7s infinite;
  max-width: 0;
}
@keyframes typing {
  from {
    max-width: 0;
  }
  to {
    max-width: 290px;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Doctor Name */
.doctor-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 12px 0 10px;
  background: linear-gradient(90deg, #00796b, #00c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(0, 201, 255, 0.15);
}

/* Address */
.clinic-address {
  margin: 10px 0 18px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  animation: fadeIn 1.2s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Doctor Image */
.doctor-img {
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin: auto;
}
.doctor-img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.btn-custom {
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-primary-custom {
  background: linear-gradient(90deg, #00796b, #00c9ff);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 121, 107, 0.4);
}
.btn-primary-custom:hover {
  background: linear-gradient(90deg, #00695c, #0096c7);
  transform: translateY(-3px);
}
.btn-outline-custom {
  border: 2px solid #009688;
  color: #009688;
  background: transparent;
}
.btn-outline-custom:hover {
  background-color: #009688;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 35px 20px;
  }
  .doctor-name {
    font-size: 2.2rem;
  }
  .doctor-img {
    margin-top: 25px;
    max-width: 95%;
  }
}
/* education section */
.education-section {
  background: linear-gradient(to right, #f8fbff, #eef6ff);
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #004aad;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.edu-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.edu-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #004aad;
}

.edu-card p {
  font-size: 0.95rem;
  color: #333;
  margin: 8px 0;
}

.edu-card .badge {
  background: #e3f2fd;
  color: #004aad;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.edu-card .badge.highlight {
  background: #004aad;
  color: #fff;
}

.edu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 74, 173, 0.15);
}

.edu-card:hover h5 {
  color: #0066ff;
  transition: color 0.3s ease;
}
/* profile section */
 .doctor-profile {
  background: linear-gradient(to right, #f9fcff, #eef7ff);
  border-radius: 12px;
  padding: 50px 30px;
}

.doctor-names {
  font-size: 2rem;
  font-weight: 700;
  color: #c62828; 
  position: relative;
}


.doctor-subtitles {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.doctors-img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.doctors-img:hover {
  transform: scale(1.03);
}

.doctor-profiles p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* end */
/* 4th section */

.experience-section {
  padding: 60px 20px;
  background: #f9fcff;
  font-family: "Poppins", sans-serif;
}
.experience-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.experience-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.exp-block {
  flex: 1 1 300px;
  padding: 30px;
  border-right: 1px solid #eaeaea;
}
.exp-block:last-child {
  border-right: none;
}
.exp-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #004aad;
}
.exp-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.highlight {
  font-weight: 700;
  color: #00856f;
}
@media (max-width: 768px) {
  .exp-block {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .exp-block:last-child {
    border-bottom: none;
  }
}
/* 5th */
.participations {
  background: #f9fbff;
  border-radius: 12px;
  padding: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.participation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.participation-card {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.participation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.participation-card .count {
  background: #4dabf7;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.participation-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .participation-card {
    flex: 1 1 100%;
  }
}
/* end */
/* 6th*/
.treatment-section {
      padding: 80px 0;
      background: linear-gradient(to right, #eaf6fb, #d9f2ff);
      position: relative;
      overflow: hidden;
    }

    /* Decorative shapes */
    .treatment-section::before,
    .treatment-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(0, 150, 200, 0.08);
      z-index: 0;
    }
    .treatment-section::before {
      width: 200px;
      height: 200px;
      top: -50px;
      left: -50px;
    }
    .treatment-section::after {
      width: 300px;
      height: 300px;
      bottom: -100px;
      right: -100px;
    }

    .treatment-title {
      font-weight: 700;
      font-size: 2.7rem;
      text-align: center;
      margin-bottom: 15px;
      color: #006c9c;
      position: relative;
      z-index: 1;
      animation: fadeInDown 1s ease;
    }

    .treatment-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      margin: 12px auto 0;
      background: #00a6d6;
      border-radius: 3px;
    }

    .treatment-subtitle {
      text-align: center;
      color: #444;
      margin-bottom: 50px;
      font-size: 1.1rem;
      z-index: 1;
      position: relative;
      animation: fadeIn 2s ease;
    }

    .treatment-card {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .treatment-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .treatment-text {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.8;
    }

    .treatment-img img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      transform: scale(0.95);
      transition: all 0.6s ease;
      position: relative;
      z-index: 1;
      animation: fadeInRight 1.5s ease;
    }

    .treatment-img img:hover {
      transform: scale(1.03) rotate(-1deg);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-40px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInLeft {
      from {opacity: 0; transform: translateX(-50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeInRight {
      from {opacity: 0; transform: translateX(50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    /* end */
    /* types */
    .diabetes-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.diabetes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap; 
}

.diabetes-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.diabetes-content {
  flex: 1;
  color: #333;
  min-width: 280px;
}

.diabetes-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #006064;
  margin-bottom: 15px;
}

.diabetes-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.diabetes-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #00796b;
}

.diabetes-content ul {
  list-style: none;
  padding: 0;
}

.diabetes-content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.diabetes-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00796b;
  font-weight: bold;
}

/* 📱 Responsive Breakpoints */
@media (max-width: 992px) {
  .diabetes-container {
    flex-direction: column;
    text-align: center;
  }

  .diabetes-image img {
    max-width: 350px;
    margin-bottom: 20px;
  }

  .diabetes-content h2 {
    font-size: 24px;
  }

  .diabetes-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .diabetes-section {
    padding: 40px 15px;
  }

  .diabetes-image img {
    max-width: 100%;
  }

  .diabetes-content h2 {
    font-size: 20px;
  }

  .diabetes-content h3 {
    font-size: 18px;
  }

  .diabetes-content p, 
  .diabetes-content ul li {
    font-size: 14px;
  }
}

    /* end */
    /* services */
    .services {
  padding: 70px 20px;
  background: #f4f9ff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #eaf4ff; /* subtle highlight */
}

.service h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1976d2;
  transition: color 0.3s ease;
}

.service:hover h3 {
  color: #0d47a1; 
}

.service ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service ul li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  transition: color 0.3s ease;
}

.service ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2e7d32;
}

.service:hover ul li {
  color: #111;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

    /* end */
    /* choose */
     .choose-section {
      background: #d3e7f4;
      padding: 60px 20px;
    }

    .choose-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1e3d59;
      margin-bottom: 40px;
      text-align: center;
    }

    .choose-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 20px;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .choose-item i {
      font-size: 28px;
      color: #3a6ea5;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .choose-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .choose-item:hover i {
      transform: scale(1.2);
      color: #2c5282;
    }

    .choose-text {
      font-size: 1.05rem;
      color: #444;
      margin: 0;
    }
    /* -------- */
    /* footer */
    .footer {
  background: #3e75c8; 
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffeb3b; 
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.footer-col p {
  font-size: 0.95rem;
  color: #f1f1f1;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffeb3b;
}

.footer-col p i {
  margin-right: 8px;
  color: #ffeb3b;
}

.social-icons {
  margin-top: 12px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ffeb3b;
  color: #0d47a1;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #ccc;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
/* end */
/* new */
.hero-wrappers {
      max-width: 1200px;
      margin: 30px auto;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .heros {
      position: relative;
      min-height: 65vh;
      background-image: url('../images/Illustration/manage.png');
      background-size: 100% 100%;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .heros::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.3); 
    }

    .heros-content {
      position: relative;
      z-index: 2;
      padding: 40px;
      max-width: 650px;
      
    }

    .heros-content h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
    }

    .heros-content p {
      margin-top: 10px;
      font-size: 1.1rem;
      color: #e0e0e0;
    }

    .experts-name {
      font-weight: 800;
      font-size: 1.8rem;
      color: #ffffff;
     
    }

    .experts-title {
      font-size: 1rem;
      color: #dcdcdc;
    }

    
    @media (max-width: 768px) {
      .heros {
        justify-content: center;
        text-align: center;
      }
      .heros-content {
        padding: 20px;
      }
      .heros-content h2 {
        font-size: 1.6rem;
      }
      .experts-name {
        font-size: 1.5rem;
      }
      .clinic-section {
        margin: 20px;
        padding: 25px;
      }
      .clinic-section h1 {
        font-size: 1.6rem;
      }
      .clinic-section p {
        font-size: 0.95rem;
      }
    
    .heros-content {
      
      position: absolute;
      left: 9%;
    top:20%;
    }


    .heros-content p {
      margin-top: 10px;
      font-size: 1.1rem;
      color: #e0e0e0;
    }



}

@media only screen and (min-width:768px){
.navbar-brand img {
  width:50px;
}
}
/* --------- */

   .clinic-section {
  width: 80%;
  margin: 60px auto;
  padding: 40px 90px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #3a6ea5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Poppins", Arial, sans-serif;
}

.clinic-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.clinic-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3d59;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}

.clinic-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.clinic-section b {
  color: #1e3d59;
}

.highlight {
  font-weight: 600;
  color: #3a6ea5;
}

/* 🔹 Responsive Design */
@media (max-width: 992px) {
  .clinic-section {
    padding: 30px 50px;
    width: 85%;
  }

  .clinic-section h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .clinic-section {
    padding: 25px 30px;
    width: 90%;
  }

  .clinic-section h1 {
    font-size: 1.6rem;
  }

  .clinic-section p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .clinic-section {
    padding: 20px 20px;
    width: 95%;
  }

  .clinic-section h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .clinic-section p {
    font-size: 0.9rem;
    text-align: left; /* better readability on small screens */
  }
}
/* proven */
.proven-title{
    color: #004aad;
}
  .card-custom {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 250px; 
    }

    .card-custom img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
      transition: transform 0.3s ease;
    }

    .card-custom:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .card-custom:hover img {
      transform: scale(1.05);
    }

    .card-title-custom {
      position: absolute;
      bottom: 15px;
      left: 20px;
      right: 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    }
  /* end */
   /* break free */
.custom-img {
        border-bottom: 8px solid #3a6ea5;
        border-right: 8px solid #3a6ea5;
        border-radius: 12px;
      }

      
      .text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

       .icon-circle {
        transition: all 0.3s ease;
      }
      .icon-circle:hover {
        background: #e8f1f8 !important;
        transform: scale(1.08);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .point-text {
        font-size: 1.05rem;
        font-weight: 500;
        color: #333;
      }
      /* -------- */
      /* tired */
      .section-heading {
      text-align: center;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 2rem;
        color: #004aad;
    }
    .section-heading span {
      display: block;
      font-weight: 400;
      font-size: 1.2rem;
      margin-top: 0.5rem;
      color: #16a085;
    }
    .feature-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    .feature-card img {
      width: 50px;
      margin-bottom: 15px;
      filter: grayscale(40%);
    }
    .feature-card p {
      font-size: 1rem;
      color: #555;
      margin: 0;
    }
      /* tired end */
      .floating-contact {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #004aad;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      z-index: 1000;

      /* Animation */
      animation: float 2s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
@media only screen and (min-width:992px){
.navbar-brand img {
  
  width:50px;
  border-radius: 10px;
}
}

.awards-section {
  padding: 80px 0;
}

.awards-section .experience-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.awards-section .exp-block {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.awards-section .exp-block:hover {
  transform: translateY(-5px);
}

.awards-section .exp-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 10px;
}

.awards-section .exp-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}