    :root {
      --primary: #4285F4;
      --secondary: #34A853;
      --accent: #FBBC05;
      --danger: #EA4335;
      --dark: #212529;
      --light: #ffffff;
    }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e0e0e0 0%, #a0a0a0 100%);
            color: #333;
            min-height: 100vh;
        }
        
        /* Navbar Styling */
        .navbar {
            background: linear-gradient(90deg, var(--dark) 0%, #343a40 100%) !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 12px 20px;
            border-radius: 10px;
            margin: 15px;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--light) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85) !important;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 12px !important;
            border-radius: 6px;
        }
        
        .nav-link:hover {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 70%;
            left: 15%;
        }
        
        .navbar-toggler {
            border: none;
            color: white !important;
        }
        
        .btn-search {
            background: var(--primary);
            color: white;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-search:hover {
            background: #5a32a3;
            transform: scale(1.05);
        }
        
        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            margin: 20px;
            height: 500px;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 5px solid white;
        }
        
        .hero-overlay {
            background: rgba(0, 0, 0, 0.6);
            padding: 40px;
            border-radius: 15px;
            max-width: 650px;
            margin-left: 50px;
            animation: fadeIn 1.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .button{
          margin-left: 120vh;
          margin-top: 20vh;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
            font-weight: 500;
        }
        
        .hero-text {
            color: #f8f9fa;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn-hero {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            margin-left: 200px;
            margin-bottom: 10px;
        }
        
        .btn-primary {
            background: var(--primary);
            border: none;
        }
        
        .btn-primary:hover {
            background: #5a32a3;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106, 66, 193, 0.4);
        }
        
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* Services Section */
        .services {
            padding: 60px 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover img {
            transform: scale(1.05);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Pet Gallery */
        .pet-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .pet-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .pet-card img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .pet-card:hover img {
            transform: scale(1.08);
        }
        
        .pet-name {
            color: var(--primary);
            font-weight: 700;
        }


        
        /* -- FOOTER -- */
    .footer {
      background: var(--dark);
      color: white;
      padding: 50px 0 20px;
      border-radius: 20px 20px 0 0;
      margin-top: 60px;
    }
    .footer-title {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: var(--accent);
    }
    .footer-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: 0.3s;
    }
    .footer-links a:hover {
      color: var(--secondary);
      transform: translateX(5px);
    }
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: white;
      transition: 0.3s;
    }
    .social-icons a:hover {
      background: var(--secondary);
      transform: translateY(-5px);
    }

        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-overlay {
                margin: 20px;
                padding: 25px;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
        }



    /* --- HEADER --- */
    header {
      background:  rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
      padding: 60px 20px;
      border-radius: 20px 20px 20px 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);

      width: 85vw;
      /* margin: 10px; */
    
    }
    .head{
        width: 98vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .head3{
        height: 25vw;
        width: 98vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header h1 {
      font-weight: 700;
    }

    /* --- INFO CARDS -- */
    .info-card {
      background: var(--light);
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .info-card h4 {
      color: var(--primary);
      margin-bottom: 15px;
    }
    .info-card ul {
      list-style: none;
      padding-left: 0;
    }
    .info-card ul li {
      margin-bottom: 10px;
      font-size: 0.95rem;
    }
    .info-card ul li i {
      color: var(--secondary);
      margin-right: 8px;
    }

    

    /* -- FORM -- */
    .feedback-card {
      background: var(--light);
      border-radius: 12px;
      padding: 30px;
      margin: 40px auto;
      max-width: 700px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .feedback-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .form-label {
      font-weight: 600;
      color: var(--primary);
    }
    .form-control {
      border-radius: 8px;
      box-shadow: none;
      border: 1px solid #ddd;
      transition: 0.3s;
    }
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(66,133,244,0.25);
    }
    .btn-submit {
      background: var(--primary);
      color: white;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px 18px;
      transition: 0.3s;
    }
    .btn-submit:hover {
      background: #3367d6;
      transform: scale(1.05);
    }


    /* contact */
   
    /* --- CONTACT CARDS --- */
    .contact-card {
      background: var(--light);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .contact-card strong {
      color: var(--primary);
    }

    /* --- MAP --- */
    .ratio iframe {
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

   

    /* --- ABOUT CONTENT--- */
    .about-card {
      background: var(--light);
      border-radius: 12px;
      padding: 30px;
      margin: 40px auto;
      max-width: 900px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .about-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* --- TEAM SECTION ---- */
    .team-member {
      background: var(--light);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .team-member:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .team-member img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 4px solid var(--primary);
    }
    .team-member h5 {
      margin-bottom: 5px;
      color: var(--primary);
    }
    .team-member p {
      font-size: 0.9rem;
      color: #555;
    }

   /* PET PROFILE */
    
    /* FORM + PROFILE */
    .form-card {
      background: var(--light);
      border-radius: 12px;
      padding: 30px;
      margin: 40px auto;
      max-width: 800px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    /* PET CARDS */
    .pet-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      background: var(--light);
    }
    .pet-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .pet-card img {
      height: 220px;
      width: 100%;
      object-fit: cover;
    }
    .pet-card-body {
      padding: 20px;
    }
    .pet-card-body ul {
      list-style: disc;
      padding-left: 20px;
    }
    .pet-card-body li {
      margin-bottom: 6px;
      font-size: 0.95rem;
    }



     /* CARD STYLING */
    .guide-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      background: var(--light);
    }
    .guide-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .guide-card .card-header {
      background: var(--primary);
      color: white;
      font-weight: 600;
      font-size: 1.2rem;
      text-align: center;
    }
    .guide-card table {
      margin: 0;
    }
    .guide-card th {
      background: #f1f1f1;
    }



    /* Health Tips */
  .media-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      background: white;
    }
    .media-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .media-card iframe, 
    .media-card audio {
      width: 100%;
      border: none;
      border-radius: 10px;
    }
    .media-card iframe {
      height: 250px;
    }
    .media-card .card-body {
      text-align: center;
      font-weight: 500;
      font-size: 1.1rem;
      padding: 15px;
    }


     /* GROOMING VIDEOS */

    /* VIDEO CARDS */
    .video-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      background: var(--light);
    }
    .video-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .video-card .card-body {
      text-align: center;
      font-weight: 500;
      font-size: 1.1rem;
      padding: 15px;
      background: #fdfdfd;
    }



/* TRAINING TIPS */
     .tip-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      background: white;
      height: 100%;
    }
    .tip-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .tip-card .card-body {
      padding: 20px;
    }
    .tip-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #ff6f61;
    }
    .tip-card ul {
      padding-left: 20px;
    }
    .tip-card iframe {
      border-radius: 12px;
      margin-top: 10px;
    }
    .tip-card audio {
      width: 100%;
      margin-top: 10px;
    }


    /* ANIMAL SHELTER */
    .pet-card img { height: 200px; object-fit: cover; }
    .filter-btns .btn { margin: 0 5px; }
    .success-story img { height: 250px; object-fit: cover; border-radius: 10px; }
    .map-container { height: 300px; }



     
    /* HEADER */
    .head2 {
      background: var(--primary);
      color: white;
      padding: 60px 20px;
      text-align: center;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .head2 h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 15px;
    }
    .head2 p {
      font-size: 1.3rem;
      opacity: 0.9;
    }

    /* WELCOME CARD */
    .welcome-container {
      background: white;
      padding: 50px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      text-align: center;
      margin-top: -40px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .welcome-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }
    .welcome-container h1 {
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--primary);
      font-size: 2.2rem;
    }
    .welcome-container p {
      font-size: 1.1rem;
      color: #444;
    }
    .welcome-container ul {
      margin: 20px auto;
      padding: 0;
    }
    .welcome-container ul li {
      background: #f1f5ff;
      padding: 10px 15px;
      border-radius: 10px;
      margin-bottom: 10px;
      font-weight: 500;
      color: #333;
      text-align: left;
      transition: background 0.3s ease;
    }
    .welcome-container ul li:hover {
      background: #e8f0ff;
    }

    /* FORM */
    .form-container {
      background: white;
      border-radius: 20px;
      padding: 40px;
      margin: 50px auto;
      max-width: 700px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .form-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }
    .form-container h2 {
      color: var(--primary);
      margin-bottom: 25px;
      font-weight: 700;
    }
    .form-check-label {
      font-weight: 500;
      margin-left: 5px;
    }
    .btn-primary {
      padding: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 12px;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .btn-primary:hover {
      transform: scale(1.03);
    }

     /* FOOTER */
    footer {
      color: white;
      background: var(--primary);
      padding: 20px 0;
      margin-top: 40px;
      border-top: 1px solid #ddd;
      font-weight: 500;
      font-size: 0.95rem;
    }

    