*{
    margin: 0;padding: 0;box-sizing: border-box;
}

:root{
    --blue-primary:#6176F7;
    --yellow:#FAC025;
    --blue-remend:#5E3FDE;
    --navy-light:#202244;
    --green:#167F71;
    --gray:#A0A4AB;
    --orange:#FF6B00;
    --white:#E8F1FF;

     
}
/* a{
    font-style: none;
    text-decoration: none;
} */

body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    scroll-behavior: smooth;
    
}
.containsec{
    max-width: 1200px;
    margin: 0px auto;
}
main{
    min-height: 70vh;
    /* padding: 100px; */
    overflow: hidden;
}
section{
    min-height: 100vh;
    
}
.headingstyle{
    color: var(--blue-remend);
}

/* Navbar styles */
.header{
    border: 1px solid;
    /* background-color: #5a67d8; */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.3s ease-in-out; /* Smooth hiding effect */
    z-index: 1000;
    background: rgba(16, 28, 250, 0.512);
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 10.5px );
-webkit-backdrop-filter: blur( 10.5px );
/* border-radius: 10px; */
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: white;
    
}
.navbar .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 400;
}
.navbar .logo .logotext{
    width: 120px;
    font-size: 18px;
    margin-left: 10px;
    color: var(--white);
   
}
.navbar .logo .logotext span{
    color: var(--yellow);
}
/* Logo */
.logo img {
    width: 50px;
    height: auto;
    filter: drop-shadow(5px 0px 10px var(--yellow));
    
    
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    /* border: 1px solid; */
    /* min-width: 150px; */

}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 10px 0;
    width: 180px;
    transition: all 0.3s;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Authentication Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.login-btn, .signup-btn {
    padding:4px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.login-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.signup-btn {
    background-color: #ff9800;
    color: white;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        justify-content: left;
        align-items: start;
        position: absolute;
        background-color: #5a67d8;
        width: 100%;
        top: 70px;
        left: 0;
        text-align: left;
        /* margin: 5px; */
        padding: 20px;
        transition: all 0.4s;
        max-height: 700px;
        /* overflow: scroll; */
    }
    .nav-links li{
        margin: 10px;

    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
    .dropdown-menu {
      display: none;
      position: relative;
      top: 100%;
      left: 0;
      background-color: white;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
      list-style: none;
      padding: 10px 0;
      width: 180px;
      
  }
}





/* footer */
/* ==== PARENT TAG (footer-section) ==== */
.footer-section {
    background: #202244;
    color: #fff;
    padding: 50px 20px;
}

.footer-section .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

/* ==== FOOTER ABOUT ==== */
.footer-section .footer-about {
    max-width: 300px;
}

.footer-section .footer-about h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--blue-remend);
}

.footer-section .footer-about span {
    color: #fdd835; /* Yellow highlight */
}

.footer-section .footer-about p {
    font-size: 14px;
    margin: 5px 0;
}

/* ==== SOCIAL ICONS ==== */
.footer-section .social-icons {
    margin-top: 10px;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.footer-section .social-icons img {
    width: 30px;
    height: 30px;
}

/* ==== FOOTER LINKS ==== */
.footer-section .footer-links h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section .footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-section .footer-links ul li {
    margin-bottom: 8px;
}

.footer-section .footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section .footer-links ul li a:hover {
    color: #fdd835;
}

/* ==== SUBSCRIBE FORM ==== */
.footer-section .footer-subscribe h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section .footer-subscribe p {
    font-size: 14px;
    color: #ccc;
}

.footer-section .footer-subscribe form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.footer-section .footer-subscribe input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.footer-section .footer-subscribe button {
    background: #f7931e;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-section .footer-subscribe button:hover {
    background: #e68410;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
    .footer-section .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section .footer-about,
    .footer-section .footer-links,
    .footer-section .footer-subscribe {
        max-width: 100%;
    }

    .footer-section .social-icons a {
        margin: 5px;
    }
}



/* student tab */
.appnavigation{
    width: 100%;
    background-color: var(--blue-primary);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: transform 0.4s ease;
    padding: 5px;
    /* height: 170px; */
    /* border-radius: 50px; */

}
.appnavigation ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0px auto;
    /* border: 1px solid rgb(235, 11, 11); */
    padding: 15px 10px;
    
}
.appnavigation ul li{
    list-style: none; 
    position: relative;
    text-align: center;
    
}
.appnavigation ul li a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* padding: 5px; */
    color: black;
}

.appnavigation ul li i{
    transition: all 0.3s;
    position: absolute;
    bottom: 20px;
    transition: all 0.5s;
    border-radius: 50%;
    

}
.appnavigation ul li span{
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
transition: all 0.5s;

}
.appnavigation ul li.active span,
.appnavigation ul li:hover span {
    color: yellow;
}
.appnavigation ul li.active i,
.appnavigation ul li:hover i{
    font-size: 15px;
    background-color: yellow;
    
    /* background-size: 50px; */
    padding: 2px;
    position: absolute;
    top: -40px;
    height: 35px;
    width: 35px;
    display: grid;
    place-items: center;
    

}
/* student tab */

/* buttons */
.primary_button {
    /* --white: #ffe7ff;
    --purple-100: #f4b1fd;
    --purple-200: #d190ff;
    --purple-300: #c389f2;
    --purple-400: #8e26e2;
    --purple-500: #5e2b83; */
    --white: #ffe7ff;
    /* --purple-100: #a6b4fb;  
    --purple-200: #8c9ef8;  
    --purple-300: #7888f4;  
    --purple-400: #6176F7;  
    --purple-500: #495ed4;   */

    /* --purple-100: #ffe4a6;   
    --purple-200: #ffd27a;   
    --purple-300: #fec84c;   
    --purple-400: #FAC025;   
    --purple-500: #d49f1e;    */

    /* --purple-100: #a1d3c9;
    --purple-200: #79bfb2;
    --purple-300: #4fa696;
    --purple-400: #167F71;
    --purple-500: #11635a; */
    --purple-100: #b6a4f4;
    --purple-200: #9380f0;
    --purple-300: #7b61eb;
    --purple-400: #5E3FDE;
    --purple-500: #4a32b2;
    --radius: 18px;
  
    border-radius: var(--radius);
    outline: none;
    cursor: pointer;
    font-size: 23px;
    font-family: Arial;
    background: transparent;
    letter-spacing: -1px;
    border: 0;
    position: relative;
    width: 220px;
    height: 80px;
    transform: rotate(353deg) skewX(4deg);
  }
  
  .primary_button .bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    filter: blur(1px);
  }
  .primary_button .bg::before,
  .primary_button .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(var(--radius) * 1.1);
    background: var(--purple-500);
  }
  .primary_button .bg::before {
    filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow:
      -7px 6px 0 0 rgb(115 75 155 / 40%),
      -14px 12px 0 0 rgb(115 75 155 / 30%),
      -21px 18px 4px 0 rgb(115 75 155 / 25%),
      -28px 24px 8px 0 rgb(115 75 155 / 15%),
      -35px 30px 12px 0 rgb(115 75 155 / 12%),
      -42px 36px 16px 0 rgb(115 75 155 / 8%),
      -56px 42px 20px 0 rgb(115 75 155 / 5%);
  }
  
  .primary_button .wrap {
    border-radius: inherit;
    overflow: hidden;
    height: 100%;
    transform: translate(6px, -6px);
    padding: 3px;
    background: linear-gradient(
      to bottom,
      var(--purple-100) 0%,
      var(--purple-400) 100%
    );
    position: relative;
    transition: all 0.3s ease;
  }
  
  .primary_button .outline {
    position: absolute;
    overflow: hidden;
    inset: 0;
    opacity: 0;
    outline: none;
    border-radius: inherit;
    transition: all 0.4s ease;
  }
  .primary_button .outline::before {
    content: "";
    position: absolute;
    inset: 2px;
    width: 120px;
    height: 300px;
    margin: auto;
    background: linear-gradient(
      to right,
      transparent 0%,
      white 50%,
      transparent 100%
    );
    animation: spin 3s linear infinite;
    animation-play-state: paused;
  }
  
  .primary_button .content {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    height: 100%;
    gap: 16px;
    border-radius: calc(var(--radius) * 0.85);
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(
      to bottom,
      var(--purple-300) 0%,
      var(--purple-400) 100%
    );
    box-shadow:
      inset -2px 12px 11px -5px var(--purple-200),
      inset 1px -3px 11px 0px rgb(0 0 0 / 35%);
  }
  .primary_button  .content::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 10;
    width: 80%;
    top: 45%;
    bottom: 35%;
    opacity: 0.7;
    margin: auto;
    background: linear-gradient(to bottom, transparent, var(--purple-400));
    filter: brightness(1.3) blur(5px);
  }
  
  .primary_button .char {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .primary_button .char span {
    display: block;
    color: transparent;
    position: relative;
  }
  .primary_button .char span:nth-child(5) {
    margin-left: 5px;
  }
  .primary_button .char.state-1 span:nth-child(5) {
    margin-right: -3px;
  }
  .primary_button .char.state-1 span {
    animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
  }
  .primary_button .char.state-1 span::before,
  .primary_button .char span::after {
    content: attr(data-label);
    position: absolute;
    color: var(--white);
    text-shadow: -1px 1px 2px var(--purple-500);
    left: 0;
  }
  .char span::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  .char.state-2 {
    position: absolute;
    left: 80px;
  }
  .char.state-2 span::after {
    opacity: 1;
  }
  
  .primary_button .icon {
    animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
    z-index: 10;
  }
  .primary_button .icon div,
  .primary_button .icon div::before,
  .primary_button .icon div::after {
    height: 3px;
    border-radius: 1px;
    background-color: var(--white);
  }
  .primary_button .icon div::before,
  .primary_button .icon div::after {
    content: "";
    position: absolute;
    right: 0;
    transform-origin: center right;
    width: 14px;
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  .primary_button .icon div {
    position: relative;
    width: 24px;
    box-shadow: -2px 2px 5px var(--purple-400);
    transform: scale(0.9);
    background: linear-gradient(to bottom, var(--white), var(--purple-100));
    animation: swingArrow 1s ease-in-out infinite;
    animation-play-state: paused;
  }
  .primary_button .icon div::before {
    transform: rotate(44deg);
    top: 1px;
    box-shadow: 1px -2px 3px -1px var(--purple-400);
    animation: rotateArrowLine 1s linear infinite;
    animation-play-state: paused;
  }
  .primary_button .icon div::after {
    bottom: 1px;
    transform: rotate(316deg);
    box-shadow: -2px 2px 3px 0 var(--purple-400);
    background: linear-gradient(200deg, var(--white), var(--purple-100));
    animation: rotateArrowLine2 1s linear infinite;
    animation-play-state: paused;
  }
  
  .primary_button .path {
    position: absolute;
    z-index: 12;
    bottom: 0;
    left: 0;
    right: 0;
    stroke-dasharray: 150 480;
    stroke-dashoffset: 150;
    pointer-events: none;
  }
  
  .primary_button .splash {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    stroke-dasharray: 60 60;
    stroke-dashoffset: 60;
    transform: translate(-17%, -31%);
    stroke: var(--purple-300);
  }
  
  /** STATES */
  
  .primary_button:hover .words {
    opacity: 1;
  }
  .primary_button:hover .words span {
    animation-play-state: running;
  }
  
  .primary_button:hover .char.state-1 span::before {
    animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
  }
  
  .primary_button:hover .char.state-1 span::after {
    opacity: 1;
    animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
  }
  
  .primary_button:hover .wrap {
    transform: translate(8px, -8px);
  }
  
  .primary_button:hover .outline {
    opacity: 1;
  }
  
  .primary_button:hover .outline::before,
  .primary_button:hover .icon div::before,
  .primary_button:hover .icon div::after,
  .primary_button:hover .icon div {
    animation-play-state: running;
  }
  
  .primary_button:active .bg::before {
    filter: blur(5px);
    opacity: 0.7;
    box-shadow:
      -7px 6px 0 0 rgb(115 75 155 / 40%),
      -14px 12px 0 0 rgb(115 75 155 / 25%),
      -21px 18px 4px 0 rgb(115 75 155 / 15%);
  }
  .primary_button:active .content {
    box-shadow:
      inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
      inset 0px -3px 8px 0px var(--purple-200);
  }
  
  .primary_button:active .words,
  .primary_button:active .outline {
    opacity: 0;
  }
  
  .primary_button:active .wrap {
    transform: translate(3px, -3px);
  }
  
  .primary_button:active .splash {
    animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
  }
  
  .primary_button:focus .path {
    animation: path 1.6s ease forwards 0.2s;
  }
  
  .primary_button:focus .icon {
    animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
  }
  
  .char.state-2 span::after,
  .primary_button:focus .char.state-1 span {
    animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
  }
  
  .primary_button:focus .char.state-2 span::after {
    animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes charAppear {
    0% {
      transform: translateY(50%);
      opacity: 0;
      filter: blur(20px);
    }
    20% {
      transform: translateY(70%);
      opacity: 1;
    }
    50% {
      transform: translateY(-15%);
      opacity: 1;
      filter: blur(0);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes charDisappear {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-70%);
      opacity: 0;
      filter: blur(3px);
    }
  }
  
  @keyframes arrow {
    0% {
      opacity: 1;
    }
    50% {
      transform: translateX(60px);
      opacity: 0;
    }
    51% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(-128px);
      opacity: 1;
    }
  }
  
  @keyframes swingArrow {
    50% {
      transform: translateX(5px) scale(0.9);
    }
  }
  
  @keyframes rotateArrowLine {
    50% {
      transform: rotate(30deg);
    }
    80% {
      transform: rotate(55deg);
    }
  }
  
  @keyframes rotateArrowLine2 {
    50% {
      transform: rotate(330deg);
    }
    80% {
      transform: rotate(300deg);
    }
  }
  
  @keyframes resetArrow {
    0% {
      transform: translateX(-128px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes path {
    from {
      stroke: white;
    }
    to {
      stroke-dashoffset: -480;
      stroke: #f9c6fe;
    }
  }
  
  @keyframes splash {
    to {
      stroke-dasharray: 2 60;
      stroke-dashoffset: -60;
    }
  }
  

/* primary_buttons */

.alert {
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-weight: bold;
 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;

}
.alert-success { background-color: #d4edda; color: #155724; }
.alert-danger { background-color: #f8d7da; color: #721c24; }
.alert-warning { background-color: #fff3cd; color: #856404; }
.alert-info    { background-color: #cce5ff; color: #004085; }


/* butoon*/ 
.cta {
  display: flex;
  padding: 11px 33px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  background: #6225e6;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
  border: none;
  cursor: pointer;
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #fbc638;
}

.cta .second {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover .second {
  transition: 0.5s;
  margin-right: 45px;
}

.span {
  transform: skewX(15deg);
}

.second {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 12%;
}

.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #fbc638;
  }

  100% {
    fill: white;
  }
}


/* pagination  */
.custom-pagination {
  text-align: center;
  margin-top: 30px;
}

.custom-pagination nav {
  display: inline-block;
}

.custom-pagination .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  gap: 8px;
}

.custom-pagination .pagination li {
  display: inline;
}

.custom-pagination .pagination li a,
.custom-pagination .pagination li span {
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 14px;
  transition: background-color 0.3s;
}

.custom-pagination .pagination li a:hover {
  background-color: #e0e0e0;
}

.custom-pagination .pagination .active span {
  background-color: #333;
  color: white;
  border-color: #333;
}