:root
{
      --golden:rgb(190, 170, 140);
      --black:#0a0a0a;
}

 /* .golden-text1
{
    color: var(--golden);
   background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
} */
 

 .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.card-section {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  perspective: 1000px;
}

.card-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 20px;
}

/* Hover Effects */
.card-section:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.card-section:hover img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1.1) saturate(1.3);
}

/* Glow Border Animation */
.card-section {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* border thickness */
  border-radius: 16px;
   -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.card-section:hover {
  transform: rotateY(10deg) scale(1.05);
  transition: transform 0.6s ease;
}


@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Animation */
.card-section {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}


/* 
===============================
  image third section
==============================
*/
 

.image-dark-blur {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0a0a0a;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-dark-blur img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: brightness(0.6) blur(2px);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.image-dark-blur:hover img {
  filter: brightness(0.9) blur(0);
  transform: scale(1.05);
}

   /* 
    ==================================
       team section
    ==================================
    */

.circle-card {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 0 auto 10px auto;
}

.circle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.contact-icon a
{
    color: white;
}

.contact-icon a:hover
{
    color: var(--golden);
}


/* 
============================
   event page
============================
*/

.custom-modal .modal-dialog {
    max-width: 700px;
    width: 100%;
    top:6%;
  }

  .custom-modal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
  }

  .custom-modal .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    
  }

  .custom-modal .carousel-control-prev,
  .custom-modal .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    border-radius: 50%;
  }

  .custom-modal .carousel-control-prev-icon,
  .custom-modal .carousel-control-next-icon {
    filter: invert(1);
  }

  .gallery-item {
    overflow: hidden;
    height: 350px;
    width: 80%;
    justify-content: center;
    margin: auto;
    align-items: center;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover {
    transform: scale(1.05);
  }


  /* 
  ===============================
     ownership page
  ===============================
  */

     /* Scroll + Hover Animations */
    .founder-card {
      opacity: 0;
      transition: opacity 1s ease, transform 1s ease;
    }
    .founder-card.left { transform: translateX(-100px); }
    .founder-card.right { transform: translateX(100px); }
    .founder-card.visible { opacity: 1; transform: translateX(0); }
    .founder-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
      background: linear-gradient(135deg, rgb(194,166,111), rgb(194,166,111));
      transition: all 0.4s ease;
    }
 
/* 
===============================
  mobile app
===============================
*/

     /* Add perspective to parent */
  .perspective {
    perspective: 1000px;
  }

  /* Flip animation on hover */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .transform-style-preserve-3d {
    transform-style: preserve-3d;
  }

  .backface-hidden {
    backface-visibility: hidden;
  }

  .rotate-y-180 {
    transform: rotateY(180deg);
  }


  /* 
  ==================================
     digital marketing
  =================================
  */
  @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    .animate-float {
      animation: float 4s ease-in-out infinite;
    }
    .flip-card {
      perspective: 1000px;
    }
    .flip-card-inner {
      transition: transform 0.6s;
      transform-style: preserve-3d;
      position: relative;
      width: 100%;
      height: 100%;
    }
    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }
    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 12px;
      padding: 20px;
    }
    .flip-card-back {
      transform: rotateY(180deg);
    }

  .industry button
  {
    background-color: #0a0a0a;
  }

    .industry button:hover
    {
       background-color: var(--golden);
       color: var(--black);      
    }


/* 
==============================
    seo
=============================
*/

:root 
 
    .hover-gold:hover { background-color: var(--gold); color: black; }
    .animate-fadeIn {
      animation: fadeIn 1.5s ease-in-out forwards;
      opacity: 0;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    html { scroll-behavior: smooth; }
 


     .fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s forwards; }
    @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
    .hover-card:hover { transform: translateY(-10px) scale(1.03); transition: 0.4s;  }
    .section-dark { background-color: #111; }


    .text-gold { color: rgb(194,166,111); }
    .animate-fadeIn {
      animation: fadeIn 1.2s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .gold { color: rgb(194,166,111); }
    .bg-gold { background-color: rgb(194,166,111); }

        @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-fadeIn {
      animation: fadeIn 1.2s ease-in-out both;
    }

        .gold { color: rgb(194,166,111); }
    .bg-gold { background-color: rgb(194,166,111); }


    /* 
    =======================
    eduction
    =========================
    
    */

    /* Hide scrollbar for Chrome, Safari and Edge */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}
   
@keyframes updown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* moves up by ~2cm */
  }
}

.animate-updown {
  animation: updown 3s ease-in-out infinite;
}


/* 
========================
   collage
========================
*/

/* Carousel scrollbar hidden */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }
    .no-scrollbar {
      -ms-overflow-style: none; /* IE and Edge */
      scrollbar-width: none; /* Firefox */
    }
    /* Slide animation for images wrapper */
    @keyframes slideRightToLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-50%));
      }
    }
    /* Slide up animation for content */
    @keyframes slideUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .slide-images {
      animation: slideRightToLeft 20s linear infinite;
      white-space: nowrap;
    }
    .slide-content {
      animation: slideUp 1s ease forwards;
      opacity: 0;
      transform: translateY(50px);
    }

    /* 
    ==================
    blood bank
    =================
    */

    /* Carousel scrollbar hidden */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }
    .no-scrollbar {
      -ms-overflow-style: none; /* IE and Edge */
      scrollbar-width: none; /* Firefox */
    }
    /* Slide animation for images wrapper */
    @keyframes slideRightToLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-50%));
      }
    }
    /* Slide up animation for content */
    @keyframes slideUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .slide-images {
      animation: slideRightToLeft 20s linear infinite;
      white-space: nowrap;
    }
    .slide-content {
      animation: slideUp 1s ease forwards;
      opacity: 0;
      transform: translateY(50px);
    }

    /* 
    =========================
    hostel
    ========================
    */
     
    /* Custom RGB highlight */
    .highlight-hover:hover {
      background-color: rgb(194,166,111);
      color: black;
    }
    .highlight-text {
      color: rgb(194,166,111);
    }
    /* Black and white theme base */
    
    a {
      color: #fff;
      transition: all 0.3s ease;
    }