/* Define custom fonts */
@font-face {
    font-family: 'SyneSemiBold';
    src: url('/assets/Fonts/Syne/Syne-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'SyneRegular';
    src: url('/assets/Fonts/Syne/Syne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'SyneMedium';
    src: url('/assets/Fonts/Syne/Syne-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'SyneBold';
    src: url('/assets/Fonts/Syne/Syne-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'NohemiRegular';
    src: url('/assets/Fonts/Nohemi/Nohemi-Regular-BF6438cc4d0e493.ttf') format('truetype');
}
@font-face {
    font-family: 'RocMedium';
    src: url('/assets/Fonts/Demo_Fonts/Fontspring-DEMO-rocgroteskwide-medium.otf') format('truetype');
}
/* Define root variables including font families */
:root {
    --main-color: #F6F6FA;
    --light-blueBg: #D0DAE6;
    --Rich-blueBg: #3545D6;
    --YelloBg: #C2F750;
    --DarkBlue-color: #0E1A27;
    --font-semi-bold: 'SyneSemiBold', sans-serif;
    --font-bold: 'SyneBold', sans-serif;

    --font-medium-bold: 'SyneMedium', sans-serif;
    --font-regular: 'SyneRegular', sans-serif;
    --font-Nohemiregular: 'NohemiRegular', sans-serif;
    --opacity: 0.8;
}

* {
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
img {
    width: 100%;
}

body {
    background-color: var(--DarkBlue-color);
    font-family: var(--font-regular);
}

section {
    margin: 80px 110px; /* Simplified margin handling */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
.navbar {
    padding: 31px 110px 0 110px; /* Simplified margin handling */
    background-color: rgba(14, 26, 39, 0.2); 
}

.navbar-brand h1 {
    font-size: 32.53px;
    font-family: "RocMedium";
    color: var(--main-color);
}

.nav-link {
    color: var(--main-color);
    font-size: 20px;
    font-family: var(--font-medium-bold);
    margin-right: 40px;
    opacity: 0.7;
    position: relative; /* For positioning the underline */
}
.nav-link:hover{
    opacity: 1 !important;
    color: var(--main-color) !important;
}
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px; /* Height of the underline */
    background-color: #FFFFFF; /* Hover underline color */
    position: absolute;
    bottom: -5px; /* Position the underline just below the text */
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%; /* Full width underline on hover */

}

.nav-link.active::after {
    width: 100%;
    background-color: var(--main-color); /* Active link underline color */
}

.nav-link.active {
    opacity: 1 !important;
    color: var(--main-color) !important;
}

.btn-outline-success {
    width: 274px;
    height: 46px;
    background-color: var(--YelloBg);
    border-radius: 85px;
    font-size: 21.33px;
    font-family: var(--font-semi-bold);
    color: #000000;
    border-color: var(--YelloBg);
}
.btn-outline-success:hover{
  background-color: transparent;
  border-color: var(--YelloBg);
  color: var(--YelloBg);
}
.commonTitle {
    color: var(--main-color);
    font-family: var(--font-semi-bold);
    font-size: 70px;
    text-align: center;
    margin-top: 106.94px;
    margin-bottom: 100px;
}

#cardTitle{
  color: var(--main-color);
  font-size: 29px;
  font-family: var(--font-regular);
  margin-bottom: 100px;
  text-align: center;
}
  footer h2{
    text-align: left;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-family: var(--font-regular);

  }
  .navg{
    color: #FFFFFF;
    font-size: 21.33px;
    font-family: var(--font-regular) ;
    margin-bottom: 32px ;

  }
  footer ul li{

   list-style: none;
    color: #FFFFFF;
    font-size: 21.33px;
    opacity: 0.7;
    font-family: var(--font-regular) ;
    margin-top: 11px;
  }
  .btn-light{
    background-color: #DCF247 ;
    border-color: #DCF247 ;
    width: 100%;
    height: 70px;
    border-radius: 85px ;
    font-family: var(--font-regular) ;
    font-size: 21.33px ;
color: #000000;

  }
  .end{
    color: #FFFFFF;
    font-size: 30px;
    font-family: var(--font-regular) ;
    margin-bottom: 32px;
  }
  .btn-light:hover{
    background-color: transparent;
    border-color: var(--YelloBg);
    color: var(--YelloBg);
  }