/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
	--main: #2F3292;
	--secondary: #F0BB91;
	--hover: #002eae;
	--mainbg: linear-gradient(180deg, #2753e3 0.00%, #142a72 100.00%);
	--hoverbg: #000000;
	--button-color: #fff;
	--text-color: #000000;
	--background-color: #ffffff;
	--transition-speed: 0.5s;
}

body {
	background: var(--background-color);
	color: var(--text-color);
	font-family: 'Roboto', sans-serif;
	z-index: 99;
	overflow-x: hidden;
}

a {
	color: var(--hover);
	text-decoration: none;
	transition: var(--transition-speed);
}

p {
	margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	margin-bottom: 20px;
}

img {
	max-width: 100%;
	height: auto;
}


/*--------------------------------------------------------------
	# General Classes
--------------------------------------------------------------*/

.d-none {
	display: none
}
.v-hidden {
	visibility: hidden;
}
/*--------------------------------------------------------------
	# Prelaoder
--------------------------------------------------------------*/
/* #preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--mainbg);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: var(--hover);
	color: var(--main);
	border: 1px solid var(--main);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	position: sticky;
	top: 0;
	transition: all 0.5s;
	z-index: 997;
	background: var(--mainbg);
	/* border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); */
	box-shadow: 0 20px 10px -20px rgba(0,0,0,0.45) inset, 0 -20px 10px -20px rgba(0,0,0,0.45) inset;}

#header.header-scrolled,
#header.header-inner {
	background: var(--mainbg);
	box-shadow: 0 20px 10px -20px rgba(0,0,0,0.45) inset, 0 -20px 10px -20px rgba(0,0,0,0.45) inset;
}

#header #logo h1 {
	font-size: 18px;
	margin: 0;
	font-weight: 700;
	letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
	color: #fff;
	font-weight: 900;
}

#header.header-scrolled a:hover {
	color: var(--secondary);
}

#header #logo img {
	max-height: 70px;
	margin: -10px 0;
}

#header.header-scrolled #logo .default-logo {
	display: none;
}

#header.header-scrolled #logo .sticky-logo {
	display: block !important;
	max-height: 70px;
}

@media (max-width: 992px) {
	#header #logo img {
		max-height: 70px;
	}
	
}

/*--------------------------------------------------------------
# Desktop Navigation Menu
--------------------------------------------------------------*/
.navbar {
	padding: 0;
	display: flex;
	align-items: center;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	padding-right: 10px;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
	/* gap: 15px; */
}

.navbar li {
	position: relative;
}
/* 
.navbar > ul > li {
	white-space: nowrap;
	padding: 10px 12px;
} */

.navbar a {
	display: flex;
	align-items: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	transition: 0.3s;
	padding: 10px 15px;
	text-transform: uppercase;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.navbar a::before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--hover);
	transition: all 0.3s ease-in-out;
}

.navbar a:hover::before {
	width: 100%;
	left: 0;
}

.navbar a:hover {
	color: var(--secondary);
	transform: scale(1.1);
}

.navbar .active {
	color: var(--secondary);
	/* background: var(--button-color); */
	padding: 10px 15px;
	border-radius: 5px;
	/* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
	border-bottom: 3px solid var(--secondary);
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 38px;
	cursor: pointer;
	display: none;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}
	.navbar ul {
		display: none;
	}
	.navbar {	
		padding: 0 5px;
		height: auto;
	}
}

.navbar-mobile {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	z-index: 999;
	overflow: hidden;
	transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	left: 15px;
	bottom: 15px;
	padding: 10px 0;
	background: var(--mainbg);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff;
	position: relative;
}

.navbar-mobile a:hover,
.navbar-mobile .active {
	color: #000;
	border-bottom: solid 5px #fff;
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
}

.navbar-mobile .getstarted {
	margin: 15px;
}



/*--------------------------------------------------------------
	# Button States
--------------------------------------------------------------*/

.default-button {
	color: var(--button-color)!important;
	background: var(--main);
	padding: 10px 20px!important;
	margin: 0 0 0 15px;
	border-radius: 12px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	line-height: 1;
	font-size: 18px!important;
	line-height: 22px;
	white-space: nowrap;
	text-transform: capitalize;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border: none;
	position: relative;
	overflow: hidden;
}

.default-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transform: skewX(-45deg);
	transition: 0.5s;
}

.default-button:hover::before {
	left: 100%;
}

.default-button:hover,
.default-button:focus {
	color: var(--main);
	background-color:var(--secondary);
	border: none;
}

.default-button:active {
	transform: scale(0.95);
}

@keyframes button-animation {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.model-close-button {
	color: var(--button-color);
	background: var(--main);
	padding: 7px 22px;
	margin: 0 0 0 15px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: 1px solid var(--main);
}

.model-close-button:hover,
.model-close-button:focus {
	color: var(--main);
	background-color: #fff;
}

/*--------------------------------------------------------------
	# Home Section
--------------------------------------------------------------*/


/* ----------------------------
	Sections timer-sec
--------------------------------*/

/* ----------------------------
	Sections Header
--------------------------------*/




/*-------------------------------------------------------------
	# facts Section 
--------------------------------------------------------------*/
#entrepreneurship{
	padding: 60px 0 40px 0;
	background:#f6f4f7 ;
    color: #0e1027;
}
#entrepreneurship .section-header h2{
	text-align:left;
	color: #0e1027;
}
#entrepreneurship .section-header p{
	text-align:left;
	color: #0e1027;
}
#entrepreneurship .section-header .heading-text {
	background: linear-gradient(180deg,transparent 80%,#29abeb 0);
	background-size: 100px 1.05em!important;
}
#entrepreneurship ul li{
	font-size: 22px;
	font-weight:600;
    line-height: 1.3;
    margin-bottom: 10px;
    padding-left: 1px;
    list-style-type: square;
	
}

/*--------------------------------------------------------------
	# mediac
--------------------------------------------------------------*/
#mediac {	
	padding: 60px 0 40px 0;
	background: url(../img/main/media-bg.png) top repeat-x;
	background-size: cover;
    color: #fff;
	text-align:center;
	text-transform:uppercase;
}
#mediac  .section-header h2 {
	text-align:left;
	color:#fff;
}
#mediac  .section-header .heading {
	background: linear-gradient(180deg,transparent 80%,#29abeb 0);
	background-size: 100px 1.05em!important;
}
#mediac .count-num {
	font-weight: 600;
	font-size: 60px;
	letter-spacing: -1px;
	color:#1353c5;
}
#mediac .smalltext {
	font-size: 30px;
	text-transform: uppercase;
	font-weight:500;
}
#mediac .small-icon {
	width: 40%;
}
#mediac .count1 .count-num { color:#29abeb;}
#mediac .count2 .count-num { color:#8fc64d;}
#mediac .count3 .count-num { color:#fa3256;}
#mediac .count4 .count-num { color:#ffcc00;}
#mediac .count5 .count-num { color:#ffcc00;}
#mediac .count6 .count-num { color:#0469fd;}
#mediac .count7 .count-num { color:#29abeb;}
#mediac .count8 .count-num { color:#ff5400;}



/*--------------------------------------------------------------
	# faq
--------------------------------------------------------------*/

#faq {
	padding-top: 8%;
}



#faq .section-header h2 {
	color: #000000;
}

#faq .text {
	padding-top: 30px;
	padding-bottom: 10px;
	font-size: 18px;
}

#faq ul li {
	padding-top: 10px;
	font-size: 18px;
	list-style-type: decimal;
}

#faq .card {
	border-radius: 0px;
}

.card-body {
	color: #000;
}

.card-header a {
	color: #000;
}


/*--------------------------------------------------------------
	# terms-conditions
--------------------------------------------------------------*/




#terms-conditions .section-header h2 {
	color: #000;
}


/*--------------------------------------------------------------
	# privacy-policy
--------------------------------------------------------------*/

#privacy-policy {
	padding-top: 8%;
}



#privacy-policy .section-header h2 {
	color: #000;
}


/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/

#footer {
	background: #001D40;
	background-size: cover;
	background-position: center;
	padding: 0;
	color: #000000;
	font-size: 14px;
}

#footer .footer-top {
	background: #001D40;
	background-size: cover;
	background-position: center;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 26px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: #000000;
}

#footer .footer-top .ucon-logo {
	width: 70%;
	margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: #000000;
}

#footer .footer-top .social-links a {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	line-height: 1;
	margin-right: 4px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .social-links a i {
	line-height: 0;
	font-size: 16px;
	color: #204b9b;
	transition: transform 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #204b9b;
	color: #fff;
	transform: scale(1.1);
}

#footer .footer-top .social-links a:hover i {
	color: #fff;
	transform: rotate(360deg);
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	text-transform: capitalize;
	position: relative;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--secondary);
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links p {
	line-height: 26px;
	color: #ffffff;
}

#footer .footer-top .footer-links ul i {
	padding-right: 5px;
	color: #ffffff;
	font-size: 18px;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	position: relative;
}

#footer .footer-top .footer-links ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	font-size: 18px;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #ffffff;
	transition: color 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
	color:var(--secondary);
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
	color: #ffffff;
}

#footer .footer-top .footer-contact a {
	color: #ffffff;
	text-decoration: underline;
}

#footer .cr {
	text-align: center;
	padding: 20px 0;
	background: #f9f9f9;
	color: var(--main);
	font-size: 14px;
	border-top: 1px solid #eaeaea;
}


  /* Main Footer Styles */
  #footer {
    position: relative;
    background: #001D40;
    color: #ddd;
    /* font-family: 'Poppins', sans-serif; */
    padding: 50px 0 20px;
    overflow: hidden;
  }

 
  /* Footer Top Section */
  .footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Headings */
  .footer-links h4,
  .footer-contact h4,
  .footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
  }

  /* Useful Links */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-links ul li i {
    color: #00A1AE;
    margin-right: 8px;
  }

  .footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links ul li a:hover {
    color: #fff;
  }

  /* Contact Section */
  .footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-contact a:hover {
    color: #fff;
  }

  /* Social Icons */
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #000000;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .social-links a:hover {
    color: var(--secondary);
    transform: scale(1.1);
  }
  a:hover {
    color: var(--secondary)!important;
}


  /* Newsletter */
  .footer-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-newsletter form {
    display: flex;
    flex-wrap: wrap;
	gap: 10px;
  }

  .footer-newsletter input[type="email"] {
    flex: 1 1 auto;
    padding: 10px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
    outline: none;
  }

  .footer-newsletter input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    background: var(--mainbg);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .footer-newsletter input[type="submit"]:hover {
    background: #008f9c;
  }



  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-top .row>div {
      margin-bottom: 30px;
    }
  }

