@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	--primary: #0f53a1;
	--secondary: #ff7400;
	 --accent:#014C89;
      --dark:#0f172a;
      --dark-2:#111827;
      --text:#334155;
      --white:#ffffff;
      --light:#f8fbff;
      --border:rgba(15,23,42,.08);
      --shadow:0 2px 10px rgba(91, 138, 240, 0.12);
      --shadow-lg:0 25px 80px rgba(15,23,42,.14);
      --radius:24px;
}

.heading-colr-mix {
	color: var(--secondary);
}

.text-blue {
	color: var(--primary);
	font-weight: 700;
	font-size: 35px;
}

.text-black {
	color: #000;
	font-weight: 700;
	font-size: 35px;
}

.text-blue-bg {
	color: #fff;
	font-weight: 700;
	font-size: 35px;
}

.text-heading-white {
	color: var(--primary);
	font-weight: 700;
	font-size: 35px;
}

.hr-white {
	border: 3px solid #fff;
	opacity: 1;
	margin-left: 0;
	border-radius: 5px;
}

.hr-orange {
	border: 3px solid var(--secondary);
	opacity: 1;
	margin-left: 0;
	border-radius: 5px;
}

.internship-block {
	font-size: 32px;
}

.btn-9 {
	position: relative;
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: transform 0.3s ease;
	background: var(--primary);
	/* Normal solid primary */
}

/* .btn-9::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: linear-gradient(
		315deg,
		var(--primary) 0%,
		var(--primary) 40%,
		var(--secondary) 74%,
		var(--secondary) 100%
	);
	background-size: 120% auto;
	background-position: left center;
	opacity: 0;
	transition:
		background-position 0.6s ease,
		transform 0.6s ease,
		opacity 0.4s ease;
	border-radius: 6px;
} */

.btn-9:hover {
	/* color: #fff;
	background-color: transparent; */
	transform: scale(1.05);
}

/* .btn-9:hover::after {
	opacity: 1;
	background-position: right center;
	transform: scale(1.2) rotate(180deg);
} */

.main-menu-3 ul li a:hover {
	color: #fff;
	background-color: #004b88;
	border-radius: 15px;
}

.btn .bg-orange:hover {
	background-image: linear-gradient(
		to right,
		var(--secondary) 0%,
		var(--primary) 50%,
		var(--secondary) 100%
	);
}

.top-bar a {
	color: #fff;
	border-right: 1px solid #fff;
	padding-right: 10px;
	font-weight: 500;
	margin-left: 0px;
}

.top-bar a i {
	color: var(--secondary) !important;
}

/* Hero Section */

.hero {
	position: relative;
	padding: 10px 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../images/hero-bg.jpg") center/cover no-repeat;
	z-index: 0;
}

.hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	/*background: rgba(0, 13, 45, 0.8);*/
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-content p.lead {
	/* max-width: 75%; */
	max-width: 100%;
	font-size: 1.1rem;
}

.hero-content .hero-heading {
	font-weight: 700;
	font-size: 2.8rem;
}

.hero-content .hero-heading span {
	color: var(--secondary);
}

.hr-white {
	border: 2px solid #fff;
	opacity: 1;
	margin-left: 0;
}

.btn.bg-blue {
	background-color: var(--primary);
	border-radius: 6px;
	padding: 12px 20px;
	transition: all 0.3s ease;
}

.btn.bg-blue:hover {
	background-color: #003366;
	transform: translateY(-2px);
}

/* hero card */
.hero-card-menu {
	gap: 40px;
}

.hero-card-menu .card {
	transition: all 0.3s ease-in-out;
	background: #fff;
	color: #000;
	border-radius: 20px;
	text-shadow: none;
	height: 250px;
}

.hero-card-menu .card .card-body {
	margin: 0;
	padding: 0.5rem;
}

.hero-card-menu .card:hover {
	box-shadow: 0 0 15px var(--primary);
	transform: translateY(-5px);
}

.hero-card-menu .card-title {
	font-size: 1.6rem;
	font-weight: 700;
}

.hero-card-menu .card-text {
	font-size: 0.875rem;
}

/* reviews-section */
/* .reviews-section {
  background-image: url("../images/hero-bg.png") center/cover no-repeat;
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  padding: 50px 0;           
  position: relative;      
} */

.reviews-section {
	padding: 50px 0;
}

.review-img {
	width: 100%;
	max-width: 880px;
	max-height: 320px;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
	transform: scale(0.95);
}

.review-img:hover {
	transform: scale(1);
}

.reviews {
	background-color: #efefef;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	min-height: 390px;
	border-radius: 11px;
	text-align: center;
}

.reviews h4 {
	color: var(--primary);
	font-size: 25px;
	font-weight: 600;
}

.reviews-slider .item {
	/*display: flex;*/
	/*justify-content: center;*/
	/*align-items: center;*/
	/*padding: 5px;*/
	width: 100%;
}

/* Gallery Slider */
.godigi-gallery .gallery-slider .item {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	height: 220px;
	padding: 5px;
	transition: transform 0.3s ease;
}

.godigi-gallery .gallery-slider .item:hover {
	transform: translateY(-8px);
}

.godigi-gallery .gallery-slider .gallery-img {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
	transform: scale(0.9);
	transition: transform 0.3s ease-in-out;
}

.godigi-gallery .gallery-slider .gallery-img:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	transform: scale(1);
}

/* ================= RESULTS SECTION ================= */
.results {
	position: relative;
	z-index: 1;
	background-color: var(--primary);
}

.results-slider {
	width: 100%;
	height: 100px;
	position: relative;
	overflow: hidden;
}

.placemenr-box {
	gap: 28px;
}

.results-slider .item {
	height: 100px !important;
	text-align: center;
	font-size: 18px;
	background: #fff !important;
	display: flex;
	justify-content: space-around;
	align-items: center;
	border: 2px solid var(--secondary);
	border-radius: 12px;
	padding: 10px;
}

.results-slider .item .user-name {
	font-weight: 700;
	color: #000;
	font-size: 1rem;
}

.plac-des {
	font-size: 0.5rem;
}

.results-slider .item img {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	object-fit: cover;
}

.results-card p {
	line-height: 1 !important;
}

.place-company-logo {
	max-width: 40px;
	width: auto;
	margin: 0 auto;
}

.results-img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.card-body {
	padding: 10px;
}

.results-slider::before,
.results-slider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 15%;
	z-index: 2;
	pointer-events: none;
}

.results-slider::before {
	left: 0;
	background: linear-gradient(to right, #0f53a1, transparent);
	opacity: 0.8;
}

.results-slider::after {
	right: 0;
	background: linear-gradient(to left, #0f53a1, transparent);
	opacity: 0.8;
}

/* ================= VIDEO CONTAINER ================= */
.video-container {
	position: relative;
	width: 100%;
	max-width: 500px;
}

#officevideo {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	display: block;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 50px;
	color: white;
	cursor: pointer;
}

/* why */
.why-choose-godigi {
	background-color: var(--primary);
}

.compare-godigi {
	border-radius: 15px;
}

.seperation {
	border-right: 1px solid var(--primary) !important;
}

.option-item {
	border-radius: 15px;
}

.text-blue-godigi {
	color: var(--primary);
	font-size: 24px;
	margin: 0;
	font-weight: 600;
	padding: 15px 0;
}

.text-orange-other {
	color: var(--secondary);
	font-size: 24px;
	margin: 0;
	font-weight: 600;
	padding: 15px 0;
}

.option-item:nth-child(odd) {
	background-color: #ffffff;
}

.option-item:nth-child(even) {
	background-color: #e3d7cd;
}

.option-item .we-provide {
	margin: 0;
	font-size: 20px;
	padding-left: 10px;
	color: #000;
}

@keyframes blink {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.3);
	}
}

.blink {
	animation: blink 1.5s infinite ease-in-out;
}

/* recruiter */

.recruiter-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	border-radius: 10px;
	width: 150px;
	height: 80px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recruiter-box img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.social-icons a {
	border: none;
}

.box-80 {
	width: 100%;
	margin: 0 auto;
}

.box-65 {
	width: 85%;
	margin: 0 auto;
}

.box-50 {
	width: 70%;
	margin: 0 auto;
}

.company-logo-container .owl-carousel .owl-stage-outer {
	padding: 10px 0;
}

.recruiter-img {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: contain;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.recruiter-img:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* possibilities */
.icon-cloud {
	padding: 2rem;
	border-radius: 12px;
}

.interactive-sphere-container {
	position: relative;
	width: 100%;
	padding-top: 100%;
	transform-style: preserve-3d;
	perspective: 1000px;
}

.sphere-item-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-style: preserve-3d;
}

.sphere-item {
	font-size: 2.5rem;
	color: #fff;
	transition:
		transform 0.3s,
		color 0.3s;
	transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
	width: 30px;
	height: auto;
}

.sphere-item:hover {
	color: #0d6efd;
	transform: translate(-50%, -50%) scale(1.3);
	cursor: pointer;
	filter: brightness(1.2);
	transform: scale(1.3);
}

/* Hire */
.hire a {
	background-image: linear-gradient(to bottom left, #ffc656, #f16063);
	border: none;
	transition: all 0.5s ease;
	padding: 10px 0;
}

.hire .box-developer {
	background-image: linear-gradient(to bottom left, #f1f1f5, #e4ecf7);
	border-radius: 20px;
}

.box-developer h3 {
	font-size: 35px;
	font-weight: 600;
	color: #000;
}

.hiring:hover {
	transform: scale(1.18);
	background-position: 100%;
}

/* Courses */
.courses-section {
	background-color: var(--primary);
}

.input-group {
	overflow: hidden;
	border: 2px solid var(--secondary);
}

.dashed-line {
	border-top: 3px dashed #000;
	gap: 15px;
}

.search-box input {
	padding: 26px;
	box-shadow: none !important;
}

.search-box button {
	border-radius: 0 !important;
}

.course-heading {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	word-wrap: break-word;
	white-space: normal;
	overflow-wrap: break-word;
	max-width: 65%;
	text-align: end;
}

.course-box {
	background-color: #fff;
	border-radius: 10px;
	padding: 1rem;
	position: relative;
	overflow: visible;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.course-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.logo-pop {
	width: 70px;
	height: 70px;
	position: absolute;
	top: -45px;
	left: 8px;
	border-radius: 10px;
	border: 2px solid #cecece;
	background-color: #fff;
	align-items: center;
	justify-content: center;
	display: flex;
}

.logo-pop .course-iamge {
	width: 60px;
}

.course-btn-blue {
	background-color: var(--primary);
	border-radius: 14px !important;
	padding: 10px 0;
	color: #fff;
	font-size: 16px;
}

.course-btn-orange {
	background-color: var(--secondary);
	border-radius: 14px !important;
	font-size: 16px;
	padding: 10px 0;
	color: #fff;
}

.course-btn-blue:hover,
.course-btn-orange:hover {
	color: #fff;
}

/* Features */

.features-icon {
	border: 2px solid var(--primary);
	padding: 15px 13px;
	text-align: center;
}

.feature-item .app-feature-heading {
	font-size: 20px;
	color: #000;
	font-weight: 600;
}

.features-section .feature-item {
	position: relative;
}

.features-section .feature-icon {
	min-width: 65px;
	min-height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 4px solid var(--primary) !important;
}

.features-section .feature-icon i {
	color: var(--secondary);
}

.features-section .feature-item .text-start,
.features-section .feature-item .text-end {
	margin-left: 12px;
	margin-right: 12px;
}

.features-section .col-md-3 .text-end {
	text-align: right !important;
}

/* app-downlaod */
/* .app-downlaod {
    width: 80%;
    margin: 0 auto;
} */

.app .app-downlaod {
	background-image: linear-gradient(to bottom left, #f1f1f5, #e4ecf7);
	border-radius: 20px;
}
.app-store .apple-download {
	margin-left: 20px;
}

/* Counselling */
.counselling {
	background: linear-gradient(to right, var(--primary), #356eb0);
	border-radius: 30px;
}

.counselling-content {
	height: 100%;
	background-color: var(--primary);
	border-radius: 30px;
}

.counselling-form {
	background: #fff;
	border-radius: 30px;
	padding: 50px !important;
}

.counselling-form .form-select {
	color: #616161;
}

.form-heading {
	font-size: 35px;
	font-weight: 600;
	padding-top: 20px;
}

.counselling-form form .form-control {
	padding: 25px 16px;
	background-color: #f6f6f6;
	border-radius: 10px;
	font-size: 15px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.counselling-form form .form-select {
	padding: 17px 16px;
	border-color: #ced4da;
	background-color: #f6f6f6;
	border-radius: 10px;
	font-size: 15px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.counselling-form form .form-control:focus,
.counselling-form form .form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 8px rgba(25, 118, 210, 0.4);
	outline: none;
}

.counselling-form form .form-control,
.counselling-form form .form-select {
	width: 100%;
}

.from-box {
	padding: 50px;
}

/*---------------------------- footor ------------------------------*/
.footer {
	background-image: linear-gradient(to bottom left, #874209, #0a3260, #0a3260);
}

.footer img {
	/*filter: grayscale(100) brightness(1000%);*/
}

.social-icons .rounded-circle {
	color: var(--secondary);
	background: #fff;
	border: 2px solid var(--secondary);
	margin-right: 2px;
	display: inline-block;
	transition: all 0.3s ease-in-out;
	color: var(--secondary);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.social-icons {
	display: flex;
	gap: 15px;
	padding: 20px;
}

.social-icons a {
	text-decoration: none;
	font-size: 24px;
	color: #fff;
	transition: 0.3s;
	/* border: 1px solid; */
	padding: 0 10px;
}

.social-icons a:hover {
	color: #fe7601;
}

.social-icons .rounded-circle:hover {
	background: var(--secondary) !important;
	transform: scale(1.1);
}

.social-icons .rounded-circle:hover a {
	color: #fff !important;
	/* White on hover */
}

.social-icons .rounded-circle a {
	color: var(--secondary);
}

.footer h6 {
	color: #fff;
	letter-spacing: 0.5px;
}

.footer-link {
	color: #bbb;
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	transition: color 0.3s;
}

.footer-link:hover {
	color: #fff;
}
.footer .widget-list ul li a,
.footer .widget-list-2 ul li a,
.footer .widget-list-3 ul li a {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	padding: 8px;
	text-transform: none;
	transition: 0.4s linear;
}
.widget-list ul li a,
.widget-list-2 ul li a,
.widget-list-3 ul li a {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	padding: 8px;
	text-transform: capitalize;
	transition: 0.4s linear;
}

.widget-list ul li a:hover {
	text-decoration: none;
	color: var(--secondary);
}

.widget-list-2 ul li a:hover,
.widget-list-3 ul li a:hover {
	text-decoration: none;
	color: var(--secondary);
}

.mob-icon {
	max-height: 40px;
}

.review-card {
	border: 1px solid #eee;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgb(0 0 0 / 0.05);
	padding: 10px;
	background-color: #fff;
	text-align: left;
}

.review-card .name {
	font-weight: 600;
}

.review-card .stars {
	color: #fbc02d;
}

.review-card .meta {
	font-size: 0.9rem;
	color: #777;
}

.review-card .like {
	color: #777;
	font-size: 1.1rem;
	margin-right: 4px;
}

.review-card .google-profile {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #198754;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.review-detail {
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 2px;
}

.google-profile-1 {
	background-color: #25669e !important;
}

.google-profile-2 {
	background-color: #ef6c00 !important;
}

.review-card .google-profile-3 {
	background-image: url(assets/front/images/katkar-murnali.png) !important;
}

.avatar-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

@media (max-width: 576px) {
	.card-set img {
		height: 25%;
	}
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
	.results-slider .item {
		font-size: 11px;
		min-height: 45px;
		padding: 6px;
	}

	.results-img {
		max-width: 80px;
		padding: 8px;
	}
}

@media (max-width: 768px) {
	.reviews {
		min-height: 380px !important;
	}
	.certificate-image{
      width: 260px;
	}

	.iso-certified {
		width: 100%;
	}
	.featured-carousel-4 {
		padding-top: 10px !important;
	}

	.hero-content .hero-heading {
		text-align: center;
		font-size: 28px;
	}

	.about-gallery p {
		width: 100% !important;
		text-align: center;
	}

	.results .placement-students h2 {
		text-align: center;
	}

	.text-blue {
		font-size: 28px;
		text-align: center;
	}

	.option-item .we-provide {
		font-size: 15px;
	}

	.text-blue-godigi {
		color: var(--primary);
		font-size: 14px;
		margin: 0;
		font-weight: 600;
		padding: 7px 0;
	}
	.hr-white-mobile {
		margin: 10px 0 !important;
	}
	.compare-godigi {
		width: 50%;
	}
	.widget-list ul li a,
	.widget-list-2 ul li a,
	.widget-list-3 ul li a {
		font-size: 14px;
	}
	.footer {
		padding: 20px !important;
	}

	.text-orange-other {
		font-size: 14px;
	}

	.mobile-why-choose {
		display: flex;
		justify-content: end;
	}
	.our-course {
		margin-bottom: 0;
	}
	.feature-item-mobile {
		flex-direction: row-reverse !important;
	}
	.feature-item > div {
		text-align: left !important;
	}
	.feature-item .app-feature-heading {
		font-size: 18px;
	}

	.why-choose-godigi {
		padding: 30px 10px !important;
	}

	.text-blue-bg {
		font-size: 28px;
		text-align: center;
	}

	.hr-orange {
		margin: 10px auto;
	}

	.results .about-placement p {
		text-align: center;
	}

	.results .placement-students .hr-orange {
		text-align: center;
		margin: 10px auto;
	}

	.hero-content p.lead {
		text-align: center;
		max-width: 100%;
		font-size: 0.8rem;
	}

	.hero-paragraph {
		text-align: center;
	}

	.hr-white {
		/* margin-left: auto; */
		margin: 10px auto;
	}

	.mobile-center {
		text-align: center;
	}

	.hero-card-menu .card {
		margin-top: 10px;
	}

	.reviews-section {
		padding: 20px 0;
	}

	.results-slider .item {
		font-size: 12px;
		min-height: 50px;
		padding: 8px;
	}

	.course-box {
		margin-top: 45px !important;
	}

	.course-row {
		gap: 50px;
	}

	.app-downlaod {
		width: 100%;
		margin: 0 auto;
	}

	.counselling-form {
		padding: 15px !important;
	}
	.app .app-downlaod {
		text-align: center;
	}

	.from-box {
		padding: 10px;
		padding-bottom: 15px;
	}

	.hiring {
		width: 100% !important;
	}

	.hire .box-developer {
		padding: 20px !important;
	}

	.box-developer h3 {
		text-align: center;
		font-size: 30px;
	}
}

@media (max-width: 1200px) {
	/*.container, .modal-xl {*/
	/*    max-width: 1400px !important;*/
	/*}*/
}

@media (min-width: 1400px) {
	.container,
	.modal-xl {
		max-width: 1400px;
	}
}

