/* Home Page  CSS */
	.pspan {
		font-size: smaller;
		color: #f68398ff;
		padding-bottom: 10px;
	}

	.course-category-three .row {
		display: flex;
		/* flex-wrap: nowrap; */
		/* overflow-x: auto; */
		/* gap: 0px; */
		padding-bottom: 10px;
	}

	/* 4 cards visible */
	.course-category-three .row>.col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	/* scrollbar */
	.course-category-three .row::-webkit-scrollbar {
		height: 6px;
	}

	.course-category-three .row::-webkit-scrollbar-thumb {
		background: #cfcfcf;
		border-radius: 10px;
	}

	/* Table row hover */
	.table-animate tbody tr {
		transition: background 0.3s ease, transform 0.3s ease;
	}

	.table-animate tbody tr:hover {
		background: #f8f9fa;
		transform: scale(1.01);
	}

	/* Icon animation */
	.icon-animate {
		animation: pop 0.4s ease-in-out;
	}

	@keyframes pop {
		0% {
			transform: scale(0.7);
			opacity: 0;
		}

		100% {
			transform: scale(1);
			opacity: 1;
		}
	}

	/* Footer hover links */
	.footer-sec a {
		transition: color 0.3s ease, transform 0.3s ease;
	}

	.footer-sec a:hover {
		color: #ff4667;
		transform: translateX(3px);
	}

	/* Social icon animation */
	.social-icon i {
		transition: all 0.3s ease;
	}

	.social-icon i:hover {
		transform: scale(1.2) rotate(5deg);
		color: #ff4667;
	}

	/* Footer reveal */
	.footer-reveal {
		opacity: 0;
		transform: translateY(40px);
	}

	.video-showcase img {
		transition: transform 0.6s ease;
	}

	.video-showcase:hover img {
		transform: scale(1.05);
	}

	.user-goal {
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.user-goal:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	}

	/* ===== SIMPLE FIX : hover text hide issue ===== */

	/* 1️⃣ allow overlay to go outside */
	.experienced-course-five {
		overflow: visible !important;
	}

	/* 2️⃣ card ke andar text upar rahe */
	.developer-profile-five {
		position: relative;
	}

	/* 3️⃣ hover text hamesha image ke upar */
	.profile-five-ovelay {
		z-index: 5;
	}

	/* 4️⃣ yellow/white shapes ko niche bhejo */
	.developer-profile-five::before,
	.developer-profile-five::after {
		z-index: 1;
	}

	.icon-circle {
		width: 56px;
		height: 56px;
		border-radius: 50%;
		background: rgba(99, 102, 241, 0.12);
		/* soft violet */
	}

	/* description text control (equal height cards) */
	.course-desc {
		flex-grow: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		/* 3 lines only */
		-webkit-box-orient: vertical;
	}

	/* ===== Banner Responsive Fix (NO HTML CHANGE) ===== */

/* Mobile devices */
@media (max-width: 767px) {

  .home-banner {
    padding: 20px 0;
  }

  .banner-content {
    margin-bottom: 30px !important;
    text-align: center;
  }

  .banner-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .banner-content p {
    font-size: 14px;
  }

  /* Program / Field box stack */
  .banner-content .row.mt-5 {
    flex-direction: column;
    gap: 15px;
  }

  .banner-content .col-4 {
    width: 100%;
    border-right: none !important;
  }

  .banner-content .btn {
    width: 100%;
    margin-left: 0 !important;
  }

  /* Image spacing */
  .home-banner img.img-fluid {
    margin-top: 30px;
  }
}

/* Tablet devices */
@media (min-width: 768px) and (max-width: 991px) {

  .banner-content h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .banner-content {
    margin-bottom: 40px !important;
  }

  .banner-content .col-4 {
    width: 33.33%;
  }
}

/* Small laptops */
@media (min-width: 992px) and (max-width: 1199px) {

  .banner-content h2 {
    font-size: 36px;
  }
}

/* Background images overflow fix */
.banner-bgs img,
.banner-vector-bg img {
  max-width: 100%;
  height: auto;
}


/* ===== Trust Section Responsive (NO HTML CHANGE) ===== */

/* Mobile devices */
@media (max-width: 767px) {

  .trust-sec {
    padding: 40px 0;
  }

  /* Video / Image */
  .video-showcase img {
    border-radius: 12px;
  }

  /* Background image control */
  .trust-bg {
    height: auto;
    object-fit: cover;
  }

  /* Headings */
  .trust-content h4 {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .trust-content h5 {
    font-size: 16px;
    text-align: center;
  }

  .trust-content p {
    font-size: 14px;
    text-align: center;
  }

  /* Columns stack */
  .trust-content .row > [class*="col-"] {
    margin-bottom: 25px;
    text-align: center;
  }

  /* Button center */
  .trust-content .btn {
    width: 100%;
    text-align: center;
  }

  /* Stats spacing */
  .trust-content .text-white.mb-5 {
    margin-bottom: 20px !important;
  }

  /* User goal box */
  .user-goal {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .user-goal p {
    font-size: 14px;
  }
}

/* Tablet devices */
@media (min-width: 768px) and (max-width: 991px) {

  .trust-content h4 {
    font-size: 22px;
  }

  .trust-content h5 {
    font-size: 17px;
  }

  .trust-content p {
    font-size: 15px;
  }

  .user-goal {
    gap: 15px;
  }
}

/* Small laptops */
@media (min-width: 992px) and (max-width: 1199px) {

  .trust-content h4 {
    font-size: 24px;
  }
}

/* Safety fixes */
.trust-sec img {
  max-width: 100%;
  height: auto;
}
   
    
 

    /* About Page  CSS */

      .about-icons-scatter {
        position: relative;
        height: 120px;
        /* space under paragraph */
        margin-top: 25px;
    }

    .about-icons-scatter .icon {
        /* position: absolute; */
        width: 250px;
        opacity: 0.9;
    }

    .review-box {
        max-width: 500px;
        background: #fff;
        padding: 25px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .review-title {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .review-subtitle {
        font-size: 14px;
        color: #777;
        margin-bottom: 15px;
    }

    .review-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .review-input,
    .review-textarea {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 14px;
    }

    /* 
    .review-stars span {
        font-size: 22px;
        color: #ccc;
        cursor: pointer;
    }

    .review-stars span:hover {
        color: #f4c150;
    } */

    .review-btn {
        background: #ff4d6d;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 30px;
        font-weight: 500;
    }

    .rate {
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px
    }

    .rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center
    }

    .rating>input {
        display: none
    }

    .rating>label {
        position: relative;
        width: 1em;
        font-size: 30px;
        font-weight: 300;
        color: #FFD600;
        cursor: pointer
    }

    .rating>label::before {
        content: "\2605";
        position: absolute;
        opacity: 0
    }

    .rating>label:hover:before,
    .rating>label:hover~label:before {
        opacity: 1 !important
    }

    .rating>input:checked~label:before {
        opacity: 1
    }

    .rating:hover>input:checked~label:before {
        opacity: 0.4
    }

    .buttons {
        top: 36px;
        position: relative
    }

    .rating-submit {
        border-radius: 8px;
        color: #fff;
        height: auto
    }

    .rating-submit:hover {
        color: #fff
    }

    /* Profile Page  CSS */

   .plabel {
		font-weight: bold;
		font-size: small;
	}

	.pspan {
		font-size: smaller;
		color: #f68398ff;
	}

	.pspan2 {
		font-size: medium;
		color: #f68398ff;
	}

	.test-link {
		color: #fff;
		background: #ff4d4f;
		padding: 10px 18px;
		border-radius: 10px;
		font-weight: 600;
		text-decoration: none;
		/* animation: blinkGlow 1.2s infinite; */
		box-shadow: 0 0 10px rgba(255, 77, 79, 0.8);
		cursor: none;
	}

	.test-link2 {
		color: #000;
		/* background: #ff4d4f; */
		padding: 10px 18px;
		/* border-radius: 30px; */
		font-weight: 600;
		text-decoration: none;
		/* box-shadow: 0 0 10px rgba(255, 77, 79, 0.8); */
	}
	
	.blink {
		animation: blinkGlow 1s infinite;
	}

	.test-link:hover {
		color: #fff;
		background: #ff1f1f;
		text-decoration: none;
	}

	@keyframes blinkGlow {
		0% {
			opacity: 1;
			/* box-shadow: 0 0 5px rgba(255, 77, 79, 0.6); */
		}

		50% {
			opacity: 0.5;
			/* box-shadow: 0 0 20px rgba(255, 77, 79, 1); */
		}

		100% {
			opacity: 1;
			/* box-shadow: 0 0 5px rgba(255, 77, 79, 0.6); */
		}
	}
    
    /* University Page / University Details Page  CSS */

    	.pspan {
		font-size: small;
		color: #f68398ff;
	}

	.lb {
		font-size: small;
		font-weight: bold;
	}

    	.cicon {
		width: 15px;
		height: 20px;
	}
	/* .cicon:hover {
		color: #007bff;
		height: 20px;

	} */

	/* Shortlist Page  CSS */

	   .custom {
        width: 300px;
        height: 150px;
    }

	/* Test Page  CSS */
	
    .question-box {
        min-height: 200px;
    }

    .option-box label {
        display: block;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .option-box input {
        margin-right: 8px;
    }

    .question-nav button {
        width: 40px;
        margin: 3px;
    }

    .timer {
        font-size: 18px;
        font-weight: bold;
    }

    .pspan2 {
        font-size: medium;
        color: #f68398ff;
    }

	/* Universitylist Page  CSS */
	
	.custom-check-fs {
		font-size: smaller;
	}