    /* Custom Styles */
    body {
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
        cursor: default;
      }
      .gradient-text {
        background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
  
      .hero {
        position: relative;
        background-image: url('home2.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: top;
        background-repeat: no-repeat;
        z-index: 0;
      }
  
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
      }
  
      .hero>* {
        position: relative;
        z-index: 2;
      }
  
      /* Parallax Effect */
      .parallax {
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
      }
  
      /* Custom Cursor */
      .custom-cursor:hover {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="red" d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') 12 12, auto;
      }
  
      /* Service Card Styles */
      .service-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
        background-clip: padding-box;
        z-index: 1;
      }
  
      .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 2px;
        background: linear-gradient(45deg, #11998e, #38ef7d);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
      }
  
      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }
  
      .service-card i {
        color: #A47864;
        margin-bottom: 1rem;
      }
  
      .service-card h3 {
        color: #A47864;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
      }
  
      .service-card p {
        color: #4B5563;
        font-size: 0.95rem;
        line-height: 1.5;
      }
  
  
          /* About Section Styles */
          #about {
        background: linear-gradient(135deg, #E6E6FA 0%, #FCEEF5 100%);
        position: relative;
        overflow: hidden;
      }
  
      #about h2 {
        position: relative;
        padding-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      #about h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #FF6B6B, #38ef7d);
        border-radius: 2px;
      }
  
      #about img {
        transition: transform 0.5s ease, box-shadow 0.5s ease;
      }
  
      #about img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }
  
      #about p {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      }
  
      /* Mission, Vision, Values Card Styles */
      .mission-vision-card {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.4);
      }
  
      .mission-vision-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }
  
      .mission-vision-card i {
        color: #FF6B6B;
        margin-bottom: 1rem;
      }
  
      .mission-vision-card h3 {
        color: #262E27;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      }
  
      .mission-vision-card p {
        color: #4B5563;
        font-size: 0.95rem;
        line-height: 1.5;
      }
  
      /* Animation Classes */
      .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
      }
      /* Hover Pulse Animation */
      .pulse:hover {
        animation: pulse 0.5s ease-in-out;
      } /* Gallery Section Styles */
      #gallery {
        background: linear-gradient(135deg, #F3FBF4 0%, #E6F0FA 100%);
        position: relative;
        overflow: hidden;
      }
  
      #gallery h2 {
        position: relative;
        padding-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      #gallery h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, #FF6B6B, #38ef7d);
        border-radius: 2px;
      }
  
      .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
  
      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
  
      .gallery-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
      }
  
      .gallery-item:hover img {
        transform: scale(1.1);
      }
  
      .gallery-item:hover::before {
        opacity: 1;
      }
  
      .gallery-item .caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.8);
        color: #262E27;
        padding: 1rem;
        text-align: center;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 2;
      }
  
      .gallery-item:hover .caption {
        transform: translateY(0);
      }
  
      /* Our Team Section Styles */
      #team {
        background: linear-gradient(135deg, #E6E6FA 0%, #FCEEF5 100%);
        position: relative;
        overflow: hidden;
      }
  
      #team h2 {
        position: relative;
        padding-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      #team h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, #FF6B6B, #38ef7d);
        border-radius: 2px;
      }
  
      .team-card {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.4);
        text-align: center;
      }
  
      .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(56, 239, 125, 0.5);
      }
  
      .team-card img {
        width: 120px;
        height: 120px;
        margin: auto;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #FF6B6B;
      }
  
      .team-card h3 {
        color: #262E27;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      }
  
      .team-card p {
        color: #4B5563;
        font-size: 0.95rem;
        line-height: 1.5;
      }
  
      .team-card .role {
        color: #FF6B6B;
        font-size: 1rem;
        margin-bottom: 0.75rem;
      }
  
      .team-card .social-links a {
        color: #A47864;
        margin: 0 0.5rem;
        transition: color 0.3s ease, transform 0.3s ease;
      }
  
      .team-card .social-links a:hover {
        color: #FF6B6B;
        transform: translateY(-3px);
      }
  
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
      }
  
      /* Social Icon Hover */
      .social-icon:hover {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
      }
  
      /* Animation Classes */
      .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
      }