@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
    
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
  /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #009bdd 0%, #007bb8 100%);
            padding: 12px 0;
            color: white;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 6s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .top-bar-container {
            height: 50px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .top-info {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .info-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .info-text p {
            margin: 0;
            line-height: 1.2;
        }

        .info-text p:first-child {
            font-size: 12px;
            opacity: 0.9;
        }

        .info-text p:last-child {
            font-weight: 600;
        }

        .appointment-btn {
            background: #fff;
            color: #009bdd;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .appointment-btn:hover {
            background: #f0f8ff;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 155, 221, 0.3);
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 155, 221, 0.1);
            border-bottom: 1px solid rgba(0, 155, 221, 0.1);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #009bdd;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #009bdd;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #009bdd;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: #009bdd;
            background: rgba(0, 155, 221, 0.05);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '\f282';
            font-family: 'bootstrap-icons';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 155, 221, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 155, 221, 0.1);
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 4px 8px;
        }

        .dropdown-menu a:hover {
            background: #009bdd;
            color: white;
            transform: translateX(5px);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            gap: 4px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: #009bdd;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #009bdd 0%, #007bb8 100%);
            z-index: 999;
            padding: 80px 20px 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-item {
            margin-bottom: 20px;
        }

        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 20px;
            display: block;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 10px;
        }

        .mobile-dropdown-menu.active {
            max-height: 300px;
        }

        .mobile-dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            margin-left: 20px;
            border-left: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .mobile-dropdown-menu a:hover {
            color: white;
            border-left-color: white;
            padding-left: 25px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Contact Info in Mobile */
        .mobile-contact {
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .mobile-contact h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .navbar-container {
                padding: 0 15px;
            }

            .logo img {
                width: 50px;
                height: 50px;
            }

            .logo-text {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .top-info {
                flex-direction: column;
                gap: 10px;
            }

            .info-item {
                font-size: 12px;
            }
        }

        /* Demo Content */
        .demo-content {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .demo-content h1 {
            color: #009bdd;
            font-size: 48px;
            margin-bottom: 20px;
        }

        .demo-content p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

.info-section {
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.gif-container {
  flex: 1 1 40%;
  min-width: 300px;
}

#gif-image {
  display: flex;
  margin: auto;
  align-items: center;
  width: 60%;
  height: auto;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

.info-text1 {
  flex: 1 1 60%;
  padding: 20px;
}

.info-text1 h1 {
  color: #0086c0;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-text1 h2 {
  color: #005f8a;
  font-size: 22px;
  margin-top: 25px;
}

.info-text1 p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-text1 ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
  color: #333;
}

.info-text1 ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    margin: 15px;
    border-radius: 12px;
  }

  .gif-container {
    min-width: 100%;
  }

  #gif-image {
    border-radius: 12px 12px 0 0;
  }

  .info-text1 {
    padding: 20px;
  }

  .info-text1 h1 {
    font-size: 24px;
  }

  .info-text1 h2 {
    font-size: 20px;
  }

  .info-text1 p,
  .info-text1 ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .info-text1 {
    padding: 16px;
  }

  .info-text1 h1 {
    font-size: 22px;
  }

  .info-text1 h2 {
    font-size: 18px;
  }

  .info-text1 p,
  .info-text1 ul li {
    font-size: 14px;
  }
}

  
.site-footer {
  background-color: #009bdd;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 40px;
}

.footer-container {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.footer-logo p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #cceeff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-btn {
  display: inline-block;
  background-color: white;
  color: #009bdd;
  padding: 10px 18px;
  margin-top: 15px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-btn:hover {
  background-color: #e0f7ff;
}

.footer-bottom {
  background-color: #ffffff;
  color: #016c9a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #009bdd;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 20px;
  }
}