@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900|Poppins:400,500,600,700,800,900|Titillium+Web:400,600,700&subset=cyrillic,cyrillic-ext,devanagari,latin-ext,vietnamese');



*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}

:root {
    --primary: #7F56D9;
    --secondary: #F4EBFF;
    --text-primary: #fff;
    --text-secondary: #fff;
    --badge-bg: rgba(0, 0, 0,0.75);
    --badge-text: #fff;
    --white: #fff;
    --dropdown-bg: rgba(0, 40, 90,0.98);
    --shadow: rgba(32, 7, 65, 0.14);
    --container: 124rem;
    --nav-height: 6rem;
}

html {
    
    font-family: 'Titillium Web', sans-serif;
	font-size: 62.5%;
    font-style: normal;
}
/*
body {
    font-size: 1.6rem;
}
*/
.container1 {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}
.containerfull {
    /*max-width: 1224px;*/
	width: 98%;
    
    padding: 20px;
	text-align:left;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    position: relative;
    background: transparent;
}

.nav_list {
    display: inline-flex;
    gap: 2rem;
    align-items: flex-end;
    margin: 0 1.5rem;
	top:20px;
	
	
}

.nav_action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav_link,
.btn {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
	font-size:11px;
	letter-spacing: 0.75px;
    color: #fff;  /* var(--text-primary) */
}

.btn-primary {
    display: inline-flex;
    color: var(--white);
    background: var(--primary);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 1.5rem;
}

.nav_toggle {
    cursor: pointer;
    display: none;
}

.nav_toggle ion-icon {
    font-size: 3.5rem;
    color: var(--text-primary);
}

.dropdown {
    position: absolute;
    top: var(--nav-height);
    left: 0px;
	padding-left:40px;
    width: 100%;
    /*background: var(--dropdown-bg);   #4C0887, #001838*/
	background-image: linear-gradient(to bottom right, rgba(0,50,110,0.95), rgba(50,0,100,0.95) );
	/*background-color:rgba(0,50,110,0.95);*/
    box-shadow: 0rem 0.2rem 0.5rem var(--shadow);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.5s ease-in;
}

.dropdown-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.nav_list_menu:hover ion-icon {
    transition: all 0.5s ease-in;
    transform: rotate(180deg);
	position:relative;
	top:3px;
}

.nav_list_menu:hover .dropdown {
    clip-path: polygon(0 0, 100% 0, 100% 102%, 0 102%);
}



.item-heading{
	color:rgba(255,255,255,0.45);
	font-size:12px;
	font-weight:200;
	letter-spacing: 0.5px;
	margin-bottom:10px;
	font-family: 'Poppins', sans-serif;
}

.item-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0rem 0;
	
}

.item-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: var(--secondary);*/
}


.applydiv{
	padding:5px; 
	padding-left:25px; 
	padding-right:25px; 
	border-radius:8px; 
	background-color:#B50624; 
	border:2px solid #fff;
	
}
.applydiv:hover{
	 
	background-color:#FAC921; 
	transition: background-color 0.3s ease;
	
}

.applydiv1{
	
	background-color:#B50624; 
	
	
}
.applydiv1:hover{
	 
	background-color:#FAC921; 
	transition: background-color 0.3s ease;
	
}




.item-list-info {
    position: relative;
    width: 80%;
	color:#fff;
	
}

.item-list-info:hover {
  background-color: rgba(255,255,255,0.07); /* change to your preferred hover background */
  font-weight: 600; /* slightly bolder than normal (400) */
  /*transform: scale(1.02);  slight zoom effect */
  color:#fff;
  font-size:12px;
  border-radius: 4px;
}
.item-list-info a {  
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 10px;
  font-size:12px;
  display: inline-block;  
  color: inherit; /* Keep the parent text color */
}

.item-list-info a:hover { 
  padding-left:10px;
}


.info-badge {
    position: absolute;
    right: 1rem;
    top: 0;
    background: #fff;;
    padding: 0.1rem 0.5rem;
    border-radius: 1rem;
    color: #fff;  /* var(--badge-text) */
}

@media (max-width:1330px) {
    .nav_toggle {
        display: block;
    }
    .nav_menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dropdown-bg);
		/*background-image: linear-gradient(to bottom right, #4C0887, #001838 );*/
		background-color:rgba(0,50,110,0.95);
        display: none;
    }
    .nav_menu.active {
        display: block;
    }
    .nav_list {
        display: block;
        margin: 2rem 0;
        text-align: center;
    }
    .nav_link {
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
    }
    .dropdown {
        top: 0;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        box-shadow: none;
        height: 0;
        text-align: start;
        transition: all 0.5s ease-in;
    }
    .nav_list_menu:hover .dropdown {
        height: 100%;
        transition: all 0.5s ease-in;
    }
	
	
	
	
}

@media (max-width:365px) {
    .logo-img {
        width: 10rem;
    }
    .btn,
    .btn-primary {
        padding: 0.4rem 1rem;
    }
	
	
	.shakti-img-wrapper {
	  
	  height: 450px;
	  overflow: hidden;
	  /*margin-bottom:20px;*/
	}
}








.shakti-social-container {
  display: block;
  margin-top: 100px;
}

.shakti-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block; /* keeps all <li> items together */
}

.shakti-social-list li {
  display: inline-block;
  margin: 0 10px;
}

.shakti-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.shakti-icon:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Brand-specific colors on hover */
.shakti-facebook:hover  { background-color: #3b5998; }
.shakti-twitter:hover   { background-color: #1da1f2; }
.shakti-instagram:hover { background-color: #e1306c; }
.shakti-linkedin:hover  { background-color: #0077b5; }
.shakti-youtube:hover   { background-color: #ff0000; }




.shakti-link {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.shakti-link:hover {
  color: yellow; /* Change to any brand or theme color */
  font-weight: 500; /* Slightly bold on hover */
}

a.shaktilink1 {
  color: #fff !important; /* Default link color */
  /*text-decoration: none!important;;*/
  transition: color 0.6s ease !important;
}

a.shaktilink1:hover {
  color: #fff !important; /* Hover color (pink) */
}

.shakti-full-bg {
  /*background-image: url('your-image.jpg');  Replace with your image path */
  background-size: cover;      /* Scales the image to cover the container */
  background-position: center; /* Keeps image centered */
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; /* or set specific height like 500px */
}



.shakti-img-wrapper {
  width: 100%;
  height: 150px;
  overflow: hidden;
  /*margin-bottom:20px;*/
}

.shakti-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shakti-img-wrapper:hover .shakti-image {
  transform: scale(1.1);
}



.shakti-img-wrapper1 {
  width: 90%;
  
  overflow: hidden;
  /*margin-bottom:20px;*/
}
.shakti-image1 {
  width: 90%;
  
  transition: transform 0.3s ease;
}
.shakti-img-wrapper1:hover .shakti-image1 {
  transform: scale(1.1);
}



.shaktipclass{
	color:#666;
	font-size:12px;
	font-weight:normal;
	
	
}

.shaktih1class{
	color:#006699;
	font-size:14px;
	font-weight:bold;
	
}



.shakti-link-hover {
  color: #007BFF; /* Default link color */
  text-decoration: none; /* Optional: removes underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

.shakti-link-hover:hover {
  color: #FF4500; /* Color when hovered */
}