  


  body {


    margin: 0;
    padding: 0;

    color: black;

    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    /* text-shadow: 0px 0px 1px rgba(16, 16, 16, 0.8); */
background: white !important;
  /* line-height: 1.8;
  letter-spacing: 0.3px; */
  }

body {
     -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
   

    }

 

  body::-webkit-scrollbar {
display: none;
}

.navbar {
background-color: #fff5f5;
position: sticky;
top: 0;
z-index: 1050;
padding-top: 0;
padding-bottom: 0;
}

.navbar .container {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 85px; /* ensure space for logo + toggle */
}

.navbar-logo {
height: 75px;
width: auto;
object-fit: contain;
}

/* Align subtitle */
.subtitle-text {
margin: 0;
font-size: 14px;
line-height: 1.2;
}

/* Optional: tweak navbar toggler icon if it's misaligned */
.navbar-toggler {
padding: 0.25rem 0.75rem;
line-height: 1;
border: none;
box-shadow: none;
outline: none;
}

@media (max-width: 576px) {
.navbar-logo {
  height: 60px;
}
}



  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  /* Image Styling */
  .banner-image {
    width: 100%; /* Makes the image fill the container */
    height: auto; /* Ensures the image keeps its aspect ratio */
  }
  


  .custom-nav {
    color:#011123;
font-weight: 500;
/* text-shadow: 1px 1px 0 #ccc, 1px 1px 1px rgba(213, 11, 11, 0.3); */
transition: text-shadow 0.3s, transform 0.3s;
}



.custom-nav:hover {
/* text-shadow: 2px 2px 1px #aaa, 4px 4px 6px rgba(0, 0, 0, 0.5); */
transform: scale(1.05);
color: rgb(238, 79, 5)!important;
}



#text-block, #vedic-video {
transition: opacity 1s ease;
}

.hidden {
opacity: 0;
pointer-events: none;
}
.visible {
opacity: 1;
}

@keyframes fadeInScale {
from {
  opacity: 0;
  transform: scale(1.25);
}
to {
  opacity: 1;
  transform: scale(1);
}
}

.video-animate-in {
animation: fadeInScale 1.2s ease-out;
}

@keyframes imageFadeInScale {
from {
  opacity: 0;
  transform: scale(1.25);
}
to {
  opacity: 1;
  transform: scale(1);
}
}

.image-animate-in {
animation: imageFadeInScale 1.2s ease-out;
}





  .course-card {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
  }
  .footer-social a {
    color: white;
    margin-right: 15px;
    font-size: 18px;
  }

  .quick-call {
    background: #28a745;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .banner-container {
position: relative;
width: 100%;
max-height: 640px;
overflow: hidden;
font-family: Arial, sans-serif;
}



.banner-container img {
width: 100%;
height: auto;
display: block;
}

.banner-text {
position: absolute;
top: 35%;
left: 5%;
transform: translateY(-50%);
color: black;
text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
max-width: 600px;
padding: 0 20px;
}



.banner-text h1 {
font-size: 2.59rem;
margin-bottom: 1rem;
color:#011123;
}

.banner-text p {
font-size: 1.25rem;
margin: 0.5rem 0;
color: #0a0a0a;
}

.banner-stats {
position: absolute;
bottom: 10px; /* changed from -30px to be visible inside container */
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 30px;
justify-content: center;
color: black;
font-weight: 300;
background: transparent; /* white translucent background for visibility */
padding: 15px 25px;
border-radius: 10px;
flex-wrap: wrap;
width: 90%;
box-sizing: border-box;
text-shadow: none; /* removed text shadow for clean black text */
}

.banner-stats .stat {
text-align: center;
min-width: 100px;
flex: 1 1 120px;
}

.banner-stats h2 {
font-size: 2rem;
margin: 0;
color: black;
}

.banner-stats p {
margin: 5px 0 0;
font-size: 1rem;
color: rgb(0, 0, 0);
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
.banner-text h1 {
  font-size: 2.5rem;
}

.banner-text p {
  font-size: 1.1rem;
}

.banner-stats h2 {
  font-size: 1.75rem;
}

.banner-stats p {
  font-size: 0.95rem;
}
}

@media (max-width: 768px) {
.banner-text {
  top: 30%;
  left: 5%;
}

.banner-text h1 {
  font-size: 2rem;
}

.banner-text p {
  font-size: 1rem;
}

.banner-stats {
  gap: 15px;
  padding: 12px 20px;
}

.banner-stats h2 {
  font-size: 1.5rem;
}

.banner-stats p {
  font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.banner-text {
  top: 25%;
  padding-right: 10px;
}

.banner-text h1 {
  font-size: 1.5rem;
}

.banner-text p {
  font-size: 0.9rem;
}

.banner-stats {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 95%;
  padding: 10px 15px;
}

.banner-stats h2 {
  font-size: 1.25rem;
}

.banner-stats p {
  font-size: 0.85rem;
}
}


/* Additional Responsive Overrides - without touching existing styles */

@media (max-width: 768px) {
.banner-text {
  width: 90%;
  font-size: 0.9rem;
}

.banner-text h1 span {
  display: block;
  margin-top: 5px;
}
}

@media (max-width: 600px) {
.banner-text {
  width: 95%;
  left: 3%;
  padding: 0 10px;
}

.banner-text h1 {
  font-size: 1.4rem;
  line-height: 1.3;
}

.banner-text p {
  font-size: 0.9rem;
}

.banner-stats {
  flex-direction: column;
  gap: 12px;
}

.banner-stats .stat {
  flex: unset;
  width: 100%;
  max-width: 280px;
}

.banner-stats h2 {
  font-size: 1.2rem;
}

.banner-stats p {
  font-size: 0.85rem;
}
}

@media (max-width: 400px) {
.banner-text {
  top: 20%;
}

.banner-text h1 {
  font-size: 1.2rem;
}

.banner-text p {
  font-size: 0.8rem;
}

.banner-stats h2 {
  font-size: 1rem;
}

.banner-stats p {
  font-size: 0.8rem;
}
}
@media (max-width: 700px) {
.banner-text {
  top: 28%;
  left: 5%;
  padding: 0 10px;
  width: 90%;
}

.banner-text h1 {
  font-size: 1.7rem;
  line-height: 1.3;
}

.banner-text p {
  font-size: 1rem;
}

.banner-stats {
  gap: 12px;
  padding: 12px 15px;
  flex-wrap: wrap;
}

.banner-stats .stat {
  flex: 1 1 45%;
  text-align: center;
}

.banner-stats h2 {
  font-size: 1.4rem;
}

.banner-stats p {
  font-size: 0.9rem;
}
}






  #courses {
    padding: 0px 0;
    background: linear-gradient(to right, #f4faff, #ffffff);
  }

  .glass-card {
    /* background: rgba(255, 255, 255, 0.15); */
    background-image: url("images/cour1.png");
    border-radius: 36px;
    padding: 30px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  /* .glass-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: white;
    padding: 18px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
    display: inline-block;
  } */

  .icon-style {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: white;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
  display: inline-block;
}


  .glass-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
  }

  .glass-card p {
    font-size: 0.95rem;
    color: #444;
  }

  .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0072ff; /* fallback */
    background: linear-gradient(to right, #080808, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 100px;
}



.custom-modal {
  border-radius: 1rem;
  overflow: hidden;
  animation: fadeSlideIn 0.3s ease-in-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes fadeSlideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* .bg-gradient-primary {
  background: linear-gradient(135deg, #c2eba1, #67f0a9);
} */

.custom-modal-size {
  max-width: 920px;
}

/* Modal Header Styling */
.modal-header {
  background:transparent;
  color: #fff;
  border-bottom: none;
}
.modal-header .modal-title {
  font-family: 'Times New Roman', Times, serif;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
}
.modal-header .bi {
  color: #fff;
}

/* Modal Body Styling */
.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  /* background-color: #fefefe; */
  background: url("images/modd1.png");
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
  padding: 1rem 1.25rem;
  border-top: 1px solid #eee;
}

/* Nav Pills Styling */
.nav-pills .nav-link {
  background-color: transparent;
  color: #1565c0;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  font-weight: 500;
  transition: background 0.3s ease;
}
.nav-pills .nav-link:hover {
  background-color: #bbdefb;
}
.nav-pills .nav-link.active {
  background-color:orange;
  color:black;
}

/* Card Styling */
.card {
  background-color:transparent;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

/* List Styling */
.card-body ul {
  padding-left: 1.2rem;
}
.card-body ul li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
}
.card-body ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-size: 0.85rem;
}

/* Modal Footer */
.modal-footer {
  background-color:transparent;
  border-top: none;
}


  .slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 11 / 6; /* keeps the 1100x600 ratio */
    margin: 2rem auto;
    overflow: hidden;
    /* border-radius: 16px; */
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
  }

  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s ease, transform 1s ease;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
  }

  .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  .call-button {
    position: fixed;
    bottom: 55px;
    right: 44px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #edaca4, #74edaa);
    box-shadow:
      0 4px 8px rgba(0, 123, 255, 0.4),
      0 0 15px rgba(0, 210, 255, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    overflow: hidden;
  }

  /* Subtle shimmer effect on hover */
  .call-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 70%);
    transform: translateX(-100%) rotate(25deg);
    pointer-events: none;
    transition: transform 0.7s ease;
    border-radius: 50%;
    z-index: 1;
  }

  .call-button:hover::before {
    transform: translateX(100%) rotate(25deg);
  }

  .call-button:hover {
    box-shadow:
      0 8px 16px rgba(0, 123, 255, 0.6),
      0 0 30px rgba(0, 210, 255, 0.8);
    transform: scale(1.1);
  }

  .call-button i {
    font-size: 25px;
    color: rgba(2, 2, 5, 0.678);
    z-index: 2;
    transition: color 0.3s ease;
  }

  .call-button:hover i {
    color: #d65007;
  }

  @media (max-width: 576px) {
    .call-button {
      width: 50px;
      height: 50px;
    }

    .call-button i {
      font-size: 22px;
    }
  }



  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .gallery-item:hover img {
    transform: scale(1.05); /* Zoom-in effect */
  }

  .gallery-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Shadow on hover */
  }

  .filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .filter-buttons button {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .filter-buttons button:hover {
    background-color: #0056b3;
  }

  .gallery-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
  }








  .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }








.scroll-container {
  background-image: url("images/place.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 700px;
  position: relative;
  padding: 20px 20px;
}
h2 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #030303;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.unified-scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.unified-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.unified-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.card-grid-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 30px 40px;
  width: max-content;
  padding-bottom: 20px;
}

.student-card {
  background: #f5ffffb9;
  border: none;
  border-radius: 14px;
  padding: 20px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 220px;
  flex: 0 0 auto;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.student-photo {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0d6efd;
  margin-bottom: 12px;
}

.student-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.student-info {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 3px;
}

.badge-company {
  background-color: #f4622d;
  color: #fff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
}

.salary,
.job-profile {
  font-size: 0.8rem;
  margin-top: 4px;
  color: #6c757d;
}

.salary {
  color: #198754;
}

@media (max-width: 576px) {
  h2 {
    font-size: 2rem;
  }
}

.unified-scroll-container {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none;  /* IE and Edge */
}

.unified-scroll-container::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}


:root {
  --parallelogram-angle: 30%;
  --p: 12%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

.showcase-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.showcase-wrapper {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 320px;
  overflow: hidden;
  clip-path: polygon(var(--p) 0%, 100% 0%, calc(100% - var(--p)) 100%, 0% 100%);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 10;
}

.team-slider {
  display: flex;
  height: 100%;
  animation: slideTeams 24s linear infinite alternate;
  will-change: transform;
}

.team-slider:hover {
  animation-play-state: paused;
}

.team-member {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  margin-left: -12%;
  clip-path: polygon(var(--parallelogram-angle) 0%, 100% 0%, calc(100% - var(--parallelogram-angle)) 100%, 0% 100%);
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 10px;
}

.team-member:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
}

.wall {
  position: absolute;
  width: 150px;
  height: 30%;
  z-index: 20;
  clip-path: polygon(57% 0%, 100% 0%, 45% 100%, 0% 100%);
}

.wall-left {
  left: calc(50% - 500px - 30px);
  background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.wall-right {
  right: calc(50% - 500px - 30px);
  background: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
}

@keyframes slideTeams {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-320%);
  }
}
@media(max-width: 1060px) {
  .wall-left{
    left: 0%;
  }
  .wall-right{
    right: 0%;
  }
  .wall{
    clip-path: polygon(45% 0%, 100% 0%, 55% 100%, 0% 100%);
    width: 15%;
  }
}

@media(max-width: 768px) {
  .showcase-wrapper { height: 260px; }
  .wall { height: 200px; 
    clip-path: polygon(50% 0%, 100% 0%, 45% 100%, 0% 100%);
    width: 15%;}
  .wall-left { left: 1%; }
  .wall-right { right: 1%; }
}

@media(max-width: 480px) {
  .showcase-wrapper { height: 220px; }
  .wall { height: 120px; 
    clip-path: polygon(39% 0%, 100% 0%, 63% 100%, 0% 100%);
    width: 15%;}
  .wall-left { left: 0; }
  .wall-right { right: 0; }
  .team-member { margin-left: -24%; flex: 0 0 60%; }
  .showcase-container { margin-top: 10%; }
}
@media(max-width: 1472px){
  .showcase-container{
    margin-top: -6%;
  }
}

.marquee-container {
  height: 32px;
  overflow: hidden;
  position: relative;
  background-color:transparent;
}
.marquee-text {
  position: absolute;
  white-space: nowrap;
  font-size: 1em;
  font-family: 'Times New Roman', Times, serif;
  color: #011123;
  left: 0;
}

@media (max-width: 800px){
  .marquee-text{
    font-size: 2vw;
  }
}


 
