:root {
  --white: #ffffff;
  --black: #000000;
  --dark-blue: #07132b;
  --blue: #000066;
  --yellow: #feff00;
  --red: #e81a08;
  --green: #198754;

  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --shadow-glow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

h1 {
  font-size: 5rem;
  font-family: "Roboto Condensed", sans-serif;
}

h2 {
  font-size: 4rem;
  font-family: "Roboto Condensed", sans-serif;
}

h3 {
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
}

h5 {
  font-size: 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
}

h6 {
  font-size: 1.4rem;
  font-family: "Roboto Condensed", sans-serif;
}

p {
  font-size: 1.6rem;
}

a {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "Roboto Condensed", sans-serif;
}

li {
  list-style: none;
}

/* ============= */
.wrapper-heading {
  max-width: 175rem;
  margin: auto;
  padding: 2rem 2.8rem 0rem 2.8rem;
}

.wrapper {
  max-width: 175rem;
  margin: auto;
  padding: 3rem 2.8rem;
}

.grid {
  display: grid;
  gap: 5rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-six-cols {
  grid-template-columns: repeat(6, 1fr);
}
/* ============main code============ */
/* ============main code============ */
/* ============main code============ */
/* //////////top-scroll-text/////////// */
/* //////////top-scroll-text/////////// */
/* //////////top-scroll-text/////////// */
.header-top-scroll-text {
  background-color: var(--dark-blue);
  padding: 0.5rem 0rem;
  border-bottom: 2px solid var(--red);
  position: relative;
}
.header-top-scroll-text marquee {
  color: var(--white);
  font-size: 1.6rem;
}
.header-top-scroll-text marquee span {
  background-color: var(--yellow);
  padding: 0.5rem;
  color: var(--dark-blue);
  border-radius: 33rem;
  font-weight: 600;
}
/* //////////header-top-bottom/////////// */
/* //////////header-top-bottom/////////// */
/* //////////header-top-bottom/////////// */
.header-top-bottom {
  position: relative;
  background-color: var(--blue);
}
.header-top-bottom .wrapper {
  padding: 1rem 2.8rem;
}
.htb-flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* ===============================
   COMMON BUTTON STYLE
================================ */
.btn-htb {
  min-width: 215px;
  height: 56px; /* 🔥 SAME HEIGHT FOR ALL */
  padding: 10px 14px;
  color: var(--black) !important;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;

  /* Gradient Border */
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: transform 0.2s ease;
}

/* ===============================
   ICON STYLE
================================ */
.icon {
  font-size: 18px;
}

/* ===============================
   DIFFERENT GRADIENT COLORS
================================ */
.apply {
  background-image:
    linear-gradient(#fff5b1, #ffe066), linear-gradient(135deg, #ffcc00, #ff8800);
  color: #000;
}

.phone {
  color: #000;
background-image: linear-gradient(#03f3d2, #cbff91), linear-gradient(135deg, #ff5722, #ff9800);

}

.office {
  color: #000;
  background-image: linear-gradient(#e9ed03, #f7cf09), linear-gradient(135deg, #8b6060, #455a64);
}

.iso {
  color: #000;
  background-image:
    linear-gradient(#69f0ae, #b9f6ca), linear-gradient(135deg, #00c853, #1b5e20);
}

.student {
  color: #000;
  background-image:
    linear-gradient(#b388ff, #7c4dff), linear-gradient(135deg, #651fff, #311b92);
}

.centre {
  background-image:
    linear-gradient(#11d7bb, #e4ff4d), linear-gradient(135deg, #0cf7d6, #95ef05);
  color: #000;
}

/* ===============================
   SHAKE ON HOVER
================================ */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}

.btn-htb:hover {
  animation: shake 0.4s;
}

/* ===============================
   LOCK ICON ANIMATION
================================ */
@keyframes lockPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotate(-5deg);
  }
  100% {
    transform: scale(1);
  }
}

.lock {
  animation: lockPulse 1.2s infinite;
}

/* ===============================
   LINK RESET
================================ */
a.btn-htb {
  text-decoration: none;
}

/* .htbf-a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.htbf-a p {
  font-weight: 400;
}
.htbf-right {
  border: 1px solid var(--yellow);
  padding: 1rem;
  border-radius: 1rem;
  background-color: #d9ff02a4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.htbf-right:hover {
  background-color: #e81a08;
} */
/* //////////header-logo/////////// */
/* //////////header-logo/////////// */
/* //////////header-logo/////////// */
.header-logo {
  position: relative;
  width: 100%;
}
.header-logo .wrapper {
  padding: 0rem 2.8rem;
}
.header-logo .hl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo .hlf-left img {
  width: 30%;
  height: auto;
}
.header-logo .hlf-right img {
  width: 90%;
  height: auto;
}
.hlf-right {
  text-align: right;
}
/* //////////header-navbar/////////// */
/* //////////header-navbar/////////// */
/* //////////header-navbar/////////// */
/* Navigation Wrapper */
.navigation {
  height: 50px;
  background: var(--dark-blue);
}

/* Container */
.nav-container {
  max-width: 175rem;
  margin: 0 auto;
  position: relative;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav List */
.nav-list {
  list-style: none;
}

.nav-list li {
  float: left;
  position: relative;
}

.nav-list li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  color: #ffffff;
  text-decoration: none;
}

/* Dropdown Arrow */
.nav-list li a:not(:only-child)::after {
  content: " ▾";
  padding-left: 4px;
}

/* Hover */
.nav-list li a:hover {
  background: var(--red);
}

/* Dropdown */
.nav-dropdown {
  z-index: 99 !important;
  display: none;
  position: absolute;
  z-index: 1;
  background: var(--dark-blue);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  width: max-content !important;
}

.nav-dropdown li {
  float: none;
  min-width: 190px;
}

.nav-dropdown li a {
  padding: 15px;
  line-height: 20px;
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: -51px;
  right: 15px;
  background: #262626;
  height: 52px;
  width: 73px;
}

/* Hamburger */
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 3px 35px 16px 0;
}

#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after {
  position: absolute;
  display: block;
  height: 5px;
  width: 35px;
  background: #ffffff;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span::before {
  top: -10px;
}

#nav-toggle span::after {
  bottom: -10px;
}

/* Hamburger Active (X) */
#nav-toggle.active span {
  background: transparent;
}

#nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

#nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 798px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding-top: 0px;
  }

  .nav-list {
    display: none;
    width: 100%;
  }

  .nav-list li {
    float: none;
  }

  .nav-list li a {
    padding: 15px;
    line-height: 20px;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown li a {
    padding-left: 30px;
  }
}

/* Desktop force show */
@media (min-width: 799px) {
  @media (min-width: 799px) {
  .nav-list li:hover > .nav-dropdown {
    display: block;
  }
}

}
/* /////////hero-banner////// */
/* /////////hero-banner////// */
/* /////////hero-banner////// */
/* /////////hero-banner////// */
.hero-img {
  width: 100%;
  height: auto;
  display: block !important;
}
.mobile-hero-img {
  display: none;
  width: 100%;
  height: auto;
}
.hero-banner {
  position: relative;
}

.hb-box {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3.5rem;
  text-align: center;
  /* display: none; */
}
.hb-data {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.hb-data:hover {
  transform: translateY(-10px);
}
.hb-data .bbic-text {
  font-size: 1.4rem;
  line-height: 1.5rem;
  color: var(--white);
}
.hb-data img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--yellow);
  padding: 0.3rem;
}
/* ///////four-btn/////// */
/* ///////four-btn/////// */
/* ///////four-btn/////// */
/* ///////four-btn/////// */
.four-btn {
  position: relative;
  width: 100%;
}

.four-btn .wrapper {
  padding: 1.5rem 2.8rem;
  gap: 2rem;
}

/* Box Base */
.four-btn .fb-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Image */
.four-btn .fb-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Shake */
.four-btn .fb-box:hover {
  animation: rotate624 0.7s ease-in-out both;
}

/* Shine Effect */
.four-btn .fb-box::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 50px;
  height: 180px;
  background: #fff;
  opacity: 0.35;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.four-btn .fb-box:hover::after {
  left: 120%;
}

/* Optional: slight zoom */
.four-btn .fb-box:hover img {
  transform: scale(1.03);
}

/* Animations */
@keyframes rotate624 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ///////why-hitech/////// */
/* ///////why-hitech/////// */
/* ///////why-hitech/////// */
/* ///////why-hitech/////// */
.why-hitech {
  position: relative;
  width: 100%;
}
.why-hitech .wrapper {
  padding-top: 0rem;
}

/* Testimonial Group Styling */
.testi-group {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.testi-group .img-testi {
  flex: 1;
  max-width: 450px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testi-group .img-testi:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(28, 79, 161, 0.2);
}

.testi-group .img-testi img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #1c4fa1;
}

.testi-group .img-testi h4 {
  font-size: 20px;
  color: #1c4fa1;
  margin-bottom: 15px;
  font-weight: 600;
}

.testi-group .img-testi p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
  .testi-group {
    flex-direction: column;
    gap: 20px;
  }

  .testi-group .img-testi {
    max-width: 100%;
  }
  .img-testi::nth-child(even) {
    display: none;
  }
}

@media (max-width: 768px) {
  .testi-group .img-testi {
    padding: 25px;
  }

  .testi-group .img-testi img {
    width: 80px;
    height: 80px;
  }

  .testi-group .img-testi h4 {
    font-size: 18px;
  }

  .testi-group .img-testi p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .testi-group .img-testi {
    padding: 20px;
  }

  .testi-group .img-testi img {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .testi-group .img-testi h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testi-group .img-testi p {
    font-size: 13px;
  }
}

.wh-box {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
  padding: 4rem;
  border-radius: 2rem;
}

.wh-box-data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wh-box-data i {
  font-size: 4rem;
  color: var(--white);
  animation: smoothItalic 2s ease-in-out infinite;
}

.wh-box-data h2 {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  display: inline-block;
  animation: smoothItalic 5s ease-in-out infinite;
  color: var(--white);
}
.wh-box-data h2::before {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--white);
  width: 20%;
  bottom: 0;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}
.wh-box-data h2::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--white);
  width: 50%;
  bottom: -10%;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}
@keyframes smoothItalic {
  0% {
    transform: skewX(0deg);
  }
  50% {
    transform: skewX(-12deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.wh-box-data-two {
  margin-top: 2rem;
}
.wh-box-data-two p {
  padding-bottom: 2rem;
  /* padding-left: 3.5rem; */
  color: var(--white);
}
.wh-box-data-two ul li {
  font-size: 1.6rem;
  padding: 1rem;
  color: var(--white);
}
.wh-box-data-two ul li i {
  /* background-color: var(--green); */
  padding: 0.2rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--white);
}
.wh-box2 img {
  border-radius: 2rem;
  height: auto;
  width: 100%;
}
.wht-notice{
    background: linear-gradient(to bottom right, #1e3c72, #9b23ea);
  padding: 1rem;
  border-radius: 1rem;
  color: var(--white);
  text-align: justify;
}
.wht-notice span{
  color: var(--red);
  font-weight: 800;
}
/* /////video section/////// */
/* /////video section/////// */
/* /////video section/////// */
/* /////video section/////// */
.video-section {
  position: relative;
  width: 100%;
  background-image: url(assets/bbb.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}
/* Background opacity layer */
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* opacity yahan control karo */
  z-index: -1;
}
.video-section .grid-two-cols {
  grid-template-columns: 2.5fr 1fr;
}
/* Video content upar rahe */
.vs-box-video {
  position: relative;
  z-index: 99 !important;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.video-container iframe {
  width: 100%;
  height: 200px;
}

.vs-box {
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0rem;
  background-color: var(--white);
}
.vs-box form {
  /* border-radius: 1rem; */
  display: flex;
  flex-direction: column;
}
.vs-box form h3 {
  background: linear-gradient(to bottom right, #f90000, #dd2476);
  padding: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--white);
}
.vs-box form input {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 1rem;
  outline: none;
  border: 1px solid #7a7a7a57;
  margin: 0rem 2rem 0.5rem 2rem;
}

.vs-box form input::placeholder {
  color: #7a7a7aa6;
}
.vs-box form textarea {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 1rem;
  outline: none;
  border: 1px solid #7a7a7a57;
  margin: 0rem 2rem 1rem 2rem;
  color: #000;
}
.vs-box form button {
  background: linear-gradient(to bottom right, #ff512f, #dd2476);
  border: none;
  padding: 2rem;
  border-radius: 22rem;
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  margin: 0rem 2rem 2rem 2rem;
  transition: all 0.3s linear;
}
.vs-three-btn a h4 {
  font-size: 1.6rem !important;
}
.vs-box form button:hover {
  background: linear-gradient(to bottom right, #1cb5e0, #000046);
}
/* Layout */
.vs-three-btn {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Base Button */
.vs-three-btn a.btn-shine {
  position: relative;
  padding: 1.2rem 3.5rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 22rem;
  color: #fff;
  font-weight: 500;
  font-family: inherit;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

/* Text */
.vs-three-btn a.btn-shine h4 {
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  z-index: 2;
  position: relative;
  margin: 0;
}

/* Hover Animation */
.vs-three-btn a.btn-shine:hover {
  animation: rotate624 0.7s ease-in-out both;
}

.vs-three-btn a.btn-shine:hover h4 {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

/* Shine Effect */
.vs-three-btn a.btn-shine::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -75px;
  width: 50px;
  height: 155px;
  background: #fff;
  opacity: 0.35;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.vs-three-btn a.btn-shine:hover::after {
  left: 120%;
}

/* Animations */
@keyframes rotate624 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes storm1261 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(4px);
  }
  50% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Gradient Backgrounds */
.vs-three-btn a:nth-child(1) {
 background: linear-gradient(to bottom right, #41295a, #2f0743);
}

.vs-three-btn a:nth-child(2) {
  background: linear-gradient(to bottom right, #da22ff, #9733ee);
}

.vs-three-btn a:nth-child(3) {
  background: linear-gradient(to bottom right, #ff512f, #dd2476);
}

.vs-three-btn a:nth-child(4) {
  background: linear-gradient(to bottom right, #396afc, #2948ff);
}

.vs-box1 {
  padding: 2rem;
}
.vs-four-boxs {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 2rem;
  gap: 2rem;
}
.vs-four-boxs .vsfb-box:nth-child(1) {
  background: linear-gradient(to bottom right, #1e3c72, #9b23ea);
  padding: 2rem;
  width: 25%;
  border-radius: 2rem;
  height: 213px;
}
.vs-four-boxs .vsfb-box:nth-child(2) {
  background: linear-gradient(to bottom right, #ff512f, #dd2476);
  padding: 2rem;
  width: 25%;
  border-radius: 2rem;
  height: 213px;
}
.vs-four-boxs .vsfb-box:nth-child(3) {
  background: linear-gradient(to bottom right, #00b09b, #1c5ead);
  padding: 2rem;
  width: 25%;
  border-radius: 2rem;
  height: 213px;
}
.vs-four-boxs .vsfb-box:nth-child(4) {
  background: linear-gradient(to bottom right, #41295a, #2f0743);

  padding: 2rem;
  width: 25%;
  border-radius: 2rem;
  height: 213px;
}
/* Base for animation */
.vsfb-box {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

/* Shake Animation on Hover */
.vsfb-box:hover {
  animation: rotate624 0.7s ease-in-out both;
}

/* Shine Effect */
.vsfb-box::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 50px;
  height: 180px;
  opacity: 0.25;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.vsfb-box:hover::after {
  left: 120%;
}

/* Icon slight movement (optional but premium) */
.vsfb-box:hover i {
  animation: storm1261 0.7s ease-in-out both;
}

/* Keyframes */
@keyframes rotate624 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes storm1261 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

.vsfb-box1 i {
  color: var(--white);
  font-size: 5rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: linear-gradient(to bottom right, #9b23ea, #1e3c72);
  padding: 1rem;
  border-radius: 50%;
}
.vsfb-box2 i {
  color: var(--white);
  font-size: 5rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: linear-gradient(to bottom right, #dd2476, #ff512f);
  padding: 1rem;
  border-radius: 50%;
}
.vsfb-box3 i {
  color: var(--white);
  font-size: 5rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: linear-gradient(to bottom right, #1c5ead, #00b09b);
  padding: 1rem;
  border-radius: 50%;
}
.vsfb-box4 i {
  color: var(--white);
  font-size: 5rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: linear-gradient(to bottom right, #2f0743, #41295a);
  padding: 1rem;
  border-radius: 50%;
}
.vsfb-box p {
  padding: 2rem 0rem;
  color: var(--white);
}
.vsfb-box h1 {
  color: var(--white);
}
.counter {
  font-size: 4rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.plus {
  font-size: 3rem;
  color: #fff;
  margin-left: 5px;
}
.counter-anim{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ///////hitech-parterner/////// */
/* ///////hitech-parterner/////// */
/* ///////hitech-parterner/////// */
/* ///////hitech-parterner/////// */
.hitech-parterner {
  /* background-color: var(--green); */
  /* background: linear-gradient(to bottom right, #ff512f, #dd2476); */
  border-top: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  background: linear-gradient(to bottom right, #180a3b, #341db1);
}

.hitech-parterner .wrapper-heading h2 {
  text-align: center;
  color: var(--white);
  -webkit-background-clip: text;
  background-clip: text;
  animation: smoothItalic 5s ease-in-out infinite;
  position: relative;
}
.hitech-parterner .wrapper-heading h2::before {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--white);
  width: 20%;
  bottom: 0;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}
.hitech-parterner .wrapper-heading h2::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--white);
  width: 10%;
  bottom: 10%;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}

@keyframes smoothItalic {
  0% {
    transform: skewX(0deg);
  }
  50% {
    transform: skewX(-12deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.hp-box {
  text-align: center;
  /* background: linear-gradient(to bottom right, #0f5132, #198754); */
  background: linear-gradient(to bottom right, #dd2476, #ff512f);

  padding: 4rem;
  border-radius: 2rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.hp-box img {
  width: 65px !important;
  height: 65px !important;
}
/* Shake on hover */
.hp-box:hover {
  animation: rotate624 0.7s ease-in-out both;
}

/* Shake keyframes */
@keyframes rotate624 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.hp-box h4 {
  padding: 2rem 0rem;
  color: var(--white);
  font-weight: 700;
}
.hp-box p {
  color: var(--white);
}
/* ///////brands section/////// */
/* ///////brands section/////// */
/* ///////brands section/////// */
/* ///////brands section/////// */
.brands {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 5px solid rgba(165, 165, 165, 0.733);
  padding: 2rem 0;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollBrands 20s linear infinite;
}

.brands-track img {
  width: 10rem;
  height: auto;
}
.brands-track:hover {
  animation-play-state: paused;
}

/* Infinite Animation */
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* //////latest-institute//////// */
/* //////latest-institute//////// */
/* //////latest-institute//////// */
/* //////latest-institute//////// */
.latest-institute {
  position: relative;
  width: 100%;
  background-color: #f0f4f8;
}
.latest-institute .wrapper-heading {
  text-align: center;
}

.li-slider {
  background-color: var(--white);
  padding: 2rem 0rem;
  margin: 3rem 0rem 0rem 0rem;
  padding: 2rem;
  border-bottom: 5px solid rgba(165, 165, 165, 0.733);
  border-top: 5px solid rgba(165, 165, 165, 0.733);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.latest-institute .wrapper-heading h2 {
  color: var(--dark-blue);
}
.ls-box p {
  text-align: center;
  font-size: 1.8rem;
}
.ls-box img {
  width: 80% !important;
  height: 100% !important;
  border: 1px solid rgb(77, 228, 255);
  border-radius: 1rem;
  padding: 1rem;
  margin: 0 auto;
}
/* ////////footer/////// */
/* ////////footer/////// */
/* ////////footer/////// */
/* ////////footer/////// */
footer {
  background-color: var(--dark-blue);
  position: relative;
  width: 100%;
}
.footer-box img {
  width: 100%;
  border-radius: 1rem;
}
.footer-box p {
  color: var(--white);
  margin-top: 2rem;
}
.footer-box h3 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 500;
  position: relative;
}
.footer-box h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  border: 2px solid var(--red);
  width: 20%;
  border-radius: 33rem;
  margin-top: 0.5rem;
}
.footer-box ul {
  margin-top: 2rem;
}
.footer-box ul li a:hover {
  color: var(--red);
  padding-left: 0.5rem;
}
.footer-box ul li a {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
  padding-bottom: 1rem;
  font-weight: 400;
  transition: all 0.3s linear;
}
.footer-box ul li a i {
  color: var(--red);
}
.fb-conatct {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fb-conatct i {
  display: inline-block;
  color: var(--red);
  font-size: 1.8rem;
}
.fb-last p {
  margin-top: 0 !important;
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-icons i {
  color: var(--white);
  font-size: 2rem;
  background-color: var(--red);
  padding: 0.5rem;
  border-radius: 50%;
}
.footer-icons i:hover {
  background-color: var(--green);
}
.footer-img-list{
display: flex;
align-items: center;
gap: 2rem;
justify-content: space-between;
margin-top: 2rem;
}
.footer-img-list img{
  width: 15% !important;
  height: auto !important;
}
/* ////////sub-footer//////// */
/* ////////sub-footer//////// */
/* ////////sub-footer//////// */
/* ////////sub-footer//////// */
.sub-footer {
  position: relative;
  width: 100%;
  background-color: var(--black);
  border-top: 1px solid var(--red);
}
.sub-footer .sf-box p {
  color: rgb(224, 217, 217) !important;
  font-size: 1.2rem;
}
.sub-footer .sfb-para {
  text-align: end;
}
.sub-footer .wrapper {
  padding: 1rem 2.8rem;
}
#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: none;
  background-color: #000;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

#scrollTopBtn.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
}
/* /////////common-bg/////// */
/* /////////common-bg/////// */
/* /////////common-bg/////// */
/* /////////common-bg/////// */
.common-bg {
  position: relative;
  width: 100%;
  background-image: url(assets/cbb-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  overflow: hidden;
}

/* Overlay */
.common-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* overlay */
  z-index: 1;
}

/* Content ABOVE overlay */
.common-bg .cb-data {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
}

/* Heading */
.cb-data h2 {
  padding-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 500;
}

/* Paragraph */
.cb-data p {
  text-transform: uppercase;
}

/* Link */
.cb-data p a {
  display: inline-flex;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  color: var(--red);
}

/* ////////////about hitech/////////// */
/* ////////////about hitech/////////// */
/* ////////////about hitech/////////// */
/* ////////////about hitech/////////// */
.about-hitech {
  position: relative;
  width: 100%;
}
.about-hitech-counter {
  width: 100%;
}

.about-hitech-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Card */
.about-hitech-counter-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 25px;
  transition: transform 0.3s ease;
}

.about-hitech-counter-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.about-hitech-counter-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hitech-counter-icon i {
  font-size: 2.8rem;
  color: #fff;
}

/* Numbers */
.about-hitech-counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

/* Text */
.about-hitech-counter-card p {
  font-size: 1.4rem;
  color: #666;
}

/* Color Variants */
.about-hitech-counter-card.red {
  background: #ffe9ea;
}
.about-hitech-counter-card.red .about-hitech-counter-icon {
  background: #e63946;
}
.about-hitech-counter-card.red h2 {
  color: #e63946;
}

.about-hitech-counter-card.blue {
  background: #eaf3ff;
}
.about-hitech-counter-card.blue .about-hitech-counter-icon {
  background: #1d6cff;
}
.about-hitech-counter-card.blue h2 {
  color: #1d6cff;
}

.about-hitech-counter-card.purple {
  background: #f1ebff;
}
.about-hitech-counter-card.purple .about-hitech-counter-icon {
  background: #6f42c1;
}
.about-hitech-counter-card.purple h2 {
  color: #6f42c1;
}

.about-hitech-counter-card.orange {
  background: #fff1e3;
}
.about-hitech-counter-card.orange .about-hitech-counter-icon {
  background: #ff7a00;
}
.about-hitech-counter-card.orange h2 {
  color: #ff7a00;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hitech-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-hitech-counter-grid {
    grid-template-columns: 1fr;
  }
}
.about-right h2 {
  text-transform: uppercase;
}
.about-right h2 span {
  color: var(--red);
  font-style: italic;
}
/* ///////vision and mission////// */
/* ///////vision and mission////// */
/* ///////vision and mission////// */
/* ///////vision and mission////// */
/* ///////vision and mission////// */
.vision-mission {
  position: relative;
  width: 100%;
  background-color: #f7f7f7;
}
.about-vision-mission {
  width: 100%;
  padding: 6rem 2rem;
}
.vm-heading-data h2 span:nth-child(1) {
  font-size: 4rem;
  font-weight: 700;
  color: #1d6cff;
}
.vm-heading-data span:nth-child(2) {
  font-size: 4rem;
  color: #ff7a00;
  font-weight: 700;
}
.vm-heading-data p {
  /* color: var(--blue); */
  font-weight: 500;
}
.vm-heading-data {
  text-align: center;
}
.about-vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

/* Card Base */
.about-vision-mission-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  padding: 3.5rem 3rem;
  min-height: 420px; /* 👈 height feel */
  display: flex;
  align-items: center;
  color: #fff;
}

/* Content */
.about-vision-mission-content {
  position: relative;
  z-index: 2;
  max-width: 70%;
}

.about-vision-mission-badge {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.about-vision-mission-card h3 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

.about-vision-mission-card p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* FLOW SHAPE (Right side) */
.about-vision-mission-flow {
  position: absolute;
  right: -80px;
  top: 50%;
  width: 260px;
  height: 260px;

  /* 👇 position + rotation together */
  transform: translateY(-50%) rotate(0deg);

  border-radius: 50% 40% 60% 50%;
  opacity: 0.35;

  /* 👇 ALWAYS rotate */
  animation: about-vision-mission-rotate 8s linear infinite;
}

/* Rotation keyframes */
@keyframes about-vision-mission-rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Gradients */
.about-vision-mission-card.vision {
  background: linear-gradient(135deg, #6a5af9, #8e7bff);
}

.about-vision-mission-card.vision .about-vision-mission-flow {
  background: linear-gradient(135deg, #ffffff, #dcd7ff);
}

.about-vision-mission-card.mission {
  background: linear-gradient(135deg, #ffb703, #ff8c00);
}

.about-vision-mission-card.mission .about-vision-mission-flow {
  background: linear-gradient(135deg, #ffffff, #ffe3b0);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-vision-mission-content {
    max-width: 80%;
  }
}

@media (max-width: 600px) {
  .about-vision-mission-card {
    padding: 3rem 2rem;
    min-height: auto;
  }

  .about-vision-mission-content {
    max-width: 100%;
  }

  .about-vision-mission-flow {
    width: 200px;
    height: 200px;
    right: -100px;
  }
}
/* //////////about-advanceses/////// */
/* //////////about-advanceses/////// */
/* //////////about-advanceses/////// */
/* //////////about-advanceses/////// */
.about-advanceses {
  position: relative;
  width: 100%;
}
.about-hitech-advanceses {
  width: 100%;
  padding: 6rem 2rem;
}

/* Grid */
.about-hitech-advanceses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* Card */
.about-hitech-advanceses-card {
  position: relative;
  background: #fff;
  padding: 4rem 2.5rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.08) 0 10px 25px;
  transition: transform 0.9s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* 360° Flip on Hover */
.about-hitech-advanceses-card:hover {
  transform: rotateY(360deg);
}

/* Bottom Gradient Border */
.about-hitech-advanceses-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 0 0 2rem 2rem;
}

/* Icon */
.about-hitech-advanceses-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hitech-advanceses-icon i {
  font-size: 3rem;
  color: #fff;
}

/* Text */
.about-hitech-advanceses-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.about-hitech-advanceses-card p {
  font-size: 1.3rem;
  color: #666;
}

/* Gradients (border + icon) */
.card-1::after {
  background: linear-gradient(90deg, #ff004c, #ff8a00);
}
.card-1 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #ff004c, #ff8a00);
}

.card-2::after {
  background: linear-gradient(90deg, #0066ff, #00e5ff);
}
.card-2 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #0066ff, #00e5ff);
}

.card-3::after {
  background: linear-gradient(90deg, #7b2cff, #c77dff);
}
.card-3 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #7b2cff, #c77dff);
}

.card-4::after {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
}
.card-4 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.card-5::after {
  background: linear-gradient(90deg, #00b09b, #96c93d);
}
.card-5 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}

.card-6::after {
  background: linear-gradient(90deg, #f7971e, #ffd200);
}
.card-6 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.card-7::after {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
}
.card-7 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.card-8::after {
  background: linear-gradient(90deg, #fc466b, #3f5efb);
}
.card-8 .about-hitech-advanceses-icon {
  background: linear-gradient(135deg, #fc466b, #3f5efb);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hitech-advanceses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-hitech-advanceses-grid {
    grid-template-columns: 1fr;
  }
}
/* //////////about core values///////// */
/* //////////about core values///////// */
/* //////////about core values///////// */
/* //////////about core values///////// */
.about-corevalues {
  background: #f7f7f7;
}
.about-hitech-values {
  width: 100%;
  padding: 6rem 2rem;
}

/* Grid */
.about-hitech-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Card Base */
.about-hitech-values-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover */
.about-hitech-values-card:hover {
  transform: translateY(-12px);
}

/* Icon */
.about-hitech-values-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  background-color: var(--blue);
}

.about-hitech-values-icon i {
  font-size: 2.6rem;
  transition: all 0.4s ease;
}

/* Heading */
.about-hitech-values-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.about-hitech-values-card p {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
}

/* ===== COLOR VARIANTS ===== */

/* RED */
.red {
  border-color: #e63946;
}
.red .about-hitech-values-icon i,
.red h3 {
  color: #e63946;
}
.red:hover {
  border-color: #ff6b6b;
}
.red:hover .about-hitech-values-icon i,
.red:hover h3 {
  color: #ff6b6b;
}

/* BLUE */
.blue {
  border-color: #1d6cff;
}
.blue .about-hitech-values-icon i,
.blue h3 {
  color: #1d6cff;
}
.blue:hover {
  border-color: #4dabff;
}
.blue:hover .about-hitech-values-icon i,
.blue:hover h3 {
  color: #4dabff;
}

/* ORANGE */
.orange {
  border-color: #ff8c00;
}
.orange .about-hitech-values-icon i,
.orange h3 {
  color: #ff8c00;
}
.orange:hover {
  border-color: #ffa94d;
}
.orange:hover .about-hitech-values-icon i,
.orange:hover h3 {
  color: #ffa94d;
}

/* PURPLE */
.purple {
  border-color: #7b2cff;
}
.purple .about-hitech-values-icon i,
.purple h3 {
  color: #7b2cff;
}
.purple:hover {
  border-color: #a98bff;
}
.purple:hover .about-hitech-values-icon i,
.purple:hover h3 {
  color: #a98bff;
}

/* GREEN */
.green {
  border-color: #2ecc71;
}
.green .about-hitech-values-icon i,
.green h3 {
  color: #2ecc71;
}
.green:hover {
  border-color: #55efc4;
}
.green:hover .about-hitech-values-icon i,
.green:hover h3 {
  color: #55efc4;
}

/* CYAN */
.cyan {
  border-color: #00bcd4;
}
.cyan .about-hitech-values-icon i,
.cyan h3 {
  color: #00bcd4;
}
.cyan:hover {
  border-color: #48dbfb;
}
.cyan:hover .about-hitech-values-icon i,
.cyan:hover h3 {
  color: #48dbfb;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hitech-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-hitech-values-grid {
    grid-template-columns: 1fr;
  }
}
/* //////about-institute-form//////// */
/* //////about-institute-form//////// */
/* //////about-institute-form//////// */
/* //////about-institute-form//////// */
.about-institute-form {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom right, #ff512f, #dd2476);
  text-align: center;
}
.about-institute-form h2 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 500;
}
.about-institute-form p {
  color: var(--white);
  font-style: italic;
  padding: 2rem 0;
}
.about-institute-form a {
  color: var(--white);
  background: linear-gradient(to bottom right, #dd2476, #ff512f);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--white);
  transition: transform 0.3s ease;
}

/* Hover → Button shake 3 times */
.about-institute-form a:hover {
  animation: about-institute-shake 0.6s ease-in-out;
}

/* Icon animation */
.about-institute-form a:hover i {
  animation: about-institute-icon-scale 0.6s ease-in-out;
}

/* Shake keyframes (3 shakes) */
@keyframes about-institute-shake {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-4px);
  }
  30% {
    transform: translateX(4px);
  }
  45% {
    transform: translateX(-4px);
  }
  60% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Icon scale animation */
@keyframes about-institute-icon-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/* /////////courses///////// */
/* /////////courses///////// */
/* /////////courses///////// */
/* /////////courses///////// */
/* /////////courses///////// */
.courses {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #023f58, #2285a7, #6e838b);
}
.courses .grid {
  gap: 2rem;
}
.course-box {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 20px;
}

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

.course-header {
  padding: 25px 20px;
  text-align: center;
}

.course-header h3 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.course-body {
  padding: 25px 20px;
  background: white;
}

.course-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.duration {
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 500;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #f39c12;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-text {
  color: #e74c3c;
  font-size: 13px;
  font-weight: 600;
}
/* ##################### */
/* ##################### */
/* ##################### */
.gradient-dark-gray {
  background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
}

.gradient-red {
  background: linear-gradient(135deg, #ff4e50, #f44336);
}

.gradient-blue {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.gradient-green {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.gradient-purple {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.gradient-orange {
  background: linear-gradient(135deg, #ff8008, #ffc837);
}

.gradient-teal {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.gradient-dark-red {
  background: linear-gradient(135deg, #8e0e00, #1f1c18);
}

.gradient-slate {
  background: linear-gradient(135deg, #485563, #29323c);
}

.gradient-ocean-blue {
  background: linear-gradient(135deg, #2E3192, #1BFFFF);
}

.gradient-violet {
  background: linear-gradient(135deg, #8a2387, #e94057, #f27121);
}

.gradient-burnt-orange {
  background: linear-gradient(135deg, #cc5500, #ff9966);
}

.gradient-emerald {
  background: linear-gradient(135deg, #348f50, #56b4d3);
}

.gradient-maroon {
  background: linear-gradient(135deg, #800000, #b03060);
}

.gradient-navy {
  background: linear-gradient(135deg, #141e30, #243b55);
}

.gradient-deep-purple {
  background: linear-gradient(135deg, #4b0082, #8a2be2);
}

.gradient-amber {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
}

.gradient-jade {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}

.gradient-crimson {
  background: linear-gradient(135deg, #dc143c, #8b0000);
}

.gradient-royal-blue {
  background: linear-gradient(135deg, #4169e1, #1e3c72);
}

.gradient-plum {
  background: linear-gradient(135deg, #673ab7, #512da8);
}

.gradient-rust {
  background: linear-gradient(135deg, #b7410e, #ff7f50);
}

.gradient-forest {
  background: linear-gradient(135deg, #134e5e, #71b280);
}

.gradient-burgundy {
  background: linear-gradient(135deg, #800020, #c04848);
}

.gradient-steel-blue {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.gradient-royal-purple {
  background: linear-gradient(135deg, #8b3a8b, #c1439e);
}

.gradient-bronze {
  background: linear-gradient(135deg, #cd7f32, #b87333);
}

.gradient-sea-green {
  background: linear-gradient(135deg, #2e8b57, #20b2aa);
}

/* ///////FAQ Section Styling/////// */
.faq-section-area {
  position: relative;
  width: 100%;
  border-top: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  background: linear-gradient(to bottom right, #1a1a2e, #3353a9);
    padding: 30px;
        padding-top: 0;
}

.faq-section-area .wrapper-heading {
  position: relative;
}

.faq-section-area .wrapper-heading h2 {
  text-align: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: smoothItalic 5s ease-in-out infinite;
  position: relative;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.faq-section-area .wrapper-heading h2::before {
  content: "";
  position: absolute;
  border-bottom: 3px solid var(--white);
  width: 20%;
  bottom: -15px;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}

.faq-section-area .wrapper-heading h2::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--white);
  width: 10%;
  bottom: -25px;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}

.gradient-steel-blue {
  background: linear-gradient(135deg, #4682b4, #5f9ea0);
}

.gradient-royal-purple {
  background: linear-gradient(135deg, #5f2c82, #49a09d);
}

.gradient-bronze {
  background: linear-gradient(135deg, #804a00, #c68642);
}

.gradient-sea-green {
  background: linear-gradient(135deg, #2e8b57, #66cdaa);
}

/* ##################### */
/* ##################### */
/* /////admission-verfication////// */
/* /////admission-verfication////// */
/* /////admission-verfication////// */
/* /////admission-verfication////// */
.admission-verfication {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #023f58, #2285a7, #6e838b);
  text-align: center;
  color: var(--white);
}
.admission-verfication h2 {
  font-weight: 500;
}
.admission-verfication form {
  margin: 2rem 0;
}
.admission-verfication form input {
  width: 50%;
  border: none;
  border-radius: 22rem;
  padding: 1.5rem;
  border: none;
  outline: none;
}
.admission-verfication .advn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}
.admission-verfication .advn-btn button {
  width: 200px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: none;
  border-radius: 22rem;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s linear;
}
.admission-verfication .advn-btn button:hover {
  box-shadow:
    0 0 35px rgba(162, 248, 248, 0.45),
    inset 0 0 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
/* ///////scholarship//////// */
/* ///////scholarship//////// */
/* ///////scholarship//////// */
/* ///////scholarship//////// */
/* ///////scholarship//////// */
.scholarship {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #95d6f0, #2285a7, #6e838b);
  height: 400px;

  /* center content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */

/* Wrapper – content above overlay */
.scholarship .wrapper {
  position: relative;
  z-index: 2; /* 👈 overlay ke upar */
  width: 100%;
  max-width: 600px; /* optional, remove if not needed */
  text-align: center;
  color: #fff;
}

/* Heading */
.scholarship h2 {
  margin-bottom: 2rem;
  font-size: 2.8rem;
}

/* Form layout */
.scholarship form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Select & input */
.scholarship select,
.scholarship input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.6rem;
  border: none;
  outline: none;
  font-size: 1.4rem;
}

/* Buttons wrapper */
.scholarship .advn-btn {
  display: flex;
  gap: 1.5rem;
}

/* Buttons */

.scholarship .advn-btn button {
  width: 200px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: none;
  border-radius: 22rem;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s linear;
}
.scholarship .advn-btn button:hover {
  box-shadow:
    0 0 35px rgba(162, 248, 248, 0.45),
    inset 0 0 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 600px) {
  .scholarship {
    height: auto;
    padding: 4rem 1.5rem;
  }

  .scholarship .advn-btn {
    flex-direction: column;
    width: 100%;
  }

  .scholarship .advn-btn button {
    width: 100%;
  }
}
/* //////gallery///// */
/* //////gallery///// */
/* //////gallery///// */
/* //////gallery///// */
.gallery {
  position: relative;
}
.gallery a img {
  width: 100%;
  height: auto;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.gallery_details a img {
  width: 100%;
  height: auto;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.gallery-data h2 {
  text-align: center;
  text-transform: capitalize;
  background-color: var(--brightaqua);
  color: var(--white);
  font-size: 2rem;
}
/* ////////download pdf///////// */
.download-list {
  width: 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Item */
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.8rem;
  padding: 1.8rem 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #a100ff;
}

/* Left */
.download-left .sl-no {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a100ff;
}

.download-left h4 {
  margin: 0.5rem 0;
  font-size: 1.6rem;
  color: #222;
}

.download-left p {
  font-size: 1.3rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.download-left i {
  color: #e53935;
}

/* Button */
.download-btn {
  background: #35c26b;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.download-btn:hover {
  background: #2ea85d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .download-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .download-btn {
    align-self: flex-end;
  }
}
/* ////////faq/////////// */
/* ////////faq/////////// */
/* ////////faq/////////// */
/* ////////faq/////////// */

/* Item */
.faq-item {
  background: #fff;
  border: none;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: rgba(50, 50, 93, 0.35) 0px 20px 40px -10px,
    rgba(0, 0, 0, 0.4) 0px 12px 24px -12px;
}

/* Question */
.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  opacity: 0.9;
}

/* Color variants - These will be overridden by inline styles */
.faq-question.blue {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}
.faq-question.green {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}
.faq-question.sky {
  background: linear-gradient(135deg, #2E3192, #1BFFFF);
}
.faq-question.orange {
  background: linear-gradient(135deg, #ff8008, #ffc837);
}
.faq-question.purple {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}
.faq-question.pink {
  background: linear-gradient(135deg, #ff1b6b, #ff4b63);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  font-size: 1rem;
  color: #555;
  transition: all 0.4s ease;
  background: #f9f9f9;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem 2rem;
}
/* ///////contact//////// */
/* ///////contact//////// */
/* ///////contact//////// */
/* ///////contact//////// */
.contact {
  position: relative;
  width: 100%;
}
.map {
  border-radius: 2rem;
}
.contact-data {
  margin-top: 10rem;
}
.cd-left-heading h5 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.cd-left-heading h2 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.cd-left-heading p {
  padding-bottom: 5rem;
}

.cd-timing {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.cd-timing-box {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 2rem 0;
}
.cd-timing-box i {
  font-size: 2.5rem;
  color: var(--brightaqua);
}
.cd-timing-box-data h4 {
  font-weight: 500;
  padding-bottom: 1rem;
}
.contact-from {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 2rem;
}
.contact-from h2 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.form-c input,
.form-c textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 1rem;
  outline: none;
  border: 1px solid var(--gray);
}
.common-btn {
  width: 200px;
  height: 50px;
  background: rgb(0, 136, 11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: none;
  border-radius: 22rem;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s linear;
}
/* ////////////form-group////////// */
/* ////////////form-group////////// */
/* ////////////form-group////////// */
/* ////////////form-group////////// */
/* ////////////form-group////////// */
.form-group {
  position: relative;
  width: 100%;
}
.form-group .wrapper {
  padding-top: 0rem;
}
.form-group .grid {
  gap: 2rem;
}
.form-group-one {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* padding: 1rem; */
  height: 590px;
  overflow: hidden;
}
.form-group-one marquee {
  height: 590px;
  background-color: var(--white);
}
.h-800{
  height: 800px;
}
.h-800 marquee {
  height: 800px;
  padding: 10px;
  padding-left: 25px;
}

.lnews p {
  padding: 1rem 0;
}
.courses-book .wrapper-heading::before {
  content: "";
  position: absolute;
  border-bottom: 3px solid var(--white);
  width: 20%;
  bottom: -15px;
  display: inline-flex;
  left: 50%;
  transform: translate(-50%);
}
.form-group-one h3 {
  text-align: center;
  padding: 1rem 0;
}
.fg1 {
  background: linear-gradient(to bottom right, #1e3c72, #9b23ea);
  color: var(--white);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.fg2 {
  background: linear-gradient(to bottom right, #f90000, #dd2476);
  color: var(--white);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.fg3 {
  background: linear-gradient(to bottom right, #00b09b, #1c5ead);
  color: var(--white);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.fg4 {
    background: linear-gradient(to bottom right, #41295a, #2f0743);
  color: var(--white);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.fgo-box {
  display: flex;
  align-items: start;
  gap: 2rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--dark-blue);
}
.fgo-box img {
  width: 80px;
  height: 80px;
  padding: 0.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.fgob-data h4 {
  font-size: 1.5rem;
  font-weight: 400; 
}
.fgob-data p {
  font-size: 1.4rem;
  padding-top: 0.5rem;
  font-style: italic;
}
/* ////////form-group-one form///////// */
.form-group-one form {
  /* margin-top: 1rem; */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: var(--white);
  overflow: hidden;
}
.form-group-one form input {
  padding: 0.5rem;
  outline: none;
      border: 1px solid #7a7a7a57;
    padding: 1rem;
    border-radius: 1rem;
}
.form-group-one form textarea{
    border: 1px solid #7a7a7a57;
    padding: 1rem;
    border-radius: 1rem;
}
.form-group-one form .fg-fq-data {
  border-bottom-color: rgb(189, 205, 226);
  border-left-color: rgb(189, 205, 226);
  border-right-color: rgb(189, 205, 226);
  border-top-color: rgb(189, 205, 226);
  padding: 1rem;
  background-color: #e9ecef;
}
.form-group-one form .fg-fq-data p {
  font-size: 1.2rem;
}
.fgo-btn {
  background: linear-gradient(to bottom right, #f90000, #dd2476);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 1rem !important;
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s linear;
  margin-top: 1rem;
  transition: 0.5s all linear;
  outline: none;
  border: none;
}
.fgo-btn:hover {
  background: linear-gradient(to bottom right, #1cb5e0, #000046);
}
/* ////////////testimonial////////// */
/* ////////////testimonial////////// */
/* ////////////testimonial////////// */
/* ////////////testimonial////////// */
.sec-title {
	margin-bottom: 20px;
	padding-bottom: 15px;
	position: relative;
  text-align: center;
}
.sec-title::after {
	content: "";
	position: absolute;
	left: 50%;
  transform: translate(-50%);
	bottom: 0;
	width: 100px;
	height: 3px;
	background: #ffffff;
}
.sec-title h2 {
	/* font-size: 60px; */
  text-transform: uppercase;
	letter-spacing: 0px;
	color: var(--red);
}
.sec-title p {
	font-size: 18px;
	line-height: 28px;
  color: var(--white);
}
.testimonial-area {
    background: linear-gradient(to bottom right, #dd2476, #55080f);
	position: relative;
	z-index: 2;
	/* padding: 50px 0; */
}
.testimonial-area .owl-carousel {
	overflow: hidden;
	padding: 0 20px;
	/* margin: 0px -40px; */
	padding-right: 40px;
}
.testimonial-area .owl-stage-outer {
	padding: 30px 50px;
	margin-left: -34px;
	width: calc(100% + 100px);
}
.testimonial-area img {
	/* filter: invert(1); */
}
.single-testimonial {
	border: 7px solid #fff;
	text-align: center;
	border-radius: 45px;
	position: relative;
	z-index: 2;
}
.single-testimonial p {
	color: #fff;
	line-height: 24px;
	/* padding: 50px; */
  padding-left: 10px;
  padding-right: 10px;
	padding-bottom: 30px;
	position: relative;
	z-index: 3;
}
.single-testimonial::before {
	content: "";
	position: absolute;
	left: -35px;
	top: -45px;
	background: url(assets/quote-left.png)
		no-repeat ;
	background-size: 60%;
	width: 126px;
	height: 100px;
	transform: rotate(0deg);
	background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -45px;
	background: url(assets/quote-right.png)
		no-repeat ;
	/* background: url(https://cdn-icons-png.flaticon.com/512/4338/4338294.png)
		no-repeat var(--red); */
	background-size: 60%;
	width: 126px;
	height: 100px;
	background-position: 34px 19px;
  	transform: rotate(180deg);
}
.round {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
.round-1::before {
	content: "";
	position: absolute;
	left: 88px;
	top: -7px;
	width: 50px;
	height: 7px;
	background: #fff;
	border-radius: 30px;
}
.round-1::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 62px;
	width: 7px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
}
.round-2::before {
	content: "";
	position: absolute;
	right: 87px;
	bottom: -7px;
	width: 50px;
	height: 7px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
}
.round-2::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 62px;
	width: 7px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
}
.client-video {
	padding-right: 15px;
}
.client-video img{
  width: 100px !important;
  height: 100px !important;
      border-radius: 50%;
    border: 4px solid var(--black);
}
.client-info {
	position: relative;
	z-index: 3;
}
.client-info a {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
	font-size: 22px;
}
.client-info {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	padding-bottom: 50px;
}
.client-info h6 {
	color: #000;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
}
.client-info span {
	display: inline-block;
	color: #fff;
	font-size: 12px;
}
.sec-title.white-title h2 {
	color: #fff;
}
.testimonial-area .owl-dots button {
	background: #fff !important;
	width: 10px;
	height: 10px;
	border-radius: 26px;
	margin: 0 5px;
	transition: 0.3s;
}
.testimonial-area .owl-dots {
	text-align: center;
	margin-top: 50px;
}
.testimonial-area .owl-dots button.active {
	width: 30px;
}
/* ===================== */
/* ===================== */
/* courses */
/* ===================== */
/* ===================== */
.courses-book {
  position: relative;
  width: 100%;
  /* padding: 6rem 0; */
  background-image: url(assets/scbgg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark Overlay for Better Visibility */
.courses-book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.courses-book .wrapper,
.courses-book .wrapper-heading {
  position: relative;
  z-index: 2;
}

/* Heading */
.courses-book .wrapper-heading h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  /* margin-bottom: 4rem; */
  text-align: center;
  letter-spacing: 1px;
}

.courses-book .wrapper-heading h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: var(--white);
  display: block;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Grid Layout */
/* Layout using FLEX instead of GRID */
.grid-two-colss {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Left 40% */
.left-courses {
  flex: 0 0 32%;
}

/* Right 60% */
.right-courses {
  flex: 0 0 68%;
}

/* LEFT SIDE */
.left-courses {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.left-courses p {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.8;
  padding-left: 2rem;
  position: relative;
}

.left-courses p::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* RIGHT SIDE CARDS */
.right-courses .item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right-courses .item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* .right-courses img {
  width: 100% !important;
  height: auto !important;
  border-radius: 1rem;
} */

.right-courses .item p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
  margin-top: 1.5rem;
}

/* Owl Dots */
.right-courses .owl-dots {
  margin-top: 3rem;
  text-align: center;
}

.right-courses .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  transition: 0.3s;
}

.right-courses .owl-dots .owl-dot.active span {
  background: var(--red);
}
@media (max-width: 992px) {
  .grid-two-colss {
    flex-direction: column;
  }
.courses-book .wrapper{
  padding-top: 2rem;
}
  .left-courses,
  .right-courses {
    flex: 0 0 100%;
    width: 100%;
  }

  .left-courses {
    margin-bottom: 3rem;
    text-align: center;
  }

  .left-courses p {
    padding-left: 0;
  }

  .left-courses p::before {
    display: none;
  }
}




/* ======================================================
   ATTRACTIVE LOGIN & FORM SECTIONS - COMMON STYLES
   ====================================================== */

/* Login/Form Container */
.login-container,
.verification-container,
.id-card-container,
.exam-admit-container {
    animation: slideUp 0.6s ease;
}

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

/* Grid Layout */
.grid.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid.grid-two-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Left Section - Info */
.login-left,
.verification-left,
.id-card-left,
.exam-admit-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.login-info,
.verification-info,
.id-card-info,
.exam-admit-info {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-info h3,
.verification-info h3,
.id-card-info h3,
.exam-admit-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
}

.login-info p,
.verification-info p,
.id-card-info p,
.exam-admit-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Benefits Section */
.login-benefits,
.verification-benefits,
.id-card-benefits,
.exam-admit-benefits {
    margin-top: 30px;
}

.benefit-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-left: 4px solid #667eea;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    color: #28a745;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-item strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.benefit-item p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Right Section - Form */
.login-right,
.verification-right,
.id-card-right,
.exam-admit-right {
    display: flex;
    align-items: center;
}

.login-form,
.verification-form,
.id-card-form,
.exam-admit-form {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    background: white;
    animation: slideInRight 0.8s ease;
}

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

/* Random Background Gradient */
.login-form.random-color,
.verification-form.random-color,
.id-card-form.random-color,
.exam-admit-form.random-color {
    color: white;
}

.login-form.random-color h2,
.verification-form.random-color h2,
.id-card-form.random-color h2,
.exam-admit-form.random-color h2 {
    color: white;
}

.login-form.random-color label,
.verification-form.random-color label,
.id-card-form.random-color label,
.exam-admit-form.random-color label {
    color: rgba(255,255,255,0.95);
}

.login-form.random-color input,
.verification-form.random-color input,
.id-card-form.random-color input,
.exam-admit-form.random-color input {
    background-color: rgba(255,255,255,0.95);
    color: #333;
}

/* Form Title */
.login-form h2,
.verification-form h2,
.id-card-form h2,
.exam-admit-form h2 {
    margin-bottom: 30px;
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group:last-of-type {
    margin-bottom: 30px;
}

/* Label Styling */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

/* Input Styling */
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background-color: #f9f9ff;
}

.form-group input:hover {
    border-color: #ccc;
}

/* Submit Button */
.common-btn,
.verify-btn,
.download-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.common-btn:hover,
.verify-btn:hover,
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    opacity: 0.95;
}

.common-btn:active,
.verify-btn:active,
.download-btn:active {
    transform: translateY(0);
}

.common-btn:disabled,
.verify-btn:disabled,
.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Message Styling */
#error_message,
#success_message,
.error-message,
.success-message {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#error_message,
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #f5c6cb;
    border-color: #f5c6cb;
}

#success_message,
.success-message {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #c3e6cb;
    border-color: #c3e6cb;
}

/* Bottom Link */
.form-footer {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.login-form.random-color .form-footer {
    border-top-color: rgba(255,255,255,0.3);
}

.form-footer p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.login-form.random-color .form-footer p {
    color: rgba(255,255,255,0.9);
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-form.random-color .form-footer a {
    color: #fff;
    text-decoration: underline;
}

.form-footer a:hover {
    color: #764ba2;
}

.login-form.random-color .form-footer a:hover {
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .login-form,
    .verification-form,
    .id-card-form,
    .exam-admit-form {
        padding: 30px;
    }

    .login-info h3,
    .verification-info h3,
    .id-card-info h3,
    .exam-admit-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .login-form,
    .verification-form,
    .id-card-form,
    .exam-admit-form {
        padding: 25px;
    }

    .login-info h3,
    .verification-info h3,
    .id-card-info h3,
    .exam-admit-info h3 {
        font-size: 20px;
    }

    .login-info p,
    .verification-info p,
    .id-card-info p,
    .exam-admit-info p {
        font-size: 14px;
    }

    .benefit-item {
        margin-bottom: 15px;
        padding: 12px;
    }
}

/* Loading state */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Section background styling for random gradient */
section.random_background 
{
    position: relative;
}

section.random_background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    z-index: -1;
}

/* Additional beautiful enhancements */
.login-form,
.verification-form,
.id-card-form,
.exam-admit-form {
    position: relative;
    overflow: hidden;
}

.login-form::before,
.verification-form::before,
.id-card-form::before,
.exam-admit-form::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Input focus effect enhancement */


/* Button hover effect enhancement */
.common-btn:hover,
.verify-btn:hover,
.download-btn:hover {
    position: relative;
    overflow: hidden;
}

.common-btn::before,
.verify-btn::before,
.download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.common-btn:hover::before,
.verify-btn:hover::before,
.download-btn:hover::before {
    left: 100%;
}

/* Responsive form adjustments for small screens */
@media (max-width: 480px) {
    .login-form,
    .verification-form,
    .id-card-form,
    .exam-admit-form {
        padding: 20px;
    }

    .login-info h3,
    .verification-info h3,
    .id-card-info h3,
    .exam-admit-info h3 {
        font-size: 18px;
    }

    .benefit-item {
        gap: 10px;
        padding: 10px;
    }

    .benefit-item i {
        font-size: 20px;
    }
}
#franchise_form input{
  width: 90% !important;
}
form input{
    font-family: "Roboto Condensed", sans-serif !important;
}
.cw{
  color:white !important;
}