 /* Body Background Color */
    body {
        background-color: #f3f9ff;
        color: #4d5765;
        overflow-x: hidden !important;
    }

    /* Primary Text and Button Color */
    .text-primary, .btn-primary {
        color: #fcfcfc !important;
    }

    .card-title{
        color:#4d5765 !important;
    }
    /* Hover Effects */
    .btn-primary:hover {
        background-color: #e65c00;
        border-color: #e65c00;
    }

    /* Section Background Color */
    .about-us {
        background-color: #f8f9fa;
    }

    .services .card {
        background-color: #ffffff;
        border: 1px solid #eaeaea;
    }

    /* Shadow and Hover Effect for Cards */
    .card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Adjustments */
    .card-body {
        padding: 2rem;
    }

    .text-center {
        text-align: center;
    }
    h2
{
  color: #4285F4;
  text-transform: uppercase;
  font-weight: bold;
}
h3
{
  color: #4285F4;
  text-transform: uppercase;
  font-weight: bold;
}
h5
{
    color: #4285F4 !important;
  
  font-weight: bold;
}
.input-with-icon {
  padding-right: 40px;         /* space for icon */
  border-radius: 12px;         /* rounded corners */
  height: 50px;                /* consistent height */
  box-shadow: none;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;              /* soft gray icon */
  font-size: 16px;
  pointer-events: none;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2399aab5' d='M1.41 0L6 4.58 10.59 0 12 1.41 6 7.41 0 1.41z'/%3E%3C/svg%3E") no-repeat right 1.2rem center/12px 8px;
  padding-right: 2.5rem;
  border-radius: 12px;
  height: 50px;
  box-shadow: none;
}
.custom-course-card {
    background: linear-gradient(135deg, #ffffff 65%, #1062fe1a 65%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 0;
  }
  
  .custom-course-card img.course-img {
    border-radius: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .custom-course-content {
    padding: 25px;
  }
  .custom-course-author img {
    border: 2px solid #1062fe;
  }
  .custom-course-title {
    font-weight: 700;
    color: #1062fe;
  }

  .team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.social-icons a {
  width: 36px;
  height: 36px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.social-icons a:hover {

  transform: scale(1.15);
}
.aboutimg_2{
  height:240px;
}
@media (max-width: 768px) {
  .aboutimg_2{
  height:auto !important;

}}
.cta-shine {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #2861e2, #ea483a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  overflow: hidden; /* ensures shine stays inside text */
}

.cta-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), transparent);
  animation: shine 2.5s infinite;
  z-index: -1; /* Pushes shine behind the text */
}
/* Card style for tabs */
#courseTabs .nav-link {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 15px 22px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  min-width: 220px;
}

/* Hover effect */
#courseTabs .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  color: #141414ff;
}

/* Active tab */
#courseTabs .nav-link.active {
  background: linear-gradient(135deg, #007bff, #2c5ebd);
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(0,123,255,0.3);
}

/* @keyframes shine {
  100% {
    left: 100%;
  } */
.book-card {
  position: relative;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
box-shadow: none !important;
}

/* Hover effect */
/* .book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} */

/* Gradient Border */
.book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: 15px;
  /* background: linear-gradient(135deg, #1062fe, #ea4335, #1062fe); */
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
/* Mobile view */
@media (max-width: 768px) {
  .hero-cover {
    min-height: auto !important;          /* take full screen height */
    background-size: contain;   /* show full image */
    background-repeat: no-repeat;
    background-position: center top;
  }
}

.btn-site-orange {
  background: linear-gradient(123deg, #1062fe, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(16, 98, 254, 0.4);
}

/* Hover effect */
.btn-site-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(16, 98, 254, 0.6);
  color:#ffffff;
}

/* Shine Effect */
.btn-site-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shine 2.5s infinite;
  z-index: 2;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
