
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

  /* --primary-color: #754ffe; */
  --primary-color: #2e3192;
  --secondary-color: #7632D4;
  --dark-gray: #2c3e50;
  --light-gray: #ecf0f1;
  --accent-color: #50c9ce; /* Complementary teal for accents */
}

body {
  font-family: "Inter",sans-serif;
  overflow-x: hidden;
  color: #334155;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:"Inter", sans-serif;
  font-weight: 700;
}

p,
a,
span,
li,
strong,
input,
textarea,
button,
address {
  font-family:"Inter", sans-serif;
  font-weight: 400;
}

.text-success {
    color: var(--primary-color)!important;
}

.text-dark{
  color: #334155 !important;
}

.btn-success {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn-success:hover {
  background-color: #6343d8 !important;
  color: #fff !important;
}


.btn-outline-success {

    color: #754ffe !important;
    border-color: #754ffe !important;
}
.btn-outline-success:hover {
  background-color: #6343d8 !important;
  color: #fff !important;
}

.navbar-brand img{
  max-width: 25% !important;
}

@media screen and (min-width: 1400px) {
.navbar-brand img{
  max-width: 25% !important;
}
}

@media screen and (max-width: 992px) {
.navbar-brand img{
  max-width: 15% !important;
}
}

@media screen and (max-width: 392px) {
.navbar-brand img{
  max-width: 25% !important;
}
}

@media screen and (min-width: 992px) {
.navbar-brand{
  max-width: 25% !important;
}
  
}

@media screen and (max-width: 992px) {
.navbar-brand{
  max-width: 75% !important;
}
  
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 30px !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {

width: 1.2em !important;
background-image: url("images/xmark-solid.svg") !important;
}

.nav-link.active,
.nav-link:hover {
color: var(--primary-color) !important;
position: relative;
display: inline-block;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 2px;
    background-color: var(--primary-color);
}

.ira-letter-space {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 48px;
  color: #161E29 !important;
}

.text-primary{
  color: var(--primary-color) !important;
}

.hero-section {
  background: #f5f5f5;
  background: linear-gradient(90deg,rgba(245, 245, 245, 1) 0%, rgba(245, 220, 198, 0.89) 40%, rgba(191, 245, 237, 1) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.hero-section p,
.hero-section a,
.hero-section i{
  color: var(--primary-color) !important;
}


.hero-title {
color: #ed1c24;
}

.academic-title p{
color: #ed1c24 !important; 
}

.from-card-header{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.section-title {
  font-weight: 700;
  color: var(--dark-gray);
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.card-img-top{
  min-height: 250px;
 height: 400px;
}

@media screen and (max-width: 532px) {
  .ira-letter-space {
    font-size: 38px;
  }

  .hero-section{
    padding: 52px 0;
  }

  .card-img-top{
    min-height: 0;
    height: initial;
  }

  .academic-content p{
    font-size: 16px !important;
  }

}

.card-hover-effect {
  transition: all 0.3s;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
}

.card-hover-effect:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gradient-bg {
   background: #F1F5F9;
}

.contact-box{
  transition: all 0.3s ease;
}

.contact-box:hover{
  border: 1px solid var(--primary-color) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px) !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 4px;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}


.badge-gradient {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}


.navbar-toggler {
  font-size: 1rem !important;
  border:  none !important;
}

footer{
  background-color: #0f172a !important;
  color: #64748B !important;
}

footer h5{
  color: #ffffff80;
}
    
footer a{
  text-decoration: none;
  color: #64748B !important;
  transition: all 0.3s ease;
}

.footer-logo{
    max-width: 80px;
}

footer a:hover{
  color: var(--primary-color) !important;
}



